html {
  font-size: 10px;
}

body {
  font-family: "Inter", serif;
  font-size: 1.8rem;
  background-color: #f9f9f9;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.button {
  padding: 1.8rem 2.7rem;
  border-radius: 1.8rem;
  background-color: #6c5fbc;
  color: #f9f9f9;
  transition: all 0.5s ease;
}
.button:hover {
  background-color: #f9f9f9;
  color: #6c5fbc;
  box-shadow: 0 0 10px #6c5fbc;
}
.button_white {
  background-color: #fff;
  color: #6c5fbc;
  border: 1.5px solid #6c5fbc;
}

.title {
  font-family: "Poppins", serif;
  font-weight: 600;
  line-height: 120%;
  color: #201f1f;
}
.title_violet {
  color: #5c4eae;
}

/*header*/
.header {
  position: relative;
  z-index: 7;
  padding: 4.7rem 0 2.6rem;
  background-color: #f9f9f9;
}
.header__container {
  padding-bottom: 2.6rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cbcbcb;
}
.header__navigation {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: 10.3rem;
}
.header__buttons {
  display: flex;
  align-items: center;
}
.header__link {
  margin-right: 3rem;
  padding: 0.5rem;
  border-radius: 1.8rem;
  line-height: 150%;
  font-weight: 700;
  color: #606060;
  transition: all 0.5s ease;
}
.header__link:hover {
  box-shadow: 0 0 1.5rem #6c5fbc;
}
.header__button {
  font-size: 1.8rem;
  line-height: 150%;
  font-weight: 700;
}

.logo {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.logo__img {
  margin-right: 1.1rem;
  width: 46px;
  height: 43px;
}
.logo__img img {
  width: 100%;
}
.logo__text {
  font-family: "Poppins", serif;
  font-size: 2.2rem;
  line-height: 130%;
  font-weight: 600;
  color: #6c5fbc;
}
.logo:hover {
  opacity: 0.6;
}

.menu__list {
  display: flex;
  align-items: center;
}
.menu__item:not(:last-child) {
  margin-right: 5.4rem;
}
.menu__link {
  line-height: 155%;
  font-weight: 500;
  color: #606060;
  transition: all 0.5s ease;
}
.menu__link:hover {
  color: #6c5fbc;
  border-bottom: 1px solid #6c5fbc;
}
.menu__link_active {
  color: #6c5fbc;
}

@media (max-width: 1024px) {
  .header {
    padding: 3.3rem 0 1.8rem;
  }
  .header__container {
    padding-bottom: 1.8rem;
  }
  .header__logo {
    margin-right: 7.4rem;
  }
  .header__link {
    margin-right: 2rem;
    font-size: 1.3rem;
    line-height: 146%;
  }
  .header__button {
    padding: 1.3rem 1.9rem;
    height: 4.5rem;
    font-size: 1.3rem;
    line-height: 102%;
  }
  .logo__img {
    margin-right: 0.8rem;
    width: 33px;
    height: 30px;
  }
  .logo__text {
    font-size: 1.5rem;
  }
  .menu__item:not(:last-child) {
    margin-right: 3.8rem;
  }
  .menu__link {
    font-size: 1.3rem;
  }
}
@media (max-width: 650px) {
  .header__logo {
    margin-right: 5rem;
  }
  .header .menu__list {
    display: none;
  }
  .header .header__buttons {
    margin-right: 6rem;
  }
  .header .menu__burger {
    display: block;
    position: absolute;
    top: 4.3rem;
    right: 1.5rem;
    width: 3.2rem;
    height: 2.3rem;
    z-index: 5;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  .header .menu__burger span {
    position: absolute;
    background-color: #282828;
    left: 0;
    top: 1.1rem;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease 0s;
  }
  .header .menu__burger::before,
  .header .menu__burger::after {
    content: "";
    background-color: #282828;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header .menu__burger::before {
    top: 0;
  }
  .header .menu__burger::after {
    bottom: 0;
  }
  .header .menu__burger_active span {
    transform: scale(0);
  }
  .header .menu__burger_active::before {
    background-color: #fff;
    transform: rotate(45deg);
    top: 1.2rem;
  }
  .header .menu__burger_active::after {
    background-color: #fff;
    transform: rotate(-45deg);
    bottom: 0.9rem;
  }
  .header .menu__list_active {
    position: absolute;
    z-index: 4;
    display: block;
    overflow: auto;
    top: 0;
    left: 0;
    background-color: #6c5fbc;
    width: 100vw;
    height: 100vh;
    padding-top: 10rem;
    text-align: center;
    transition: all 0.5s ease;
  }
  .header .menu__list_active .menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4rem;
  }
  .header .menu__list_active .menu__link {
    font-size: 3.5rem;
    color: #fff;
  }
}
@media (max-width: 375px) {
  .header__buttons {
    display: none;
  }
  .logo__img {
    margin-right: 1.1rem;
    width: 4.6rem;
    height: 4.2rem;
  }
  .logo__text {
    font-size: 2.1rem;
  }
}
/*main*/
.main {
  background-color: #f9f9f9;
}

/*hero*/
.hero {
  padding: 11.9rem 0 13rem;
}
.hero__items {
  width: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  margin-right: 1.5rem;
  flex: 0 1 47%;
}
.hero__headline {
  position: relative;
  padding-left: 5.3rem;
  margin-bottom: 1.8rem;
  font-family: "Poppins", serif;
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 600;
  text-transform: uppercase;
  color: #201f1f;
  opacity: 0.2;
}
.hero__headline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38.4px;
  height: 1px;
  color: #201f1f;
}
.hero__title {
  margin-bottom: 1.6rem;
  font-size: 7.5rem;
}
.hero__text {
  margin-bottom: 5.3rem;
  max-width: 50rem;
  font-size: 1.8rem;
  line-height: 155%;
  color: #676767;
  opacity: 0.7;
}
.hero__text_violet {
  color: #5c4eae;
  font-weight: 500;
}
.hero__buttons {
  display: flex;
  margin-bottom: 3.3rem;
}
.hero__button:not(:last-child) {
  margin-right: 1.8rem;
}
.hero__stars {
  display: flex;
  align-items: flex-end;
}
.hero__stars-green {
  margin-right: 2rem;
  display: flex;
  align-items: flex-end;
}
.hero__stars-green-img {
  margin-right: 0.2rem;
  width: 3rem;
}
.hero__stars-gold {
  margin-right: 0.4rem;
}
.hero__stars-text {
  font-family: "Plus Jakarta Sans", serif;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 500;
  color: #334155;
}
.hero__imges {
  position: relative;
  flex: 0 1 52%;
  display: flex;
  justify-content: center;
}
.hero__imges-img {
  position: relative;
  width: 42.96rem;
  height: 44.36rem;
}
.hero__images-img-main {
  position: relative;
  width: 100%;
  z-index: 3;
}
.hero__images-img-oval {
  position: absolute;
  top: -9px;
  left: 24px;
  width: 100%;
}
.hero__imges-img-decor {
  position: absolute;
  top: 60px;
  right: -80px;
}
.hero__imges-dish {
  position: absolute;
  top: -60px;
  right: -50px;
  z-index: 4;
}
.hero__graf {
  position: absolute;
  bottom: -70px;
  left: -20px;
  z-index: 4;
}

.stars-gold {
  display: flex;
  align-items: flex-end;
}
.stars-gold__star {
  margin-right: 0.4rem;
  width: 1.6rem;
}

.block-dish-mini {
  padding: 0.5rem 1.6rem;
  width: 32.87rem;
  height: 8.95rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 1.4rem 1.9rem 3.76rem rgba(26, 32, 44, 0.15);
  border-radius: 1.64rem;
  font-family: "Poppins", serif;
}
.block-dish-mini__img {
  margin-right: 1.8rem;
  width: 7.34rem;
  height: 8.11rem;
}
.block-dish-mini__body {
  color: #323142;
}
.block-dish-mini__title {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 140%;
  font-weight: 600;
}
.block-dish-mini__text {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 500;
}
.block-dish-mini__time {
  margin-left: auto;
  align-self: flex-end;
  font-size: 1.1rem;
  line-height: 140%;
  font-weight: 500;
  color: #acadb9;
}
.block-dish-mini__decor {
  position: absolute;
  top: -30px;
  right: -38px;
}

.graf {
  padding: 1.3rem 0 1.1rem;
  width: 20.7rem;
  height: 20.55rem;
  border-radius: 1.64rem;
  background-color: #fff;
  box-shadow: 1.4rem 1.9rem 3.76rem rgba(26, 32, 44, 0.15);
  font-family: "Poppins", serif;
  color: #828282;
}
.graf__menu {
  margin-bottom: 2rem;
  padding: 0 2.2rem;
}
.graf__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.graf__item {
  padding: 0.4rem 1.1rem;
  border-radius: 1.46rem;
  display: flex;
  transition: all 0.5s ease;
}
.graf__item:hover {
  background-color: #6c5fbc;
  color: #fff;
}
.graf__link {
  font-size: 0.7rem;
  line-height: 150%;
}
.graf__img {
  margin-bottom: 1.5rem;
}
.graf__digits {
  padding: 0 1.5rem 0 2.9rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.graf__digit {
  padding: 0.575rem 1rem;
  border-radius: 1.68rem;
  font-size: 0.7rem;
  line-height: 117%;
  transition: all 0.5s ease;
}
.graf__digit:hover {
  background-color: rgba(231, 231, 231, 0.9215686275);
  color: #151515;
}
.graf__decor {
  position: absolute;
  bottom: -38px;
  left: -38px;
}

@media (max-width: 1300px) {
  .hero {
    padding: 8.4rem 0 9.1rem;
  }
  .hero__content {
    flex: 0 1 42%;
  }
  .hero__title {
    font-size: 5.3rem;
  }
  .hero__text {
    max-width: 35.5rem;
    font-size: 1.3rem;
  }
  .hero__stars-green-text {
    align-self: end;
    max-width: 6.5rem;
  }
  .hero__stars-green-text img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
@media (max-width: 1024px) {
  .hero__headline {
    font-size: 1.1rem;
  }
  .hero__stars-text {
    font-size: 1.2rem;
    line-height: 100%;
  }
  .hero__imges-img {
    width: 30.55rem;
    height: 31.55rem;
  }
  .hero__images-img-oval {
    top: -7px;
    left: 14px;
  }
  .block-dish-mini {
    width: 23.37rem;
    height: auto;
  }
  .block-dish-mini__img {
    width: 5.23rem;
    height: 5.77rem;
  }
  .block-dish-mini__img img {
    width: 100%;
    vertical-align: middle;
  }
  .block-dish-mini__title {
    font-size: 1.1rem;
  }
  .block-dish-mini__text {
    font-size: 0.7rem;
  }
  .block-dish-mini__time {
    font-size: 0.76rem;
  }
  .graf {
    padding: 1rem 0;
    width: 14.74rem;
    height: 14.61rem;
  }
  .graf__img img {
    width: 100%;
  }
  .graf__menu {
    padding: 0 0.3rem;
    margin-bottom: 1.5rem;
  }
  .graf__item {
    padding: 0.4rem;
  }
  .graf__link {
    font-size: 0.49rem;
  }
  .graf__digits {
    padding: 0 0.5rem;
  }
  .graf__digit {
    padding: 0.5rem;
  }
  .stars-gold__star {
    width: 1.13rem;
  }
  .stars-gold__star img {
    width: 100%;
    vertical-align: bottom;
  }
}
@media (max-width: 820px) {
  .hero {
    padding: 5.7rem 0 13rem;
  }
  .hero__items {
    flex-direction: column;
  }
  .hero__content {
    margin-right: 0;
    margin-bottom: 9.5rem;
    flex: 1 0 100%;
    text-align: center;
  }
  .hero__text {
    max-width: 100%;
  }
  .hero__imges {
    width: 100%;
  }
  .hero__graf {
    left: -30px;
  }
}
@media (max-width: 500px) {
  .hero {
    padding: 5.7rem 0 7.5rem;
  }
  .hero__headline {
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
  }
  .hero__title {
    font-size: 4.62rem;
  }
  .hero__text {
    font-size: 1.11rem;
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__stars {
    justify-content: center;
  }
  .hero__imges-img {
    width: 20.39rem;
    height: 21.06rem;
  }
  .hero__images-img-oval {
    left: 10px;
  }
  .hero__imges-img-decor {
    width: 4.79rem;
    height: 4.63rem;
    right: -45px;
    top: 30px;
  }
  .hero__imges-img-decor img {
    width: 100%;
  }
  .hero__imges-dish {
    padding: 0.5rem;
    width: 15.6rem;
    height: 4.25rem;
    border-radius: 0.78rem;
    top: -30px;
  }
  .hero__imges-dish .block-dish-mini__img {
    margin-right: 0.86rem;
    width: 3.49rem;
    height: 3.85rem;
  }
  .hero__imges-dish .block-dish-mini__title {
    font-size: 0.74rem;
  }
  .hero__imges-dish .block-dish-mini__text {
    font-size: 0.47rem;
  }
  .hero__imges-dish .block-dish-mini__time {
    font-size: 0.5rem;
    line-height: 100%;
  }
  .hero__imges-dish .block-dish-mini__decor {
    width: 1.97rem;
    top: -17px;
    right: -20px;
  }
  .hero__imges-dish .block-dish-mini__decor img {
    width: 100%;
  }
  .hero__graf {
    bottom: -26px;
    left: -30px;
  }
  .graf {
    padding: 0.6rem 0;
    width: 9.84rem;
    height: 9.75rem;
    border-radius: 1rem;
  }
  .graf__menu {
    margin-bottom: 1rem;
  }
  .graf__img {
    margin-bottom: 0.75rem;
  }
  .graf__link {
    font-size: 0.33rem;
  }
  .graf__digit {
    font-size: 0.3rem;
  }
  .graf__decor {
    width: 1.8rem;
    bottom: -26px;
    left: -14px;
  }
  .graf__decor img {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .hero {
    padding: 5rem 0 7.5rem;
  }
  .hero__title {
    font-size: 4rem;
  }
  .hero__imges-img-decor {
    width: 4rem;
    right: -35px;
  }
  .hero__imges-dish {
    right: -12px;
  }
  .hero__graf {
    left: -20px;
  }
}
/*achievements*/
.achievements {
  padding: 4.9rem 0;
  width: 100%;
  background: url("../img/home/achievements-fon.png") no-repeat;
  background-size: cover;
  color: #fff;
}
.achievements__items {
  margin: 0 auto;
  max-width: 94.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.achievements__item {
  padding: 0 6.6rem;
  text-align: center;
}
.achievements__item:nth-child(2) {
  border-left: 1px solid rgba(197, 197, 197, 0.15);
  border-right: 1px solid rgba(197, 197, 197, 0.15);
}
@media (max-width: 1024px) {
  .achievements .hero__headline {
    font-size: 1.1rem;
  }
  .achievements .hero__stars-text {
    font-size: 1.2rem;
    line-height: 100%;
  }
  .achievements .hero__imges-img {
    width: 30.55rem;
    height: 31.55rem;
  }
  .achievements .hero__images-img-oval {
    top: -7px;
    left: 14px;
  }
  .achievements .block-dish-mini {
    width: 23.37rem;
    height: auto;
  }
  .achievements .block-dish-mini__img {
    width: 5.23rem;
    height: 5.77rem;
  }
  .achievements .block-dish-mini__img img {
    width: 100%;
    vertical-align: middle;
  }
  .achievements .block-dish-mini__title {
    font-size: 1.1rem;
  }
  .achievements .block-dish-mini__text {
    font-size: 0.7rem;
  }
  .achievements .block-dish-mini__time {
    font-size: 0.76rem;
  }
  .achievements .graf {
    padding: 1rem 0;
    width: 14.74rem;
    height: 14.61rem;
  }
  .achievements .graf__img img {
    width: 100%;
  }
  .achievements .graf__menu {
    padding: 0 0.3rem;
    margin-bottom: 1.5rem;
  }
  .achievements .graf__item {
    padding: 0.4rem;
  }
  .achievements .graf__link {
    font-size: 0.49rem;
  }
  .achievements .graf__digits {
    padding: 0 0.5rem;
  }
  .achievements .graf__digit {
    padding: 0.5rem;
  }
  .achievements .stars-gold__star {
    width: 1.13rem;
  }
  .achievements .stars-gold__star img {
    width: 100%;
    vertical-align: bottom;
  }
}
@media (max-width: 820px) {
  .achievements .hero {
    padding: 5.7rem 0 7.5rem;
  }
  .achievements .hero__items {
    flex-direction: column;
  }
  .achievements .hero__content {
    margin-right: 0;
    margin-bottom: 9.5rem;
    flex: 1 0 100%;
    text-align: center;
  }
  .achievements .hero__text {
    max-width: 100%;
  }
  .achievements .hero__imges {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .achievements .hero__headline {
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
  }
  .achievements .hero__title {
    font-size: 4.62rem;
  }
  .achievements .hero__text {
    font-size: 1.11rem;
  }
  .achievements .hero__buttons {
    justify-content: center;
  }
  .achievements .hero__stars {
    justify-content: center;
  }
  .achievements .hero__imges-img {
    width: 20.39rem;
    height: 21.06rem;
  }
  .achievements .hero__images-img-oval {
    left: 10px;
  }
  .achievements .hero__imges-img-decor {
    width: 4.79rem;
    height: 4.63rem;
    right: -45px;
    top: 30px;
  }
  .achievements .hero__imges-img-decor img {
    width: 100%;
  }
  .achievements .hero__imges-dish {
    padding: 0.5rem;
    width: 15.6rem;
    height: 4.25rem;
    border-radius: 0.78rem;
    top: -30px;
  }
  .achievements .hero__imges-dish .block-dish-mini__img {
    margin-right: 0.86rem;
    width: 3.49rem;
    height: 3.85rem;
  }
  .achievements .hero__imges-dish .block-dish-mini__title {
    font-size: 0.74rem;
  }
  .achievements .hero__imges-dish .block-dish-mini__text {
    font-size: 0.47rem;
  }
  .achievements .hero__imges-dish .block-dish-mini__time {
    font-size: 0.5rem;
    line-height: 100%;
  }
  .achievements .hero__imges-dish .block-dish-mini__decor {
    width: 1.97rem;
    top: -17px;
    right: -20px;
  }
  .achievements .hero__imges-dish .block-dish-mini__decor img {
    width: 100%;
  }
  .achievements .hero__graf {
    bottom: -26px;
    left: -30px;
  }
  .achievements .graf {
    padding: 0.6rem 0;
    width: 9.84rem;
    height: 9.75rem;
    border-radius: 1rem;
  }
  .achievements .graf__menu {
    margin-bottom: 1rem;
  }
  .achievements .graf__img {
    margin-bottom: 0.75rem;
  }
  .achievements .graf__link {
    font-size: 0.33rem;
  }
  .achievements .graf__digit {
    font-size: 0.3rem;
  }
  .achievements .graf__decor {
    width: 1.8rem;
    bottom: -26px;
    left: -14px;
  }
  .achievements .graf__decor img {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .achievements .hero {
    padding: 5rem 0 7.5rem;
  }
  .achievements .hero__title {
    font-size: 4rem;
  }
  .achievements .hero__imges-img-decor {
    width: 4rem;
    right: -35px;
  }
  .achievements .hero__imges-dish {
    right: -12px;
  }
  .achievements .hero__graf {
    left: -20px;
  }
}
.achievements__digit {
  margin-bottom: 1.1rem;
  font-family: "Public Sans", serif;
  font-size: 4.32rem;
  line-height: 125%;
  font-weight: 700;
}
.achievements__text {
  font-size: 1.44rem;
  line-height: 150%;
  font-weight: 500;
  color: #c5bfed;
}

@media (max-width: 1024px) {
  .achievements {
    padding: 4.05rem 0 3.92rem;
  }
  .achievements__item {
    padding: 0 4.7rem;
  }
  .achievements__digit {
    font-size: 3.07rem;
  }
  .achievements__text {
    font-size: 1.02rem;
  }
}
@media (max-width: 768px) {
  .achievements__item {
    padding: 0 3.5rem;
  }
}
@media (max-width: 600px) {
  .achievements__items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3.5rem;
  }
  .achievements__item:nth-child(2) {
    border-right: none;
  }
  .achievements__item:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 375px) {
  .achievements {
    padding: 3.9rem 0 2.26rem;
  }
  .achievements__items {
    grid-template-columns: 1fr;
  }
  .achievements__item {
    padding: 6rem 0;
  }
  .achievements__item:last-child {
    grid-column: span 1;
  }
  .achievements__item:nth-child(2) {
    border-right: none;
    border-left: none;
    border-top: 1px solid rgba(197, 197, 197, 0.15);
    border-bottom: 1px solid rgba(197, 197, 197, 0.15);
  }
  .achievements__digit {
    font-size: 4.32rem;
  }
  .achievements__text {
    margin: 0 auto;
    max-width: 20.8rem;
    font-size: 1.44rem;
  }
}
/*premium-quality*/
.premium-quality {
  padding: 10.3rem 0 12rem;
}
.premium-quality__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.premium-quality__image {
  width: 56.8rem;
  display: flex;
  justify-content: center;
}
.premium-quality__image-phone {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.premium-quality__phone-decor {
  position: absolute;
  top: -1.5rem;
  right: -6rem;
  max-width: 5.24rem;
  z-index: 5;
}
.premium-quality__phone-decor img {
  width: 100%;
}
.premium-quality__content {
  margin-left: 1.5rem;
  max-width: 56rem;
}
.premium-quality__title {
  margin-top: 9.1rem;
  margin-bottom: 6.3rem;
  font-size: 5.09rem;
}
.premium-quality__list {
  margin-bottom: 6rem;
}
.premium-quality__item {
  /* list-style: disc;
      list-style-position: inside;*/
  position: relative;
  padding-left: 1.5rem;
  font-size: 2.03rem;
  line-height: 150%;
  color: #676767;
}
.premium-quality__item:not(:last-child) {
  margin-bottom: 2.79rem;
}
.premium-quality__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #676767;
}
.premium-quality__nav {
  position: relative;
}
.premium-quality__button {
  display: block;
  width: 18.6rem;
  height: 6.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.premium-quality__arrow-decor {
  position: absolute;
  bottom: -70%;
  right: 35%;
}

@media (max-width: 1024px) {
  .premium-quality {
    padding: 7.36rem 0 8.53rem;
  }
  .premium-quality__image {
    width: 40.39rem;
  }
  .premium-quality__image-phone {
    max-width: 21.6rem;
  }
  .premium-quality__image-phone img {
    width: 100%;
  }
  .premium-quality__phone-decor {
    max-width: 3.73rem;
    right: -4rem;
    top: -1rem;
  }
  .premium-quality__content {
    max-width: 39.82rem;
  }
  .premium-quality__title {
    margin-top: 6.47rem;
    margin-bottom: 4.5rem;
    font-size: 3.62rem;
  }
  .premium-quality__item {
    padding-left: 1rem;
    font-size: 1.45rem;
  }
  .premium-quality__item:not(:last-child) {
    margin-bottom: 1.92rem;
  }
  .premium-quality__item:before {
    width: 0.4rem;
    height: 0.4rem;
    top: 0.9rem;
  }
  .premium-quality__button {
    width: 13.2rem;
    height: 4.5rem;
    font-size: 1.28rem;
  }
  .premium-quality__arrow-decor {
    max-width: 10.99rem;
    right: 45%;
  }
  .premium-quality__arrow-decor img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .premium-quality__image {
    width: 30rem;
  }
  .premium-quality__content {
    margin-left: 3rem;
    max-width: 30rem;
  }
  .premium-quality__title {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .premium-quality__list {
    margin-bottom: 4rem;
  }
  .premium-quality__arrow-decor {
    bottom: -80%;
    right: 25%;
  }
}
@media (max-width: 600px) {
  .premium-quality {
    padding: 6.7rem 0;
  }
  .premium-quality__items {
    flex-direction: column;
  }
  .premium-quality__content {
    margin-bottom: 10.08rem;
    max-width: 100%;
    order: 1;
  }
  .premium-quality__image {
    width: 100%;
    order: 2;
  }
  .premium-quality__button {
    margin: 0 auto;
  }
  .premium-quality__arrow-decor {
    transform: rotate(110deg);
    left: 0;
  }
}
@media (max-width: 375px) {
  .premium-quality__image-phone {
    max-width: 17.07rem;
  }
  .premium-quality__phone-decor {
    max-width: 2.95rem;
    right: -3rem;
  }
  .premium-quality__title {
    font-size: 2.4rem;
  }
  .premium-quality__item {
    font-size: 1.2rem;
  }
  .premium-quality__item::before {
    width: 0.3rem;
    height: 0.3rem;
    top: 0.7rem;
  }
  .premium-quality__arrow-decor {
    bottom: -100%;
    left: -17%;
  }
}
/*top-restaurants*/
.top-restaurants {
  padding: 0 1.5rem;
}
.top-restaurants .container {
  padding: 10rem 0 12rem;
  border-top: 0.1rem solid #cbcbcb;
  border-bottom: 0.1rem solid #cbcbcb;
}
.top-restaurants__title {
  margin-bottom: 8.57rem;
  font-size: 4.5rem;
  text-align: center;
}
.top-restaurants__items {
  width: 100%;
  margin-bottom: 6.57rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.04rem;
}
.top-restaurants__button {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  transition: all 0.5s ease;
}
.top-restaurants__button p {
  margin-right: 2rem;
  color: #acadb9;
}
.top-restaurants__button:hover p {
  color: #606168;
  border-bottom: 0.1rem solid #606168;
}
.top-restaurants__arrow {
  display: flex;
  align-items: center;
}
.top-restaurants__arrow span {
  margin-right: -1rem;
  display: block;
  width: 1.58rem;
  height: 0.226rem;
  background-color: #d5ccd9;
}

.card-restaurants {
  border-radius: 3rem;
  border: 0.125rem solid #f4f4f6;
  box-shadow: 0.595rem 7.135rem 3.567rem rgba(229, 229, 229, 0.7);
  transition: all 0.5s ease;
}
.card-restaurants:hover {
  background-color: #ececf0;
}
.card-restaurants__img {
  height: 17.61rem;
}
.card-restaurants__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem 3rem 0 0;
}
.card-restaurants__content {
  padding: 1.09rem 2.67rem 1.8rem 3.4rem;
}
.card-restaurants__category {
  padding: 0.3rem 0.86rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 0.54rem;
  background-color: #f7edd0;
  font-family: "Poppins", serif;
  font-size: 1.28rem;
  line-height: 150%;
  color: #daa31a;
}
.card-restaurants__category_red {
  background-color: #f7c5ba;
  color: #fb471d;
}
.card-restaurants__title {
  margin-bottom: 0.2rem;
  font-family: "Poppins", serif;
  font-size: 2.58rem;
  line-height: 162%;
  font-weight: 600;
}

.dop-info-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Manrope", serif;
  font-size: 1.93rem;
  line-height: 133%;
  color: #8e97a6;
}
.dop-info-card__left {
  display: flex;
  align-items: flex-end;
}
.dop-info-card__time {
  margin-right: 1.4rem;
  position: relative;
}
.dop-info-card__time::after {
  content: "";
  position: absolute;
  top: 48%;
  right: -0.9rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #8e97a6;
}
.dop-info-card__rating {
  margin-left: 0.64rem;
}
.dop-info-card__right {
  max-width: 4rem;
  cursor: pointer;
}
.dop-info-card__right img {
  width: 100%;
}

@media (max-width: 1024px) {
  .top-restaurants .container {
    padding: 7.1rem 0 8.5rem;
  }
  .top-restaurants__title {
    margin-bottom: 6.04rem;
    font-size: 3.2rem;
  }
  .top-restaurants__items {
    gap: 2.16rem;
  }
  .card-restaurants__img {
    height: 12.53rem;
  }
  .card-restaurants__content {
    padding: 0.78rem 1.2rem 1.2rem;
  }
  .card-restaurants__category {
    font-size: 0.9rem;
  }
  .card-restaurants__title {
    font-size: 1.83rem;
  }
  .dop-info-card {
    font-size: 1.38rem;
  }
  .dop-info-card img {
    width: 1.83rem;
  }
  .dop-info-card__right {
    width: 2.85rem;
    height: 2.85rem;
  }
  .dop-info-card__right img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .top-restaurants .container {
    padding: 8.4rem 0 6.6rem;
  }
  .top-restaurants__title {
    margin-bottom: 5.9rem;
    font-size: 3rem;
  }
  .top-restaurants__items {
    grid-template-columns: repeat(4, 1fr);
  }
  .top-restaurants__item {
    grid-column: span 2;
  }
  .top-restaurants__item:last-child {
    grid-column: 2/4;
  }
}
@media (max-width: 480px) {
  .top-restaurants__items {
    grid-template-columns: 1fr;
  }
  .top-restaurants__item {
    grid-column: span 1;
  }
  .top-restaurants__item:last-child {
    grid-column: 1/2;
  }
  .card-restaurants__img {
    height: 14rem;
  }
}
/*top-dishes*/
.top-dishes {
  padding: 0 1.5rem;
}
.top-dishes .container {
  padding: 10rem 0 12rem;
  border-bottom: 0.1rem solid #cbcbcb;
}
.top-dishes__title {
  margin-bottom: 7.59rem;
  text-align: center;
  font-size: 4.5rem;
}
.top-dishes__items {
  margin-bottom: 6.54rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.top-dishes__item {
  position: relative;
}
.top-dishes__item .card-restaurants__img {
  padding-top: 2.5rem;
  height: 20.8rem;
  display: flex;
  justify-content: center;
}
.top-dishes__item .card-restaurants__img img {
  width: auto;
  height: 100%;
}
.top-dishes__item .card-restaurants__content {
  padding: 1rem 1rem 2.9rem;
}
.top-dishes__item .card-restaurants__title {
  font-size: 2.3rem;
}

.card-restaurants__heart {
  position: absolute;
  top: 1.6rem;
  right: 1.2rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
.card-restaurants__heart img {
  width: 100%;
}
.card-restaurants__heart :hover {
  transform: scale(1.1);
}
.card-restaurants__category_green {
  background-color: rgba(51, 172, 100, 0.2);
  color: #309d5b;
}
.card-restaurants__price {
  margin-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-restaurants__price-digit {
  font-family: "Manrope", serif;
  font-size: 2.59rem;
  line-height: 156%;
  font-weight: 700;
  color: #323142;
}
.card-restaurants__price-digit span {
  font-size: 1.88rem;
  line-height: 214%;
  color: #8e97a6;
}
.card-restaurants__price-img {
  width: 3.6rem;
  height: 3.6rem;
}
.card-restaurants__price-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1082px) {
  .top-dishes .container {
    padding: 7.11rem 0 8.5rem;
  }
  .top-dishes__title {
    margin-bottom: 5.34rem;
    font-size: 3.2rem;
  }
  .top-dishes__item .card-restaurants__img {
    height: 13.15rem;
  }
  .top-dishes__item__content {
    padding: 1rem 1rem 2rem;
  }
  .top-dishes__item .card-restaurants__title {
    font-size: 1.64rem;
  }
  .top-dishes__item .card-restaurants__category {
    font-size: 0.8rem;
  }
  .top-dishes__item .dop-info-card {
    font-size: 1.2rem;
  }
  .top-dishes__item .dop-info-card__left {
    align-items: center;
  }
  .top-dishes__item .dop-info-card__time::after {
    top: 40%;
  }
  .top-dishes__item .dop-info-card img {
    width: 1.1rem;
  }
  .card-restaurants__price-digit {
    font-size: 1.84rem;
  }
  .card-restaurants__price-digit span {
    font-size: 1.34rem;
  }
  .card-restaurants__price-img {
    width: 3.11rem;
    height: 2.82rem;
  }
}
@media (max-width: 768px) {
  .top-dishes__items {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6rem;
  }
  .top-dishes .card-restaurants {
    box-shadow: 0.595rem 4rem 3.567rem rgba(229, 229, 229, 0.7);
  }
}
@media (max-width: 480px) {
  .top-dishes .container {
    padding: 8.5rem 0 6.6rem;
  }
  .top-dishes__title {
    font-size: 3rem;
  }
  .top-dishes__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 375px) {
  .top-dishes .card-restaurants__title {
    margin-bottom: 0.1rem;
    font-size: 1.5rem;
  }
  .top-dishes .card-restaurants__price-digit {
    font-size: 1.7rem;
  }
  .top-dishes .card-restaurants__price-digit span {
    font-size: 1.2rem;
  }
  .top-dishes .card-restaurants__price-img {
    width: 2.87rem;
    height: 2.87rem;
  }
  .top-dishes .card-restaurants__heart {
    width: 1.43rem;
    height: 1.19rem;
  }
}
@media (max-width: 300px) {
  .top-dishes__items {
    grid-template-columns: 1fr;
  }
  .top-dishes .card-restaurants__img {
    height: 16rem;
  }
  .top-dishes .card-restaurants__content {
    padding: 2rem;
  }
  .top-dishes .card-restaurants__category {
    font-size: 1rem;
  }
  .top-dishes .card-restaurants__title {
    font-size: 2rem;
  }
  .top-dishes .card-restaurants__price-digit {
    font-size: 1.8rem;
  }
  .top-dishes .card-restaurants__price-digit span {
    font-size: 1.4rem;
  }
  .top-dishes .dop-info-card {
    font-size: 1.6rem;
  }
}
/*control-purchases*/
.control-purchases {
  padding: 10.3rem 0 13.8rem;
}
.control-purchases__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.control-purchases__item:not(:last-child) {
  margin-right: 1.5rem;
}
.control-purchases__title {
  margin-bottom: 4.8rem;
  max-width: 55.9rem;
  font-size: 5.09rem;
  line-height: 114%;
  font-weight: 700;
}
.control-purchases__card {
  width: 34.52rem;
}
.control-purchases__card:not(:last-child) {
  margin-bottom: 1.5rem;
}
.control-purchases__card .block-dish-mini__title {
  font-size: 1.9rem;
}
.control-purchases__card .block-dish-mini__text {
  font-size: 1.2rem;
}
.control-purchases__card .block-dish-mini__text_red {
  color: #f1534e;
}
.control-purchases__item-content {
  padding: 4.55rem 3.77rem;
  width: 53.4rem;
  border: 0.16px solid #edf2f7;
  border-radius: 2.51rem;
  box-shadow: 1px 200px 121px rgba(50, 49, 66, 0.2);
}
.control-purchases__item-titles {
  margin-bottom: 4.52rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.control-purchases__item-title {
  font-family: "Manrope", serif;
  font-size: 2.83rem;
  line-height: 135%;
  font-weight: 800;
  letter-spacing: 0.03rem;
}
.control-purchases__select {
  font-family: "Manrope", serif;
  font-size: 1.89rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

.item-purchases {
  padding: 2.51rem;
  border: 0.157rem solid #edf2f7;
  border-radius: 1.88rem;
}
.item-purchases:not(:last-child) {
  margin-bottom: 2.2rem;
}
.item-purchases__content {
  margin-bottom: 2.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-purchases__body {
  display: flex;
  align-items: center;
}
.item-purchases__img {
  margin-right: 1.88rem;
  width: 5.03rem;
  height: 5.03rem;
}
.item-purchases__info {
  font-family: "Manrope", serif;
  line-height: 150%;
  letter-spacing: 0.06rem;
}
.item-purchases__subtitle {
  margin-bottom: 0.03rem;
  font-size: 1.88rem;
  font-weight: 800;
  color: #1a202c;
}
.item-purchases__percent {
  font-size: 1.57rem;
  font-weight: 500;
  color: #a0aec0;
}
.item-purchases__sum {
  justify-self: end;
}
.item-purchases__progress {
  width: 100%;
  height: 0.94rem;
  border-radius: 7.85rem;
  overflow: hidden;
}
.item-purchases__progress::-webkit-progress-bar {
  background-color: rgba(92, 78, 174, 0.2);
}
.item-purchases__progress::-webkit-progress-value {
  background-color: #5c4eae;
}
.item-purchases__progress_yellow::-webkit-progress-bar {
  background-color: rgba(251, 173, 24, 0.2);
}
.item-purchases__progress_yellow::-webkit-progress-value {
  background-color: #fbad18;
}

@media (max-width: 1082px) {
  .control-purchases__title {
    max-width: 40rem;
    font-size: 4rem;
  }
  .control-purchases__item-content {
    padding: 3rem;
    width: 45rem;
    box-shadow: 1px 120px 121px rgba(50, 49, 66, 0.2);
  }
}
@media (max-width: 870px) {
  .control-purchases {
    padding: 9rem 0;
  }
  .control-purchases__title {
    max-width: 35rem;
    font-size: 3.2rem;
  }
  .control-purchases__card {
    width: 30rem;
  }
  .control-purchases__item-content {
    max-width: 38rem;
  }
  .control-purchases__titles {
    margin-bottom: 3rem;
  }
  .control-purchases__item-title {
    font-size: 2.4rem;
  }
  .control-purchases__select {
    font-size: 1.8rem;
  }
  .item-purchases__img {
    margin-right: 1.4rem;
    width: 4rem;
    height: 4rem;
  }
  .item-purchases__img img {
    width: 100%;
    height: 100%;
  }
  .item-purchases__subtitle {
    font-size: 1.6rem;
  }
  .item-purchases__percent {
    font-size: 1.4rem;
  }
  .item-purchases__sum {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .control-purchases {
    padding: 8rem 0;
  }
  .control-purchases__items {
    flex-direction: column;
  }
  .control-purchases__item {
    width: 100%;
  }
  .control-purchases__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .control-purchases__title {
    min-width: 100%;
    text-align: center;
  }
  .control-purchases__card {
    margin: 0 auto;
    max-width: 40rem;
  }
  .control-purchases__item-content {
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .control-purchases {
    padding: 6rem 0;
  }
  .control-purchases__item-titles {
    margin-bottom: 3rem;
  }
  .control-purchases__item-title {
    font-size: 2rem;
  }
  .control-purchases__item-content {
    padding: 1.5rem;
  }
  .item-purchases {
    padding: 1.5rem;
  }
  .item-purchases__img {
    margin-right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .item-purchases__subtitle {
    font-size: 1.4rem;
  }
  .item-purchases__percent {
    font-size: 1.2rem;
  }
  .item-purchases__sum {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .control-purchases__title {
    font-size: 2.8rem;
  }
  .control-purchases__card {
    max-width: 26rem;
  }
  .control-purchases__card .block-dish-mini__title {
    font-size: 1.6rem;
  }
  .control-purchases__item-title {
    font-size: 1.6rem;
  }
  .control-purchases__select {
    font-size: 1.4rem;
  }
  .item-purchases {
    padding: 1rem;
  }
  .item-purchases__info {
    margin-right: 1rem;
  }
  .item-purchases__subtitle {
    font-size: 1.2rem;
  }
  .item-purchases__percent {
    font-size: 1rem;
  }
  .item-purchases__sum {
    font-size: 1.2rem;
  }
}
/*feedback*/
.feedback {
  padding: 11.6rem 0 18.2rem;
}
.feedback__title {
  margin-bottom: 8rem;
  font-size: 4.5rem;
  text-align: center;
}
.feedback__slider {
  position: relative;
}

.slider__item {
  padding: 3.8rem 4.3rem;
  max-width: 100%;
  border-radius: 2.09rem;
  background-color: #ffffff;
  font-family: "Poppins", serif;
}
.slider__item:not(:last-child) {
  margin-right: 3rem;
}
.slider .slick-arrow {
  position: absolute;
  bottom: -5rem;
  font-size: 0;
  width: 3rem;
  height: 3rem;
}
.slider .slick-arrow.slick-prev {
  left: calc(50% - 9rem);
  background: url("../img/home/arrow-left.svg") 0 0/100% no-repeat;
}
.slider .slick-arrow.slick-next {
  transform: rotate(180deg);
  right: calc(50% - 6rem);
  background: url("../img/home/arrow-left.svg") 0 0/100% no-repeat;
}
.slider__head {
  margin-bottom: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider__head-img {
  margin-right: 2.09rem;
  width: 7.1rem;
  height: 7.1rem;
}
.slider__head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__head-body {
  display: flex;
  align-items: center;
}
.slider__head-name {
  font-size: 2.09rem;
  line-height: 150%;
  font-weight: 500;
  color: #030314;
}
.slider__head-date {
  font-family: "Quicksand", serif;
  font-size: 1.67rem;
  line-height: 156%;
  color: #5e5d5d;
}
.slider__head-quote {
  justify-self: flex-end;
  width: 5.87rem;
  height: 4.42rem;
}
.slider__head-quote img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__text {
  margin-bottom: 3.9rem;
  font-size: 1.8rem;
  line-height: 145%;
  font-style: italic;
  color: #636363;
}
.slider__stars .stars-gold__star {
  width: 2.3rem;
  height: 2.3rem;
}
.slider__stars .stars-gold__star img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-slider {
  min-width: 0;
}

.slick-track {
  display: flex;
}

.slick-list {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .feedback {
    padding: 8rem 0 13rem;
  }
  .feedback__title {
    margin-bottom: 5.64rem;
    font-size: 3.2rem;
  }
  .slider__item {
    padding: 2.7rem 3.06rem;
  }
  .slider__head {
    margin-bottom: 2.27rem;
  }
  .slider__head-img {
    margin-right: 1.48rem;
    width: 5.05rem;
    height: 5.05rem;
  }
  .slider__head-name {
    font-size: 1.49rem;
  }
  .slider__head-date {
    font-size: 1.19rem;
  }
  .slider__head-quote {
    width: 4.17rem;
    height: 3.18rem;
  }
  .slider__text {
    margin-bottom: 2.74rem;
    font-size: 1.28rem;
  }
  .slider__stars .stars-gold__star {
    width: 1.64rem;
    height: 1.64rem;
  }
}
@media (max-width: 768px) {
  .slider__item:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 375px) {
  .feedback {
    padding: 6rem 0 13rem;
  }
  .feedback__title {
    font-size: 3rem;
  }
  .slider__item {
    padding: 2.26rem 2.56rem;
  }
  .slider__head {
    margin-bottom: 1.9rem;
  }
  .slider .slick-arrow.slick-prev {
    left: calc(50% - 6rem);
  }
  .slider .slick-arrow.slick-next {
    right: calc(50% - 6rem);
  }
  .slider__head-img {
    margin-right: 1.24rem;
    width: 4.23rem;
    height: 4.23rem;
  }
  .slider__head-name {
    font-size: 1.25rem;
  }
  .slider__head-date {
    font-size: 1rem;
  }
  .slider__head-quote {
    width: 3.5rem;
    height: 2.64rem;
  }
  .slider__text {
    font-size: 1.07rem;
  }
  .slider__stars .stars-gold__star {
    width: 1.37rem;
    height: 1.37rem;
  }
}
/*promo*/
.promo {
  padding: 9rem 1.5rem 21.6rem;
}
.promo__container {
  position: relative;
  background-color: #6c5fbc;
  border-radius: 3rem;
  padding: 3.7rem 6.6rem 6.1rem;
}
.promo__title {
  position: relative;
  font-family: "Poppins", serif;
  font-size: 7rem;
  line-height: 150%;
  font-weight: 800;
  color: #ffffff;
  z-index: 3;
  opacity: 0.8;
}
.promo__form {
  position: relative;
  width: 43.97rem;
  font-family: "Poppins", serif;
  z-index: 3;
}
.promo__email {
  width: 43.97rem;
  padding: 2.17rem;
  border-radius: 1.42rem;
  font-size: 1.63rem;
  line-height: 150%;
  opacity: 0.8;
}
.promo__email::-moz-placeholder {
  font-size: 1.63rem;
  color: #878787;
  letter-spacing: 3%;
}
.promo__email::placeholder {
  font-size: 1.63rem;
  color: #878787;
  letter-spacing: 3%;
}
.promo__button {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  right: 0.72rem;
  top: 0.72rem;
  width: 13.24rem;
  height: 5.34rem;
  border-radius: 1.13rem;
  font-size: 1.48rem;
  line-height: 150%;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #f7f8fa;
}
.promo__button:hover {
  box-shadow: 0 0 1rem #5c4eae;
  background-color: #5c4eae;
  color: #f7f8fa;
}
.promo__img {
  position: absolute;
  right: 7rem;
  top: 6.4rem;
  z-index: 3;
}
.promo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo__decor-right {
  height: 100%;
  max-width: 74%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 3rem 3rem 0;
  overflow: hidden;
}
.promo__decor-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo__decir-left {
  height: 100%;
  max-width: 26%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3rem 0 0 3rem;
  overflow: hidden;
}
.promo__decir-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .promo {
    padding: 9rem 1.5rem 15.36rem;
  }
  .promo__container {
    padding: 2.63rem 4.69rem 4.34rem;
  }
  .promo__title {
    font-size: 4.98rem;
  }
  .promo__form {
    width: 31.27rem;
  }
  .promo__email {
    width: 31.27rem;
    padding: 1.55rem;
    font-size: 1.16rem;
  }
  .promo__email::-moz-placeholder {
    font-size: 1.16rem;
  }
  .promo__email::placeholder {
    font-size: 1.16rem;
  }
  .promo__button {
    width: 9.41rem;
    height: 3.8rem;
    right: 0.45rem;
    top: 0.51rem;
    font-size: 1.05rem;
  }
  .promo__img {
    max-width: 21.49rem;
  }
}
@media (max-width: 768px) {
  .promo__container {
    padding: 2.63rem 2rem 4.34rem;
  }
  .promo__img {
    max-width: 18.49rem;
    right: 2rem;
  }
}
@media (max-width: 600px) {
  .promo {
    padding: 4rem 1.5rem 19.8rem;
  }
  .promo__container {
    padding: 3.66rem 2.73rem 9.53rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promo__title {
    margin-bottom: 1.59rem;
    font-size: 4.14rem;
  }
  .promo__img {
    max-width: 16.95rem;
    top: calc(50% + 6rem);
    right: calc(50% - 8.5rem);
  }
  .promo__decir-left, .promo__decor-right {
    display: none;
  }
}
@media (max-width: 375px) {
  .promo__form {
    width: 24rem;
  }
  .promo__email {
    width: 100%;
  }
  .promo__button {
    width: 7rem;
    height: 3.48rem;
    top: 0.72rem;
  }
}
/*FOOTER*/
.footer {
  padding: 9.6rem 0 8.1rem;
  background-color: #eaeaea;
}
.footer__navigation {
  padding-bottom: 2.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid #e0e0e0;
}
.footer__menu-list {
  display: flex;
}
.footer__menu-item:not(:last-child) {
  margin-right: 7rem;
}
.footer__menu-link {
  font-size: 1.78rem;
  line-height: 150%;
  font-weight: 500;
  color: #999999;
  transition: all 0.5s ease;
}
.footer__menu-link:hover {
  text-decoration: underline;
  color: #777474;
}
.footer__info {
  padding-top: 5.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright {
  font-size: 1.7rem;
  line-height: 147%;
  font-weight: 500;
  color: #999999;
}

.social {
  display: flex;
  align-items: flex-end;
}
.social__item {
  max-width: 2.13rem;
  transition: all 0.5s ease;
}
.social__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.social__item:not(:last-child) {
  margin-right: 5.38rem;
}
.social__item:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer {
    padding: 6.83rem 0 5.74rem;
  }
  .footer__navigation {
    padding-bottom: 2.06rem;
  }
  .footer__menu-item:not(:last-child) {
    margin-right: 4.98rem;
  }
  .footer__menu-link {
    font-size: 1.27rem;
  }
  .footer__info {
    padding-top: 4.05rem;
  }
  .footer__copyright {
    font-size: 1.21rem;
  }
  .social__item {
    max-width: 1.52rem;
  }
  .social__item:not(:last-child) {
    margin-right: 3.83rem;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 5.5rem 0 3.5rem;
    position: relative;
  }
  .footer__navigation {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__logo {
    margin-bottom: 5.3rem;
  }
  .footer__menu-list {
    flex-direction: column;
  }
  .footer__menu-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .footer__menu-link {
    font-size: 1.4rem;
  }
  .footer__info {
    padding-top: 2.6rem;
    flex-direction: column;
  }
  .footer__copyright {
    font-size: 1.35rem;
  }
  .footer__social {
    position: absolute;
    top: 6.57rem;
    right: 3.06rem;
  }
  .social__item:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 340px) {
  .footer__copyright {
    margin-bottom: 2rem;
  }
  .footer__social {
    position: static;
  }
}
/*MENU----------------------------------------------*/
/*search-info*/
.search-info {
  padding: 12rem 0 6.8rem;
  font-family: "Poppins", serif;
}
.search-info__items {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
}

.left {
  max-width: 75.8rem;
  width: 61%;
}
.left__promo {
  margin-bottom: 14.3rem;
  max-height: 25.1rem;
  position: relative;
}
.left__search {
  width: 100%;
  position: relative;
}
.left__search-input {
  margin-bottom: 3.51rem;
  padding: 2.13rem 2.85rem 2.13rem 7.82rem;
  width: 100%;
  height: 7.5rem;
  background-color: #ededed;
  border-radius: 1.95rem;
  font-size: 2.05rem;
  line-height: 117%;
  font-weight: 500;
}
.left__search-input::-moz-placeholder {
  color: #aaabba;
}
.left__search-input::placeholder {
  color: #aaabba;
}
.left__search-img {
  width: 2.08rem;
  height: 2.71rem;
  position: absolute;
  top: 2.39rem;
  left: 2.85rem;
}
.left__search-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.left__search-buttons {
  width: 100%;
  display: flex;
}
.left__search-button-double {
  width: 50%;
  height: 7.5rem;
  background-color: #f3f5f6;
  border: 0.22rem solid #6c5fbc;
  color: #6c5fbc;
  font-size: 1.95rem;
  font-weight: 500;
  transition: all 0.5s ease;
}
.left__search-button-double:hover {
  background-color: #6c5fbc;
  color: #f3f5f6;
}
.left__search-food-button {
  border-radius: 1.51rem 0 0 1.51rem;
}
.left__search-restaurant-button {
  border-radius: 0 1.51rem 1.51rem 0;
  border-left: none;
}

.promo-left {
  position: relative;
  margin-right: 1.5rem;
  width: 100%;
  padding: 3.02rem 0 2.9rem 2.1rem;
  font-family: "Poppins", serif;
  background-color: #6c5fbc;
  border-radius: 1.87rem;
}
.promo-left__title {
  font-size: 7.5rem;
  line-height: 100%;
  font-weight: 800;
  color: #f7f8fa;
}
.promo-left__text {
  font-size: 8.74rem;
  line-height: 100%;
  font-weight: 800;
  color: #7c6fcd;
}
.promo-left__img {
  position: absolute;
  top: 7rem;
  right: 1.57rem;
  max-width: 20.4rem;
}
.promo-left__img img {
  width: 100%;
}
.promo-left__decor {
  width: 5.18rem;
  height: 3.64rem;
  position: absolute;
  top: -2.5rem;
  right: -4.5rem;
}
.promo-left__decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.right {
  padding: 3.2rem;
  max-width: 37.7rem;
  width: 30%;
  border-radius: 2.38rem;
  box-shadow: 1rem 2.5rem 6rem rgba(0, 90, 100, 0.2);
  font-family: "Poppins", serif;
}
.right__title {
  margin-bottom: 1.74rem;
  font-size: 2.15rem;
  line-height: 135%;
  font-weight: 600;
  color: #323142;
}
.right__category {
  margin-bottom: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right__category-item {
  width: 5.62rem;
  height: 9.64rem;
  border-radius: 1.47rem;
  font-size: 1.18rem;
  font-weight: 500;
}
.right__sort {
  margin-bottom: 2.89rem;
  display: flex;
  justify-content: space-between;
}
.right__sort-item {
  font-size: 1.55rem;
  line-height: 187%;
  font-weight: 500;
  color: #acadb9;
  cursor: pointer;
  transition: all 0.5s ease;
}
.right__sort-item:hover {
  color: #6c5fbc;
}
.right__price {
  margin-bottom: 7rem;
  position: relative;
}
.right__price-progress {
  margin-bottom: 1.23rem;
  width: 100%;
  height: 0.53rem;
  border-radius: 0.88rem;
  overflow: hidden;
}
.right__price-progress::-webkit-progress-bar {
  background-color: #6c5fbc;
}
.right__price-circle {
  position: absolute;
  top: -0.4rem;
  left: 3.52rem;
  width: 2.46rem;
  height: 2.46rem;
}
.right__price-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.right__price-digits {
  display: flex;
  justify-content: space-between;
}
.right__price-digit {
  font-size: 1.06rem;
  line-height: 281%;
  font-weight: 500;
  color: #c2c3cb;
}
.right__button {
  width: 100%;
}

.category-card {
  padding-top: 1.31rem;
  padding-bottom: 1.23rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1.47rem 2.21rem rgba(135, 125, 200, 0.2509803922);
}
.category-card_yellow {
  background-color: #ffde8a;
  color: #d69900;
  border: 1px solid #ffde8a;
}
.category-card_red {
  background-color: rgba(251, 71, 29, 0.5019607843);
  color: #fb471d;
  border: 1px solid rgba(251, 71, 29, 0.5019607843);
}
.category-card_orange {
  background-color: #f9e5cb;
  color: #e28b14;
  border: 1px solid #f9e5cb;
}
.category-card_blue {
  background-color: #c5d4ff;
  color: #002073;
  border: 1px solid #c5d4ff;
}
.category-card__text {
  font-size: 1.31rem;
  font-weight: 500;
}

/*questions*/
.questions {
  padding: 19.65rem 0 17.35rem;
}
.questions__title {
  margin: 0 auto 9rem;
  max-width: 40.8rem;
  position: relative;
  font-size: 4.5rem;
  text-align: center;
}
.questions__decor {
  width: 4.1rem;
  height: 3.88rem;
  position: absolute;
  top: -2.73rem;
  right: -3.88rem;
}
.questions__decor img {
  width: 100%;
}
.questions__item {
  padding: 1.58rem 1.38rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.11rem solid #adadad;
}
.questions__item:not(:last-child) {
  margin-bottom: 2.87rem;
}
.questions__item-text {
  font-family: "Poppins", serif;
  font-size: 2.34rem;
  line-height: 253%;
  font-weight: 600px;
}

@media (max-width: 1024px) {
  .search-info {
    padding: 8.53rem 0 6.8rem;
  }
  .left {
    max-width: 57.89rem;
  }
  .promo-left__title {
    font-size: 5.33rem;
  }
  .promo-left__text {
    font-size: 6.22rem;
  }
  .promo-left__img {
    max-width: 15.08rem;
  }
  .right {
    max-width: 30.81rem;
    padding: 1.27rem;
  }
  .right__title {
    margin-bottom: 1.2rem;
    font-size: 1.52rem;
  }
  .right__category-item {
    width: 4.71rem;
    height: 6.85rem;
    border-radius: 1.47rem;
    font-size: 1.18rem;
  }
  .right__sort-item {
    font-size: 1.1rem;
  }
  .right__price-circle {
    width: 1.75rem;
    height: 1.75rem;
    top: 0rem;
  }
  .right__price-digit {
    font-size: 0.75rem;
  }
  .category-card__img {
    max-width: 2.8rem;
    max-height: 2.5rem;
  }
  .category-card__img img {
    width: 100%;
    height: 100%;
  }
  .category-card__text {
    font-size: 0.84rem;
  }
}
@media (max-width: 768px) {
  .left {
    margin-right: 4.5rem;
  }
  .left__search-input {
    padding: 2rem 2rem 2rem 4rem;
    width: 100%;
    height: 6rem;
    font-size: 1.8rem;
  }
  .left__search-img {
    width: 2rem;
    height: 2.5rem;
    top: 1.8rem;
    left: 1rem;
  }
  .left__search-button-double {
    padding: 0;
    height: 5.5rem;
    font-size: 1.8rem;
  }
  .promo-left {
    padding: 2rem;
    flex: 1 0 auto;
  }
  .promo-left__title {
    font-size: 4.33rem;
  }
  .promo-left__text {
    font-size: 4.52rem;
  }
  .promo-left__img {
    max-width: 12.08rem;
  }
  .promo-left__decor {
    width: 4.18rem;
    height: 2.64rem;
    top: -1.8rem;
    right: -3.5rem;
  }
  .right {
    flex: 0 0 40%;
  }
  .right__sort-item:not(:last-child) {
    margin-bottom: 1rem;
  }
  .questions {
    padding: 14rem 0 12.3rem;
  }
  .questions__item-text {
    font-size: 1.6rem;
    margin-right: 1.5rem;
  }
  .questions__item-img {
    max-width: 2.14rem;
  }
}
@media (max-width: 600px) {
  .search-info {
    padding: 6.16rem 0;
  }
  .search-info__items {
    flex-direction: column;
  }
  .left {
    margin: 0 auto;
    margin-bottom: 7.5rem;
    width: 95%;
  }
  .right {
    margin: 0 auto;
    padding: 3rem;
    width: 100%;
    max-width: 90%;
  }
}
@media (max-width: 468px) {
  .questions {
    padding: 9.25rem 0 9.5rem;
  }
  .questions__title {
    font-size: 3.6rem;
  }
  .questions__decor {
    display: none;
  }
  .questions__item-text {
    font-size: 1.23rem;
  }
  .questions__item-img {
    max-width: 1.58rem;
  }
}
@media (max-width: 380px) {
  .promo-left {
    margin-bottom: 7.5rem;
  }
  .promo-left__title {
    font-size: 3.03rem;
  }
  .promo-left__text {
    font-size: 3.53rem;
  }
  .promo-left__img {
    max-width: 10.28rem;
    top: 4rem;
    right: 1.5rem;
  }
  .left__search-input {
    padding-left: 3rem;
    height: 5.4rem;
    font-size: 1.2rem;
  }
  .left__search-img {
    width: 1.47rem;
    height: 1.92rem;
    top: 1.7rem;
  }
  .left__search-button-double {
    height: 5.1rem;
    font-size: 1.2rem;
  }
  .right {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  .questions__title {
    font-size: 2.4rem;
  }
}
/*--------------------------------------------------*/
/*restorants-menu*/
.top-restaurants_single .container {
  padding: 4rem 0;
  border-bottom: none;
  border-top: none;
}

.top-restaurants__item_single {
  display: block;
  cursor: auto;
}
.top-restaurants__item_single:hover {
  background-color: #fff;
}
.top-restaurants__item_single .card-restaurants__img {
  height: 47.8rem;
}
.top-restaurants__item_single .card-restaurants__category {
  display: none;
}
.top-restaurants__item_single .card-restaurants__content {
  height: 11.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-restaurants__item_single .card-restaurants__title {
  font-size: 4rem;
}
.top-restaurants__item_single .dop-info-card {
  width: 50%;
  justify-content: space-between;
  align-items: center;
  font-size: 2.62rem;
}

@media (max-width: 1024px) {
  .top-restaurants__item_single .card-restaurants__title {
    font-size: 3rem;
  }
  .top-restaurants__item_single .dop-info-card {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .top-restaurants__item_single .card-restaurants__img {
    height: 26.9rem;
  }
  .top-restaurants__item_single .card-restaurants__content {
    height: 8.44rem;
  }
  .top-restaurants__item_single .card-restaurants__title {
    font-size: 2.8rem;
  }
  .top-restaurants__item_single .dop-info-card {
    width: 40%;
    font-size: 1.87rem;
  }
}
@media (max-width: 600px) {
  .top-restaurants__item_single .card-restaurants__img {
    height: 21rem;
  }
  .top-restaurants__item_single .card-restaurants__title {
    font-size: 2.4rem;
  }
  .top-restaurants__item_single .dop-info-card {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .top-restaurants__item_single {
    box-shadow: 0.595rem 5rem 3.567rem rgba(229, 229, 229, 0.7);
  }
  .top-restaurants__item_single .card-restaurants__img {
    height: 14.01rem;
  }
  .top-restaurants__item_single .card-restaurants__content {
    padding-left: 2rem;
    padding-right: 2rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .top-restaurants__item_single .card-restaurants__title {
    font-size: 2.05rem;
  }
  .top-restaurants__item_single .dop-info-card {
    width: 100%;
    font-size: 1.54rem;
  }
}
@media (max-width: 360px) {
  .top-restaurants__item_single .card-restaurants__img {
    height: 12rem;
  }
  .top-restaurants__item_single .card-restaurants__content {
    height: 7rem;
  }
  .top-restaurants__item_single .card-restaurants__title {
    font-size: 1.8rem;
  }
}
/*top-dishes*/
.top-dishes__subtitle {
  margin-bottom: 4.22rem;
  font-size: 2.49rem;
  font-weight: 600;
}

.top-dishes__items_first {
  margin-bottom: 10.33rem;
}

/*Blog-------------------------------------------*/
.blog {
  background-color: #f9f9f9;
}

/*Articles*/
.articles__title {
  margin-bottom: 7.5rem;
  font-size: 4.5rem;
  text-align: center;
}
.articles__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 34.88rem));
  -moz-column-gap: 6.17rem;
       column-gap: 6.17rem;
  row-gap: 11.52rem;
  justify-content: center;
}

.card-articles {
  max-width: 34.88rem;
  padding: 2.5rem 2rem 3rem;
  background-color: #ffffff;
  border-radius: 1.59rem;
  box-shadow: 0 0.39rem 4.69rem rgba(197, 197, 197, 0.2509803922);
  transition: all 0.5s ease;
}
.card-articles:hover {
  border: 0.1rem solid #c5c5c5;
}
.card-articles__img {
  margin-bottom: 2.16rem;
}
.card-articles__img img {
  width: 100%;
}
.card-articles__title {
  margin-bottom: 2.05rem;
  font-size: 2.11rem;
}
.card-articles__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-articles__person {
  display: flex;
  align-items: center;
}
.card-articles__person-img {
  margin-right: 1.15rem;
  width: 4.37rem;
  height: 4.37rem;
}
.card-articles__person-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-articles__person-autor-text {
  font-size: 1.18rem;
  color: #8d8d8d;
}
.card-articles__person-autor-name {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
}
.card-articles__date {
  font-size: 1.59rem;
  font-weight: 500;
  color: #b7b4b4;
}

@media (max-width: 1200px) {
  .articles__title {
    margin-bottom: 5.73rem;
    font-size: 3.2rem;
  }
  .articles__items {
    grid-template-columns: repeat(auto-fit, minmax(auto, 24.8rem));
    -moz-column-gap: 4.39rem;
         column-gap: 4.39rem;
    row-gap: 8.19rem;
  }
  .card-articles {
    padding: 1.8rem 1.35rem 2.18rem;
  }
  .card-articles__img {
    margin-bottom: 1.53rem;
  }
  .card-articles__title {
    font-size: 1.5rem;
  }
  .card-articles__person-img {
    margin-right: 0.81rem;
    width: 3.11rem;
    height: 3.11rem;
  }
  .card-articles__person-autor-tex {
    font-size: 0.84rem;
  }
  .card-articles__person-autor-name {
    font-size: 1.2rem;
  }
  .card-articles__date {
    font-size: 1.13rem;
  }
}
@media (max-width: 570px) {
  .articles__items {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
/*blog-article*/
.article {
  padding: 12.6rem 0 16.8rem;
}
.article__autor {
  margin-bottom: 6.15rem;
}
.article__autor .card-articles__person-img {
  width: 5.78rem;
  height: 5.78rem;
}
.article__autor .card-articles__person-autor-text {
  font-size: 1.5rem;
}
.article__autor .card-articles__person-autor-name {
  font-size: 2.18rem;
}
.article__img-big {
  margin-bottom: 8rem;
  width: 100%;
  height: 40.3rem;
}
.article__img-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.article__title {
  margin-bottom: 3.2rem;
  font-size: 3.74rem;
  font-weight: 600;
}
.article__items {
  display: flex;
}
.article__item:first-child {
  max-width: 72%;
}

.article-text {
  padding-right: 7.5rem;
  border-right: 0.1rem solid #9b9b9b;
}
.article-text__title {
  margin-bottom: 3.5rem;
  font-size: 3.3rem;
  font-weight: 600;
  color: #252525;
}
.article-text__title:not(:first-child) {
  margin-top: 9rem;
}
.article-text__text {
  font-size: 2.2rem;
  line-height: 202%;
  color: #252525;
}
.article-text__text ul {
  margin-top: 5.6rem;
}
.article-text__text li {
  list-style-type: disc;
  list-style-position: inside;
}
.article-text__button {
  margin-top: 10rem;
  max-width: 24.5rem;
  display: flex;
  align-items: center;
}
.article-text__button-text {
  margin-right: 2.71rem;
  font-size: 2.03rem;
}

.aticle-images {
  padding-left: 4.67rem;
}
.aticle-images__card:not(:last-child) {
  margin-bottom: 2.26rem;
}

@media (max-width: 1024px) {
  .article {
    padding: 8.96rem 0 11.95rem;
  }
  .article__title {
    margin-bottom: 2.28rem;
    font-size: 2.66rem;
  }
  .article__autor {
    margin-bottom: 4.39rem;
  }
  .article__autor .card-articles__person-img {
    width: 3.97rem;
    height: 3.97rem;
  }
  .article__autor .card-articles__person-autor-text {
    font-size: 1.1rem;
  }
  .article__autor .card-articles__person-autor-name {
    font-size: 1.37rem;
  }
  .article__img-big {
    margin-bottom: 5.69rem;
    height: 28.66rem;
  }
  .article-text {
    padding-right: 5.34rem;
  }
  .article-text__title {
    margin-bottom: 2.49rem;
    font-size: 2.35rem;
  }
  .article-text__title:not(:first-child) {
    margin-top: 7.11rem;
  }
  .article-text__text {
    font-size: 1.56rem;
  }
  .article-text__text ul {
    margin-top: 3.94rem;
  }
  .article-text__button {
    max-width: 17.42rem;
  }
  .article-text__button-text {
    margin-right: 1.93rem;
    font-size: 1.44rem;
  }
  .article-text__button-img {
    width: 2.17rem;
    height: auto;
  }
  .article-text__button-img img {
    width: 100%;
  }
  .aticle-images {
    padding-left: 2.32rem;
  }
}
@media (max-width: 860px) {
  .article {
    padding: 6.9rem 0 9.53rem;
  }
  .article__item:first-child {
    max-width: 100%;
  }
  .aticle-images {
    display: none;
  }
  .article-text {
    padding-right: 0;
    border-right: none;
    text-align: justify;
  }
}
@media (max-width: 375px) {
  .article__title {
    font-size: 1.88rem;
  }
  .article-text__title {
    font-size: 1.74rem;
  }
  .article-text__text {
    font-size: 1.16rem;
  }
  .article-text__button {
    margin-top: 5.5rem;
    max-width: 13.7rem;
    padding: 1.8rem;
  }
  .article-text__button-text {
    margin-right: 1.12rem;
    font-size: 1.14rem;
  }
}
/*contacts-------------*/
.contacts {
  padding: 20.4rem 0 21.2rem;
  position: relative;
}
.contacts__just-contact {
  position: absolute;
  top: 20.4rem;
  left: 0;
  width: 53.1rem;
  height: 81.8rem;
  padding-top: 8.44rem;
  background-color: #6c5fbc;
}
.contacts__title {
  font-weight: 600;
  font-size: 4rem;
}
.contacts__title_white {
  text-align: center;
  font-size: 4.8rem;
  color: #f9f9f9;
}
.contacts__title-body {
  margin: 0 auto;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.contacts__img {
  position: absolute;
  right: -15rem;
  bottom: -7.6rem;
  max-width: 30.4rem;
}
.contacts__img-first {
  width: 100%;
}
.contacts__img-decor {
  position: absolute;
  top: -1rem;
  right: -3.78rem;
  width: 3.78rem;
}
.contacts__img-decor img {
  width: 100%;
}
.contacts__items {
  display: flex;
  justify-content: space-between;
}
.contacts__item:last-child {
  max-width: 49.3rem;
}
.contacts__form {
  margin-top: 6.2rem;
}

.title__decor-block {
  position: absolute;
  top: -3rem;
  left: -1rem;
  width: 3rem;
  height: 5.66rem;
}
.title__decor-first {
  position: absolute;
  top: 0;
  right: 0;
}
.title__decor-second {
  position: absolute;
  bottom: 0;
  left: 0;
}
.title__decor-arrow {
  position: absolute;
  top: 3rem;
  left: -1rem;
  max-width: 33.6rem;
}
.title__decor-arrow img {
  width: 100%;
}

.form-contacts {
  position: relative;
}
.form-contacts__mobile-block {
  display: none;
}
.form-contacts__name {
  margin-bottom: 2.6rem;
}
.form-contacts__email {
  margin-bottom: 5.2rem;
}
.form-contacts__query {
  margin-bottom: 4.3rem;
  height: 34.5rem;
}
.form-contacts__button {
  width: 100%;
  height: 7.6rem;
  font-size: 2.08rem;
}
.form-contacts__decor {
  position: absolute;
  left: -11rem;
  bottom: -9rem;
  width: 15.27rem;
  transform: rotate(10deg);
}
.form-contacts__decor img {
  width: 100%;
}

.message {
  width: 100%;
  padding: 2.65rem 2.53rem;
  background-color: inherit;
  font-size: 1.69rem;
  border: 0.2rem solid #6c5fbc;
  border-radius: 1.69rem;
}
.message::-moz-placeholder {
  text-transform: uppercase;
  color: #b6b6b6;
}
.message::placeholder {
  text-transform: uppercase;
  color: #b6b6b6;
}

@media (max-width: 1290px) {
  .contacts {
    padding: 14.93rem 0 15.08rem;
  }
  .contacts__just-contact {
    top: 14.93rem;
    width: 37.76rem;
    height: 58.17rem;
  }
  .contacts__title_white {
    font-size: 3.41rem;
  }
  .contacts__img {
    right: -4rem;
  }
  .contacts__img-first {
    width: 21.62rem;
    height: 43.31rem;
  }
  .contacts__item:last-child {
    max-width: 42rem;
  }
  .contacts__title {
    font-size: 2.84rem;
  }
  .title__decor-block {
    left: -2rem;
    width: 2.13rem;
    height: 4.02rem;
  }
  .title__decor-first {
    width: 0.97rem;
    height: 1.23rem;
  }
  .title__decor-second {
    width: 0.79rem;
    height: 1.33rem;
  }
  .message {
    padding: 1.86rem 1.8rem;
    font-size: 1.2rem;
  }
  .form-contacts__name {
    margin-bottom: 1.85rem;
  }
  .form-contacts__email {
    margin-bottom: 3.7rem;
  }
  .form-contacts__query {
    margin-bottom: 3.06rem;
    height: 24.53rem;
  }
  .form-contacts__button {
    height: 5.4rem;
    font-size: 1.48rem;
  }
}
@media (max-width: 1024px) {
  .contacts__item:last-child {
    max-width: 35.06rem;
  }
}
@media (max-width: 890px) {
  .contacts {
    padding: 8rem 0 14rem;
  }
  .contacts__just-contact {
    top: 8rem;
    width: 30rem;
    height: 58.17rem;
  }
  .contacts__img {
    right: -1.5rem;
  }
  .form-contacts__decor {
    left: 0;
    bottom: -11rem;
    width: 15.27rem;
  }
}
@media (max-width: 768px) {
  .contacts__just-contact {
    width: 22rem;
  }
  .contacts__img {
    bottom: 3rem;
    right: 3rem;
  }
  .contacts__img-first {
    width: 16rem;
    height: auto;
  }
  .contacts__img-decor {
    display: none;
  }
  .title__decor-block {
    display: none;
  }
}
@media (max-width: 600px) {
  .contacts {
    padding: 5.1rem 0 10rem;
  }
  .contacts__just-contact {
    display: none;
  }
  .contacts__item:last-child {
    max-width: 100%;
  }
  .contacts__form {
    margin-top: 0;
  }
  .contacts__title {
    display: none;
  }
  .form-contacts__mobile-block {
    display: block;
    margin-bottom: 4.6rem;
    width: 100%;
    height: 15rem;
    padding-top: 2.38rem;
    background-color: #6c5fbc;
  }
  .mobile-block__block {
    position: relative;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobile-block__title {
    text-align: center;
    font-size: 2.4rem;
    color: #f9f9f9;
  }
  .mobile-block__decor {
    position: absolute;
    top: 0;
    left: -8rem;
  }
}
/*Pricing------------------------*/
/*prising-main-block*/
.pircing-main-block {
  padding: 6.6rem 0 63.91rem;
}
.pircing-main-block__block-violet {
  position: relative;
  width: 100%;
  height: 33.4rem;
  padding-top: 4.43rem;
  background-color: #5c4eae;
}
.pircing-main-block__title-block {
  margin: 0 auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.pircing-main-block__title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  color: #f9f9f9;
}
.pircing-main-block__title-decor {
  position: absolute;
  left: -10rem;
  top: 0.3rem;
}
.pircing-main-block__title-decor img {
  height: 100%;
}
.pircing-main-block__site-img-block {
  margin: 0 auto;
  max-width: 88.7rem;
  position: relative;
  top: 5rem;
}
.pircing-main-block__decor-up {
  width: 4rem;
  position: absolute;
  right: -4rem;
  top: -3.6rem;
}
.pircing-main-block__decor-up img {
  width: 100%;
}
.pircing-main-block__site-img {
  box-shadow: 0.84rem 2.1rem 10rem rgba(0, 0, 0, 0.1019607843);
}
.pircing-main-block__site-img img {
  width: 100%;
}
.pircing-main-block__decor-down {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
}
.pircing-main-block__decor-down img {
  width: 100%;
}

.pricing {
  padding-bottom: 11.8rem;
}
.pricing__info {
  padding: 5.1rem 9.2rem 5.41rem 6.3rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
.pricing__table {
  margin-bottom: 4.4rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3.5rem;
}
.pricing__buttons {
  margin-left: auto;
  max-width: 52rem;
  display: flex;
  justify-content: space-between;
}
.pricing__button {
  font-size: 1.63rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3%;
}

.pricing-table {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  row-gap: 3.5rem;
}
.pricing-table__item {
  font-size: 2.2rem;
  line-height: 145%;
  font-weight: 500;
  color: #606060;
}
.pricing-table__item_three {
  grid-column: span 3;
}
.pricing-table__item_border {
  padding-bottom: 4rem;
  border-bottom: 1px solid #cbcbcb;
}
.pricing-table__item sup {
  margin-right: 0.5rem;
  vertical-align: 1.2em;
  font-size: 2.4rem;
  font-weight: 600;
  color: #272e35;
}
.pricing-table__item span {
  font-size: 6.4rem;
  font-weight: 600;
  color: #272e35;
}
.pricing-table__col-title {
  margin-bottom: 2.5rem;
  font-size: 4rem;
  font-weight: 600;
  color: #282828;
}
.pricing-table__text {
  max-width: 13.9rem;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 500;
  color: #6e757c;
}
.pricing-table__tbody-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #272e35;
}

.prising-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .pircing-main-block {
    padding: 4.69rem 0 45.58rem;
  }
  .pircing-main-block__block-violet {
    height: 23.75rem;
  }
  .pircing-main-block__title {
    font-size: 2.84rem;
  }
  .pircing-main-block__title-decor {
    height: 5.54rem;
    left: -7rem;
  }
  .pircing-main-block__site-img-block {
    max-width: 63.08rem;
  }
  .pircing-main-block__decor-up {
    width: 2.92rem;
    right: -3rem;
    top: -2.8rem;
  }
  .pircing-main-block__decor-down {
    width: 3.3rem;
    bottom: -3.2rem;
    left: -3.2rem;
  }
  .pricing__info {
    padding: 3.63rem 6.54rem 3.84rem 4.48rem;
  }
  .pricing__buttons {
    max-width: 36.98rem;
  }
  .pricing__button {
    font-size: 1.16rem;
  }
  .pricing-table__item {
    font-size: 1.56rem;
  }
  .pricing-table__item sup {
    margin-right: 0.3rem;
    vertical-align: 1.2em;
    font-size: 1.71rem;
  }
  .pricing-table__item span {
    font-size: 4.55rem;
  }
  .pricing-table__item img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .pricing-table__col-title {
    margin-bottom: 1.79rem;
    font-size: 2.84rem;
  }
  .pricing-table__text {
    max-width: 10rem;
    font-size: 1.14rem;
  }
}
@media (max-width: 768px) {
  .pircing-main-block {
    padding: 4.8rem 0 35rem;
  }
  .pircing-main-block__block-violet {
    padding: 3rem 1rem;
    height: 20rem;
  }
  .pircing-main-block__site-img-block {
    max-width: 58rem;
  }
  .pircing-main-block__decor-up {
    display: none;
  }
  .pircing-main-block__decor-down {
    display: none;
  }
  .pricing-table {
    grid-template-columns: 48% 25% 25%;
    -moz-column-gap: 1%;
         column-gap: 1%;
  }
  .pricing-table__item {
    font-size: 1.5rem;
  }
  .pricing-table__item_img {
    text-align: right;
  }
  .pricing-table__item sup {
    margin-right: 0.2rem;
    font-size: 1.5rem;
  }
  .pricing-table__item span {
    font-size: 3.5rem;
  }
  .pricing-table__col-title {
    margin-bottom: 1.4rem;
    text-align: center;
    font-size: 2rem;
  }
  .pricing-table__text {
    text-align: center;
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .pircing-main-block {
    padding: 4.8rem 0 30rem;
  }
}
@media (max-width: 480px) {
  .pircing-main-block {
    padding: 4.8rem 0 8rem;
  }
  .pircing-main-block__block-violet {
    height: 12rem;
  }
  .pircing-main-block__site-img-block {
    display: none;
  }
  .pricing {
    display: none;
  }
  .prising-mobile {
    display: block;
  }
  .prising-mobile__item {
    padding: 3.1rem 2.8rem 4.3rem 2.1rem;
    border-radius: 1.5rem;
    background-color: #fff;
  }
  .prising-mobile__item:not(:last-child) {
    margin-bottom: 3.8rem;
  }
  .prising-mobile__title {
    margin-bottom: 1.7rem;
    font-size: 2.6rem;
    font-weight: 600;
  }
  .prising-mobile__price {
    margin-bottom: 2.4rem;
    padding-bottom: 2.3rem;
    font-size: 1.14rem;
    line-height: 150%;
    font-weight: 500;
    color: #6e757c;
    border-bottom: 1px solid #c2c2c2;
  }
  .prising-mobile__price sup {
    margin-right: 0.3rem;
    vertical-align: 1.2em;
    font-size: 1.71rem;
    font-weight: 600;
    color: #272e35;
  }
  .prising-mobile__price span {
    font-size: 4.55rem;
    font-weight: 600;
    color: #272e35;
  }
  .prising-mobile__text {
    margin-bottom: 1.6rem;
    max-width: 10.5rem;
    font-size: 1.14rem;
    line-height: 150%;
    font-weight: 500;
    color: #6e757c;
  }
  .prising-mobile__button {
    margin-bottom: 3.3rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  .prising-mobile__features {
    margin-bottom: 2.4rem;
  }
  .prising-mobile__features-items {
    display: none;
  }
  .prising-mobile__features-item {
    display: flex;
    align-items: center;
    font-size: 1.19rem;
  }
  .prising-mobile__features-item:not(:last-child) {
    margin-bottom: 1.3rem;
  }
  .prising-mobile__features-item img {
    margin-right: 1.15rem;
    width: 1.89rem;
    height: 1.89rem;
  }
  .features {
    display: flex;
    align-items: start;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.5s ease;
  }
  .features__text {
    margin-right: 1rem;
    font-size: 1.38rem;
    line-height: 150%;
    font-weight: 700;
  }
  .features__img img {
    vertical-align: baseline;
  }
}
@media (max-width: 340px) {
  .pircing-main-block__block-violet {
    height: 10rem;
  }
  .pircing-main-block__title {
    font-size: 1.5rem;
  }
  .pircing-main-block__title-decor {
    width: 3.29rem;
    height: 3.09rem;
    left: -4rem;
  }
}
.features-items-show {
  display: block;
}

.features-arrow-rotate {
  transform: rotate(180deg);
}

/*popup Sign Up*/
.popup {
  display: none;
  width: 100%;
  background-color: #f9f9f9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
}
.popup__container {
  position: relative;
  width: 100%;
  display: flex;
}
.popup__item-left {
  flex: 0 1 50%;
}
.popup__item-right {
  flex: 0 1 50%;
}

.popup-sign {
  padding: 3.2rem 4.8rem 4.8rem;
  font-family: "Poppins", serif;
  background-color: #fff;
}
.popup-sign__logo {
  margin-bottom: 6.8rem;
  width: 5.3rem;
  height: 4.88rem;
  display: block;
}
.popup-sign__logo img {
  width: 100%;
}
.popup-sign__title {
  margin-bottom: 4.83rem;
  font-size: 3.53rem;
  font-weight: 600;
  text-align: center;
}
.popup-sign__form {
  margin: 0 auto 2.33rem;
  max-width: 38.8rem;
}
.popup-sign__buttons {
  display: flex;
  justify-content: space-between;
}
.popup-sign__button {
  margin-bottom: 3.3rem;
  width: 18.34rem;
  height: 6.34rem;
  border-radius: 1.33rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
  transition: all 0.5s ease;
}
.popup-sign__button:hover {
  border: 0.1rem solid #6C5FBC;
}
.popup-sign__or {
  margin-bottom: 3.56rem;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 3%;
  color: rgba(0, 90, 100, 0.3490196078);
  text-align: center;
}
.popup-sign__input {
  width: 100%;
  height: 7.45rem;
  padding-left: 7.89rem;
  border-radius: 1.43rem;
  background-color: #F5F5F5;
  font-size: 1.67rem;
  font-weight: 500;
  letter-spacing: 2%;
  color: #6C5FBC;
}
.popup-sign__input::-moz-placeholder {
  font-size: 1.67rem;
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7%;
  color: #C2C3CB;
}
.popup-sign__input::placeholder {
  font-size: 1.67rem;
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7%;
  color: #C2C3CB;
}
.popup-sign__input:focus {
  border: 0.17rem solid #6C5FBC;
}
.popup-sign__user {
  margin-bottom: 2.45rem;
  background-image: url("../img/popup/icons/user.svg");
  background-repeat: no-repeat;
  background-position: 2.45rem;
  transition: all 0.5s ease;
}
.popup-sign__user:focus {
  background-image: url("../img/popup/icons/user-active.svg");
}
.popup-sign__mail {
  margin-bottom: 2.45rem;
  background-image: url("../img/popup/icons/mail.svg");
  background-repeat: no-repeat;
  background-position: 2.45rem;
  transition: all 0.5s ease;
}
.popup-sign__mail:focus {
  background-image: url("../img/popup/icons/mail-active.svg");
}
.popup-sign__pasw {
  margin-bottom: 3.89rem;
  background-image: url("../img/popup/icons/close.svg");
  background-repeat: no-repeat;
  background-position: 2.45rem;
  transition: all 0.5s ease;
}
.popup-sign__pasw:focus {
  background-image: url("../img/popup/icons/close-active.svg");
}
.popup-sign__send-form {
  width: 100%;
  height: 7.45rem;
  font-size: 1.78rem;
  letter-spacing: 3%;
  font-weight: 600;
}
.popup-sign__send-form:hover {
  background-color: #4a3da0;
  color: #FFF;
}
.popup-sign__text {
  margin-bottom: 5.12rem;
  text-align: center;
  font-size: 1.89rem;
  line-height: 100%;
  letter-spacing: 1%;
  color: #3E3E3E;
}
.popup-sign__text a {
  font-weight: 700;
  color: #6C5FBC;
  transition: all 0.5s ease;
}
.popup-sign__text a:hover {
  text-decoration: underline;
}
.popup-sign__footer {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.02rem;
  font-weight: 500;
  color: #718096;
}

.popup-violet {
  position: relative;
  padding: 0 1rem;
  background-color: #6C5FBC;
}
.popup-violet__close {
  position: absolute;
  top: 3rem;
  right: 2rem;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.popup-violet__close:hover {
  box-shadow: 0.1rem 0.1rem 1rem #8984ac;
}
.popup-violet__close span {
  display: block;
  width: 3rem;
  height: 0.2rem;
  background-color: #fff;
}
.popup-violet__close span:first-child {
  position: absolute;
  transform: rotate(50deg);
}
.popup-violet__close span:last-child {
  transform: rotate(-50deg);
}
.popup-violet__images {
  position: relative;
  margin-top: 20.84rem;
  margin-bottom: 9.4rem;
}
.popup-violet__img-main {
  margin: 12rem auto 0;
  position: relative;
  max-width: 35.99rem;
}
.popup-violet__img-main img {
  width: 100%;
}
.popup-violet__img-small {
  position: absolute;
  top: -5.4rem;
  right: -6rem;
  width: 25rem;
  border-radius: 2rem;
  background-color: #fff;
}
.popup-violet__img-small img {
  width: 100%;
}
.popup-violet__img-graf {
  position: absolute;
  bottom: 0;
  left: -3rem;
  max-width: 15.93rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
.popup-violet__img-graf img {
  width: 100%;
}
.popup-violet__img-squares {
  position: absolute;
  top: -8rem;
  left: 8.6rem;
}
.popup-violet__img-square-transparent {
  position: absolute;
  top: 2.5rem;
  left: 2rem;
}
.popup-violet__img-circle {
  position: absolute;
  right: 4rem;
  bottom: 0;
}
.popup-violet__info {
  margin: 0 auto;
  max-width: 50rem;
  color: #fff;
}
.popup-violet__title {
  margin-bottom: 2rem;
  font-size: 4rem;
  line-height: 110%;
  font-weight: 800;
  text-align: center;
  color: #fff;
}
.popup-violet__text {
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: 500;
  letter-spacing: 0.014rem;
  text-align: center;
  opacity: 70%;
}

@media (max-width: 1024px) {
  .popup-sign {
    padding: 2.28rem 3.4rem 3.4rem;
  }
  .popup-sign__logo {
    margin-bottom: 6.27rem;
    width: 3.77rem;
  }
  .popup-sign__title {
    margin-bottom: 3.46rem;
    font-size: 2.51rem;
  }
  .popup-sign__form {
    max-width: 35.28rem;
  }
  .popup-sign__buttons {
    justify-content: space-around;
  }
  .popup-sign__button {
    width: 13.05rem;
    height: 4.51rem;
  }
  .popup-sign__button img {
    max-width: 1.9rem;
  }
  .popup-sign__or {
    margin-bottom: 2.63rem;
    font-size: 1.42rem;
  }
  .popup-sign__input {
    height: 5.3rem;
    padding-left: 5.61rem;
    font-size: 1.2rem;
  }
  .popup-sign__input::-moz-placeholder {
    font-size: 1.2rem;
  }
  .popup-sign__input::placeholder {
    font-size: 1.2rem;
  }
  .popup-sign__send-form {
    height: 5.3rem;
    font-size: 1.26rem;
  }
  .popup-sign__text {
    margin-bottom: 4.48rem;
    font-size: 1.34rem;
  }
  .popup-violet__images {
    margin-bottom: 7.4rem;
  }
  .popup-violet__img-main {
    max-width: 25.59rem;
  }
  .popup-violet__img-small {
    top: -4.4rem;
    right: -5rem;
    width: 20rem;
    height: 6.26rem;
  }
  .popup-violet__img-small img {
    height: 100%;
    width: auto;
  }
  .popup-violet__img-graf {
    max-width: 11.33rem;
  }
  .popup-violet__img-squares {
    left: 3.6rem;
  }
  .popup-violet__img-circle {
    max-width: 6.8rem;
    right: 2rem;
    bottom: -1rem;
  }
  .popup-violet__img-circle img {
    width: 100%;
  }
  .popup-violet__title {
    margin-bottom: 1.42rem;
    font-size: 2.84rem;
  }
  .popup-violet__text {
    margin: 0 auto;
    max-width: 33.06rem;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .popup__item-left {
    flex: 0 1 60%;
  }
  .popup__item-right {
    flex: 0 1 40%;
  }
  .popup-violet__images {
    margin-top: 8rem;
    margin-bottom: 5rem;
  }
  .popup-violet__img-small, .popup-violet__img-graf, .popup-violet__img-squares, .popup-violet__img-circle {
    display: none;
  }
}
@media (max-width: 600px) {
  .popup__item-left {
    flex: 0 1 100%;
  }
  .popup-violet {
    display: none;
  }
  .popup-violet__close span {
    background-color: #6C5FBC;
  }
}