:root {
  /* Desktop max width */
  --max-width: 1600px;
}

/* //////////////////////////////////////////// */
/* Navbar  */
.btn--desktop {
  display: flex;
  visibility: visible;
  align-items: center;
  justify-content: center;
  background-color: #42b3fa;
}

.nav__ele-container {
  background-color: transparent;
}

.nav__hamburger {
  display: none;
  visibility: hidden;
}

.header__container {
  margin-top: -5rem;
  padding-bottom: 3rem;
}

.header__img-container {
  max-width: var(--max-width);
}

.header__items-box {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header__list-container {
  width: 50%;
  padding-left: 10rem;
  align-items: baseline;
}

.header__img {
  height: 35rem;
}

.btn--header {
  position: unset;
}

/* //////////////////////////////////////////// */
/* Header  */
.nav__logo--desktop {
  display: none;
  visibility: hidden;
}

.nav__logo--global {
  display: block;
  visibility: visible;
}

.nav__logo {
  margin: 0;
  padding-right: 12%;
  padding-left: 2rem;
}

.nav__ele-container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__links-container {
  display: flex;
  flex-direction: row;
  margin-top: -4rem;
}

.header__list-ele a {
  font-size: 1rem;
}

.links--icon {
  display: inline;
  padding: 0;
}

.header__list-ele:hover {
  border-bottom: transparent;
  padding-left: 0;
  padding-top: 0.5rem;
}

.header__list-ele:hover > .header__dropdown {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  position: absolute;
  top: 500%;
  left: 0;
  width: 125%;
  z-index: 999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

/* ///////////////////////////////////////////// */
/* Main section header  */
.main__header-title {
  max-width: var(--max-width);
  width: 25%;
  font-size: 2.8rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}

.main__box {
  max-width: var(--max-width);
}

.main__header-description {
  width: 40%;
  padding: 0 -2rem;
}
.main__ele-container {
  max-width: var(--max-width);
}

/* ///////////////////////////////////////////// */
/* Article section */
.article {
  max-width: var(--max-width);
  margin: 0 auto;
}

.article__title {
  font-size: 2.4rem;
  text-align: left;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.article__description {
  font-size: 1.2rem;
  font-weight: 300;
  width: 80%;
  margin: 0 auto;
}

.btn--blue {
  margin: 2rem 10%;
  width: 13rem;
}

.article__down-container {
  margin-left: 5rem;
}

/* ///////////////////////////////////////////// */
/* Revview article */
.review__container {
  max-width: var(--max-width);
}

.review__description {
  font-size: 1.2rem;
  max-width: 60%;
}
/* ///////////////////////////////////////////// */
/* Price article */
.price {
  max-width: var(--max-width);
  padding: 0 5rem;
}

/* ///////////////////////////////////////////// */
/* Apps section */
.app__container {
  max-width: var(--max-width);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.app__img-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.app_h1 {
  width: 50%;
  text-align: left;
  font-size: 2.8rem;
  margin: 0;
}
.app__img-single {
  height: 4rem;
  margin: 1rem;
}

/* ///////////////////////////////////////////// */
/* Footer section */
.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    'logo services links downloads'
    'footer footer footer footer';
}

.footer__header,
.footer__services {
  margin-left: 0;
  width: 80%;
  margin: 0 auto;
}
.footer__logo {
  padding-top: 1.25rem;
}

.footer__description {
  margin: 2rem 0;
}
.footer__bottom-description {
  font-size: 1rem;
}

#menu-switcher:checked + .header__links-container {
  display: flex;
  flex-direction: row;
  margin-top: -4rem;
  background-color: transparent;
}
