* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1144px;
  margin: auto;
}

.box {
  max-width: 1064px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .box {
    padding: 0 20px;
  }
}
@media screen and (max-width: 834px) {
  .box {
    grid-template-columns: auto 1fr auto;
  }
}
@media screen and (max-width: 768px) {
  .box {
    grid-template-columns: 1fr auto 1fr;
  }
}
@media screen and (max-width: 390px) {
  .box {
    padding: 0 5px;
    grid-template-columns: auto 1fr auto;
  }
}

#menu {
  justify-self: start;
}
@media screen and (max-width: 768px) {
  #menu {
    background: #fff;
    width: 100vw;
    height: auto;
    padding: 50px 0;
    display: flex;
    visibility: visible;
    opacity: 1;
    justify-content: center;
    text-align: center;
    border-radius: 3px;
    transition: all 300ms ease-in-out;
    position: fixed;
    top: -100vh;
    left: 0px;
    z-index: 9;
  }
  #menu.active {
    top: 0;
  }
}
#menu ul {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  #menu ul {
    flex-direction: column;
    gap: 0;
    list-style-type: none;
    padding: 0;
  }
}
#menu ul li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  #menu ul li {
    margin: 10px 0;
  }
}
#menu ul li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 165%;
  color: #1c1b1b;
  text-decoration: none;
}
#menu ul li a:hover {
  color: silver;
  transition: 0.3s;
}

#toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  #toggle {
    display: block;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 36px;
    flex-shrink: 0;
  }
  #toggle input {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #toggle input:checked + span {
    background: transparent;
  }
  #toggle input:checked + span::before {
    transform: rotate(45deg);
    top: 0;
  }
  #toggle input:checked + span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  #toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #000;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    z-index: 1;
  }
  #toggle span::before, #toggle span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    left: 0;
    transition: all 0.3s;
  }
  #toggle span::before {
    top: -10px;
  }
  #toggle span::after {
    top: 10px;
  }
}

.logo {
  justify-self: center;
}

.links_right {
  justify-self: end;
}
.links_right ul {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 440px) {
  .links_right ul {
    gap: 0;
  }
}
.links_right ul li {
  list-style: none;
}

.item {
  background-color: #f0efeb;
  margin-bottom: 60px;
}

.item__describe {
  display: flex;
  justify-content: space-between;
  max-width: 1064px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .item__describe {
    padding: 0 20px;
  }
}
@media screen and (max-width: 440px) {
  .item__describe {
    display: block;
    text-align: center;
  }
}
.item__describe img {
  margin-bottom: 24px;
  max-width: 100%;
}

.text {
  max-width: 534px;
  padding: 90px 0;
}
.text h1 {
  font-weight: 700;
  font-size: 60px;
  color: #000;
}
.text span {
  display: inline-block;
  font-weight: 700;
  font-size: 60px;
  color: #000;
  margin-bottom: 42px;
}
.text p {
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin-bottom: 34px;
}
.text a {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  border: 1px solid #000;
  border-radius: 100px;
  width: 129px;
  height: 36px;
  background-color: #000;
  padding: 8px 23px;
  text-decoration: none;
  transition: 0.3s;
}
.text a:hover {
  background-color: #f0efeb;
  color: #000;
}

.guides {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 87px;
  text-align: center;
}
.guides h3 {
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin-bottom: 27px;
}
.guides p {
  margin-bottom: 47px;
}
.guides p,
.guides span {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #000;
}

.our__guides {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #000;
  margin-bottom: 52px;
}

.sellers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 63px;
  margin-bottom: 240px;
}

.best__sellers {
  max-width: 315px;
  text-align: center;
}
.best__sellers img {
  margin-bottom: 27px;
}
.best__sellers h4 {
  max-width: 156px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 17px;
}
.best__sellers h4, .best__sellers .best__sellers--price,
.best__sellers .best__sellers--add {
  font-size: 17px;
  color: #000;
}
.best__sellers .best__sellers--price {
  font-weight: 400;
  text-align: center;
  margin-bottom: 4px;
}
.best__sellers .best__sellers--add {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: 0.4s;
}
.best__sellers .best__sellers--add:hover {
  color: #727272;
}

.society,
.power {
  display: flex;
  justify-content: center;
  background: rgba(204, 204, 204, 0.3);
  padding: 76px 0 51px;
  gap: 50px;
}
@media screen and (max-width: 440px) {
  .society,
  .power {
    display: block;
    text-align: center;
  }
}

.society img, .power img {
  max-width: 100%;
}

.society__describe {
  max-width: 498px;
  padding-top: 70px;
}

.power__describe,
.moroccan__describe {
  max-width: 532px;
  padding-top: 103px;
}

.moroccan__describe {
  margin-bottom: 70px;
}
@media screen and (max-width: 440px) {
  .moroccan__describe {
    padding-top: 0;
    margin-bottom: 40px;
  }
}

.society__title,
.power__title {
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin-bottom: 31px;
}

.society__text,
.power__text {
  font-weight: 400;
  font-size: 36px;
  color: #000;
  margin-bottom: 40px;
}

.society__link,
.power__link {
  font-weight: 700;
  font-size: 17px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #000;
  transition: 0.4s;
}
.society__link:hover,
.power__link:hover {
  color: #727272;
}

.moroccan {
  display: flex;
  justify-content: center;
  text-align: right;
  gap: 50px;
  background: rgba(204, 204, 204, 0.6);
  padding: 76px 0 51px;
}
@media screen and (max-width: 440px) {
  .moroccan {
    display: block;
    text-align: center;
  }
}
.moroccan img {
  max-width: 100%;
}

.moroccan__describe h3, .moroccan__describe p {
  font-size: 36px;
  text-align: right;
  color: #000;
  margin-bottom: 31px;
}
@media screen and (max-width: 440px) {
  .moroccan__describe h3, .moroccan__describe p {
    text-align: center;
  }
}
.moroccan__describe h3 {
  font-weight: 700;
}
.moroccan__describe p {
  font-weight: 400;
}
.moroccan__describe a {
  display: flex;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 17px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #000;
  transition: 0.4s;
}
@media screen and (max-width: 440px) {
  .moroccan__describe a {
    justify-content: center;
  }
}
.moroccan__describe a:hover {
  color: #727272;
}

.features {
  padding: 190px 0 0;
}

.features__text {
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  color: #000;
  margin-bottom: 70px;
}

.features__wrap {
  max-width: 1088px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 110px 24px;
  margin: 0 auto;
  margin-bottom: 110px;
}

.features__item {
  max-width: 339px;
  width: 100%;
}
.features__item span {
  display: inherit;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #000;
}

.ball__one::before, .ball__two::before, .ball__three::before,
.ball__four::before, .ball__five::before, .ball__six::before {
  content: "";
  display: block;
  border-radius: 35px;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 26px;
}

.ball__one::before {
  background: #21f7ec;
}

.ball__two::before {
  background: #33d3bc;
}

.ball__three::before {
  background: #18a5c6;
}

.ball__four::before {
  background: #d38f62;
}

.ball__five::before {
  background: #f94c43;
}

.ball__six::before {
  background: #d399ff;
}

.interview {
  padding: 52px 0;
  margin-bottom: 79px;
  background: linear-gradient(to bottom, white 47%, #f0efeb 3%);
}
@media screen and (max-width: 360px) {
  .interview {
    background: linear-gradient(to bottom, white 49%, #f0efeb 1%);
  }
}
@media screen and (max-width: 320px) {
  .interview {
    background: linear-gradient(to bottom, white 52%, #f0efeb 48%);
  }
}

.interview__title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #000;
  margin-bottom: 102px;
}

.interview__wrap {
  max-width: 1064px;
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 0 auto;
}

.interview__item {
  max-width: 288px;
  text-align: center;
}
.interview__item img {
  margin-bottom: 35px;
}
.interview__item p {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
.interview__item span {
  display: inherit;
  font-weight: 400;
  text-align: center;
  color: #000;
}
.interview__item .interview__name {
  font-size: 19px;
}
.interview__item .interview__job {
  font-size: 20px;
  margin-bottom: 51px;
}
.interview__item a {
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #000;
  transition: 0.4s;
}
.interview__item a:hover {
  color: #727272;
}

.formpage {
  max-width: 570px;
  margin: 0 auto;
  text-align: center;
}
.formpage h1 {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #000;
  margin-bottom: 9px;
}
.formpage p {
  display: inline-block;
  max-width: 496px;
  font-weight: 700;
  font-size: 17px;
  color: #000;
  margin-bottom: 26px;
}

.formpage__input {
  max-width: 496px;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  margin-bottom: 18px;
}
@media screen and (max-width: 440px) {
  .formpage__input {
    max-width: 366px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 360px) {
  .formpage__input {
    max-width: 300px;
  }
}
.formpage__input input {
  width: 153px;
  border: 1px solid #000;
  padding: 12px 8px;
}
@media screen and (max-width: 360px) {
  .formpage__input input {
    width: 120px;
  }
}
.formpage__input input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a0a0a0;
}
.formpage__input input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a0a0a0;
}

.formpage__email {
  max-width: 366px;
  width: 100%;
  border: 1px solid #000;
  padding: 12px 8px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 360px) {
  .formpage__email {
    max-width: 300px;
  }
}
.formpage__email::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a0a0a0;
}
.formpage__email::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a0a0a0;
}

.formpage__btn {
  display: inherit;
  margin: 0 auto;
  background: #000;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 8px 23px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-bottom: 88px;
  transition: 0.3s;
}
.formpage__btn:hover {
  background-color: #f0efeb;
  color: #000;
}

.wrapper {
  background-color: #020202;
  padding: 50px 0 16px 30px;
}
@media screen and (max-width: 440px) {
  .wrapper {
    padding: 50px 0 16px;
  }
}

.wrapper__footer {
  max-width: 1144px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  .wrapper__footer {
    display: block;
    text-align: center;
  }
}

.wrapper__info .wrapper__logo {
  margin-bottom: 25px;
}
.wrapper__info .wrapper__social {
  display: flex;
  gap: 20px;
  margin-bottom: 42px;
}
@media screen and (max-width: 440px) {
  .wrapper__info .wrapper__social {
    justify-content: center;
  }
}

.wrapper__list {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 360px) {
  .wrapper__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.wrapper__list .wrapper__list-about,
.wrapper__list .wrapper__list-contact {
  width: 215px;
  padding: 0 25px;
}
.wrapper__list h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 165%;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.wrapper__list li {
  list-style: none;
  line-height: 30px;
}
.wrapper__list a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.copyright {
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 165%;
  color: #fff;
}/*# sourceMappingURL=style.css.map */