/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --black-color: #000;
  --white-color: #fff;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --logo-font: 'Luckiest Guy', cursive;
  --biggest-font-size: 2.5rem;
  --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;
  --smallest-font-size: 0.65rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-overlay-product: 101;
  --z-product-detaiL: 102;
  --z-overlay: 111;
  --z-modal: 112;
  --z-modal-close: 113;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.98rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --smallest-font-size: 0.5rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.3s;
  /* For animation dark mode */
}

/* <--========== CONTACT FORMULAR START ==========--> */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: var(--z-overlay);
}

.hidden {
  display: none;
}

.not-visible {
  visibility: hidden;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;

  padding: 2rem 2rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: var(--z-modal);
  transition: 0.4s;

  background-color: var(--first-color);
  padding: 2rem 1rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-light);
  text-align: center;
  color: var(--white-color);
}

.modal .hidden {
  top: -100%;
}

.close-modal,
.close-modal-message {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white-color);
  cursor: pointer;
  border: 2px solid var(--white-color);
  background: none;
  line-height: 1;
  border-radius: 1rem;
  padding: 0 0.5rem;
  transition: 0.3s;
  z-index: var(--z-modal-close);
}

.close-modal:hover,
.close-modal-message:hover {
  border: 2px solid var(--white-color);
  border-radius: 1rem;
  background-color: var(--white-color);
  color: var(--first-color-alt);
}
/* <--========== CONTACT FORMULAR END ==========--> */
h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

.d-hidden {
  display: none !important;
}

/*=============== THEME ===============*/
.change-theme {
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color: hsl(228, 66%, 62%);
  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 70%);
  --border-color: hsl(228, 16%, 14%);
  --body-color: hsl(228, 12%, 8%);
  --container-color: hsl(228, 16%, 12%);
}

/*==========
    Color changes in some parts of
    the website, in dark theme
==========*/
/* .dark-theme .home__search, */
.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev {
  border: 3px solid var(--border-color);
}

.dark-theme .nav-menu,
.dark-theme .home__img,
.dark-theme .popular__card:hover,
.dark-theme .value__img,
.dark-theme .whatIdo__img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value__accordion-icon,
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .accordion-open .whatIdo__accordion-icon,
.dark-theme .accordion-open .whatIdo__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup {
  box-shadow: none;
}

body.dark-theme #cookiePopup {
  background: var(--border-color);
  color: var(--white-color);
}

.dark-theme .whatIdo__orbe,
.dark-theme .whatIdo__accordion-icon,
.dark-theme .whatIdo__accordion-arrow,
.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .contact__orbe,
.dark-theme .contact__card i,
.dark-theme .contact__card-button,
.dark-theme .subscribe__container,
.dark-theme .modal {
  background-color: var(--container-color);
}

.dark-theme .subscribe__container,
.dark-theme .modal {
  border: 6px solid var(--border-color);
}

.dark-theme .subscribe__description {
  color: var(--text-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  /* background-color: hsl(228, 4%, 25%); */
  background-color: var(--first-color);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 4%, 35%);
}

.dark-theme .nav__link,
.dark-theme .scroll-header .nav-link {
  color: var(--white-color);
}

.dark-theme .footer__link,
.dark-theme .footer__social-link {
  transition: color 0.3s;
}
.dark-theme .footer__link:hover,
.dark-theme .footer__social-link:hover {
  color: var(--second-color);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal*/
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: 0.4s;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: #fff;
  display: inline-flex;
  align-items: center;
  /* column-gap: 1rem; */

  font-weight: var(--font-medium);
  font-family: var(--logo-font);
  font-size: var(--h1-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav__logo img {
  max-height: 40px;
  margin-right: 0.25rem;
}

.header-logo-black {
  display: none;
}
/*
.nav__logo:hover {
  color: var(--first-color);
} */
.dot {
  transition: color 0.3s;
  color: var(--second-color);
}

.nav__logo:hover .dot {
  color: var(--first-color);
}

@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsl(228, 66%, 45%, 0.15);
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    border-radius: 1.25rem;
    transition: 0.4s;
  }

  .nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__link {
    color: var(--text-color);
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
  }

  .nav__link i {
    font-size: 1.25rem;
  }

  .nav__link span {
    display: none;
  }
}

/* contact form message */

.form-messages {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3rem;
  padding: 2rem;
  border-radius: 2rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 80%;
  max-height: 200px;
  border: 2px solid white;
  background-color: #000;
  color: #fff;
  z-index: var(--z-overlay);
  font-size: 1.15rem;
  transition: background-color 0.3s;
}

.form-messages:hover {
  background-color: #3d3d3d;
  cursor: pointer;
}

.error {
  color: red;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsl(228, 4%, 15%, 0.1);
}
.dark-theme .scroll-header .nav__logo {
  color: var(--white-color);
}
.dark-theme .scroll-header .header-logo-white {
  display: inline-flex;
}
.dark-theme .scroll-header .header-logo-black {
  display: none;
}

.scroll-header .nav__logo {
  color: var(--black-color);
}
.scroll-header .header-logo-white {
  display: none;
}
.scroll-header .header-logo-black {
  display: inline-flex;
}

.scroll-header .change-theme {
  color: var(--title-color);
}

/* Active link */
.active-link {
  background: linear-gradient(170deg, hsl(228, 66%, 53%), hsl(228, 66%, 47%));
  color: #fff;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, 0.25);
}

/*=============== HOME ===============*/
.home {
  background: linear-gradient(170deg, hsl(0, 0%, 25%) 0%, hsl(0, 0%, 6%) 30%);
  padding-bottom: 0;
  padding-top: 2.5rem;
}

.home__container {
  padding-top: 4rem;
  row-gap: 3.5rem;
}

.home__title,
.home__value-number {
  color: #fff;
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}

.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.home__value {
  display: flex;
  column-gap: 2.5rem;
  justify-content: space-around;
}

.home__value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.home__value-number span {
  color: var(--second-color);
}

.home__value-description {
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}

.home__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.home__orbe {
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, var(--body-color));
  border-radius: 20px 20px 0 0;
}

.home__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 16px 16px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}

.home__img .d-mobile {
  display: block;
}

.home__img .d-desktop {
  display: none;
}
/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background: linear-gradient(
    101deg,
    hsl(228, 66%, 53%),
    hsl(228, 66%, 47%) 100%
  );
  color: #fff;
  padding: 8px 22px;
  border-radius: 0.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsl(228, 66%, 45%, 0.25);
  transition: background 0.3s;
  cursor: pointer;
}

.button:hover {
  background: linear-gradient(
    to bottom,
    hsl(228, 84%, 66%),
    hsl(228, 66%, 47%) 100%
  );
  box-shadow: 0 4px 12px hsl(228, 66%, 45%, 0.25);
}

.nav__button {
  display: inline;
  font-size: 0.8rem;
  padding: 8px 10px;
  text-wrap: nowrap;
}

.buttons-left {
  display: flex;
  column-gap: 0.75rem;

  align-items: center;
}

/*=============== WHAT I DO ===============*/
.whatIdo__container {
  row-gap: 3rem;
}

.whatIdo__images {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
}

.whatIdo__orbe {
  width: 80%;
  height: 335px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 20px 20px 16px 16px;
}

.whatIdo__img {
  position: absolute;
  width: 75%;
  height: 300px;
  overflow: hidden;
  border-radius: 16px 16px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}

.whatIdo__img img {
  position: absolute;
  top: -11rem;
}

.whatIdo__description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.whatIdo__accordion {
  display: grid;
  row-gap: 1.5rem;
}

.whatIdo__accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
}

.whatIdo__accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.whatIdo__accordion-icon {
  background-color: var(--first-color-alt);
  padding: 5px;
  border-radius: 0.25rem;
  font-size: 18px;
  color: var(--white-color);
  margin-right: 0.75rem;
  transition: 0.3s;
}

.whatIdo__accordion-title {
  font-size: var(--normal-font-size);
}

.whatIdo__accordion-arrow {
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: 0.25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: 0.3s;
}

.whatIdo__accordion-arrow i {
  transition: 0.4s;
}

.whatIdo__accordion-description {
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.whatIdo__accordion-description > p {
  margin-bottom: 0.5rem;
}

.whatIdo__accordion-description > p a:visited,
.whatIdo__accordion-description > p a:active,
.whatIdo__accordion-description > p a {
  color: var(--second-color);
  font-weight: bold;
}

.whatIdo__accordion-description p strong,
.whatIdo__accordion-description p span {
  color: var(--second-color);
  font-weight: bold;
}

.whatIdo__accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

.example-image-link:hover img {
  box-shadow: 0 0 1rem rgba(18, 19, 23, 0.7);
}

.example-image {
  width: 100%;
  max-height: 9rem;
}

/*Rotate icon and add shadows*/
.accordion-open {
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .whatIdo__accordion-icon {
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .whatIdo__accordion-arrow {
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .whatIdo__accordion-arrow i {
  transform: rotate(-180deg);
}

.whatIdo__accordion-description__images-box {
  margin: 1rem auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
}

.example-image {
  max-width: 8rem;
}

/* splides */
.splidejs {
  grid-column: 1/-1;
  width: 100%;
  margin-bottom: 5rem;
  cursor: grab;
}

.container.splidejs {
  margin-left: 0;
}

.img__gallery {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
}

.podzim2023_odkaz {
  width: 100%;
  min-height: 3rem;
  box-shadow: 0 0 3px rgba(18, 19, 23, 0.6);
  border-radius: 1rem;
  overflow: hidden;
}

.example-image2 {
  border-radius: 1rem;
  height: 100%;
}

.video {
  justify-content: center;
}

.video video {
  max-width: 100%;
  max-height: 500px;
  margin-bottom: 3rem;
}
/*=============== POPULAR ===============*/
.popular__container {
  padding: 1rem 0 5rem;
}

.popular__card {
  width: 290px;
  background-color: var(--container-color);
  padding: 0.5rem 0.5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: 0.4s;
}

.popular__img {
  max-height: 18rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.popular__data {
  padding: 0 1rem 0 0.5rem;
}

.popular__price {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.popular__price span {
  color: var(--second-color);
}

.popular__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
}

.popular__description {
  font-size: var(--small-font-size);
}

.edition {
  margin-top: 0.5rem;
  font-weight: bold;
}

.popular__card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, 0.1);
}

.popular__button {
  margin-top: 2rem;
  display: block;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

/* Swiper class */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
}

.swiper-button-next,
.swiper-button-prev {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px 40px;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: calc(50% - 10rem);
}

.swiper-button-next {
  right: calc(50% - 10rem);
}

/*=============== VALUE ===============*/
.value__container {
  row-gap: 3rem;
}

.value__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.value__orbe {
  width: 80%;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 20px 20px 16px 16px;
}

.value__img {
  position: absolute;
  width: 75%;
  height: 300px;
  overflow: hidden;
  border-radius: 16px 16px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}

.value__img img {
  position: absolute;
  top: -2rem;
}

.value__description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value__accordion {
  display: grid;
  row-gap: 1.5rem;
}

.value__accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
}

.value__accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value__accordion-icon {
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: 0.25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: 0.75rem;
  transition: 0.3s;
}

.value__accordion-title {
  font-size: var(--small-font-size);
}

.value__accordion-arrow {
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: 0.25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: 0.3s;
}

.value__accordion-arrow i {
  transition: 0.4s;
}

.value__accordion-description {
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-description > p {
  margin-bottom: 0.5rem;
}

.value__accordion-description > p a:visited,
.value__accordion-description > p a:active,
.value__accordion-description > p a {
  color: var(--second-color);
  font-weight: bold;
}

.value__accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

/*Rotate icon and add shadows*/
.accordion-open {
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .value__accordion-icon {
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .value__accordion-arrow {
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, 0.1);
}

.accordion-open .value__accordion-arrow i {
  transform: rotate(-180deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 2rem;
}

.contact__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.contact__orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 20px 20px 16px 16px;
}

.contact__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}

.contact__description {
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}

.contact__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 0.75rem;
}

.contact__card-box {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem 0.75rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.contact__card-info {
  display: flex;
  align-items: flex-start;
  column-gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact__card i {
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--first-color);
}

.contact__card-title {
  font-size: var(--normal-font-size);
}

.contact__card-description {
  font-size: var(--smaller-font-size);
}

.contact__card-button {
  font-size: var(--small-font-size);
  padding: 14px 0;
  width: 100%;
  border-radius: 0.25rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
  display: inline-flex;
  justify-content: center;
}

.contact__card-button:hover {
  background-color: var(--first-color);
  color: #fff;
}

.contact__card-box:hover {
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.1);
}

/*=============== SUBSCRIBE ===============*/
.subscribe {
  padding: 2.5rem 0;
}

.subscribe__container {
  background-color: var(--first-color);
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-light);
  text-align: center;
}

.subscribe__title {
  font-size: var(--h2-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.subscribe__description {
  color: hsl(228, 90%, 92%);
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.subscribe__button {
  border: 2px solid #fff;
  background: var(--first-color-light);
  font-size: var(--small-font-size);
}

.subscribe__button:hover {
  background-color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.footer__logo img {
  max-width: 2rem;
}

.dark-theme .footer__logo .header-logo-white {
  display: inline-flex;
}
.dark-theme .footer__logo .header-logo-black {
  display: none;
}

.scroll-header .nav__logo {
  color: var(--black-color);
}
.footer__logo .header-logo-white {
  display: none;
}
.footer__logo .header-logo-black {
  display: inline-flex;
}

.footer__description,
.footer__link {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.footer__content,
.footer__links {
  display: grid;
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links {
  row-gap: 0.5rem;
}

.footer__link {
  color: var(--text-color);
  transition: 0.3s;
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.25rem;
  color: var(--text-color);
  transition: 0.3s;
}

.footer__social-link:hover {
  color: var(--title-color);
}

.footer__info,
.footer__privacy {
  display: flex;
}

.footer__info {
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
  font-size: var(--smallest-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  opacity: 0.4;
}

.footer__copy a:visited,
.footer__copy a,
.footer__copy a:focus {
  color: var(--second-color);
}
/*=============== LOGIN ===============*/
.login {
  position: relative;
  height: 100vh;
  display: grid;
  align-items: center;
}

.login__form {
  position: relative;
  margin-inline: 1.5rem;
}

.login__title {
  text-align: center;
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 2rem;
  color: var(--white-color);
}

.login__content,
.login__box {
  display: grid;
}

.login__content {
  row-gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.login__box {
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 0.75rem;
  border-bottom: 2px solid var(--white-color);
}

.login__icon {
  font-size: 1.25rem;
}

.login__input {
  width: 100%;
  padding-block: 0.8rem;
  background: none;
  color: var(--white-color);
  position: relative;
  z-index: 1;
}

.login__box-input {
  position: relative;
}

.login__label {
  position: absolute;
  left: 0;
  top: 13px;
  font-weight: var(--font-medium);
  transition: top 0.3s, font-size 0.3s;
}

.login__label span {
  color: var(--second-color);
}

.login__box:nth-child(2) input {
  padding-right: 1.8rem;
}

.textareaa {
  resize: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  font-size: var(--normal-font-size);
}

.textareaa:active,
.textareaa:focus {
  border: none;
  outline: none;
}

.login__box .textarea-icon {
  align-self: flex-start;
  margin-top: 1rem;
}

.login__button.button {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  cursor: pointer;
  border: 2px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.send-icon {
  transition: transform 0.4s;
}

.login__button:hover .send-icon {
  transform: translateX(5px);
}

.login__input:focus + .login__label {
  top: -12px;
  font-size: var(--small-font-size);
}

.login__input:not(:placeholder-shown).login__input:not(:focus) + .login__label {
  top: -12px;
  font-size: var(--small-font-size);
}

/*=============== DETAILS PRODUCTS ===============*/

.product-overlay {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.product-detail {
  z-index: 101;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 600px;
  border: 3px solid red;
  background-color: #fff;
  padding: 1rem 1.5rem 2rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.product-detail img {
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(18, 19, 23, 0.3);
  height: 100%;
  object-fit: cover;
  display: flex;
}

.product-detail h1 {
  grid-column: 1/-1;
}

.product-detail .description {
  grid-column: 2/4;
}

.product-detail .description #description {
  margin-top: 0.25rem;
  display: block;
}

.product-detail .edition {
  grid-column: 1/-1;
}

.product-detail .price {
  grid-column: 1/-1;
  justify-self: center;
  font-weight: bold;
  font-size: var(--h2-font-size);
}

.product-detail .price #price {
  color: var(--second-color);
}

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 576px) {
  .login {
    justify-content: center;
  }
  .login__form {
    width: 100%;
    padding: 0 3rem 2.5rem;
    border-radius: 1.5rem;
  }
  .login__title {
    font-size: 2rem;
  }

  .login__button {
    padding: 1rem;
    font-size: var(--normal-font-size);
  }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb {
  /* background-color: hsl(228, 8%, 64%); */
  background-color: var(--first-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 54%);
  border-radius: 0.5rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, 0.1);
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 0.25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: 0.3s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
  color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 8rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 400px) {
  .nav__logo p {
    font-size: 1rem;
  }
}

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }

  .nav__logo p {
    font-size: 0.85rem;
  }

  .section {
    padding: 3.5rem 0 1rem;
  }

  .home {
    padding-bottom: 0;
  }

  .contact__card {
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }
}

@media screen and (max-width: 320px) {
  .nav__menu {
    padding: 1.3rem 1.5rem;
  }

  .home__value {
    column-gap: 1rem;
  }

  .home__img {
    width: 220px;
    height: 280px;
  }

  .home__orbe {
    width: 240px;
    height: 264px;
  }

  .popular__card {
    width: 230px;
    padding: 0.5rem 0.5rem 0.75rem;
  }

  .value__img,
  .contact__img {
    width: 220px;
    height: 260px;
  }

  .value__orbe,
  .contact__orbe {
    width: 236px;
    height: 280px;
  }

  .subscribe__container {
    padding: 2rem 1rem;
  }

  .footer__content {
    gap: 2.5rem;
  }
}

/* For medium devices */

@media screen and (min-width: 576px) {
  .buttons-left {
    column-gap: 2rem;
  }

  .nav__logo img {
    max-height: 40px;
    margin-right: 1rem;
  }

  .nav__logo p {
    font-size: 2rem;
  }

  .nav__button {
    display: inline;
    font-size: var(--normal-font-size);
    padding: 8px 22px;
  }

  .nav__menu {
    width: 65%;
  }

  .container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .contact__card {
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }

  .container.splidejs {
    margin-left: 1.5rem;
  }

  .video video {
    max-height: 700px;
  }
}

@media screen and (min-width: 767px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }

  .home__orbe {
    align-self: flex-end;
  }

  .home__data {
    padding-bottom: 2rem;
  }

  .home__img .d-mobile {
    display: none;
  }

  .home__img .d-desktop {
    display: block;
  }

  .whatIdo__images {
    order: -1;
  }

  .whatIdo__orbe,
  .value__orbe {
    width: 266px;
    height: 316px;
  }

  .whatIdo__img,
  .value__img {
    width: 250px;
  }

  .whatIdo__img img,
  .value__img img {
    position: relative;
    top: initial;
  }

  .whatIdo__container {
    grid-template-columns: 40% 1fr;
    align-items: center;
  }

  .value__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    padding: 6px 10px;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: var(--first-color-light);
    border-color: var(--first-color-light);
    color: white;
  }

  .swiper-button-prev {
    left: calc(50% - 5rem);
  }

  .swiper-button-next {
    right: calc(50% - 5rem);
  }

  .contact__images {
    order: 1;
  }

  .contact__card {
    justify-content: initial;
  }

  .subscribe__container {
    padding: 3rem 13rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .section {
    padding: 7.5rem 0 1rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .section__subtitle {
    font-size: var(--normal-font-size);
  }

  .nav {
    height: calc(var(--header-hight) + 1.5rem);
  }

  .button {
    padding: 8px 20px;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
  }

  .buttons-left {
    column-gap: 0;
  }
  .nav__menu {
    width: initial;
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    column-gap: 3rem;
    font-weight: var(--font-semi-bold);
  }

  .nav__list:last-child {
    padding-right: 1rem;
  }

  .nav__link,
  .dark-theme .nav__link {
    color: var(--text-color-light);
    transition: color 0.3s, font-weight 0.3s;
  }

  .nav__link:hover,
  .dark-theme .nav__link:hover {
    color: var(--first-color);
  }

  .nav__link i {
    display: none;
  }

  .nav__button {
    display: inline-block;
    margin: 1rem;
  }

  .nav__logo img {
    max-height: 50px;
  }

  .active-link {
    background: none;
    box-shadow: none;
    color: var(--second-color);
    font-weight: var(--font-semi-bold);
  }

  .change-theme {
    margin: 0 1.8rem;
    color: var(--text-color-light);
  }

  .scroll-header .nav__link,
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .scroll-header .nav__link:hover {
    color: var(--first-color);
  }

  .scroll-header .active-link {
    color: var(--second-color);
  }

  .home {
    padding-bottom: 0;
  }

  .home__container {
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home__data {
    padding-bottom: 4rem;
  }

  .home__title {
    margin-bottom: 2rem;
  }

  .home__description {
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  .home__value {
    column-gap: 3.5rem;
  }

  .home__orbe {
    width: 504px;
    height: 611px;
    border-radius: 25px 25px 0 0;
  }

  .home__img {
    width: 472px;
    height: 634px;
    border-radius: 12px 12px;
    bottom: -2.5rem;
  }

  .img__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .video,
  .video video {
    display: none;
  }

  .popular__container {
    padding-top: 3rem;
  }

  .popular__card {
    width: 320px;
    padding: 0.75rem 0.75rem 2rem;
  }

  .popular__data {
    padding: 0 0.25rem 0 0.75rem;
  }

  .value__container,
  .whatIdo__container,
  .contact__container {
    align-items: flex-start;
    column-gap: 5rem;
  }

  .whatIdo__orbe {
    width: 500px;
    height: 641px;
    border-radius: 28px 28px 16px 16px;
  }

  .whatIdo__img {
    width: 370px;
    height: 601px;
    border-radius: 23px 23px 12px 12px;
  }

  .whatIdo__img img {
    max-width: initial;
    width: 100%;
    height: auto;
    position: absolute;
  }

  .value__orbe,
  .contact__orbe {
    width: 501px;
    height: 641px;
    border-radius: 28px 28px 16px 16px;
  }

  .value__img,
  .contact__img {
    width: 461px;
    height: 601px;
    border-radius: 23px 23px 12px 12px;
  }

  .value__img img,
  .contact__img img {
    max-width: initial;
    width: 490px;
  }

  .value__description,
  .whatIdo__description,
  .contact__description {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .value__accordion-title {
    font-size: var(--normal-font-size);
  }

  .value__accordion-item {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-description {
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .contact__card {
    grid-template-columns: repeat(2, 200px);
  }

  .contact__card-box {
    padding: 28px 1.5rem 1.5rem;
  }

  .subscribe__container {
    padding: 4rem 10rem 4.5rem;
    border-radius: 2rem;
    border: 12px solid var(--first-color-light);
  }

  .subscribe__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .subscribe__description {
    font-size: var(--normal-font-size);
    padding: 0 8rem;
  }

  .subscribe__button {
    font-size: var(--normal-font-size);
  }

  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links {
    row-gap: 1rem;
  }

  .footer__info {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }

  .show-scroll {
    bottom: 3rem;
    right: 3rem;
  }

  .modal {
    width: 70%;
    max-height: 95vh;
    padding: 1rem 0.5rem;
  }
}

@media screen and (min-width: 1040px) {
  .container,
  .container.splidejs {
    margin-left: auto;
    margin-right: auto;
  }

  .home__container {
    column-gap: 4rem;
  }
}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.5;
  }
}

@media screen and (min-width: 3840px) {
  body {
    zoom: 2;
  }
}

/*======= ADDED DETAIL PRODUCTS STYLES ========*/
.not-visible {
  visibility: hidden;
}

/*=============== DETAILS PRODUCTS ===============*/

.product-overlay {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.product-detail {
  z-index: 101;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 600px;
  border: 3px solid red;
  background-color: #fff;
  padding: 1rem 1.5rem 2rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.product-detail img {
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(18, 19, 23, 0.3);
  height: 100%;
  object-fit: cover;
  display: flex;
}

.product-detail h1 {
  grid-column: 1/-1;
}

.product-detail .description {
  grid-column: 2/4;
}

.product-detail .description #description {
  margin-top: 0.25rem;
  display: block;
}

.product-detail .edition {
  grid-column: 1/-1;
}

.product-detail .price {
  grid-column: 1/-1;
  justify-self: center;
  font-weight: bold;
  font-size: var(--h2-font-size);
}

.product-detail .price #price {
  color: var(--second-color);
}
