@font-face {
  font-family: 'Calypso';
  src: url('../fonts/calypso.woff2');
}
@font-face {
  font-family: 'Proxima Light';
  font-weight: 300;
  src: url('../fonts/ProximaNova-Light.woff');
}
@font-face {
  font-family: 'Proxima Regular';
  font-weight: 400;
  src: url('../fonts/ProximaNova-Regular.woff');
}
@font-face {
  font-family: 'Proxima SemiBold';
  font-weight: 600;
  src: url('../fonts/ProximaNova-Semibold.woff');
}
@font-face {
  font-family: 'Proxima Bold';
  font-weight: 600;
  src: url('../fonts/ProximaNova-Bold.woff');
}
:root {
  --green: #455d45;
  --beige: #f2e7dc;
  --main-color: #3e3237;
  --title-font: 'Calypso';
  --main-font: 'Proxima Regular';
}
.breadcrumbs{
	padding:10px 0 25px 0;
	background:var(--beige);
}
.breadcrumbs a {
	color:var(--main-color);
	text-decoration:none;
}
.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.btn {
  position: relative;
  z-index: 999;
  text-transform: uppercase;
  padding: 18px 27px;
  border: 1px solid var(--green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  min-width: 225px;
  color: #455d45;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background: var(--green);
  color: var(--beige);
}
.btn-circle {
  max-width: 227px;
  width: 100%;
  height: 227px;
  font-family: 'Proxima Light';
  border: 1px solid var(--beige);
  color: var(--beige);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.btn-circle svg {
  position: relative;
  top: 30px;
}
.btn-circle:hover {
  -webkit-box-shadow: inset 0 0 10px var(--beige);
  box-shadow: inset 0 0 10px var(--beige);
}
.bold {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  max-width: 540px;
}
.title {
  color: var(--main-color);
  font-family: var(--title-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}
textarea:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a{
	text-decoration:none;
}
img {
  width: 100%;
  height: auto;
}
body {
  font-family: 'Proxima Regular';
}
.mobile {
  display: none;
}
.header {
  padding: 18px 0;
  background-color: var(--beige);
}




.kava-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100vh;
}
.kava-open-popup {
	cursor:pointer;
}
.kava-popup__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
	z-index:9;
}
.kava-popup__bg.active {
    opacity: 1;
    pointer-events: all;
    transition: 0.5s all;
}
.kava-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    max-width:486px;
	width:100%;
    padding: 0 79px;
	padding-top:58px;
	padding-bottom:111px;
    transition: 0.5s all;
	background:var(--green);
}
.kava-popup__subtitle{
	color: var(--beige);
	text-align: center;
	font-family: Proxima Regular;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.kava-popup__wrapper{
	position:relative;
	z-index:2;
}
.footer-mob-sec{
	display:none;
}
.kava-popup__title{
	text-align:center;
	color:var(--beige);
	font-size:32px;
	margin-bottom:16px;
}
.kava-popup.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s all;
}
.kava-close-popup {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}
.kava-popup .input-field {
    background: rgba(0, 0, 0, 0);
    border: none;
    max-width: 281px;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--beige);
    font-family: 'Proxima Regular';
    color: var(--beige);
    background: rgba(0, 0, 0, 0);
    resize: none;
}
.kava-popup input.input-field::placeholder {
  color: var(--beige);
}
#wpcf7-f41-o1 > form > p{    
	width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.kava-popup__form form.wpcf7-form.init {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}
.kava-popup__form{
	margin-top:36px;
}
.kava-popup__form .btn {
    background: transparent;
    border: 1px solid var(--beige);
    color: var(--beige);
    max-width: 278px;
    width: 100%;
    margin-top: 10px;
}
.kava-popup .kava-label__text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #cfd0d3;
    margin-bottom: 5px;
}
.kava-popup__img{
	position:absolute;
	left:0;
	bottom:0;
	z-index:1;
}
#wpcf7-f19-o2 > form > p{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.header h3 {
  font-family: var(--title-font);
  color: var(--green);
  font-size: 48px;
  text-transform: uppercase;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__social {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid var(--green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
	.header__logo{
		width:77px;
	}
.header__social svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__social:hover svg {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav .btn {
  margin-right: 9px;
}
.hero {
  overflow: hidden;
  position: relative;
  min-height: 815px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 57px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
}
.hero__bg img{
	width:100vw;
}
.hero__inner {
  z-index: 2;
  position: relative;
}
.hero__inner .btn {
  display: none;
}
.hero__inner h2 {
  max-width: 894px;
  margin-top: auto;
  color: var(--beige);
  font-family: var(--title-font);
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.navigation {
  position: relative;
  background: var(--green);
  padding: 60px 0 78px 0;
}
.navigation__bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.navigation__inner {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 59px;
}
.navigation__inner .btn-circle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.about {
  position: relative;
  background-color: var(--beige);
}
.about__bg {
  max-width: 750px;
  top: 0;
  left: 0;
  top: -60px;
  position: absolute;
  z-index: 1;
}
.about__inner {
  padding-top: 70px;
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.about__img {
  position: relative;
  max-width: 434px;
  width: 100%;
}
.about__img-border {
  position: absolute;
}
.about__img-main {
  position: relative;
  left: 26px;
  top: 5px;
  max-width: 408px;
}
.about__desc {
  position: relative;
  top: 20px;
}
.about__desc h3 {
    line-height: 65px;
    color: var(--main-color);
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 400;
    max-width: 743px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.about__desc .bold {
  margin-top: 15px;
  max-width: 570px;
}
.about__desc .light {
  margin-top: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 684px;
}
.about__desc .btn {
    margin-top: 34px;
    width: 253px;
}
.about__btn-wrapper{
	display:flex;
	gap:30px;
	text-transform:uppercase;
}
.about-shop {
  background: var(--beige);
}
.about-shop__inner {
  padding-top: 30px;
}
.about-shop__inner .title {
  max-width: 1050px;
  margin-bottom: 40px;
}
.about-shop__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.about-shop__step {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 282px;
  width: 100%;
}
.about-shop__step .bold {
  font-family: 'Proxima SemiBold';
}
.about-shop__step p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.about-shop__desc {
  padding-top: 10px;
}
.about-founder {
  padding-top: 100px;
  padding-bottom: 135px;
  background-color: var(--beige);
  position: relative;
}
.about-founder__bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-founder__review {
  max-width: 1059px;
  width: 100%;
  height: 454px;
  border-top-left-radius: 200px;
  border: 1px solid var(--green);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.about-founder__quote {
  position: absolute;
  top: 0;
  z-index: 1;
}
.about-founder__text {
  color:var(--main-color);
  max-width: 510px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.about-founder__text-founder {
  margin-top: 30px;
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.about-founder__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: -120px;
    position: relative;
    gap: 50px;
}
.business {
  position: relative;
  background: var(--green);
  color: var(--beige);
  padding-top: 130px;
  max-height: 1700px;
  overflow: hidden;
}
.business__bg {
  position: absolute;
  bottom: 150px;
  left: 0;
}
.business .title {
  max-width: 993px;
  color: var(--beige);
  margin-bottom: 66px;
}
.business__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 158px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.business__steps.second-row {
  margin-top: 67px;
  margin-right: 79px;
}
.business__step p {
  color: var(--beige);
  font-size: 16px;
  max-width: 306px;
}
.business__step p.bold {
  font-size: 16px;
  font-weight: 600 !important;
  margin-bottom: 6px;
}
.business__step.step-1 .business__step-img {
  max-width: 588px;
  margin-bottom: 16px;
}
.business__step-img {
  margin-bottom: 11px;
}
.business__step.step-2 {
  margin-top: 110px;
}
.business__step.step-3 {
  position: relative;
  top: -290px;
}
.business__step.step-3 .btn {
  margin-top: 78px;
  text-transform: uppercase;
  color: var(--beige);
  max-width: 334px;
  border: 1px solid var(--beige);
}
.business__step.step-4 .business__step-img {
    margin-bottom: 25px;
}
.business__step.step-4 .mobile {
  display: none;
}
.box__ttl-arrow {
  display: none;
}
.taste {
  padding-top: 99px;
  background: var(--beige);
}
.taste .title {
  max-width: 1096px;
}
.taste__steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 112px;
}
.taste__img {
  position: relative;
  top: -35px;
}
.taste__steps {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18.5px;
}
.taste__steps .btn {
  max-width: 306px;
  width: 100%;
  margin: 0 auto;
  margin-top: 33px;
}
.taste__step {
  max-width: 499px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.taste__step:nth-child(1) h4 {
  margin-right: 13px;
}
.ristora {
  padding-top: 135px;
  padding-bottom: 180px;
  position: relative;
  background: var(--beige);
}
.ristora .title {
  text-align: right;
  font-size: 64px;
  margin-bottom: 27px;
}
.ristora__bg {
  position: absolute;
  top: -130px;
}
.ristora__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  position: relative;
}
.ristora__btns p {
  margin-left: 19px;
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ristora__btns .btn-circle {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  gap: 15px;
  text-decoration: none;
  background-color: var(--beige);
}
.ristora__btns .btn-circle svg {
  top: 0;
}
.ristora__btns .btn-circle:hover {
  -webkit-box-shadow: inset 0 0 10px var(--main-color);
  box-shadow: inset 0 0 10px var(--main-color);
}
.about-founder.founder-2 {
    padding-bottom: 200px;
    overflow-x: hidden;
    padding-top: 0;
}
.about-founder.founder-2 .about-founder__review {
  background: var(--beige);
  margin-left: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 200px;
  z-index: 2;
}
.about-founder.founder-2 .about-founder__text-wrapper {
  right: 190px;
  gap: 60px;
}
.founder-2 .about-founder__text {
    padding-top: 10px;
    color: var(--main-color);
    max-width: 570px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 134%;
}
.about-founder.founder-2 .about-founder__quote {
  right: 29px;
  z-index: 3;
  top: 50px;
}
.about-founder.founder-2 .about-founder__inner {
  position: relative;
}
.about-founder.founder-2 .about-founder__bg {
  position: absolute;
  right: -160px;
  bottom: 0;
}
.tesoro {
  padding-top: 75px;
  background: var(--green);
  min-height: 585px;
}
.tesoro .title {
  max-width: 995px;
  margin: 0 auto;
  color: var(--beige);
}
.tesoro__inner {
  position: relative;
}
.tesoro__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 53px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 37px;
    padding-right: 13px;
}
.tesoro__img {
  max-width: 622px;
  position: absolute;
  left: -8%;
  margin-top: -20px;
}
.tesoro__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 36px;
    color: var(--beige);
    font-size: 18px;
}
.service {
  background: var(--beige);
  padding-top: 190px;
  padding-bottom: 165px;
}
.service .title {
  max-width: 1097px;
  margin-bottom: 29px;
}
.service__img {
  max-width: 1098px;
  margin-left: auto;
}
.service__accordions-wrapper {
    margin-top: 60px;
    left: -6px;
    position: relative;
}
.service__accordions-wrapper .box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 46px 24px;
}
.service__accordions-wrapper .box__item {
  position: relative;
  left: 60px;
  max-width: 358px;
  width: 100%;
}
.service__accordions-wrapper .box__item .btn {
  max-width: 280px;
}
.service__accordions-wrapper .box__ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-color);
  font-family: 'Proxima SemiBold';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.service__accordions-wrapper .box__ttl span {
  position: absolute;
  left: -50px;
}
.service__accordions-wrapper .box__txt {
  color: var(--main-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 306px;
}
.service__accordions-wrapper .box__txt.bars-text {
  max-width: 323px;
}
.tea {
  background: var(--beige);
}
.tea .title {
  margin-bottom: 29px;
}
.tea .tea__list-item:nth-child(2) {
  margin-left: auto;
  position: relative;
  top: -30px;
}
.tea .tea__list-item:nth-child(3) {
  position: relative;
  top: -50px;
}
.tea .tea__list-services {
  max-width: 375px;
  width: 100%;
}
.tea__list {
  max-width: 939px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tea__list-item {
  gap: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.tea__list-item .btn {
  position: absolute;
  bottom: -35px;
}
.tea__list-services {
  color: var(--main-color);
  max-width: 386px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.tea__list-services h4 {
  font-family: 'Proxima Semibold';
}
.tea__list-services ul {
  padding-left: 20px;
}
.tea__list-img {
  padding: 16px 8px 16px 24px;
  border: 1px solid #000;
  border-radius: 50%;
  max-width: 313px;
  height: 313px;
}
.gifts {
    background: var(--beige);
    padding-top: 88px;
    position: relative;
    padding-bottom: 120px;
    left: -12px;
}
.gifts .title {
  color: var(--green);
  max-width: 846px;
  margin-left: 116px;
}
.gifts__img {
  max-width: 602px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.gifts__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.gifts__mobile {
  display: none;
}
.gifts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gifts__text .btn {
  margin-top: 15px;
  max-width: 280px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.gifts__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gifts__table a {
  border: 1px solid #3e3237;
  width: 191px;
  position: relative;
  padding-right: 61px;
  padding-bottom: 13px;
  padding-top: 26px;
  padding-left: 14px;
  color: var(--main-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gifts__table a svg {
  position: absolute;
  right: 20px;
  top: 32px;
}
.gifts__table a:hover {
  background: var(--green);
  color: var(--beige);
  padding-left: 28px;
}
.gifts__table a:hover svg {
  stroke: var(--beige);
}
.gifts__table a:nth-child(1):hover,
.gifts__table a:nth-child(4):hover {
  padding-left: 14px;
}
.gifts__table a:nth-child(1) {
  padding-right: 0;
  border-top: none;
  border-left: none;
  border-bottom: none;
  padding-left: 0;
}
.gifts__table a:nth-child(2) {
  border-top: none;
  border-left: none;
  border-bottom: none;
}
.gifts__table a:nth-child(3) {
  border: none;
}
.gifts__table a:nth-child(4) {
  border-top: 1px solid #3e3237;
  border-left: none;
  border-bottom: none;
  padding-left: 0;
}
.gifts__table a:nth-child(5) {
  border-top: 1px solid #3e3237;
  border-left: none;
  border-bottom: none;
}
.gifts__table a:nth-child(6) {
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.form {
  background: var(--green);
  padding-top: 67px;
  padding-bottom: 94px;
  position: relative;
  overflow: hidden;
}
.form__inner {
  position: relative;
  z-index: 3;
}
.form__bg {
  max-width: 600px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}
.form__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1066px;
    margin: 0 auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 100px;
}
.form__title-wrapper h2.title {
  max-width: 650px;
  color: var(--beige);
}
.form__title-wrapper p {
  padding-bottom: 10px;
  color: var(--beige);
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 384px;
}
.form__input-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 92px;
    max-width: 1092px;
    margin: 0 auto;
    margin-top: 30px;
    margin-right: auto;
    margin-left: 120px;
}
.form__input-desc {
  max-width: 408px;
  width: 100%;
  color: var(--beige);
}
.form__input-desc h4 {
  font-family: Calypso;
  font-size: 24px;
  margin-top: 24px;
}
.form__input-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 587px;
  width: 100%;
}
.form__input-contact .input-field {
  background: rgba(0, 0, 0, 0);
  border: none;
  max-width: 281px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige);
  font-family: 'Proxima Regular';
  color: var(--beige);
  background: rgba(0, 0, 0, 0);
  resize: none;
}
.form__input-contact input.input-field::placeholder {
  color: var(--beige);
}
.form__input-contact
  .input-field::-webkit-input-placeholder {
  color: var(--beige);
}
.form__input-contact .input-field::-moz-placeholder {
  color: var(--beige);
}
.form__input-contact .input-field:-ms-input-placeholder {
  color: var(--beige);
}
.form__input-contact .input-field::-ms-input-placeholder {
  color: var(--beige);
}
.form__input-contact .input-field::placeholder {
  color: var(--beige);
}
.form__input-contact textarea {
  max-height: 71px;
  resize: none;
}
.form__input-contact .btn {
  border: 1px solid #e3d7ca;
  max-width: 282px;
  width: 100%;
  height: 58px;
  margin-top: auto;
  background: rgba(0, 0, 0, 0);
  color: var(--beige);
}
.form__input-contact .btn:hover {
  background: var(--beige);
  color: var(--green);
}
.about-kava {
  position: relative;
  background: var(--beige);
}
.about-kava__hero {
  max-height: 730px;
}
.about-kava__bg {
  position: absolute;
}
.about-kava__bg.bg-1 {
  right: 0;
  top: 0;
}
.about-kava__bg.bg-2 {
  left: 0;
  bottom: 0;
}
.about-kava__inner {
  padding-top: 80px;
}
.about-kava__inner .title {
  color: var(--green);
  margin-bottom: 73px;
}
.about-kava__inner .business__step p {
  color: var(--main-color);
}
.about-kava__inner .business__step-img {
  margin-bottom: 20px !important;
}
.about-kava__inner .business__steps.third-row {
  position: relative;
  top: -130px;
}
.about-kava__inner .business__step.step-5 {
  position: relative;
  top: -70px;
}
.about-kava__inner .business__step.step-5 .btn {
  margin-top: 110px;
}
.footer {
    background: #3d523f;
    padding-bottom: 77px;
    padding-top: 19px;
}
.footer .header__logo{
	width:116px;
}
.footer .title {
  color: var(--beige);
  line-height: 100%;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__inner nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 46px;
}
.footer__inner nav .btn {
  border: 1px solid var(--beige);
  color: var(--beige);
}
.footer__inner nav a.footer__social {
  border: 1px solid var(--beige);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
form.wpcf7-form.init {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

/* history */
.history{
	background:var(--beige);
	padding-bottom:80px;
}
.history p{
	color: var(--text);
	font-family: Proxima Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
.history .title{
	color: var(--green);
	font-family: Calypso;
	font-size: 72px;
	line-height: 150%; /* 108px */
	margin-bottom:20px;
}
.history__desc-upper{
	max-width:994px;
	width:100%;
	margin-top:36px;
	margin-bottom:24px;
}
.history__desc-inner{
	display:flex;
	gap:26px;
}
.history__desc .btn{
	max-width:270px;
	margin:0 auto;
}
.history__btn-wrapper{
margin-top:48px;
}
/* offers */
.offers-page{
	background-color:var(--beige);
	padding-bottom:120px;
	position:relative;
}
.offers-page__bg{
	position:absolute;
	left:-100px;
	top:0px;
}
.offers-card {
    max-width: 589px;
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: center;
}
.offers-card__img {
    max-width: 259px;
    width: 100%;
    min-width: 259px;
}
.offers-page__wrapper{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:56px 29px;
}
.offers-page .title{
	color: var(--green);
	font-family: Calypso;
	font-size: 72px;
	line-height: 150%; /* 108px */
	margin-bottom:55px;
}
.offers-card__title{
	color: var(--text);
	font-family: Calypso;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}
.offers-card__desc{
	display:flex;
	flex-direction:column;
	gap:8px;
}
.offers-card__subtitle{
	font-family:"Proxima SemiBold";
}
.offers-card__desc-text{
	color:var(--text);
}
.offers-page__btn-wrapper{
	margin-top:72px;
}
.offers-page__btn-wrapper .btn{
	max-width:322px;
	margin:0 auto;
}

@media screen and (max-width: 1915px) {
  .hero__bg img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero__bg {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 1445px) {
  .tesoro__img {
    max-width: 522px;
    position: absolute;
    left: -1%;
    margin-top: -20px;
  }
  .tesoro {
    padding-top: 75px;
    background: var(--green);
    min-height: 485px;
  }
  .hero__bg {
    right: -117px;
    left: auto;
  }
}
@media screen and (max-width: 1440px) {
  .hero__bg {
    right: 0;
    left: auto;
  }
	.offers-page__wrapper{
		display:grid;
		grid-template-columns:repeat(1,1fr);
		gap:35px 0;
	}
	.offers-card{
		margin:0 auto;
	}
.hero {
    min-height: calc(100vh - 183px);
    padding-bottom: 14px;
}
  .hero__inner h2 {
    font-size: 48px;
  }
  .hero__inner h2 br {
    display: none;
  }
  .hero__bg img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .hero {
    min-height: 435px;
    padding-bottom: 14px;
  }
  .about-founder__quote {
    display: none;
  }
  .about-founder__text-wrapper {
    right: auto;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .about-founder.founder-2 .about-founder__text-wrapper {
    right: auto;
    padding: 0 40px;
  }
  .tesoro__img {
    max-width: 322px;
    position: absolute;
    left: -1%;
    margin-top: -20px;
  }
  .service__accordions-wrapper .box__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .gifts__desc {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 60%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  .gifts__text .btn {
    margin-top: 45px;
  }
  .gifts__table {
    margin-top: 30px;
  }
  .gifts {
    background: var(--beige);
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .form__title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .form__input-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form__input-desc {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .form__input-wrapper {
    gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
	.history__desc-inner{
		flex-direction:column;
	}
	.offers-page {
		padding-bottom: 60px;
	}
	.offers-page .title{
		font-size: 32px;
		line-height: 120%;
		margin-bottom:25px;
	}
.offers-card__img {
    max-width: 209px;
    width: 100%;
    min-width: 189px;
}
.offers-card {
    gap: 8px;
    align-items: center;
    flex-direction: column;
}
	.history .title{
		font-size:32px;
	}
	.history__desc-upper {
		margin-top: 16px;
	}
  .hero {
    min-height: 565px;
    background: var(--beige);
    padding-bottom: 48px;
  }
  .hero h2 {
	line-height:130%;
    color: var(--green);
    font-size: 27px;
    text-align: center;
  }
  .btn.header__btn {
    display: none;
  }
  .about__desc h3,
  .title {
    font-size: 27px;
    text-align: left;
	line-height: 130%;
  }
  .hero .btn {
    color: var(--beige);
    background-color: var(--green);
    max-width: 299px;
    margin: 0 auto;
    margin-top: 24px;
    display: block;
    text-align: center;
  }
  .btn-circle {
    width: 166px;
    height: 166px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 16px;
  }
  .navigation {
    overflow: hidden;
  }
  .navigation__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:0;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 80px;
  }
  .about__desc .bold {
    font-size: 18px;
  }
  .about__desc .bold,
  .about__desc .light {
    margin-top: 8px;
  }
  .about__desc .btn {
    margin: 0 auto;
    margin-top: 42px;
  }
  .about-founder {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .about-shop__inner {
    padding-top: 0;
  }
  .about-shop__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-shop__step {
    max-width: 100%;
  }
  .about-founder__review {
    border-top-left-radius: 0;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 31px;
    border-top-left-radius: 150px;
    padding-top: 80px;
    background-color: var(--beige);
	padding-bottom:70px;
  }
  .about-founder__founder {
    height: 254px;
    overflow: hidden;
    right: 0;
  }
  .about-founder__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .about-founder__text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px !important;
  }
  .about-founder__quote {
    position: absolute;
    top: -20px;
    z-index: 1;
    left: 30px;
    right: auto;
    display: block;
}
  .about-founder__quote svg {
    width: 130px;
  }
  .about-founder__text {
    font-size: 16px;
  }
  .about-founder__text br {
    display: none;
  }
  .business__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
  }
  .business {
    padding-top: 48px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .business .title {
    margin-bottom: 36px;
  }
  .business__step.step-1 .business__step-img {
    margin-bottom: 10px;
  }
  .business__step.step-2 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .business__step.step-3 {
    position: relative;
    top: 0;
  }
  .business__step.step-3 .btn {
    display: none;
  }
  .business__step.step-4 .btn {
    border: 1px solid var(--beige);
    color: var(--beige);
    margin: 0 auto;
    margin-top: 36px;
    margin-bottom: 89px;
    max-width: 414px;
  }
  .business__steps.second-row {
    margin: 0;
  }
  .business__step.step-1 .business__step-img {
    max-width: 100%;
  }
  .taste__steps-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .taste__steps {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
  }
  .taste__img {
    top: 0;
  }
  .taste__steps-wrapper {
    gap: 22px;
  }
  .taste__step .title {
    font-size: 32px;
  }
.taste__step:nth-child(1) h4 {
    letter-spacing: 5px;
    margin-right: 0;
}
  .taste__steps .btn {
    max-width: 306px;
    width: 100%;
    margin: 0 auto;
    margin-top: 18px;
  }
  .ristora {
    padding-top: 80px;
    padding-bottom: 135px;
  }
  .ristora__btns {
	flex-direction:column;
  }
  .ristora__btns .btn-circle {
    width: 227px;
    height: 227px;
  }
  .ristora__btns p {
    font-size: 18px;
	margin-left:0;
	order:-1;
  }
	.service .title{
		font-size:23px;
	}
	.service__inner.container{
		padding-right:10px !important;
	}
  .taste .title {
    font-size: 23px;
  }
  .ristora .title {
    text-align: left;
    font-size: 36px;
	margin-bottom:0;
  }
  .about-founder.founder-2 .about-founder__founder {
    height: 284px;
    overflow: hidden;
    position: relative;
    left: 0;
  }
	.about-founder.founder-2 .about-founder__review{
		    border-top-right-radius: 140px;
	}
.about-founder.founder-2 .about-founder__quote {
    right: 30px;
    z-index: 3;
    top: -40px;
    left: auto;
}
  .tesoro__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tesoro__img {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    max-width: 100%;
  }
  .tesoro {
    padding-top: 48px;
    padding-bottom: 88px;
  }
  .service {
    background: var(--beige);
    padding-top: 74px;
    padding-bottom: 80px;
  }
  .service__accordions-wrapper .box__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .gifts .title {
    max-width: 100%;
    margin: 0;
  }
  .gifts__desc {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .business__steps.third-row {
    top: 0 !important;
  }
	.form__title-wrapper{
		margin:0;
	}
	.footer{
		position:relative;
	}
	.footer-mob-sec{
		right:0;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		display:block;
		width: 100vw;
		text-align:center;
		color: var(--beige);
		/* Mobile/text */
		font-family: Proxima Regular;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%;
		bottom:40px;
	}
	.header__logo {
		width: 49px;
	}
	.form__input-wrapper{
		margin-left:0;
	}
	.footer .header__logo {
		position: relative;
		width: 76px;
		top: -18px;
	}
  .about-kava__inner .business__step.step-5 {
    top: 0;
  }
  .about-kava__inner .business__steps {
    margin-bottom: 30px;
  }
  .about-kava {
    overflow: hidden;
  }
	.business__step.step-1 .business__step-img{
		margin-bottom:24px;
	}
  .about-kava__inner .business__step.step-5 .btn {
    display: none;
  }
  .about-kava__inner .business__step .business__step-img {
    height: auto;
    overflow: hidden;
  }
  .about-kava__inner {
    padding-bottom: 70px;
  }
  .about-kava__inner .btn {
    text-align: center;
  }
  .about-kava__inner {
    padding-top: 40px;
  }
  .about-kava__hero img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    left: 30px;
    position: relative;
    top: 35px;
  }
.about-kava__hero {
    min-height: 200px;
    overflow: hidden;
}
  .desktop {
    display: none;
  }
  .btn-circle svg {
    position: relative;
    top: 10px;
  }
  .mobile {
    display: block;
  }
  .footer__inner {
    height: 283px;
    padding-top: 36px;
  }
  .footer__inner .footer__btn-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    position: absolute;
    right: 0;
    top: 120px;
}
  .footer__inner .footer__btn-wrapper .btn {
    max-width: 250px;
    margin: 0 auto;
  }
  .footer__inner nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer {
    padding: 0;
  }
  .hero {
    height: 582px;
  }
	.about__btn-wrapper{
		flex-direction:column;
		gap:15px;
	}
	
	.about__btn-wrapper a{
		width:100%;
	}
	.about__btn-wrapper a:nth-child(2){
		margin-top:0;
	}
  .hero__bg img {
    width: auto;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    position: relative;
    right: 0;
    top: 0;
  }
  .hero__bg {
    right: -600px;
    top: -250px;
    left: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .navigation__inner {
    gap: 12px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about {
    overflow: hidden;
  }
  .navigation {
    padding: 50px 0;
  }
  .service,
  .tea {
    overflow: hidden;
  }
  .header__nav {
    gap: 24px;
  }
  .header h3 {
    font-size: 32px;
  }
  .about__img-border svg {
    width: 100%;
    height: auto;
  }
  .about__img {
    position: relative;
    max-width: 80%;
    width: 100%;
    left: -10px;
  }
  .taste {
    padding-top: 50px;
  }
  .taste .title {
	margin-bottom:15px;
    font-size: 32px;
}
  .business__step.step-2 .business__step-img {
    height: 200px;
    overflow: hidden;
  }
  .business__step.step-2 .business__step-img img {
    position: relative;
    top: -160px;
  }
  .business__step .business__step-img {
    height: 200px;
    overflow: hidden;
  }
  .business__step.step-4 .desktop {
    display: none;
  }
  .business__step.step-4 .mobile {
    display: block;
  }
  .business__step.step-4 .btn {
    font-size: 18px;
  }
  .ristora__bg {
    position: absolute;
    top: 150px;
  }
  .service__accordions-wrapper {
    margin-top: 28px;
  }
  .service__accordions-wrapper .box__ttl span {
    position: relative;
    left: auto;
  }
  .service__accordions-wrapper .box__ttl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  .service__accordions-wrapper .box__item {
    left: auto;
    max-width: 100%;
  }
  .box__ttl-arrow {
    display: block;
    position: absolute !important;
    right: 0;
  }
  .service__accordions-wrapper .box__txt {
    max-width: 100% !important;
    padding-top: 15px;
  }
  .service__accordions-wrapper .box__item .btn {
    margin: 0 auto;
  }
  .tea .title {
    margin: 0 auto;
    margin-bottom: 29px;
    text-align: center;
  }
  .tea__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .tea__list-services {
    max-width: 100% !important;
  }
  .tea__list-img {
    border: none;
    padding: 0;
    height: auto;
  }
  .tea .tea__list-item:nth-child(2) {
    margin-left: auto;
    position: relative;
    top: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .tea .tea__list-item:nth-child(3) {
    position: relative;
    top: 0;
  }
  .tea__list {
    gap: 36px;
  }
  .tea__list-item .btn {
    position: relative;
    bottom: auto;
    margin: 0 auto;
    margin-top: 48px;
    max-width: 280px;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .gifts {
    padding-top: 80px;
    padding-bottom: 60px;
  }
.wpcf7-form-control-wrap {
    position: relative;
    max-width: 100%;
    width: 100%;
}
.form__bg {
    max-width: 600px;
    width: 100%;
    top: auto;
    left: 0;
    z-index: 1;
    position: absolute;
    bottom: -70px;
}
form.wpcf7-form.init {
    justify-content: center;
}
  .gifts__desc {
    width: 100%;
  }
  .gifts__table {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .gifts__table a:nth-child(2) {
    border: none;
  }
  .gifts__table a:nth-child(3) {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }
  .gifts__table a:nth-child(4) {
    border-right: none;
  }
  .gifts__table-link {
    padding-left: 0 !important;
  }
  .gifts__table a:nth-child(6),
  .gifts__table a:nth-child(4),
  .gifts__table a:nth-child(2) {
    padding-left: 17px !important;
  }
  .gifts__table a:nth-child(6) svg,
  .gifts__table a:nth-child(4) svg,
  .gifts__table a:nth-child(2) svg {
    right: 0;
  }
  .gifts__table a {
    width: 50%;
  }
}
@media screen and (max-width: 440px) {
  .hero__bg img {
    -webkit-transform: scale(0.35);
    transform: scale(0.35);
  }
  .hero__bg {
    right: -630px;
    top: -270px;
  }
  .about-founder__founder {
    height: auto;
    right: 20px;
    position: relative;
  }
  .about-founder__founder {
    height: auto;
    right: -40px;
    position: relative;
    width: 100%;
  }
  .about-founder.founder-2 .about-founder__founder {
    height: auto;
    overflow: hidden;
    position: relative;
    left: -40px;
    width: 100%;
    max-width: 100%;
  }
  .about-founder.founder-2 .about-founder__text-wrapper {
    right: auto;
    padding: 0;
  }
  .about-founder.founder-2 .about-founder__bg {
    position: absolute;
    right: 0;
    bottom: 560px;
  }
  .about-founder.founder-2 {
    padding-bottom: 80px;
    overflow: visible;
    padding-top: 50px;
  }
  .form__input-contact .input-field {
    max-width: 100%;
  }
  .form__input-contact {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-shop__steps {
    gap: 15px;
  }
}
@media screen and (max-width: 395px) {
  .hero__bg {
    right: -660px;
    top: -270px;
  }
  .btn-circle {
    width: 159px;
    height: 159px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .hero__bg img {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  .hero__bg {
    right: -680px;
    top: -290px;
  }
  .btn-circle {
    width: 154px;
    height: 154px;
  }
} /*# sourceMappingURL=styles.min.css.map */






section.hero.tea .hero__bg img {
  opacity: 0.4;
  filter: blur(5px);
}
section.hero.tea .hero__inner h2 {
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 100%;    color: white;
}
section.hero.tea {
  min-height: 450px;
}
section.navigation.tea {
  background: var(--green);
}
