/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap");

/* VARIABLES CSS */
:root {
  --header-height: 3.5rem;
  /* Colors */
  --hue: 14;
  --first-color: hsl(var(--hue), 91%, 54%);
  --first-color-alt: hsl(var(--hue), 91%, 50%);
  --title-color: hsl(var(--hue), 4%, 100%);
  --text-color: hsl(var(--hue), 4%, 85%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --card-color: #E8F6FC;
  /*Red gradient*/
  --body-color: linear-gradient(90deg, hsla(207, 72%, 31%, 1) 0%, hsla(190, 100%, 69%, 1) 100%);
  --container-color: linear-gradient(90deg, hsla(207, 72%, 31%, 1) 0%, hsla(190, 100%, 69%, 1) 100%);
  --side-list-color: linear-gradient(90deg, #0E68B2 0%, #A2EFFF 100%);
  --sub: #ffffff;
  /* Font and typography */
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /* Font weight */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-black: 900;
  /* Margenes Bottom */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 3rem; /* 4rem */
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/* BASE */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  transition: 0.3s;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/* REUSABLE CSS CLASSES */
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  text-align: center;
}

/* LAYOUT */
.container {
  max-width: 1200px;
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
  /*For animation*/
}

/* HEADER */
.header {
  width: 100%;
  background: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

/* NAV */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-medium);
}

.nav__logo-img {
  width: 1.25rem;
}

.nav__link,
.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--sub);
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    width: 100%;
    background: var(--container-color);
    top: -150%;
    left: 0;
    color: #ff5b79;
    padding: 3.5rem 0;
    transition: 0.4s;
    z-index: var(--z-fixed);
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

.nav__img {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}

.nav__close {
  font-size: 1.8rem;
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.nav__link {
  text-transform: uppercase;
  font-weight: var(--font-black);
  transition: 0.4s;
}

.nav__link:hover {
  color: var(--text-color);
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background: var(--container-color);
}

/* Active link */
.active-link {
  position: relative;
}

.active-link::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--sub);
  border-radius: 50%;
}

/* HOME */
.home__content {
  row-gap: 1rem;
}

.home__group {
  display: grid;
  position: relative;
  padding-top: 2rem;
}

.home__img {
  justify-self: center;
}

.home__indicator {
  width: 8px;
  height: 8px;
  background-color: var(--title-color);
  border-radius: 50%;
  position: absolute;
  top: 7rem;
  right: 2rem;
}

.home__indicator::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: var(--title-color);
  top: -3rem;
  right: 45%;
}

.home__details-img {
  position: absolute;
  right: 0.5rem;
}

.home__details-title,
.home__details-subtitle {
  display: block;
  font-size: var(--small-font-size);
  text-align: right;
}

.home__subtitle {
  font-size: var(--h3-font-size);
  color: white;
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
}

.pumpkin__subtitle {
  font-size: var(--h3-font-size);
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  line-height: 109%;
  margin-bottom: var(--mb-1);
}

.home__description {
  margin-bottom: var(--mb-1);
  color: #fff;
}

.home__buttons {
  display: flex;
  justify-content: space-between;
}

/* Swiper Class */
.swiper-pagination {
  position: initial;
  margin-top: var(--mb-1);
}

.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  opacity: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}

.swiper-pagination-bullet-active {
  width: 1.5rem;
  height: 5px;
  border-radius: 0.5rem;
}

/* BUTTONS */
.button {
  display: inline-block;
  background-color: #000;
  background-image: #000;
  color: var(--sub);
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.button__icon {
  font-size: 1.25rem;
}

.book--now {
  display: inline-block;
  transition: 0.3s;
}

.book--now:hover {
  transform: scale(1.2);
}

.button--ghost {
  border: 2px solid #000;
  background: #000;
  background-color: #000;
  border-radius: 3rem;
  padding: 0.75rem 1.5rem;
}

.button--ghost:hover {
  background: none;
  border: 2px solid #fff;
}

.button--link {
  color: var(--title-color);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

/* CATEGORY */
.category__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.category__data {
  text-align: center;
}

.category__img {
  width: 50px;
  margin-bottom: var(--mb-0-75);
  transition: 0.3s;
}

.category__title {
  margin-bottom: var(--mb-0-25);
}

.category__data:hover .category__img {
  transform: translateY(-0.5rem);
}

/* ABOUT */
.about__container {
  row-gap: 2rem;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  justify-self: center;
  animation: floating 2s ease-in-out infinite;
}

/* TRICK OR TREAT */
.trick__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}

.trick__content {
  position: relative;
  background: var(--container-color);
  border-radius: 1rem;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  overflow: hidden;
}

.trick__img {
  width: 90px;
  transition: 0.3s;
}

.trick__subtitle,
.trick__price {
  display: block;
}

.trick__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-0-5);
}

.trick__title,
.trick__price {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}

.trick__button {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.25rem 0.25rem 0.75rem 0.25rem;
  position: absolute;
  right: -3rem;
  bottom: 0;
}

.trick__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.trick__content:hover .trick__img {
  transform: translateY(-0.5rem);
}

.trick__content:hover .trick__button {
  right: 0;
}

/* DISCOUNT */
.discount__container {
  background: transparent;
  border-radius: 1rem;
  padding: 2.5rem 0 1.5rem;
  row-gap: 0.75rem;
}

.discount__data {
  text-align: center;
}

.discount__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}

.discount__img {
  width: 200px;
  justify-self: center;
}

/* NEW ARRIVALS */
.new__container {
  padding-top: 1rem;
}

.new__img {
  width: 120px;
  margin-bottom: var(--mb-0-5);
  transition: 0.3s;
}

.new__content {
  position: relative;
  background: var(--container-color);
  width: 242px;
  padding: 2rem 0 1.5rem 0;
  border-radius: 0.75rem;
  text-align: center;
  overflow: hidden;
}

.new__tag {
  position: absolute;
  top: 8%;
  left: 8%;
}

.new__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.new__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.new__prices {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

.new__price {
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.new__discount {
  color: var(--first-color);
  font-size: var(--smaller-font-size);
  text-decoration: line-through;
  font-weight: var(--font-medium);
}

.new__button {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.25rem 0.25rem 0.75rem 0.25rem;
  position: absolute;
  bottom: 0;
  right: -3rem;
}

.new__icon {
  font-size: 1.25rem;
}

.new__content:hover .new__img {
  transform: translateY(-0.5rem);
}

.new__content:hover .new__button {
  right: 0;
}

/* NEWSLETTER */
.newsletter__description {
  text-align: center;
  margin-bottom: var(--mb-1-5);
}

.newsletter__form {
  background: var(--container-color);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  border-radius: 0.75rem;
}

.newsletter__input {
  width: 70%;
  padding: 0 0.5rem;
  background: none;
  color: var(--title-color);
}

.newsletter__input::placeholder {
  color: var(--text-color);
}

/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__img-one,
.footer__img-two {
  position: absolute;
  transition: 0.3s;
}

.footer__img-one {
  width: 100px;
  top: 6rem;
  right: -2rem;
}

.footer__img-two {
  width: 150px;
  bottom: 4rem;
  right: 4rem;
}

.footer__img-one:hover,
.footer__img-two:hover {
  transform: translateY(-0.5rem);
}

.footer__container {
  row-gap: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.footer__logo-img {
  width: 20px;
}

.footer__description {
  margin-bottom: var(--mb-2-5);
}

.footer__social {
  display: flex;
  column-gap: 0.75rem;
}

.footer__social-link {
  display: inline-flex;
  background: var(--container-color);
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--title-color);
  font-size: 1rem;
}

.footer__social-link:hover {
  background: var(--body-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.footer__links {
  display: grid;
  row-gap: 0.35rem;
}

.footer__link {
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: 0.3s;
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--smaller-font-size);
  margin-top: 4.5rem;
}

/* SCROLL UP */
.scrollup {
  position: fixed;
  background: #ffffff;
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 0.25rem;
  z-index: var(--z-tooltip);
  opacity: 0.8;
  transition: 0.4s;
}

.scrollup__icon {
  font-size: 1.25rem;
  color: var(--body-font);
}

.scrollup:hover {
  background: var(--body-color);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/* SCROLL BAR */
::-webkit-scrollbar {
  width: 0.6rem;
  background: #413e3e;
}

::-webkit-scrollbar-thumb {
  background: #272525;
  border-radius: 0.5rem;
}

/*  BREAKPOINTS */
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__buttons {
    flex-direction: column;
    width: max-content;
    row-gap: 1rem;
  }

  .category__container,
  .trick__container {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__container {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }

  .newsletter__container {
    display: grid;
    grid-template-columns: 0.7fr;
    justify-content: center;
  }

  .newsletter__description {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: 7rem 0 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__img,
  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__link {
    text-transform: initial;
    font-weight: initial;
  }

  .nav__link-footer {
    color: #000000;
  }

  .home__content {
    padding: 8rem 0 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .swiper-pagination {
    margin-top: var(--mb-2);
  }

  .category__container {
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__title,
  .about__data {
    text-align: initial;
  }

  .trick__container {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 2rem;
  }

  .discount__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    column-gap: 3rem;
    padding: 3rem 0;
    border-radius: 3rem;
  }

  .discount__img {
    width: 350px;
    order: -1;
  }

  .discount__data {
    padding-right: 6rem;
  }

  .newsletter__container {
    grid-template-columns: 0.5fr;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 1rem;
  }

  .footer__img-two {
    right: initial;
    bottom: 0;
    left: 15%;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section__title {
    font-size: var(--h1-font-size);
    margin-bottom: 3rem;
  }

  .home__content {
    padding-top: 9rem;
    gap: 3rem;
  }

  .home__group {
    padding-top: 0;
  }

  .home__img {
    transform: translateY(-3rem);
  }

  .home__indicator {
    top: initial;
    right: initial;
    bottom: 15%;
    left: 45%;
  }

  .home__indicator::after {
    top: 0;
    height: 75px;
  }

  .home__details-img {
    bottom: 0;
    right: 58%;
  }

  .home__title {
    margin-bottom: var(--mb-1-5);
  }

  .home__description {
    margin-bottom: var(--mb-2-5);
    padding-right: 2rem;
  }

  .category__container {
    column-gap: 8rem;
  }

  .category__img {
    width: 50px;
  }

  .about__container {
    column-gap: 7rem;
  }

  .about__description {
    padding-right: 2rem;
  }

  .trick__container {
    gap: 3.5rem;
  }

  .trick__content {
    border-radius: 1.5rem;
  }

  .trick__img {
    width: 110px;
  }

  .trick__title {
    font-size: var(--h3-font-size);
  }

  .discount__container {
    column-gap: 7rem;
  }

  .new__content {
    width: 310px;
    border-radius: 1rem;
    padding: 2rem 0;
  }

  .new__img {
    width: 150px;
  }

  .new__img,
  .new__subtitle {
    margin-bottom: var(--mb-1);
  }

  .new__title {
    font-size: var(--h3-font-size);
  }

  .footer__copy {
    margin-top: 6rem;
  }
}

@media screen and (min-width: 1200px) {
  .swiper-pagination {
    margin-top: var(--mb-2-5);
  }

  .footer__img-one {
    width: 120px;
  }

  .footer__img-two {
    width: 180px;
    top: 30%;
    left: -3%;
  }
}

/* KEYFRAMES */
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

.skull-blur {
  position: absolute;
  width: 680px;
  height: 632px;
  left: -79px;
  top: 75%;
  background: linear-gradient(142.97deg,
      rgba(0, 255, 133, 0.3) 17.43%,
      rgba(63, 239, 60, 0.22) 73.23%);
  filter: blur(157.708px);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

.pt-2 {
  padding-top: 2em !important;
}

/* container */
.padded-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* boxes */
.padded-boxes>* {
  width: 100%;
  background: #eee;
  border-radius: .4rem;
}

/* headings */
.padded-boxes .heading {
  background: #f97171;
  margin: 0;
  padding: 1rem;
  border-top-left-radius: .4rem;
  border-top-right-radius: .4rem;
}

/* padded content */
.padded-boxes .padded {
  padding: .1rem 1rem;
}

/* tablet breakpoint */
@media (min-width:768px) {
  .padded-boxes>* {
    width: calc(50% - 1rem);
  }
}

/* COOKIE POPUP STYLES */

.cookie-popup {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  bottom: -6.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.625rem 0.9375rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, .15);
  line-height: 150%;
  transition: opacity .5s;
  opacity: 0;
  z-index: 100 !important;
}

.cookie-popup--short {
  right: none;
  width: 21.875rem;
}

.cookie-popup--dark {
  background: #000;
  color: #fff;
}

.cookie-popup--not-accepted {
  opacity: 1;
  animation: cookie-popup-in .5s ease forwards;
}

.cookie-popup--accepted {
  opacity: 0;
}

.cookie-popup a {
  color: #56D080;
}

.cookie-popup a:visited {
  color: #56D080;
  text-decoration: none;
}

.cookie-popup-actions {
  flex: 1;
  text-align: right;
}

.cookie-popup-actions button {
  color: #56D080;
  border: none;
  background: none;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0;
  cursor: pointer;
}

.cookie-popup-actions button:hover {
  text-decoration: underline;
}

@keyframes cookie-popup-in {
  from {
    bottom: -6.25rem;
  }

  to {
    bottom: 1.25rem;
  }
}

.card-animation {
  width: 170px;
  height: 170px;
  background-color: #000;
  background: repeating-radial-gradient(at left top, #61E5FF, #165588);
  box-shadow: 0px 0px 10px #000;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(45deg) rotate(-40deg);
  position: relative;
  animation: anim 20s linear infinite;
  border-radius: 200px;
}

.card-animation::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(30px);
  border: 2px solid #201b1c;
  transform: translateZ(60px);
  border-radius: 100px;
}

.card-animation::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(30px);
  border: 2px solid #201b1c;
  transform: translateZ(-60px);
  border-radius: 100px;
}

@keyframes anim {
  from {
    transform: perspective(1000px) rotateX(360deg) rotate(-360deg);
  }

  to {
    transform: perspective(1000px) rotateX(-360deg) rotate(360deg);
  }
}

@keyframes anim1 {
  to {
    transition: all 0.5s;
    transform: perspective(0px) rotate(0deg);
  }
}

.animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-black {
  color: #000 !important;
}
.br-3{
  border-radius: 3rem !important;
}

.icon-feature{
  font-size: 4rem;
  color: #61E5FF;
}

.ipad-swiper {
  --swiper-navigation-sides-offset: 25px;
  --swiper-width: 95vw;
  --swiper-aspect-ratio: 0.75;

  width: var(--swiper-width);
  height: calc(var(--swiper-width) / 3 * var(--swiper-aspect-ratio));
  max-height: 450px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: clip;
  overflow-y: visible;
}
.ipad-swiper .swiper-wrapper {
  z-index: 10;
  align-items: center;
}
.ipad-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  opacity: 0.65;
  scale: 0.65;
  transition: all 0.5s ease;
}
.ipad-swiper .swiper-wrapper .swiper-slide-active {
  z-index: 100;
  opacity: 1;
  scale: 1;
}
.ipad-swiper .swiper-button-next,
.ipad-swiper .swiper-button-prev {
  color: white;
}

.ipad-swiper .swiper-slide-next .image-container > img,
.ipad-swiper .swiper-slide-prev .image-container > img {
  width: 100%;
  height: auto;
}
figure,
figure > * {
  overflow-x: clip;
  overflow-y: visible;
  margin: 0px !important;
}
.image-container {
  max-width: 100%;
  padding: 50px;
}
.image-container > img {
  max-height: 450px;
}
.tablet {
  --width: calc(var(--swiper-width) / 3);
  display: flex;
  background: #0c0c0c;
  border-radius: 37px;
  border: 2px solid #3a3a3a;
  justify-content: center;
  align-items: center;
  position: absolute;
  box-shadow: 1px 7px 19px #00000061, 1px 14px 38px #00000080,
    inset 0 0 4px rgba(255, 255, 255, 0.58);
  width: var(--width);
  height: calc(var(--width) * var(--swiper-aspect-ratio));
  user-select: none;
}
@media screen and (max-width: 750px) {
  .ipad-swiper {
    height: 400px;
  }
  .tablet {
    display: none !important;
  }
  .image-container {
    padding: 0px !important;
    width: 100%;
    max-height: 100%;
  }
  .image-container > img {
    max-width: 75vw !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 1000px) {
  .ipad-swiper {
    height: calc(var(--swiper-width) * var(--swiper-aspect-ratio)) !important;
    margin-top: 3rem;
  }
  .tablet {
    --width: calc(var(--swiper-width) - 150px);
    height: calc(var(--width) * var(--swiper-aspect-ratio) - 50px);
  }
  .image-container {
    --pad: 50px;
    max-height: 100%;
    padding: 0px var(--pad) !important;
    width: calc(var(--swiper-width) - 150px - var(--pad));
  }
  .image-container > img {
    width: 100%;
  }
}
.tablet::before {
  display: block;
  height: 25%;
  width: 120%;
  content: "";
  position: absolute;
  top: 20%;
  background: linear-gradient(180deg, transparent, #ffffff38 100%);
  transform: rotate(12deg);
  filter: blur(1px);
  z-index: 1;
}
.tablet__screen {
  height: 85%;
  width: 84%;
  background-color: #1b1b1b;
  background-size: cover;
  background-position: center;
  z-index: 2;
  overflow: hidden;
}
.tablet__home {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background: linear-gradient(90deg, #5656564f, #0c0c0c);
  border-radius: 50%;
  position: absolute;
  display: grid;
  place-content: center;
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.tablet__camera {
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  background: linear-gradient(270deg, #4a4a4a, transparent);
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tablet__screenContainer {
  height: 100%;
  width: 100%;
  position: relative;
  box-shadow: inset 0px 0px 2px #000000a3;
  overflow: hidden;
}
.tablet__homeSquare {
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #4c4c4c;
}
.tablet.landscape .tablet__screenContainer:before {
  width: 120%;
  top: 22%;
  left: 0;
  background: linear-gradient(180deg, transparent, #9a9a9a0f 100%);
}

.tablet__screenContainer:before {
  display: block;
  height: 25%;
  content: "";
  position: absolute;
  transform: rotate(12deg);
  filter: blur(10px);
  pointer-events: none;
  z-index: 3;
}
.tablet__cameraEye {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #fff;
}