/*nul*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  font-family: Roboto, sans-serif;
  height: 100%;
  width: 100%;
  font-size: 100%;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 144%;
  color: #0d0d0d;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .container {
    max-width: 767.98px;
    padding: 0 30px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 622px;
    padding: 0 23px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 445px;
    padding: 0 10px;
  }
}

/* -------------------Header----------------------------- */
.header {
  background: #f1eee9;
  min-height: 300px;
}
.header__container {
  display: flex;
  position: relative;
  z-index: 100;
}
.header__logo {
  max-width: 235px;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .header__logo {
    margin: 0 auto;
    max-width: 320px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.header__burger-btn {
  margin-top: 50px;
  position: relative;
  width: 43px;
  height: 30px;
  cursor: pointer;
}
.header__burger-btn span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2f1307;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.header__burger-btn:before, .header__burger-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2f1307;
  border-radius: 2px;
  left: 0;
}
.header__burger-btn::before {
  top: 0%;
}
.header__burger-btn:after {
  bottom: 0;
}
@media (min-width: 991px) {
  .header__burger-btn {
    display: none;
  }
}

.menu__link {
  margin-top: 46px;
  font-weight: 400;
  font-size: 14px;
  line-height: 48px;
  display: flex;
  align-items: flex-end;
  padding: 0 15px;
  position: relative;
}
.menu__link a {
  color: #0d0d0d;
}
.menu__link:not(:last-child) {
  margin-right: 55px;
}
.menu__link:HOVER {
  border-radius: 13px;
  background: #ffffff;
  color: #0d0d0d;
}
.menu__link:HOVER a {
  color: #0d0d0d;
}
@media (max-width: 991.98px) {
  .menu {
    position: absolute;
    flex-direction: column;
    background-color: #332116;
    justify-content: space-around;
    align-items: center;
    border-radius: 13px;
    width: 300px;
    min-height: 300px;
    top: -200%;
    z-index: 100;
  }
  .menu__active {
    top: 90px;
  }
  .menu__link {
    border-radius: 13px;
    min-height: 80px;
    margin: 0;
    font-size: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }
  .menu__link a {
    color: #f1eee9;
  }
  .menu__link:not(:last-child) {
    margin-right: 0;
  }
  .menu__link:hover {
    background-color: #875739;
  }
  .menu__link:hover a {
    color: black;
  }
}

.wave-divider img {
  max-width: 100%;
}

.pacifico_text {
  margin-bottom: 40px;
  font-family: Pacifico;
  font-weight: 400;
  font-size: 59px;
  line-height: 64px;
  letter-spacing: 0px;
  color: #2f1307;
}
@media (max-width: 991.98px) {
  .pacifico_text {
    font-size: 45px;
  }
}
@media (max-width: 575.98px) {
  .pacifico_text {
    font-size: 29px;
  }
}

.main_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #0d0d0d;
}
.main_text li:not(.main_text li:last-child) {
  margin-bottom: 15px;
}

.subheader {
  position: relative;
  z-index: 10;
  min-height: 400px;
  padding: 80px 0 50px 0;
}
.subheader.text-page {
  padding-top: 10px;
}
.subheader__dontstop {
  position: relative;
  margin-bottom: 52px;
  max-width: 520px;
}
@media (max-width: 991.98px) {
  .subheader__dontstop {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .subheader__dontstop {
    display: block;
  }
}
.subheader__dontstop::before {
  content: "";
  display: block;
  position: absolute;
  top: -180px;
  left: 502px;
  background: url(../img/label-img.png) no-repeat;
  background-size: 100%;
  width: 750px;
  height: 850px;
  z-index: 20;
}
@media (max-width: 1199.98px) {
  .subheader__dontstop::before {
    width: 100%;
    height: 500px;
    top: -21px;
    left: 515px;
  }
}
@media (max-width: 991.98px) {
  .subheader__dontstop::before {
    display: none;
  }
}
.subheader__label-md {
  display: none;
}
.subheader__label-md img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .subheader__label-md {
    display: block;
    margin-top: -300px;
  }
}
@media (max-width: 575.98px) {
  .subheader__label-md {
    margin-top: -170px;
  }
}
.subheader__label-sm {
  display: none;
}
.subheader__descr {
  position: relative;
  z-index: 5;
  margin-bottom: 75px;
  max-width: 580px;
}
@media (max-width: 991.98px) {
  .subheader__descr {
    max-width: 330px;
  }
}
.subheader__app-row {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  z-index: 100;
  flex-wrap: wrap;
}
.subheader__app-items {
  display: flex;
  flex-wrap: wrap;
}
.subheader__app-items > * {
  margin-right: 30px;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .subheader__app-items > * {
    margin-right: 15px;
  }
}
.subheader__for-who {
  min-width: 160px;
  margin-right: 40px;
}
.subheader__app-store img {
  width: 100%;
}
.subheader__android img {
  width: 100%;
}

.content-block {
  position: relative;
}
.content-block__row {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .content-block__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.content-block__row-text-right {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .content-block__row-text-right {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
}
.content-block__row-text-left {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 767.98px) {
  .content-block__row-text-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.content-block__img img {
  max-width: 511px;
}
@media (max-width: 991.98px) {
  .content-block__img img {
    max-width: 300px;
  }
}
.content-block__descr {
  position: relative;
  max-width: 530px;
}
@media (max-width: 991.98px) {
  .content-block__descr {
    max-width: 380px;
  }
}
@media (max-width: 767.98px) {
  .content-block__descr {
    max-width: 100%;
  }
}
.content-block__title {
  margin-top: 250px;
}
@media (max-width: 991.98px) {
  .content-block__title {
    margin-top: 135px;
  }
}
@media (max-width: 767.98px) {
  .content-block__title {
    margin-top: 40px;
  }
}
.content-block__title-2 {
  margin: 135px 0 50px 70px;
}
@media (max-width: 767.98px) {
  .content-block__title-2 {
    margin: 20px 0 45px 0;
  }
}
.content-block__coffee-img {
  position: absolute;
  top: 14px;
  right: -50px;
}
.content-block__coffee-img img {
  max-width: 207px;
  min-height: 207px;
}
@media (max-width: 1199.98px) {
  .content-block__coffee-img {
    top: -55px;
    right: 0px;
  }
}
@media (max-width: 991.98px) {
  .content-block__coffee-img {
    top: -55px;
  }
}
@media (max-width: 767.98px) {
  .content-block__coffee-img {
    display: none;
  }
}
.content-block__advantage {
  /* 	max-width: 350px; */
}
.content-block__smile-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.content-block__smile-row:not(:last-child) {
  margin-bottom: 30px;
}
.content-block__smile {
  margin: 0 42px 0 60px;
  width: 65px;
}
@media (max-width: 767.98px) {
  .content-block__smile {
    margin: 0 22px 0 10px;
  }
}

.for-buyers {
  margin-top: -160px;
}
@media (max-width: 1199.98px) {
  .for-buyers {
    margin-top: -85px;
  }
}
@media (max-width: 991.98px) {
  .for-buyers {
    margin-top: -65px;
  }
}
@media (max-width: 767.98px) {
  .for-buyers {
    padding-bottom: 40px;
  }
}

.cooperation {
  background: #f1eee9;
  padding: 50px 0 100px 0;
}

.how-make-order {
  margin-top: 80px;
}

.app-today {
  margin-bottom: 230px;
}
.app-today__title {
  margin-top: 180px;
}
@media (max-width: 767.98px) {
  .app-today__title {
    margin-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .app-today {
    margin-bottom: 280px;
  }
}
.app-today__row {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .app-today__row {
    flex-direction: column-reverse;
    align-content: center;
  }
}

.our-app__app-block {
  margin-top: 45px;
}

.app-block {
  display: flex;
  flex-wrap: wrap;
}
.app-block > A {
  margin-right: 30px;
  margin-bottom: 10px;
}
.app-block > A img {
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .app-block > A {
    margin-right: 10px;
  }
}
.app-block__our-app {
  background-color: black;
  border-radius: 10px;
  font-size: 13px;
  color: white;
  width: 160px;
  padding: 5px 10px;
  height: 52px;
  display: flex;
  align-items: center;
}
.app-block__our-app IMG {
  max-height: 35px;
  margin-right: 8px;
}

.for-owner {
  margin-top: -140px;
  background: #f1eee9;
}
.for-owner__cofee-img {
  top: -64px;
}
.for-owner__row {
  margin-top: -130px;
}

.point-registration {
  background: #f1eee9;
}
.point-registration__descr {
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .point-registration__descr {
    margin-top: 0;
  }
}

.app-now {
  padding-bottom: 100px;
  background: #f1eee9;
}
.app-now__title {
  margin-top: 150px;
}
.app-now__descr {
  max-width: 600px;
}

.footer {
  background: #332116;
  padding-bottom: 50px;
}
.footer__container {
  margin-top: -70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer__container {
    margin-top: -55px;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .footer__container {
    margin-top: -35px;
  }
}
.footer__logo {
  max-height: 280px;
  order: 1;
}
.footer__logo img {
  max-width: 350px;
}
@media (max-width: 1199.98px) {
  .footer__logo img {
    max-width: 250px;
  }
}
@media (max-width: 767.98px) {
  .footer__logo img {
    max-width: 225px;
  }
}
@media (max-width: 575.98px) {
  .footer__logo img {
    max-width: 170px;
  }
}
@media (max-width: 1199.98px) {
  .footer__logo {
    margin-right: 0;
    max-height: 180px;
  }
}
@media (max-width: 991.98px) {
  .footer__logo {
    margin: 0 auto;
    margin-bottom: 70px;
  }
}
@media (max-width: 575.98px) {
  .footer__logo {
    margin-bottom: 35px;
  }
}
.footer__menu {
  order: 2;
  display: flex;
  justify-content: space-around;
  width: 840px;
}
@media (max-width: 991.98px) {
  .footer__menu {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .footer__menu {
    margin-bottom: 30px;
  }
}
.footer__menu-link {
  list-style-type: none;
}
.footer__menu-link:not(.footer__menu-link:last-child) {
  margin-right: 85px;
}
@media (max-width: 1199.98px) {
  .footer__menu-link:not(.footer__menu-link:last-child) {
    margin-right: 45px;
  }
}
@media (max-width: 575.98px) {
  .footer__menu-link:not(.footer__menu-link:last-child) {
    margin-right: 15px;
  }
}
.footer__menu-link:last-child {
  margin-right: 125px;
}
@media (max-width: 991.98px) {
  .footer__menu-link:last-child {
    margin: 0;
  }
}
.footer__menu-link a {
  color: #f1eee9;
}
@media (max-width: 1199.98px) {
  .footer__menu-link {
    margin-right: 35px;
  }
}
@media (max-width: 575.98px) {
  .footer__menu-link {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer__call-back {
  order: 3;
  padding: 15px 30px;
  background: #ffffff;
  border-radius: 10px;
  color: #0d0d0d;
}
@media (max-width: 1199.98px) {
  .footer__call-back {
    padding: 10px 20px;
  }
}
@media (max-width: 991.98px) {
  .footer__call-back {
    order: 4;
  }
}
@media (max-width: 767.98px) {
  .footer__call-back {
    order: 3;
    padding: 15px 30px;
    margin-bottom: 30px;
  }
}
.footer__pay-label {
  order: 4;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .footer__pay-label {
    order: 3;
    margin: 20px 135px 0 0;
  }
}
@media (max-width: 767.98px) {
  .footer__pay-label {
    order: 4;
    margin: 0;
  }
}
.footer__pay-label img {
  width: 100%;
}

.text-page h1, .text-page h2, .text-page h3, .text-page h4, .text-page h5, .text-page h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}
.text-page h1 {
  font-size: 24px;
}
.text-page h2 {
  font-size: 20px;
}

.downloadApk {
  margin-bottom: 20px;
}
.downloadApk__section {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding: 20px;
  display: flex;
}
.downloadApk__section__left-bgwhite {
  background-color: white;
}
.downloadApk__section__left IMG {
  max-width: 100px;
  border-radius: 15px;
}
.downloadApk__section__right {
  margin-left: 20px;
}
.downloadApk__section__right A {
  background-color: black;
  border-radius: 5px;
  font-size: 13px;
  color: white;
  margin-top: 15px;
  padding: 5px 10px;
  height: 52px;
  display: flex;
  align-items: center;
  width: 150px;
}


.download_presentaion {
    position: absolute;
    top: 60px;
	left: 0;
    width: 130px;
}
	.download_presentaion a {
		display: inline-block;
		line-height: 1em;
		background-color: #ff6c01;
		padding: 7px 15px;
		border-radius: 10px;	
		color: #FFF;
		cursor: pointer;
	}
	.download_presentaion:hover a {
		background-color: #ff9200;
		color: #FFF;
	}
	@media (max-width: 991.98px) {
		.menu__link {
		    flex-direction: column;
		}
		.header__container {
			position: unset;			
		}
		.download_presentaion {		
			position: relative;
			top: auto;
			left: auto;	
			width: auto;
			text-align:center;
			margin: 15px 0 10px;
		}
			.download_presentaion a {
				padding: 10px 15px;
			}
	}

/*# sourceMappingURL=style.css.map */
