/* Fonts & utilities */
html {
  font-family: 'Poppins', sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
}
:root {
  /* Backgrounds */
  --main-nav-color: #2c2c2c;
  --btn-bg-green: #37ebed;

  --btn-bg-hover: #1bb0b3b7;

  /* Fonts colors */
  --main-black: #3d3d3d;
  --main-white: #f8f8f8;
}
/* ////////////////////////////////////// */
/* Hamburger */
.btn {
  border: none;
  height: 3rem;
  width: 10rem;
  color: var(--main-white);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border-radius: 0.5rem;
  background-color: var(--btn-bg-green);
  transition: all 0.5s;
}

.btn:hover {
  background-color: var(--btn-bg-hover);
  transform: scale(1.1);
}

.nav__hamburger {
  width: 3rem;
  height: 2rem;
  border: 0;
  border-top: 0.25rem solid var(--main-white);
  background: transparent;
  position: relative;
}

.nav__hamburger::before,
.nav__hamburger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 0.25rem solid var(--main-white);
  transform: translateY(0.75rem);
}

.nav__hamburger::after {
  transform: translateY(1.75rem);
}

input {
  display: none;
  visibility: hidden;
}
/* ////////////////////////////////////// */
/* Navbar  */
.nav__ele-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-nav-color);
  padding: 0 1rem;
  flex-wrap: wrap;
  position: relative;
}

.nav__ele-container ul {
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
}

.nav__logo {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  color: var(--main-white);
}
.nav__logo--global {
  display: none;
  visibility: hidden;
}

.header__btn {
  display: none;
  visibility: hidden;
}
/* Links */
.header__links-container {
  display: none;
  height: 0;
  flex-direction: column;
  background-color: rgb(44, 44, 44, 0.9);
  transition: all 0.3s ease-in;
  z-index: 999;
}

#menu-switcher:checked + .header__links-container {
  display: inline-block;
  height: min-content;
}

.header__list-ele {
  padding: 0.1rem 0;
  transition: all 0.3s ease-in;
  border-bottom: 0.2rem solid transparent;
}

.header__list-ele:hover {
  border-bottom: 0.2rem solid var(--main-white);
  padding-left: 2rem;
}

.header__list-ele a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--main-white);
  letter-spacing: 0.2rem;
  padding: 0.5rem 1rem;
}

.links--icon {
  height: 1.2rem;
  filter: invert(96%) sepia(8%) saturate(199%) hue-rotate(240deg)
    brightness(115%) contrast(95%);
}

.header__list-ele--dropdown {
  position: relative;
}

.header__list-ele--dropdown > .header__dropdown {
  display: none;
  border-bottom: 0.2rem solid transparent;
}

.header__dropdown > .header__dropdown-link {
  white-space: nowrap;
  padding: 0.1rem 0;
  transition: all 0.3s ease-in;
  border-bottom: 0.2rem solid transparent;
}

.header__dropdown-link {
  transition: all 0.5s;
}

.header__dropdown-link:hover {
  border-bottom: 0.2rem solid var(--main-white);
  padding-left: 2rem;
}

.header__dropdown > .header__dropdown-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--main-white);
  letter-spacing: 0.2rem;
  padding: 0.5rem 1rem;
}

/* ////////////////////////////////////// */
/* Header  */
.header__container {
  background-image: url(../images/banner/banner.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.header__list-container {
  margin: 0 1rem;
  padding: 3rem 0;
  color: var(--main-white);
  letter-spacing: 0.1rem;
}

.header__title {
  font-size: 1.6rem;
  color: var(--main-white);
}

.header__description {
  padding-top: 0.5rem;
  font-size: 1rem;
  color: var(--main-white);
}

.btn--header {
  margin: 2.5rem 0rem;
  height: 3.5rem;
  width: 12rem;
}

.header__img-container {
  display: flex;
  justify-content: center;
}

.header__img {
  height: 30rem;
}

.btn--desktop {
  display: none;
  visibility: hidden;
}
/* ////////////////////////////////////// */
/* Main section header  */
.main__box {
  width: 90%;
  margin: 0 auto;
  color: var(--main-black);
}

.main__header-title {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 2rem;
  color: var(--main-black);
}

.main__ele-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main__header-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 5rem;
  border-radius: 0.5rem;
  background: rgb(91, 177, 255);
  background: linear-gradient(
    270deg,
    rgba(91, 177, 255, 1) 40%,
    rgba(4, 131, 246, 1) 100%
  );
  margin: 2rem;
}

.wrap--orange {
  background: rgb(253, 172, 92);
  background: linear-gradient(
    270deg,
    rgba(253, 172, 92, 1) 40%,
    rgba(253, 143, 94, 1) 100%
  );
}
.wrap--green {
  background: rgb(55, 239, 141);
  background: linear-gradient(
    270deg,
    rgba(55, 239, 141, 1) 40%,
    rgba(55, 239, 141, 1) 100%
  );
}

.main__header-svg {
  width: 3rem;
}

.main__header-description {
  text-align: center;
  font-size: 1.2rem;
  width: 40%;
  color: var(--main-black);
}
/* ////////////////////////////////////// */
/* Article section */

.article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding-top: 5rem;
  color: var(--main-black);
}

.article__title {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 2rem auto;
  width: 90%;
}

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

.btn--blue {
  margin: 2rem 5%;
  width: 13rem;
  background-color: #0181f5;
}

.article__down-container {
  width: 90%;
  margin: 0 auto;
}

.article__img {
  margin: 3rem auto;
  width: 30rem;
}
/* ////////////////////////////////////// */
/* Revview article */

.review {
  background: linear-gradient(to top, #6ab5fcd5, #6ab5fcd5),
    url(../images/banner/testmonial.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 35rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}

.review__title {
  text-align: center;
  color: var(--main-white);
  font-size: 2.2rem;
  font-weight: 300;
  margin: 3rem 0;
}

.review__description {
  text-align: center;
  color: var(--main-white);
  font-size: 1rem;
  font-weight: 500;
  width: 80%;
  margin: 0 auto;
}

.review__stars-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  font-size: 1.8rem;
  color: #ffd35a;
}

.fa-star {
  margin: 0 0.2rem;
}

.review__author {
  color: var(--main-white);
  font-size: 1rem;
  margin: 0.3rem;
}
/* ////////////////////////////////////// */
/* Price article */
.price {
  margin: 0 auto;
}

.price__header {
  text-align: center;
  margin: 2rem 0;
  color: var(--main-black);
  grid-area: grid-h;
}

.price__title {
  font-size: 2.4rem;
  font-weight: 300;
  margin: 2rem 0;
}

.price__description {
  font-size: 1rem;
  font-weight: 300;
}

.price__single-table {
  width: 80%;
  margin: 3rem auto;
  box-shadow: 0px 11px 18px -12px rgba(66, 68, 90, 0.53);
  background-color: #fff;
  position: relative;
}
.grid-a {
  grid-area: grid-a;
}
.grid-b {
  grid-area: grid-b;
}
.grid-c {
  grid-area: grid-c;
}
.price__table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 4rem;
  background-color: #e9f4fe;
  color: #2086f6;
}

.header--orange {
  background-color: #fef4ee;
  color: #fdb071;
}

.header--green {
  background-color: #e8fcf1;
  color: #2ddb9b;
}

.price__table-title {
  color: var(--main-nav-color);
  font-weight: 600;
}

.price__table-ammount {
  font-weight: 600;
}

.price__li-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--main-black);
  padding: 1rem 0 5rem 0;
}

.price__li-container li {
  margin: 1rem auto;
}

.btn--price {
  position: absolute;
  bottom: 5%;
  left: 50%;
  border: 0.1rem solid #85b7ff;
  background-color: #ffffff;
  color: #85b7ff;
  font-size: 0.8rem;
  width: 6rem;
  height: 2rem;
  margin-left: -3rem;
}

.btn--price:hover {
  background-color: #85b7ff;
  color: #ffffff;
}
/* ////////////////////////////////////// */
/* Apps section */
.app {
  height: 20rem;
  width: 100%;
  margin: 0 auto;
  background-color: #5db2ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.app__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app_h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--main-white);
  margin: 1rem 0;
}
/* ////////////////////////////////////// */
/* Footer section */
.footer {
  width: 100%;
  background-color: #1f1f1f;
  height: min-content;
  color: var(--main-white);
}

.footer__logo {
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 4rem;
}

.footer__header {
  width: 90%;
  margin: 0 auto;
}

.footer__description {
  font-size: 0.8rem;
  color: #c7c7c7;
}

.footer__icons {
  display: flex;
  margin: 2rem 0;
}

.footer__icon-wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #565656;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.5s;
}

.footer__icon-wraper:hover {
  background-color: #333333;
  transform: scale(0.9);
}

.footer__icon {
  height: 1.5rem;
  filter: brightness(0) saturate(100%) invert(76%) sepia(4%) saturate(29%)
    hue-rotate(4deg) brightness(109%) contrast(86%);
}

.footer__services {
  width: 90%;
  margin: 1.25rem auto;
}
.footer__services-title {
  margin: 1.5rem 0;
  font-size: 1.4rem;
}
.footer__li-item {
  font-size: 0.8rem;
  color: #c7c7c7;
  margin: 1.25rem 0;
  cursor: pointer;
}

.footer__bottom {
  background-color: #000000;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.footer__bottom-description {
  width: 80%;
  color: #c7c7c7;
  font-size: 0.8rem;
  text-align: center;
}

.footer__bottom-svg {
  height: 0.8rem;
  filter: brightness(0) saturate(100%) invert(76%) sepia(4%) saturate(29%)
    hue-rotate(4deg) brightness(109%) contrast(86%);
}

.footer__span {
  color: #327feb;
}

.logo--grid {
  grid-area: logo;
}
.services--grid {
  grid-area: services;
}
.links--grid {
  grid-area: links;
}
.downloads--grid {
  grid-area: downloads;
}
.footer--grid {
  grid-area: footer;
}
.header__dropdown,
.links--icon {
  display: none;
}
