@import url('../css/reset.css');

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #505050;
}

.wrapper {
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

section.top-line-section {
  background: #fff;
  padding: 15px 0;
}

.top-line-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-line-wrap .logo {
  position: relative;
}

.top-line-wrap .logo span {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translate(0, -50%);
  font-size: 18px;
  font-family: 'Marmelad', sans-serif;
  line-height: 21px;
  color: #505050;
}

.top-contacts {
  position: relative;
}

@media screen and (min-width: 961px) {
	.top-contacts:hover .top-contacts-inner::after {
		transform: rotate(180deg) translate(0, 50%);
	}

	.top-contacts:hover .menu-section {
	  display: block;
	}
}

.top-contacts .top-contacts-inner.active::after {
  transform: rotate(180deg) translate(0, 50%);
}

.top-contacts-inner {
  font-size: 24px;
  font-family: 'Marmelad', sans-serif;
  color: #505050;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  position: relative;
}

.top-contacts-inner::after {
  content: '';
  position: absolute;
  top: 11px;
  right: -23px;
  border: 7px solid transparent;
  border-top-color: #4DC04C;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.top-line-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-line-right a.phone {
  margin-right: 55px;
  font-size: 24px;
  font-family: 'Marmelad', sans-serif;
  color: #505050;  
  display: flex;
  align-items: center;
}

.top-line-right a.phone span {
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.top-line-right a.phone img {
  margin-right: 10px;
}

.top-line-right a.phone:hover {
  color: #4DC04C;
}

.top-line-right a.phone:hover span {
  border-bottom-color: #4DC04C;
}

.top-line-right a.call {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 234px;
  height: 51px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #4DC04C;
  color: #fff;
  font-family: 'Marmelad', sans-serif;
  font-size: 18px;
  border: 1px solid #4DC04C;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.top-line-right a.call span {
  margin-left: 10px;
}

.top-line-right a.call svg path {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.top-line-right a.call:hover {
  background: transparent;
  color: #4DC04C;
}

.top-line-right a.call:hover svg path {
  fill: #4DC04C;
}

header {
  overflow: hidden;
  position: relative;
}

header img {
  width: 100%;
  -webkit-transform: translate(0, 7px);
  -ms-transform: translate(0, 7px);
  transform: translate(0, 7px);
}

.header-scroll {
  position: absolute;
  bottom: 50px;
  right: 50%;
  transform: translate(600px, 0);
  cursor: pointer;
  animation: 3s headerScroll infinite;
}

.header-scroll img {
  width: 43px;
}

@keyframes headerScroll {
  0% {
    bottom: 50px;
  }

  25% {
    bottom: 35px;
  }

  50% {
    bottom: 50px;
  }
}

.header-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0%;
  color: #fff;
  font-family: 'Marmelad', sans-serif;
  font-size: 124px;
}

.header-circle.fruits {
  background: rgba(77, 192, 76, 0);
}

.header-circle.vegetables {
  background: rgba(237, 83, 83, 0.3);
  top: 35%;
}

.header-circle.mushrooms {
  background: rgba(105, 104, 136, 0.3);
  top: 35%;
}

.header-circle.other {
  background: rgba(74, 85, 84, 0.3);
}

footer {
  background: #F5F5F5;
}

.footer-wrap {
  padding: 80px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #505050;
}

.footer-item img {
  margin-right: 10px;
}

.footer-item.footer-phone {
  font-size: 24px;
}

.footer-item.footer-phone.last {
  padding-left: 52px;
}

.footer-item.footer-phone img {
  margin-right: 24px;
}

a.footer-item span {
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

a.footer-item:hover {
  color: #4DC04C;
}

a.footer-item:hover span {
  border-bottom-color: #4DC04C;
}

.footer-bottom {
  background: #4DC04C;
  color: #fff;
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
}

section.products-section {
  background: #FABD14;
  color: #fff;
  overflow: hidden;
}

.products-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.products-item {
  width: 33.33%;
  padding-top: 40px;
  padding-bottom: 50px;
  overflow: hidden;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.products-item.frukt.firstBg {
  background-image: url('../img/frukt-first-bg.jpg');
}

.products-item.frukt.secondBg {
  background-image: url('../img/frukt-second-bg.jpg');
}

.products-item.frukt.thirdBg {
  background-image: url('../img/frukt-thirdt-bg.jpg');
}

.products-item.ovosh.firstBg {
  background-image: url('../img/ovosh-first-bg.jpg');
}

.products-item.ovosh.secondBg {
  background-image: url('../img/ovosh-second-bg.jpg');
}

.products-item.ovosh.thirdBg {
  background-image: url('../img/ovosh-third-bg.jpg');
}

.products-item.grib.firstBg {
  background-image: url('../img/fruit6-bg.jpg');
}

.products-item.grib.secondBg {
  background-image: url('../img/mush2-bg.jpg');
}

.products-item.grib.thirdBg {
  background-image: url('../img/fruit5-bg.jpg');
}

.products-item h4 {
  font-family: 'Marmelad', sans-serif;
  font-size: 32px;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.products-item-bottom {
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.products-item-bottom .item {
  display: none;
}

.products-item-bottom .item.active {
  display: block;
}

.products-item-bottom .item h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.products-item-bottom .item p {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
}

.products-item-bottom .item p:last-child {
  margin-bottom: 0;
}

.products-item-bottom .item p b {
  font-weight: 700;
}

.products-item-more {
  margin-top: 20px;
}

.products-item-more a {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FFFFFF;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
}

.products-item-more a span {
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.products-item-more a img {
  margin-left: 16px;
}

.products-item-more a.more1 {
  color: #4DC04C;
}

.products-item-more a.more2 {
  color: #BF393A;
}

.products-item-more a.more3 {
  color: #605A8D;
}

.products-item-more a.more1:hover span {
  border-bottom-color: #4DC04C;
}

.products-item-more a.more2:hover span {
  border-bottom-color: #BF393A;
}

.products-item-more a.more3:hover span {
  border-bottom-color: #605A8D;
}

.slider {
  height: 450px;
  position: relative;
  z-index: 2;
}

.slider-hand {
  position: absolute;
  top: 95px;
  right: 10px;
  width: 40px;
}

.slider-item {
  position: absolute;
  cursor: pointer;
}

.slider-item.zin {
  z-index: 4;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.slider-item.center {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider-item.prev {
  top: -20px;
  left: -webkit-calc(50% - 135px);
  left: calc(50% - 135px);
  -webkit-transform: rotate(-30deg) translate(-50%, 0);
  -ms-transform: rotate(-30deg) translate(-50%, 0);
  transform: rotate(-30deg) translate(-50%, 0);
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider-item.next {
  top: 140px;
  left: -webkit-calc(50% + 80px);
  left: calc(50% + 80px);
  -webkit-transform: rotate(30deg) translate(-50%, 0);
  -ms-transform: rotate(30deg) translate(-50%, 0);
  transform: rotate(30deg) translate(-50%, 0);
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider-small {
  position: absolute;
  z-index: 5;
  cursor: pointer;
}

.slider-small.zin {
  z-index: 6;
}

.slider-small.first {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider-small.first.center {
  top: 300px;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
}

.slider-small.first.prev {
  top: 285px;
  left: -webkit-calc(50% - 135px);
  left: calc(50% - 135px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider-small.second {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider-small.second.center {
  top: 233px;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
}

.slider-small.second.prev {
  top: 240px;
  left: -webkit-calc(50% - 135px);
  left: calc(50% - 135px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider-small.second.next {
  top: 230px;
  left: -webkit-calc(50% + 80px);
  left: calc(50% + 80px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider-small.third {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider-small.third.center {
  top: 255px;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
}

.slider-small.third.next {
  top: 230px;
  left: -webkit-calc(50% + 80px);
  left: calc(50% + 80px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider1 {
  height: 450px;
  position: relative;
  z-index: 2;
}

.slider1-item {
  position: absolute;
  cursor: pointer;
}

.slider1-item.zin {
  z-index: 4;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.slider1-item.center {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider1-item.prev {
  -webkit-transform: scale(0.8) translate(-50%, 0);
  -ms-transform: scale(0.8) translate(-50%, 0);
  transform: scale(0.8) translate(-50%, 0);
  left: -webkit-calc(50% - 173px);
  left: calc(50% - 173px);
  top: 8px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider1-item.next {
  -webkit-transform: scale(0.8) translate(-50%, 0);
  -ms-transform: scale(0.8) translate(-50%, 0);
  transform: scale(0.8) translate(-50%, 0);
  left: -webkit-calc(50% + 133px);
  left: calc(50% + 133px);
  top: 8px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider1-small {
  position: absolute;
  z-index: 3;
  cursor: pointer;
}

.slider1-small.zin {
  z-index: 6;
}

.slider1-small.first {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider1-small.first.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 250px;
  left: 50%;
}

.slider1-small.first.prev {
  top: 230px;
  left: -webkit-calc(50% - 175px);
  left: calc(50% - 175px);
  -webkit-transform: scale(0.6) translate(-50%, 0);
  -ms-transform: scale(0.6) translate(-50%, 0);
  transform: scale(0.6) translate(-50%, 0);
}

.slider1-small.second {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider1-small.second.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 263px;
  left: 50%;
}

.slider1-small.second.prev {
  top: 230px;
  left: -webkit-calc(50% - 175px);
  left: calc(50% - 175px);
  -webkit-transform: scale(0.6) translate(-50%, 0);
  -ms-transform: scale(0.6) translate(-50%, 0);
  transform: scale(0.6) translate(-50%, 0);
}

.slider1-small.second.next {
  top: 230px;
  left: -webkit-calc(50% + 100px);
  left: calc(50% + 100px);
  -webkit-transform: scale(0.6) translate(-50%, 0);
  -ms-transform: scale(0.6) translate(-50%, 0);
  transform: scale(0.6) translate(-50%, 0);
}

.slider1-small.third {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider1-small.third.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 255px;
  left: 50%;
}

.slider1-small.third.next {
  top: 230px;
  left: -webkit-calc(50% + 110px);
  left: calc(50% + 110px);
  -webkit-transform: scale(0.6) translate(-50%, 0);
  -ms-transform: scale(0.6) translate(-50%, 0);
  transform: scale(0.6) translate(-50%, 0);
}

.slider2 {
  height: 450px;
  position: relative;
  z-index: 2;
}

.slider2-item {
  position: absolute;
  cursor: pointer;
}

.slider2-item.zin {
  z-index: 4;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.slider2-item.center {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider2-item.prev {
  -webkit-transform: scale(0.8) translate(-50%, 0);
  -ms-transform: scale(0.8) translate(-50%, 0);
  transform: scale(0.8) translate(-50%, 0);
  left: -webkit-calc(50% - 155px);
  left: calc(50% - 155px);
  top: 8px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider2-item.next {
  -webkit-transform: scale(0.8) translate(-50%, 0);
  -ms-transform: scale(0.8) translate(-50%, 0);
  transform: scale(0.8) translate(-50%, 0);
  left: -webkit-calc(50% + 93px);
  left: calc(50% + 93px);
  top: 8px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.slider2-small {
  position: absolute;
  z-index: 3;
  cursor: pointer;
}

.slider2-small.zin {
  z-index: 6;
}

.slider2-small.first {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider2-small.first.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 335px;
  left: 50%;
}

.slider2-small.first.prev {
  top: 317px;
  left: -webkit-calc(50% - 150px);
  left: calc(50% - 150px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider2-small.second {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider2-small.second.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 335px;
  left: 50%;
}

.slider2-small.second.prev {
  top: 317px;
  left: -webkit-calc(50% - 150px);
  left: calc(50% - 150px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider2-small.second.next {
  top: 315px;
  left: -webkit-calc(50% + 100px);
  left: calc(50% + 100px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

.slider2-small.third {
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

.slider2-small.third.center {
  -webkit-transform: scale(1) translate(-50%, 0);
  -ms-transform: scale(1) translate(-50%, 0);
  transform: scale(1) translate(-50%, 0);
  top: 335px;
  left: 50%;
}

.slider2-small.third.next {
  top: 315px;
  left: -webkit-calc(50% + 100px);
  left: calc(50% + 100px);
  -webkit-transform: scale(0.7) translate(-50%, 0);
  -ms-transform: scale(0.7) translate(-50%, 0);
  transform: scale(0.7) translate(-50%, 0);
}

section.title-section {
  height: 862px;
  background: #F5F5F5;
}

section.production-section {
  padding-top: 180px;
}

.production-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*-webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;*/
}

.production-item-wrap {
  width: 520px;
  margin: 0 90px;
  margin-bottom: 180px;
}

.production-item-wrap:nth-child(2n-1) {
  margin-left: 0;
}

.production-item-wrap:nth-child(2n) {
  margin-right: 0;
}

.production-item-wrap:hover .production-item {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.production-item-wrap:hover .production-item .img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.production-item-wrap:hover .production-item .img img:first-child {
  opacity: 0;
}

.production-item-wrap:hover .production-item .img img:last-child {
  opacity: 1;
}

.production-item-wrap:hover .production-item p,
.production-item-wrap:hover .production-item .name {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.production-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  position: relative;
}

.production-item img.hand {
  width: 70px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.production-item .img {
  width: 100%;
  height: 530px;
  position: relative;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.production-item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.production-item .img img:last-child {
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0, 0);
  max-width: 100%;
  max-height: 95%;
  object-fit: cover;
}

.production-item p {
  padding: 0 40px;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.production-item p:last-of-type {
  margin-bottom: 23px;
}

.production-item p strong {
  font-weight: 600;
}

.production-item .name {
  text-align: center;
  padding: 20px;
  color: #fff;
  font-family: 'Marmelad', sans-serif;
  font-size: 24px;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.production-item.black p {
  color: #363636;
}

.menu-section {
  position: absolute;
  top: 77px;
  left: -20px;
  width: 467px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: none;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: transparent;
}

ul.menu {
  padding: 10px 0;
  padding-bottom: 0;
  border-bottom: 2px solid #4DC04C;
}

ul.menu li {
  font-family: 'Marmelad', sans-serif;
  font-size: 20px;
}

ul.menu li a {
  padding: 10px 20px;
  display: block;
  color: #505050;
}

ul.menu li a span {
  border-bottom: 1px solid transparent;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

ul.menu li a:hover span {
  border-bottom-color: #505050;
}

ul.menu li:first-child a:hover {
  color: #4EA052;
}

ul.menu li:first-child a:hover span {
  border-bottom-color: #4EA052;
}

ul.menu li:nth-child(2) a:hover {
  color: #BF393A;
}

ul.menu li:nth-child(2) a:hover span {
  border-bottom-color: #BF393A;
}

ul.menu li:nth-child(3) a:hover {
  color: #696888;
}

ul.menu li:nth-child(3) a:hover span {
  border-bottom-color: #696888;
}

ul.menu li:nth-child(5) {
  border-bottom: 2px solid #4DC04C;
}

.menu-bottom {
  padding: 20px;
}

.menu-bottom h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}

.menu-bottom h5 {
  font-family: 'Marmelad', sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.menu-bottom p {
  margin-bottom: 12px;
}

.menu-bottom p a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.menu-bottom p a img {
  margin-right: 10px;
}

.menu-bottom p a span {
  color: #505050;
}

.menu-bottom p a:hover span {
  color: #4EA052;
}

section.contacts-section {
  padding-top: 80px;
  padding-bottom: 134px;
  background: url('../img/contacts-bg.jpg') no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: right center;
  color: #fff;
  position: relative;
}

section.contacts-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0,0,0,.5);
}

section.contacts-section .wrapper {
  position: relative;
  z-index: 3;
}

section.contacts-section h1 {
  text-align: center;
  margin-bottom: 56px;
  font-family: 'Marmelad', sans-serif;
  font-size: 48px;
  line-height: 57px;
}

.contacts-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contacts-left {
  width: 515px;
  padding-right: 20px;
}

.contacts-left h4 {
  font-weight: 500;
  font-size: 28px;
  line-height: 39px;
  margin-bottom: 40px;
}

.contacts-left h5 {
  font-family: 'Marmelad', sans-serif;
  font-size: 29px;
  line-height: 39px;
  margin-bottom: 25px;
  margin-top: 33px;
}

.contacts-left p {
  margin-bottom: 20px;
  font-size: 20px;
}

.contacts-left p a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.contacts-left p a img {
  margin-right: 10px;
}

.contacts-left p a span {
  color: #fff;
}

.contacts-right {
  width: -webkit-calc(100% - 515px);
  width: calc(100% - 515px);
}

.contacts-right #map {
  width: 100%;
  height: 410px;
}

section.awards-section {
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 120px;
}

ul.awards-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 40px;
}

ul.awards-wrap li {
  width: calc(33.33% - 30px);
  margin: 0 15px;
  margin-bottom: 100px;
  padding: 0 70px;
  text-align: center;
  position: relative;
  font-weight: 500;
  font-size: 14px;
}

ul.awards-wrap li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 62px;
  height: 100px;
  background: url('../img/left-venok.png') no-repeat;
  background-size: cover;
  background-position: center;
}

ul.awards-wrap li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 62px;
  height: 100px;
  background: url('../img/right-venok.png') no-repeat;
  background-size: cover;
  background-position: center;
}

/*.awards-item {
  display: flex;
  align-items: flex-start;
  margin: 0 -10px;
  margin-bottom: 60px;
}

.awards-item .img {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.awards-item .img img {
  width: 100%;
}

.awards-item .text {
  width: calc(50% - 20px);
  margin: 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.awards-item .text p {
  margin-bottom: 15px;
}*/

@media screen and (max-width: 1550px) {
  .header-circle.vegetables, .header-circle.mushrooms {
    top: 50%;
  }
}

@media screen and (max-width: 1250px) {
  .production-item-wrap {
    margin: 0 30px;
    margin-bottom: 60px;
  }

  .header-scroll {
    right: 15px;
    bottom: 15px;
    transform: translate(0, 0);
  }

  .header-scroll img {
    width: 25px;
  }

  @keyframes headerScroll {
    0% {
      bottom: 15px;
    }

    25% {
      bottom: 5px;
    }

    50% {
      bottom: 15px;
    }
  }
}

@media screen and (max-width: 1200px) {
  section.products-section .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .products-item {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .products-item h4 {
    font-size: 26px;
  }

  .products-item-bottom {
    padding: 0 15px;
  }

  .products-item-bottom .item h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .products-item-bottom .item p {
    font-size: 15px;
  }

  .slider {
    height: 335px;
  }

  .slider-item img {
    width: 228px;
  }

  .slider-item.center {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .slider-item.prev {
    left: -webkit-calc(50% - 103px);
    left: calc(50% - 103px);
    -webkit-transform: rotate(-30deg) translate(-50%, 0);
    -ms-transform: rotate(-30deg) translate(-50%, 0);
    transform: rotate(-30deg) translate(-50%, 0);
    top: -16px;
  }

  .slider-item.next {
    left: -webkit-calc(50% + 90px);
    left: calc(50% + 90px);
    -webkit-transform: rotate(30deg) translate(-50%, 0);
    -ms-transform: rotate(30deg) translate(-50%, 0);
    transform: rotate(30deg) translate(-50%, 0);
    top: 105px;
  }

  .slider-small.second.center {
    top: 170px;
    left: 50%;
    -webkit-transform: scale(1) translate(-50%, 0);
    -ms-transform: scale(1) translate(-50%, 0);
    transform: scale(1) translate(-50%, 0);
  }

  .slider-small.second.next {
    top: 165px;
    left: -webkit-calc(50% + 52px);
    left: calc(50% + 52px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider-small.second.prev {
    top: 165px;
    left: -webkit-calc(50% - 107px);
    left: calc(50% - 107px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider-small.second img {
    width: 180px;
  }

  .slider-small.first img {
    width: 120px;
  }

  .slider-small.first.prev {
    top: 200px;
    left: -webkit-calc(50% - 100px);
    left: calc(50% - 100px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider-small.first.center {
    top: 197px;
    left: 50%;
    -webkit-transform: scale(1) translate(-50%, 0);
    -ms-transform: scale(1) translate(-50%, 0);
    transform: scale(1) translate(-50%, 0);
  }

  .slider-small.third img {
    width: 170px;
  }

  .slider-small.third.next {
    top: 165px;
    left: -webkit-calc(50% + 62px);
    left: calc(50% + 62px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider-small.third.center {
    top: 165px;
    left: 50%;
    -webkit-transform: scale(1) translate(-50%, 0);
    -ms-transform: scale(1) translate(-50%, 0);
    transform: scale(1) translate(-50%, 0);
  }

  .slider1 {
    height: 335px;
  }

  .slider1-item img {
    width: 205px;
  }

  .slider1-item.prev {
    left: -webkit-calc(50% - 140px);
    left: calc(50% - 140px);
    -webkit-transform: scale(0.8) translate(-50%, 0);
    -ms-transform: scale(0.8) translate(-50%, 0);
    transform: scale(0.8) translate(-50%, 0);
  }

  .slider1-item.next {
    left: -webkit-calc(50% + 100px);
    left: calc(50% + 100px);
    -webkit-transform: scale(0.8) translate(-50%, 0);
    -ms-transform: scale(0.8) translate(-50%, 0);
    transform: scale(0.8) translate(-50%, 0);
  }

  .slider1-small.second img {
    width: 137px;
  }

  .slider1-small.second.center {
    top: 187px;
  }

  .slider1-small.second.next {
    top: 165px;
    left: -webkit-calc(50% + 85px);
    left: calc(50% + 85px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider1-small.second.prev {
    top: 165px;
    left: -webkit-calc(50% - 120px);
    left: calc(50% - 120px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider1-small.first img {
    width: 120px;
  }

  .slider1-small.first.prev {
    top: 152px;
    left: -webkit-calc(50% - 120px);
    left: calc(50% - 120px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider1-small.first.center {
    top: 175px;
  }

  .slider1-small.third img {
    width: 120px;
  }

  .slider1-small.third.next {
    top: 158px;
    left: -webkit-calc(50% + 85px);
    left: calc(50% + 85px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider1-small.third.center {
    top: 190px;
  }

  .slider2 {
    height: 335px;
  }

  .slider2-item img {
    width: 160px;
  }

  .slider2-item.prev {
    left: -webkit-calc(50% - 107px);
    left: calc(50% - 107px);
    -webkit-transform: scale(0.8) translate(-50%, 0);
    -ms-transform: scale(0.8) translate(-50%, 0);
    transform: scale(0.8) translate(-50%, 0);
  }

  .slider2-item.next {
    left: -webkit-calc(50% + 70px);
    left: calc(50% + 70px);
    -webkit-transform: scale(0.8) translate(-50%, 0);
    -ms-transform: scale(0.8) translate(-50%, 0);
    transform: scale(0.8) translate(-50%, 0);
  }

  .slider2-small.second img {
    width: 105px;
  }

  .slider2-small.second.center {
    top: 236px;
  }

  .slider2-small.second.next {
    top: 220px;
    left: -webkit-calc(50% + 75px);
    left: calc(50% + 75px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider2-small.second.prev {
    top: 220px;
    left: -webkit-calc(50% - 107px);
    left: calc(50% - 107px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider2-small.first img {
    width: 125px;
  }

  .slider2-small.first.prev {
    top: 215px;
    left: -webkit-calc(50% - 107px);
    left: calc(50% - 107px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider2-small.first.center {
    top: 237px;
  }

  .slider2-small.third img {
    width: 125px;
  }

  .slider2-small.third.next {
    top: 215px;
    left: -webkit-calc(50% + 75px);
    left: calc(50% + 75px);
    -webkit-transform: scale(0.7) translate(-50%, 0);
    -ms-transform: scale(0.7) translate(-50%, 0);
    transform: scale(0.7) translate(-50%, 0);
  }

  .slider2-small.third.center {
    top: 237px;
  }
}

@media screen and (max-width: 1150px) {
  .production-item-wrap {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 1100px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-circle {
    width: 300px;
    height: 300px;
    font-size: 36px;
  }
}

@media screen and (max-width: 960px) {
  ul.awards-wrap li {
    width: calc(50% - 30px);
  }

  .menu-section::before {
  	display: none;
  }

  .header-circle.vegetables, .header-circle.mushrooms {
    top: 0;
  }

  .footer-item.footer-phone {
    margin-bottom: 0;
  }

  .footer-item.footer-phone.last {
    padding-left: 25px;
    margin-bottom: 20px;
  }

  .header-circle {
    width: 100%;
    height: 100%;
    top: 0;
    right: auto;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
  }

  /*section.awards-section {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .awards-item {
    margin: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .awards-item .img {
    width: 100%;
    margin: 0;
    margin-bottom: 25px;
    order: 1;
  }

  .awards-item .text {
    order: 2;
    width: 100%;
    margin: 0;
  }*/

  .top-contacts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .top-contacts-inner {
    position: absolute;
    left: 50%;
    top: 19px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .top-contacts-inner::after {
    top: 10px;
    right: -19px;
    border-width: 6px;
  }

  .menu-section {
    top: 62px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .menu-bottom p a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  section.top-line-section {
    padding-top: 11px;
    padding-bottom: 4px;
  }

  .top-line-wrap .logo img {
    width: 100px;
  }

  .top-contacts-inner {
    font-size: 16px;
  }

  .top-line-right a.phone {
    display: none;
  }

  .top-line-right a.call {
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .top-line-right a.call svg {
    width: 14px;
  }

  .top-line-right a.call span {
    display: none;
  }

  .footer-wrap {
    padding: 36px 0;
    display: block;
  }

  .footer-item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .footer-item:last-child {
    margin-bottom: 0;
  }

  .footer-item.footer-phone {
    font-size: 20px;
  }

  .footer-item.footer-phone img {
    margin-right: 10px;
    width: 21px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 15px 0;
  }

  .products-wrap {
    display: block;
    width: 100%;
    margin: 0;
  }

  .products-item {
    width: 100%;
  }

  section.production-section {
    padding-top: 0;
  }

  section.production-section .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  section.contacts-section h1 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 40px;
  }

  .contacts-wrap {
    display: block;
  }

  .contacts-left {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }

  .contacts-left h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
  }

  .contacts-left h5 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .contacts-left p {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .contacts-right {
    width: 100%;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-circle.fruits, .header-circle.vegetables,
  .header-circle.mushrooms, .header-circle.other {
    background: transparent;
  }

  header {
    position: relative;
  }

  header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    z-index: 2;
  }

  .header-circle {
    z-index: 3;
  }

  .header-scroll {
    z-index: 3;
  }

  header.main-header::after {
    display: none;
  }
}

@media screen and (max-width: 780px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 750px) {
  ul.awards-wrap {
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 50px;
  }

  ul.awards-wrap li {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
    padding: 0 45px;
  }

  ul.awards-wrap li::before {
    width: 40px;
    height: 64px;
  }

  ul.awards-wrap li::after {
    width: 40px;
    height: 64px;
  }
}

@media screen and (max-width: 560px) {
  section.contacts-section {
  	background-image: url('../img/contacts-mob-bg.jpg');
  }

  .slider-hand {
    top: 63px;
  }

  .top-contacts-inner {
    margin-left: 50px;
  }

  .top-contacts-inner img {
    width: 55px;
  }

  .top-contacts-inner::after {
    top: 8px;
  }

  .top-line-wrap .logo span {
    right: -69px;
    font-size: 13px;
    line-height: 15px;
  }

  section.top-line-section {
    padding: 11px 0;
  }

  header {
    height: 217px;
  }

  header img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .production-item .img {
    height: 360px;
  }

  .production-item .img img {
    max-width: 60%;
  }

  .production-item p {
    padding: 0 15px;
  }

  .production-item .name {
    font-size: 20px;
    padding: 10px;
  }

  .production-item.big-mob .img img:first-child {
    max-width: 50%;
  }

  .production-item.big-big-mob .img img:first-child {
    max-width: 40%;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 440px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}