@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Roboto:wght@300;400&display=swap');


* {
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3 {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 39px;
}

.wrapper {
  width: 100%;
  height: 100%;
  padding-bottom: 350px;
  position: relative;
  overflow-x: hidden;
  background-color: #FFBAA1;
}

.header {
  max-width: 990px;
  margin: 0 auto;
  margin-top: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo__img {
  height: 57px;
  width: 37px;
}

.nav-wrapper {
  display: flex;
}

.navigation__list {
  display: flex;
}

.navigation__item:nth-child(1) {
  margin-right: 75px;
}

.navigation__item:nth-child(2) {
  margin-right: 64px;
}

.navigation__item:nth-child(3) {
  margin-right: 25px;
}

.navigation__link {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;
}

.free-trial-button {
  padding: 0px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;

  border-radius: 4px;
  background-color: #110ACD;
}

.nav-wrapper-mobile {
  display: none;
}

.burger-menu {
  width: 40px;
}

.burger-menu-item {
  height: 3px;
  margin-bottom: 10px;

  border-radius: 4px;
  background-color: #000000;
}

.burger-menu-item:last-child {
  margin-bottom: 0px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.hero__store {
  flex-basis: 400px;
}

.hero__title {
  margin-bottom: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 57px;
  text-align: right;
}

.mobile-stores {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.guide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;

  padding-top: 100px;
}

.guide-info {
  max-width: 440px;
  margin-left: 150px;
}

.guide-info__title {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 57px;

  margin-bottom: 20px;
}

.guide-info__text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 39px;

  margin-bottom: 35px;
}

.guide-info__link {
  display: block;
  text-align: center;
  position: relative;

  border-radius: 4px;
  background-color: #110ACD;
  padding: 17px 0px;

  color: white;
  text-decoration: none;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
}

.guide-info__link::before {
  content: '\25B2';
  display: block;
  transform: translateY(-50%) rotate(90deg);
  font-size: 50px;
  position: absolute;
  left: 30px;
  top: 50%;
}

.feedbacks {
  padding: 100px 0px;
  background-color: white;
}

.feedbacks__title {
  max-width: 440px;
  margin: 0 auto;
  margin-bottom: 36px;
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 57px;
  text-align: center;
}

.swiper {
  max-width: 620px;
}

.swiper-button-next::after {
  content: '';
  background-image: url('../images/next.svg');
  width: 24px;
  height: 24px;
}

.swiper-button-prev::after {
  content: '';
  background-image: url('../images/back.svg');
  width: 24px;
  height: 24px;
}

.feedback {
  margin: 0 80px;

  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 39px;
  text-align: center;
}

.people {
  background-image: url('../images/Peeps-desktop.png');
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 325px;
}