body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262626;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  /* font-family: "Gilroy"; */
}

h2 {
  font-weight: 700;
  font-size: 50px;
  font-size: clamp(1.375rem, 1.0143rem + 1.8033vw, 2.75rem);
  line-height: 110%;
  color: #262626;
  margin-bottom: 40px;
}

.p150 {
  padding: 150px 0;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
}

button:focus {
  outline: none;
}

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

/* :root {
  --main-color: #FE8300;
} */

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

.d_flex {
  display: flex;
}

.d_flex_c {
  justify-content: center;
  align-items: center;
}

.d_grid {
  display: grid;
}

.d_grid_4 {
  grid-template-columns: repeat(4, 1fr);
}

.d_grid_3 {
  grid-template-columns: repeat(3, 1fr);
}

.hidden-anim {
  opacity: 0;
  visibility: hidden;
}

.burger_block {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  background: #B80071;
}

#nav-icon3 span:nth-child(2) {
  background: #BD003F;
}

#nav-icon3 span:nth-child(3) {
  background: #E84340;
}

#nav-icon3 span:nth-child(4) {
  background: #E84340;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 27px;
  right: 0;
  z-index: 100;
  /* box-shadow: 0px 4px 4px 0px rgba(239, 239, 239, 0.50); */
  /* transition: 0.8s cubic-bezier(0.01, -0.02, 0, 0.79); */
  transition: 0.3s;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: 0.4s;
  background: white;
  /* border: 1px solid red; */
  border-radius: 28px;
  padding: 18px 80px;
  transition: 0.3s;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.07);
}

.menu_header ul {
  display: flex;
  align-items: center;
  gap: 70px;
}

.menu_header ul li a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #262626;
  transition: 0.4s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}


.menu_header ul li a:hover {
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo_wrapper img {
  transition: 0.3s;
}

@media (min-width: 992px) {

  .header.sticky {
    top: 15px;
  }

  .header.sticky .logo_wrapper img {
    width: 180px;
  }

  .header.sticky .header_wrapper {
    padding: 8px 80px;
    box-shadow: 0px 5px 12px 6px rgba(239, 239, 239, 0.50);
  }
}

.menu-item-has-children {
  position: relative;
}

.menu_header ul.sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  box-shadow: 0px 5px 12px 6px rgba(239, 239, 239, 0.50);
  top: 20px;
  left: -10px;
  border-radius: 13px;
  transition: 0.4s;
  overflow: hidden;
  height: 0;
  padding: 0 10px;
}

@media(min-width: 992px) {
  .menu-item-has-children:hover ul.sub-menu {
    height: auto;
    padding: 10px;
  }
}

#menu-header-left-ua ul.sub-menu,
#menu-header-left-en ul.sub-menu {
  gap: 0;
  padding: 0 15px;
  align-items: flex-start;
  scale: 0.7;
  translate: -30px -30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.42, 0, 0, 1.41);
}

#menu-header-left-ua .menu-item-has-children:hover ul.sub-menu,
#menu-header-left-en .menu-item-has-children:hover ul.sub-menu {
  height: auto;
  scale: 1;
  translate: 0 0;
  visibility: visible;
  opacity: 1;
}

#menu-header-left-ua .menu-item-has-children,
#menu-header-left-en .menu-item-has-children {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

#menu-header-left-ua .menu-item-has-children:after,
#menu-header-left-en .menu-item-has-children:after {
  content: '';
  position: absolute;
  right: -19px;
  top: 30%;
  translate: 0 -50%;
  background-image: url(/wp-content/uploads/2024/02/menu-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 19px;
  height: 17px;
  transition: 0.4s;
}

#menu-header-left-ua .menu-item-has-children:hover:after,
#menu-header-left-en .menu-item-has-children:hover:after {
  top: 42%;
}

#menu-header-left-ua ul.sub-menu li,
#menu-header-left-en ul.sub-menu li {
  padding: 10px 0;
  border-bottom: 1px solid rgb(232, 232, 232);
  width: 100%;
}

.top_slider_item {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.top_slider_img {
  position: absolute;
  bottom: -495px;
  left: 50%;
  translate: -50% 0;
}

.home_title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.top_slider_bg_lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.top_slider_pretitle {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  text-align: center;
  color: #171717;
  display: block;
  margin: -160px 0 30px;
}

.fruits_image_slider {
  position: absolute;
}

.fruits_image_1 {
  left: 9%;
  top: 27%;
}

.fruits_image_2 {
  left: 10%;
  top: 47%;
}

.fruits_image_3 {
  left: 20%;
  top: 27%;
}

.fruits_image_4 {
  right: 9%;
  top: 24%;
}

.fruits_image_5 {
  right: 6%;
  top: 43%;
}

.top_slider_title {
  display: block;
}

.slick-current .top_slider_img {
  animation: 0.7s cubic-bezier(.34, .88, .44, .95) move-cup forwards;
}

.slick-current .top_slider_title {
  animation: 0.8s move-title forwards;
}

.slick-current .top_slider_pretitle {
  animation: 0.8s move-pretitle forwards;
}

.slick-current .top_slider_bg_lines {
  animation: 0.9s move-lines forwards;
}

.slick-current .fruits_image_1 {
  animation: 0.8s move-fruit1 forwards;
}

.slick-current .fruits_image_2 {
  animation: 0.8s move-fruit2 forwards;
}

.slick-current .fruits_image_3 {
  animation: 0.8s move-fruit3 forwards;
}

.slick-current .fruits_image_4 {
  animation: 0.8s move-fruit4 forwards;
}

.slick-current .fruits_image_5 {
  animation: 0.8s move-fruit5 forwards;
}

@keyframes move-cup {
  0% {
    rotate: 0;
    scale: 1;
    translate: -50% 10px;
  }

  100% {
    rotate: 70deg;
    scale: 1.15;
    translate: -50% -25px;
  }
}

@keyframes move-title {
  0% {
    scale: 1;
    translate: 0 0;
  }

  100% {
    scale: 1.18;
    translate: 0 -25px;
  }
}

@keyframes move-pretitle {
  0% {
    scale: 1;
    translate: 0 0;
  }

  100% {
    scale: 1.3;
    translate: 0 -50px;
  }
}

@keyframes move-lines {
  0% {
    scale: 1;
  }

  100% {
    scale: 1.6;
  }
}

@keyframes move-fruit1 {
  0% {
    translate: 0 0;
    rotate: 0;
    scale: 1;
  }

  100% {
    translate: -55px -65px;
    rotate: -50deg;
    scale: 1.2;
  }
}

@keyframes move-fruit2 {
  0% {
    translate: 0 0;
    rotate: 0;
    scale: 1;
  }

  100% {
    translate: -90px -40px;
    rotate: 40deg;
    scale: 1.1;
  }
}

@keyframes move-fruit3 {
  0% {
    translate: 0 0;
    rotate: 0;
    scale: 1;
  }

  100% {
    translate: -20px -50px;
    rotate: -40deg;
    scale: 1.1;
  }
}

@keyframes move-fruit4 {
  0% {
    translate: 0 0;
    rotate: 0;
    scale: 1;
  }

  100% {
    translate: 40px -30px;
    rotate: -50deg;
    scale: 1.1;
  }
}

@keyframes move-fruit5 {
  0% {
    translate: 0 0;
    rotate: 0;
    scale: 1;
  }

  100% {
    translate: 50px -20px;
    rotate: -50deg;
    scale: 1.1;
  }
}

.scroll_down {
  border-radius: 50%;
  border: unset;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  padding: 0;
  margin: 0;
  /* border: 1px solid white; */
  transition: 0.4s;
}

.scroll_down svg {
  width: 18px;
  fill: white;
  stroke: white;
  transition: 0.5s;
}

.scroll_down svg path {
  fill: white;
}

.scroll_down:hover {
  translate: -50% 5px;
}

.scroll_down:hover svg {
  translate: 0 3px;
}

.slick-arrow {
  position: absolute;
  left: 5%;
  bottom: 50px;
  background: transparent;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  font-size: 0;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: 0.4s;
}

.slick-arrow:hover {
  opacity: 0.5;
}

.slick-arrow:before {
  content: '';
  background-image: url(/wp-content/uploads/2024/02/slider-arrow.svg);
  width: 14px;
  height: 22px;
  background-size: cover;
  background-repeat: no-repeat;
}

.slick-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/wp-content/uploads/2024/02/slider-border.svg);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.slick-next {
  left: 10%;
  rotate: 180deg;
}

.how_work {
  background: #eef2ff;
  overflow: hidden;
}

.how_work_wrapper {
  display: flex;
  gap: 130px;
  justify-content: space-between;
  align-items: center;
}

.how_work_imgs {
  display: flex;
  align-items: center;
  gap: 50px;
  /* transition: 0.3s; */
}

.how_work_img {
  translate: 70px 0;
  transition: 1.9s cubic-bezier(.34, .88, .44, .95);
}

.how_work_img:nth-child(2) {
  transition-delay: 0.2s;
}

.how_work_img:nth-child(3) {
  transition-delay: 0.3s;
}

.how_work_img.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.how_work_imgs img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.how_work_img:hover img {
  rotate: -13deg;
}

.how_work_descr {
  max-width: 530px;
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
}

.how_work_title {
  white-space: nowrap;
}

.tastes_title {
  text-align: center;
}

.tastes_subtitle {
  text-align: center;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  text-align: center;
}

.tastes_wrapper {
  margin-top: 20px;
}

.tastes_item {
  position: relative;
  width: 450px !important;
  min-width: 450px !important;
  height: 450px;
}

.taste_icecream_img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50.5%;
  width: 80%;
  z-index: 10;
}

.taste_item_img {
  position: absolute;
  right: -17%;
  top: -14%;
  width: 320px;
  height: 320px;
}

/* .tastes_item:nth-child(2) .taste_icecream_img {
  left: 49px;
  top: -95px;
  width: 500px;
}

.tastes_item:nth-child(3) .taste_icecream_img {
  left: 48px;
  top: -99px;
  width: 474px;
}

.tastes_item:nth-child(4) .taste_icecream_img {
  left: 51px;
  top: -61px;
  width: 417px;
} */

.taste_txt_img {
  width: 100%;
  height: 100%;
}

.tastes_item:hover .taste_txt_img {
  animation: tasteRotate 20s infinite linear;
}

.tastes_wrapper .slick-track {
  display: flex;
  gap: 75px;
  padding: 47px 0;
}

:root {
  --first-color: #B80071;
  --second-color: #BD003F;
  --third-color: #E84340;
  --fourth-color: #ED7100;
}

.tastes_btn {
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin: 40px auto 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* padding: 0 45px; */
  position: relative;
  left: 50%;
  translate: -50% 0;
  background: hsl(0deg 0% 100%);
  border-radius: 40px;
  transition: 0.5s;
}

.tastes_btn:hover {
  color: white;
  scale: 1.01;
  translate: -50% -4px;
}

.tastes_btn_content {
  overflow: hidden;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 25px;
  border-radius: 40px;
}

.tastes_btn_content:before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  z-index: -1;
  opacity: 0.7;
}

.tastes_btn_content div {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  filter: blur(12px);
  z-index: -1;
}

.button_shape_1 {
  background: var(--first-color);
  translate: -58px -26px;
  animation: shape-1 4s 1s ease-out infinite;
}

.button_shape_2 {
  background: var(--second-color);
  translate: -22px 26px;
  animation: shape-2 4s ease-in infinite;
}

.button_shape_3 {
  background: var(--third-color);
  translate: 30px -26px;
  animation: shape-3 4s ease-out infinite;
}

.button_shape_4 {
  background: var(--fourth-color);
  translate: 58px 26px;
  animation: shape-4 4s 1s ease-in infinite;
}

.tastes_btn_text {
  z-index: 10;
}

.button_shadow {
  width: 90%;
  height: 2rem;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  border-radius: 15px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2px;
  z-index: -1;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s;
}

.tastes_btn:hover .button_shadow {
  opacity: 1;
}

@keyframes shape-1 {
  33% {
    transform: translate(-28px, 0);
  }
}

@keyframes shape-2 {
  33% {
    transform: translate(-28px, 28px);
  }
}

@keyframes shape-3 {
  33% {
    transform: translate(20px, 4px);
  }
}

@keyframes shape-4 {
  33% {
    transform: translate(48px, -6px);
  }
}

/* .tastes_btn:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2024/02/button-border.svg);
  background-size: 100% 100%;
} */

.tastes {
  position: relative;
  isolation: isolate;
}

.tastes_bg_imgs {
  position: absolute;
  z-index: -1;
  /* left: 50%; */
}

.top-left-yellow {
  left: 0;
  top: 70px;
}

.top-right-yellow {
  right: 0;
  top: 75px;
  rotate: 180deg;
}

.top-left-green {
  left: 112px;
  top: 195px;
}

.top-right-green {
  right: 112px;
  top: 195px;
}

.top-left-red {
  left: 283px;
  top: 105px;
}

.top-right-red {
  right: 283px;
  top: 105px;
}

.bottom-left-yellow {
  left: 0;
  bottom: 113px;
}

.bottom-right-yellow {
  right: 0;
  bottom: 113px;
  rotate: 180deg;
}

.bottom-left-red {
  left: 230px;
  bottom: 160px;
}

.bottom-right-red {
  right: 230px;
  bottom: 160px;
}

.aboutUs {
  background: #FFEEEE;
  position: relative;
  isolation: isolate;
  padding: 153px 0 350px;
}

.aboutUs_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.3s;
  translate: -20% 0;
}

.aboutUs_bg.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.aboutUs_wrapper {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  width: 100%;
}

.description_inner {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8094rem + 0.3279vw, 1.125rem);
  line-height: 154%;
  color: #22273f;
  font-family: "Montserrat Alternates", sans-serif;
}

.link_to_page {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #fc3b44;
  margin-top: 30px;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  align-items: center;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  transition: 0.4s;
}

.link_to_page:hover {
  background: linear-gradient(80deg, var(--second-color) 10%, var(--second-color) 30%, var(--second-color) 60%, var(--second-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  transition: 0.4s;
}

.link_to_page svg {
  transition: 0.4s;
  min-width: 15px;
}

.link_to_page:hover svg {
  translate: 4px 0;
}

.aboutUs_bg_circules {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.aboutUs_bg_oval {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.2s;
  translate: -10% 0;
}

.aboutUs_bg_oval.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.partner_form {
  position: relative;
  overflow: hidden;
  /* isolation: isolate; */
}

.partnership {
  padding: 153px 0 125px;
  background: #EEF2FF;
  position: relative;
  isolation: isolate;
}

.partnership_img_bg {
  position: absolute;
  right: -10%;
  top: 0;
  z-index: 10;
  height: 100%;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  translate: 10% 0;
  pointer-events: none;
}

.partnership_img_bg.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.partnership_wrapper {
  max-width: 470px;
}

.partnership_circules_bg {
  position: absolute;
  bottom: 0;
  left: 7%;
  z-index: -1;
}

.form {
  background: #CCD6FB;
  padding: 75px 0 80px;
}

.form_wrapper form p {
  display: flex;
  gap: 20px;
}

.form_wrapper form p input {
  height: 45px;
  max-width: 240px;
  padding-left: 22px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 154%;
  border: unset;
  border: 1px solid transparent;
  transition: 0.4s;
}

.form_wrapper form p input.wpcf7-not-valid {
  border: 1px solid red;
}

.form_wrapper form p input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 154%;
  color: #acacac;
}

.form_wrapper form p input.wpcf7-submit {
  padding: 0 30px;
  background: #556dc6;
  color: white;
  transition: 0.4s;
  border: unset;
}

.form_wrapper form p input.wpcf7-submit:hover {
  background: #7c91e0;
}

.accessories {
  position: relative;
  isolation: isolate;
}

.accessories_wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 65px;
  gap: 45px;
}

.accessories_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.accessories_img {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1/1;
  padding-top: 35px;
}

.accessories_img img {
  width: 65%;
  transition: 0.4s ease-in-out;
}

.accessories_item:first-child .accessories_img {
  align-items: flex-end;
  padding-top: 0;
}

.accessories_item:first-child .accessories_img>img {
  width: 80%;
}

.accessories_item:nth-child(3) .accessories_img>img {
  width: 75%;
}

.accessories_title {
  text-align: center;
  margin-bottom: 60px;
}

.accessories_img:hover img {
  scale: 1.1;
}

.accessories_img:before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2024/02/accessories-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 1.41);
  z-index: -1;
}

.accessories_img:hover:before {
  rotate: 80deg;
}

.accessories_name {
  font-weight: 700;
  font-size: 29px;
  line-height: 130%;
  text-align: center;
  color: #262626;
  display: block;
}

.accessories_subname {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  display: block;
}

.accessories_bg_imgs {
  position: absolute;
  z-index: -1;
}

.top-left-yellow-acc {
  left: 0;
  top: 57px;
}

.top-right-yellow-acc {
  right: 0;
  top: 57px;
  rotate: 180deg;
}

.top-left-green-acc {
  left: 160px;
  top: 100px;
}

.top-right-green-acc {
  right: 160px;
  top: 100px;
}

.top-left-red-acc {
  top: 90px;
  left: 430px;
}

.top-right-small-yellow-acc {
  right: 443px;
  top: 133px;
}

.bottom-left-yellow-acc {
  left: 61px;
  bottom: 58px;
}

.bottom-right-yellow-acc {
  right: 63px;
  bottom: 63px;
}

.bottom-left-small-green {
  bottom: 104px;
  left: 365px;
}

.bottom-right-red-acc {
  bottom: 70px;
  right: 364px;
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  transition: 0.4s ease-in-out;
}

.gallery_popup_link {
  position: relative;
}

.gallery_popup_link img {
  pointer-events: none;
}

.gallery_popup_link svg {
  position: absolute;
  width: 50px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 10;
  scale: 0.5;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.42, 0, 0, 1.41);
}

.gallery_popup_link:hover svg {
  scale: 1;
  opacity: 1;
  visibility: visible;
}

.gallery_item:hover img {
  filter: brightness(0.5);
}

img.mfp-img {
  padding: 0 !important;
  border-radius: 15px;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  right: -35px !important;
}

.mfp-counter {
  right: -50px;
}

.gallery_wrapper {
  width: 92%;
  margin: 0 auto;
}

.gallery_wrapper .slick-track {
  display: flex;
  /* gap: 50px; */
}

.gallery_item {
  /* width: 600px !important; */
  /* height: 380px; */
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 10px;
}

.gallery {
  background: #eef2ff;
}


.gallery_wrapper .slick-arrow {
  bottom: unset;
  top: 50%;
  translate: 0 -50%;
}

.gallery_wrapper .slick-arrow:before {
  background-image: url(/wp-content/uploads/2024/02/slider-arrow-blue.svg);
  width: 33px;
  height: 35px;
  margin-right: 5px;
}

.gallery_wrapper .slick-arrow:after {
  background-image: url(/wp-content/uploads/2024/02/slider-border-blue.svg);
}

.gallery_wrapper .slick-prev.slick-arrow {
  left: -4.5%;
}

.gallery_wrapper .slick-next.slick-arrow {
  left: unset;
  right: -4.5%;
}

.gallery_title {
  text-align: center;
  margin-bottom: 60px;
}

.gallery_btn {
  margin-top: 60px;
}

.video-content,
.youtube-item-sec {
  height: 100%;
}

.video-content {
  position: relative;
}

.video-content svg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: 0.5s cubic-bezier(0.42, 0, 0, 1.41);
  scale: 0.7;
  cursor: pointer;
  width: 33%;
}

.video-content svg:hover {
  scale: 0.8;
}

.video-content iframe {
  width: 100% !important;
  height: 100% !important;
}

.instagram_wrapper {
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.instagram_info {
  padding-right: calc((100vw - 1540px) / 2 + 15px);
  width: 40%;
  display: flex;
  justify-content: flex-end;
}

.instagram_info_inner {
  max-width: 444px;
  position: relative;
  isolation: isolate;
}

.instagram_content {
  width: 60%;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  border-radius: 13px;
  overflow: hidden;
}

.instagram_item {
  overflow: hidden;
  /* border-radius: 12px; */
  transition: 0.4s;
  position: relative;
  aspect-ratio: 1/1;
}

.instagram_item svg {
  transition: 0.5s cubic-bezier(0.42, 0, 0, 1.41);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 75px;
  scale: 0.5;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.instagram_item:hover svg {
  scale: 1;
  opacity: 1;
  visibility: visible;
}

.instagram_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.instagram_item:hover img {
  filter: brightness(0.4);
}

.instagram_name {
  font-weight: 400;
  font-size: 27px;
  color: #252525;
}

.instagram_title {
  margin-bottom: 30px;
}

.instagram_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.instagram_post_txt {
  position: absolute;
  left: 50%;
  translate: -50% -20px;
  scale: 0.6;
  bottom: 28px;
  text-align: center;
  font-size: 12px;
  line-height: 130%;
  color: white;
  display: block;
  transition: 0.5s cubic-bezier(0.42, 0, 0, 1.41);
  transition-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  width: 100%;
  padding: 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.instagram_item:hover .instagram_post_txt {
  scale: 1;
  opacity: 1;
  visibility: visible;
  translate: -50% 0;
}

.toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 150;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  translate: 0 15px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
}

.toTop svg {
  width: 50%;
  /* rotate: 180deg; */
}


.toTop.toTopShow {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.toTop:hover {
  scale: 1.05;
  translate: 0 -5px;
}

.footer {
  padding: 120px 0 60px;
  background: #BDC9F4;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 45px;
  margin-bottom: 40px;
  border-bottom: 1px solid white;
}

.footer_contacts {
  margin-top: 45px;
}

.footer_contact_item {
  align-items: center;
  margin-bottom: 20px;
}

.footer_contact_item * {
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.footer_contact_item a {
  /* border-bottom: 1px solid transparent; */
  transition: 0.3s;
}

.footer_contact_item:hover a {
  /* border-bottom: 1px solid white; */
  color: white;
}

.footer_contact_item svg {
  flex-basis: 10%;
  margin-right: 15px;
}

.footer_phones {
  flex-direction: column;
}

.footer_soc_block {
  margin-top: 45px;
  justify-content: space-between;
}

.footer_menu_title {
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin: 18px 0 50px;
  display: block;
}

.footer-menu-side-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  gap: clamp(20px, 4vw, 80px);
}

.footer_tastes_column li {
  margin-bottom: 17px;
  color: white;
}

.menu_footer-info ul li a {
  color: white;
  transition: 0.3s;
  position: relative;
}

.menu_footer-info ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  border-top: 1px solid white;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  translate: 0 5px;
}

.menu_footer-info ul li a:hover:before {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.menu_footer-info ul li {
  margin-bottom: 17px;
}

.footer_content_bottom {
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer_content_bottom span,
.footer_content_bottom div,
.footer_content_bottom a {
  font-size: 16px;
  color: white;
}

.footer_content_bottom a {
  position: relative;
}

.footer_content_bottom a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  border-top: 1px solid white;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  translate: 0 5px;
}

.footer_content_bottom a:hover:before {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.footer_content_bottom p {
  color: white;
  font-size: 12px;
  max-width: 382px;
  margin-top: 15px;
}

.mfp-figure:after {
  border-radius: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  width: 41%;
  border: 1px solid white;
  border-radius: 20px;
  /* padding: 0; */
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.how_work_txt {
  translate: -60px 0;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
}

.how_work_txt.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.main_page {
  padding-top: 155px;
}

.bread_arrow {
  width: 18px;
  rotate: -90deg;
}

.breadcrumbs {
  margin-bottom: 27px;
}

.breadcrumbs span,
.breadcrumbs a {
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  color: #262626;
}

.page_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  text-align: center;
  color: #262626;
  margin-bottom: 40px;
}

.page_subtitle {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  text-align: center;
  color: #262626;
  display: block;
  max-width: 1195px;
  width: 100%;
  margin: 0 auto;
}

.tastes_section {
  margin-top: 80px;
}

/* .tastes_section_items {
  gap: 30px;
} */

.tastes_page_item {
  position: relative;
  border-radius: 28px;
  padding: 47px;
  transition: 0.5s;
}

.tastes_page_item:hover {
  box-shadow: 0 4px 42px 0 rgba(0, 0, 0, 0.1);
  translate: 0 -2px;
  scale: 1.005;
}

.tastes_page_item:hover .taste_txt_img {
  animation: tasteRotate 20s infinite linear;
}


.tastes_page_item .taste_item_img {
  width: 280px;
  height: 280px;
  right: -15%;
  top: -16%;
}

.tastes_page_item .tastes_item {
  width: auto !important;
  height: auto;
  min-width: unset !important;
}

.taste_description {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  text-align: center;
  margin: 50px 0 20px;
  height: 100px;
}

.tastes_btn_cat {
  margin: 0;
  translate: 0 0;
  left: 0;
  cursor: pointer;
  height: 50px;
  transition: 0.4s;
  /* scale: 0.8; */
  translate: 0 4px;
  opacity: 0;
  visibility: hidden;
}

.tastes_btn_cat:hover {
  translate: 0 -4px;
}

.tastes_btn_cat .tastes_btn_content {
  height: 50px;
  padding: 0 40px;
}

.tastes_btn_cat .tastes_btn_text {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.tastes_item_bottom {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.tastes_page_item:hover .tastes_btn_cat {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  /* scale: 1; */
}

.form_cat {
  margin-top: 100px;
}

.tastes_cat_bg_top {
  position: relative;
}

.tastes_cat_bg_top .top-left-green,
.tastes_cat_bg_top .top-right-green {
  width: 70px;
}

.tastes_cat_bg_top .top-left-green,
.tastes_cat_bg_top .top-right-green {
  left: 68px;
  top: 262px;
}

.tastes_cat_bg_top .top-right-green {
  left: unset;
  right: 68px;
}

.tastes_cat_bg_top .top-left-yellow,
.tastes_cat_bg_top .top-right-yellow {
  width: 40px;
}

.tastes_cat_bg_top .top-left-yellow,
.tastes_cat_bg_top .top-right-yellow {
  top: 4px;
}

.tastes_cat_bg_top .top-left-red {
  left: 168px;
}

.tastes_cat_bg_top .top-right-red {
  right: 168px;
}

.form_cat {
  position: relative;
  isolation: isolate;
}

.form_cat_img {
  position: absolute;
  top: -110px;
  right: 45px;
  z-index: -1;
}

.form_cat_bg {
  position: absolute;
  z-index: -1;
}

.form_cat_bg_yellow_blur_left {
  left: 0;
  top: -180px;
}

.form_cat_bg_yellow_blur_right {
  rotate: 180deg;
  right: 0;
  top: -180px;
}

.form_cat_bg_red_left {
  top: -90px;
  left: 8%;
}

.form_cat_bg_red_right {
  top: -90px;
  right: 8%;
}

.form_cat_bg_green_center {
  top: -37px;
  right: 40%;
  width: 63px;
}

.form_cat_bg_red_center {
  top: 30px;
  left: 37%;
}

.form_cat_bg_yellow_left {
  top: 15%;
  left: 50px;
}

.form_cat_bg_yellow_right {
  top: 15%;
  right: 50px;
}

.form_cat_bg_yellow_center {
  top: 20%;
  left: 50%;
}

.form_cat_bg_green_bottom_left {
  width: 68px;
  left: 9%;
  bottom: -46px;
}

.form_cat_bg_green_bottom_right {
  width: 68px;
  right: 9%;
  bottom: -46px;
}

.form_cat_bg_red_bottom_left {
  bottom: -150px;
  left: 25px;
}

.form_cat_bg_red_bottom_right {
  bottom: -150px;
  right: 25px;
}

.tastes_btn_cat_bottom {
  opacity: 1;
  visibility: visible;
}

.bottom_banner_tastes {
  background: #e5ecff;
  padding: 95px 0;
  position: relative;
  isolation: isolate;
  margin-top: 75px;
}

.bottom_banner_img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 50%;
}

.bottom_banner_tastes_bg {
  position: absolute;
  z-index: -1;
}

.bottom_tastes_bg_top_left_yellow {
  left: 0;
  top: -100px;
}

.bottom_tastes_bg_top_right_yellow {
  right: 0;
  top: -150px;
}

.bottom_tastes_bg_top_left_red {
  top: -60px;
  left: 10%;
  width: 47px;
}

.bottom_tastes_bg_top_right_red {
  right: 8%;
  top: -120px;
  width: 65px;
}

.bottom_tastes_bg_top_right_yellow_small {
  top: -40px;
  right: 18%;
  width: 35px;
}

.bottom_tastes_bg_top_left_green {
  top: 50px;
  left: 40px;
  width: 73px;
}

.bottom_tastes_bg_top_right_green {
  top: 20px;
  right: 40px;
  width: 73px;
}

.bottom_tastes_bg_bottom_left_red {
  bottom: 50px;
  left: -20px;
}

.bottom_tastes_bg_bottom_left_yellow {
  bottom: -10px;
  left: 10%;
}

.overlay_popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(47, 47, 47, 0.6);
  backdrop-filter: blur(4px);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.overlay_popup.show {
  opacity: 1;
  visibility: visible;
}

.taste_popup_order {
  position: fixed;
  top: 56%;
  left: 50%;
  translate: -50% -45%;
  z-index: 1000;
  background: #e5ebff;
  border-radius: 28px;
  padding: 160px 45px 45px 45px;
  isolation: isolate;
  max-width: 550px;
  width: 92%;
  opacity: 0;
  visibility: hidden;
  scale: 0.6;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 1.41);
}

.taste_popup_order.show {
  opacity: 1;
  visibility: visible;
  scale: 1;
  translate: -50% -50%;
}

.popup_image {
  position: absolute;
  top: -150px;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}

.close_popup_btn {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
}

.close_popup_btn:hover {
  rotate: 90deg;
}

.taste_popup_title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #262626;
  margin-bottom: 10px;
}

.taste_popup_form input.wpcf7-form-control {
  border-radius: 28px;
  padding: 0;
  height: 45px;
  width: 100%;
  border: unset;
  margin-bottom: 20px;
  padding: 0 20px 0 35px;
}

.taste_popup_form input.wpcf7-submit {
  height: 50px;
  max-width: 230px;
  margin: 25px auto 0;
  position: relative;
  left: 50%;
  translate: -50% 0;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
}

.taste_popup_form br {
  display: none;
}

.taste_popup_form .wpcf7 form.invalid .wpcf7-response-output {
  width: 100%;
  text-align: center;
}

.main_page_tastes {
  overflow: hidden;
}

.gallery_page_wrapper {
  margin: 60px 0;
  gap: 15px;
}

.gallery_page_wrapper .gallery_item {
  margin: 0;
}

.tastes_cat_bg_top_gallery {
  bottom: 105px;
}

.form_partner_text {
  text-align: center;
  display: block;
  font-size: 17px;
  margin-bottom: 40px;

}

.form_partner_text a {
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.form_partner_text a svg {
  transition: 0.3s;
}

.form_partner_text a:hover svg {
  translate: 3px 0;
}

.main_home {
  overflow: hidden;
}

.notfound_section {
  padding: 190px 0 110px;
}

.notfound_btn {
  margin: 0;
  margin-top: 30px !important;
  left: 0;
  translate: 0 0;
}

.notfound_btn:hover {
  translate: 0 -3px;
}

.notfound_btn .tastes_btn_content {
  padding: 0 35px;
}

.notfound_section_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notfound_section_img {
  width: 65%;
}

.notfound_section_txt {
  margin-top: 55px;
  font-weight: 400;
  font-size: 22px;
  line-height: 155%;
  text-align: center;
}

.notfound_section_img_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.notfound_section_img_cir {
  position: absolute;
  width: 29%;
  z-index: -1;
  top: 50%;
  translate: 0 -50%;
  animation: roundNotfound 15s linear infinite;
}

.notfound_dots {
  position: absolute;
  z-index: -1;
  top: 17%;
  width: 17%;
}

.notfound_dots_left {
  position: absolute;
  left: 0;
}

.notfound_dots_right {
  position: absolute;
  right: 0;
}

.contact_wrapper {
  display: flex;
  justify-content: space-between;
  background: #e5ebff;
  gap: 60px;
  padding-bottom: 100px;
}

.contact_image {
  width: 50%;
  align-self: stretch;
  border-radius: 15px;
  overflow: hidden;
}

.contact_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_page_contact {
  background: #e5ebff;
}

.contact_values {
  width: 50%;
  /* padding-left: calc((100vw - 1540px) / 2 + 5px); */
  padding-top: 0;
  /* padding-bottom: 90px; */
  max-width: 600px;
}

.contact_title {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.123rem + 1.8852vw, 2.9375rem);
  display: block;
  margin-bottom: 12px;
  max-width: 610px;
}

.contact_values .form_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 165%;
  color: #181818;
  display: block;
  margin-bottom: 30px;
}

.form_flex p {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* .form_inputs {
  max-width: 580px;
} */

.form_inputs input {
  height: 45px;
  border-radius: 50px;
  background: white;
  border: unset;
  margin-bottom: 15px;
  padding: 0 10px 0 25px;
  width: 100%;
  font-size: clamp(0.8125rem, 0.7633rem + 0.2459vw, 1rem);
}

.form_inputs input::placeholder {
  font-size: clamp(0.8125rem, 0.7633rem + 0.2459vw, 1rem);
}

.form_inputs textarea {
  height: 90px;
  background: white;
  padding-left: 25px;
  padding-top: 15px;
  border-radius: 25px;
  border: unset;
  resize: none;
  width: 100%;
  font-size: clamp(0.8125rem, 0.7633rem + 0.2459vw, 1rem);
}

.form_inputs textarea::placeholder {
  font-size: clamp(0.8125rem, 0.7633rem + 0.2459vw, 1rem);
}

.form_inputs input.wpcf7-submit {
  width: auto;
  border-radius: 50px;
  background: #556dc6;
  font-family: "Montserrat Alternates", sans-serif;
  padding: 0 30px;
  margin-top: 30px;
  transition: 0.4s;
  display: block;
  color: white;
}

.form_inputs input.wpcf7-submit:hover {
  background: #7c91e0;
}

.contact_values_items {
  margin-top: 50px;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
}

.contact_values_item {
  display: flex;
  flex-direction: column;
}

.contact_soc_block {
  display: flex;
  gap: 12px;
}

.contact_soc_block a {
  border-radius: 50%;
  background: white;
  width: 40px;
  height: 40px;
  transition: 0.4s;
  border: 1px solid transparent;
}

.contact_soc_block a:hover {
  translate: 0 -2px;
  scale: 1.02;
  box-shadow: 0px 5px 12px 6px rgba(239, 239, 239, 0.80);
}

.contact_soc_block a img {
  width: 20px;
}

.contact_soc_block a:nth-child(2) img {
  height: 24px;
}

.contact_item_title {
  font-weight: 400;
  font-size: 13px;
  line-height: 112%;
  color: #181818;
  display: block;
  margin-bottom: 10px;
}

.contact_item_content {
  font-weight: 500;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.9344rem + 0.3279vw, 1.25rem);
  line-height: 112%;
  color: #181818;
  display: block;
  margin-top: 10px;
}

.contact_soc_block {
  margin-top: 10px;
}

.contact_values .wpcf7 form.invalid .wpcf7-response-output {
  width: 100%;
}

.page_partner_title {
  max-width: 970px;
  margin: 50px auto 0;
}

.partner_top {
  position: relative;
  padding-top: 155px;
  background: #eef2ff;
  overflow: hidden;
  isolation: isolate;
}

.partner_top_wrapper {
  align-items: center;
  margin: 100px 0;
}

.oval_left {
  position: absolute;
  left: 0;
  bottom: -36%;
  z-index: -1;
  width: 50%;
}

.page-template-page-partner main .oval_left {
  bottom: -36%;
}

.partner_circules {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 35%;
}

.oval_right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.main_page_partner {
  padding-top: 0;
}

.partner_top_wrapper_img,
.partner_top_wrapper_txt {
  flex-basis: 50%;
}

.partner_top_wrapper_img {
  padding-right: 80px;
}

.partner_top_wrapper_img img {
  width: 100%;
}

.partner_top_wrapper_txt {
  max-width: 650px;
}

.partner_top2 .partner_top_wrapper {
  flex-direction: row-reverse;
  margin: 0;
  margin-bottom: 65px;
}

.partner_top2 {
  background: #FFEEEE;
  padding-top: 100px;
}

.partner_top2 .partner_top_wrapper_txt {
  text-align: end;
  padding-right: 70px;
}

.equipment {
  padding-top: 120px;
  position: relative;
  isolation: isolate;
}

.equipment_title {
  text-align: center;
  margin-bottom: 40px;
}

.equipment_subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.equipment_description,
.equipment_image {
  flex-basis: 50%;
}

.equipment_wrapper {
  align-items: center;
  gap: 70px;
  padding-top: 180px;
  position: relative;
  isolation: isolate;
}

.equipment_description span {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  color: #262626;
  display: block;
  margin-bottom: 30px;
}

.equipment_description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 165%;
  color: #181818;
  margin-bottom: 15px;
}

.equipment_image {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  height: 418px;
}

.equipment_image:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 200%;
  right: 0;
  bottom: 0;
  background: #e5ebff;
  border-radius: 44px;
  z-index: -1;
}

.equipment_wrapper_mirr .equipment_image:before {
  right: unset;
  left: 70px;
}

.equipment_wrapper_mirr .equipment_image {
  padding-left: 70px;
}

.equipment_image img {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
}

.equipment_wrapper_mirr .equipment_image img {
  left: 57%;
}

/* .equipment_description {
  padding-bottom: 4%;
} */

.equipment_wrapper_mirr .equipment_description {
  text-align: end;
}

.equipment_wrapper_mirr {
  gap: 0;
}

.contacts_partner {
  background: #e5ebff;
  padding-top: 100px;
}

.form_cat_partner {
  background: #e5ebff;
}

.color_balls {
  position: absolute;
  z-index: -1;
  width: 10%;
}

.color_balls_r {
  right: 0;
  top: 29%;
}

.color_balls_l {
  left: 0;
  bottom: 50px;
}

.color_balls_r_2 {
  top: 14%;
}

.color_balls_r_b {
  bottom: 0;
  top: unset;
}

.color_balls_2 {
  bottom: unset;
  top: 46%;
}

.equipment_wrapper_t {
  padding-top: 95px;
}

.equipment_after_form {
  padding-top: 70px;
}

.our_history_top {
  background: #fee;
  padding-top: 155px;
  position: relative;
  isolation: isolate;
  padding-bottom: 190px;
}

.page_our_history_title {
  max-width: 800px;
  margin: 155px auto 0;
  position: relative;
  isolation: isolate;
}

.page_our_history_title svg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: -1;
  pointer-events: none;
}

.main_page_tastes .oval_left {
  bottom: 0;
  left: 0;
}

.our_history_wrapper_img {
  width: 40%;
  position: relative;
  align-self: stretch;
}

.our_history_wrapper_img img {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
}

.our_history_wrapper {
  margin: 260px 0 0;
  display: flex;
}

.our_history_wrapper_txt {
  width: 60%;
}

.our_history_wrapper_txt .description_inner {
  max-width: 730px;
}

.our_history_top .oval_left {
  width: 43%;
}

.our_history_wrapper_bottom {
  padding: 230px 0 180px;
}

.our_history_top2 {
  position: relative;
  isolation: isolate;
  background: #eef2ff;
}

.oval_left_r {
  left: unset !important;
  right: 0;
}

.our_history_circules {
  left: 0;
  right: unset;
}

.our_history_wrapper_bottom {
  position: relative;
  display: flex;
}

.our_history_wrapper_bottom .our_history_wrapper_txt {
  width: 50%;
  text-align: end;
}

.our_history_wrapper_bottom .description_inner {
  margin-left: auto;
}

.our_history_wrapper_img {
  position: relative;
  margin-left: auto;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.3s;
  translate: -20% 0;
}

.our_history_wrapper_img.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.our_history_wrapper_img_bottom {
  translate: 20% 0;
}

.our_history_wrapper_img_bottom.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.our_history_wrapper_img img {
  left: unset;
  right: 0;
}

.ourhistory_map {
  padding: 120px 0 50px;
  position: relative;
  isolation: isolate;
}

.map_balls {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 10%;
}

.map_balls_r {
  left: unset;
  right: 0;
  transform: scale(-1, 1)
}

.ourhistory_map_title {
  text-align: center;
  margin-bottom: 120px;
}

.ourhistory_map_map {
  width: 100%;
}

.txt_img_blocks_top {
  background: #fee;
  position: relative;
  padding: 192px 0;
}

.txt_img_blocks_wrapper_img {
  width: 40%;
  position: relative;
  transition: 1.5s cubic-bezier(.34, .88, .44, .95);
  transition-delay: 0.3s;
  translate: -20% 0;
}

.txt_img_blocks_wrapper_img.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.our_history_wrapper_img_bottom {
  translate: 20% 0;
}

.our_history_wrapper_img_bottom.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.txt_img_blocks_wrapper_img img {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
}

.txt_img_blocks_top {
  position: relative;
  isolation: isolate;
}

.txt_img_blocks_wrapper {
  display: flex;
}

.our_history_wrapper_txt {
  width: 60%;
  padding-left: 110px;
}

.page-template-page-our-history .form_cat_partner {
  z-index: 20;
}

.txt_img_blocks_bottom {
  position: relative;
  isolation: isolate;
  background: #eef2ff;
}

.txt_img_blocks_bottom .our_history_wrapper_img img {
  width: 81%;
  right: 40px;
}

.map_bottom {
  padding: 150px 0;
  position: relative;
  isolation: isolate;
}

.map_bottom_wrapper {
  display: flex;
  align-items: center;
}

.map_bottom_side {
  flex-basis: 50%;
}

.map_bottom_side img {
  width: 90%;
}

.map_bottom_descr p {
  margin-bottom: 20px;
}

.map_bottom_link {
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background: linear-gradient(80deg, var(--first-color) 10%, var(--second-color) 30%, var(--third-color) 60%, var(--fourth-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  transition: 0.4s;
  font-weight: bold;
}

.map_bottom_link svg {
  transition: 0.4s;
}

.map_bottom_link:hover svg {
  translate: 4px 0;
}

.map_bottom_balls {
  position: absolute;
  bottom: -120px;
  left: 0;
}

.map_bottom_balls_r {
  left: unset;
  right: 0;
  transform: scale(-1, 1);
}

.dashes {
  position: absolute;
  z-index: -1;
}

.top_dashes {
  bottom: -180%;
  left: 11%;
}

.success_dashes {
  top: -47px;
  left: 26%;
}

.txt_img_blocks_bottom .success_dashes {
  top: -93px;
}

.dop_info_icon {
  position: absolute;
  z-index: -1;
  width: 17%;
}

.no_gluten {
  top: -8%;
  left: 5%;
}

.no_lacto {
  top: 7%;
  left: -9%;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-radius: 10px;
  border: 1px solid #7ed285;
}

.top_slider_title_txt {
  color: white;
  font-size: 181px;
  font-weight: bold;
  line-height: 135px;
  text-transform: uppercase;
}


html:lang(en-US) .lang-item-en {
  display: none;
}

html:lang(uk) .lang-item-uk {
  display: none;
}

@keyframes roundNotfound {
  0% {
    rotate: 0;
  }

  100% {
    rotate: 360deg;
  }
}

@keyframes tasteRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


































@media(max-width: 1920px) {
  .top_slider_img {
    width: 100%;
    max-width: 920px;
  }
}

@media(max-width: 1570px) {

  .footer_tastes_column li,
  .menu_footer-info ul li a {
    font-size: 15px;
  }

  .tastes_page_item {
    padding: 47px 40px 29px;
  }

  .footer_contact_item * {
    font-size: 18px;
  }

  .txt_img_blocks_top,
  .our_history_wrapper_bottom {
    padding: 145px 0;
  }

  .our_history_wrapper_txt .description_inner {
    max-width: 644px;
  }

  .our_history_wrapper_bottom .our_history_wrapper_txt {
    width: 53%;
  }

  .our_history_wrapper_bottom {
    padding: 175px 0;
  }

  .taste_description {
    margin: 20px 0 8px;
  }

  .tastes_page_item .taste_item_img {
    width: 250px;
    height: 250px;
    right: -23%;
    top: -16%;
  }

  .tastes_cat_bg_top .top-left-red {
    left: 115px;
  }

  .tastes_cat_bg_top .top-right-red {
    right: 115px;
  }

  .form_cat_img {
    right: -72px;
  }

  .taste_description {
    font-size: 14px;
  }

  .aboutUs_bg {
    width: 50%;
  }

  .aboutUs_bg_oval {
    width: 65%;
  }

  .aboutUs {
    padding: 105px 0 272px;
  }

  .partnership {
    padding: 110px 0 90px;
  }

  .gallery_wrapper .slick-next.slick-arrow {
    right: -6.5%;
  }

  .gallery_wrapper .slick-prev.slick-arrow {
    left: -6.5%;
  }

  .gallery_item {
    height: 235px;
  }

  .p150 {
    padding: 115px 0;
  }

  .footer-menu-side-wrapper {
    gap: clamp(20px, 2vw, 80px);
  }

  .top_slider_img {
    bottom: -64%;
  }

  .container {
    max-width: 1240px;
  }

  .instagram_info {
    padding-right: calc((100vw - 1240px) / 2 + 15px);
  }

  /* .contact_values {
    padding-left: calc((100vw - 1240px) / 2 + 5px);
  } */

  .gallery_wrapper {
    width: 100%;
  }

  .aboutUs_bg_oval {
    width: 58%;
  }

  .aboutUs {
    padding: 105px 0 127px;
  }

  .top_slider_img {
    width: 100%;
    max-width: 760px;
  }

  .menu_header ul {
    gap: 50px;
  }

  .header_wrapper {
    padding: 10px 60px;
  }

  /* .top_slider_title svg {
    width: 75%;
    display: block;
    margin: 0 auto;
  } */

  .top_slider_title_txt {
    font-size: 145px;
  }

  .top_slider_pretitle {
    margin: -60px 0 20px;
  }

  .oval_right {
    bottom: -56px;
    right: -151px;
  }
}

@media(max-width: 1440px) {}

@media(max-width: 1380px) {

  .gallery_wrapper .slick-next.slick-arrow {
    right: -5.5%;
  }

  .gallery_wrapper .slick-prev.slick-arrow {
    left: -5.5%;
  }

  .top_slider_img {
    bottom: -67%;
  }

  .top_slider_pretitle {
    font-size: 38px;
  }

  .top-left-red {
    top: 60px;
  }

  .top-right-red {
    top: 60px;
  }

  .tastes_item {
    scale: 0.87;
  }

  .tastes_btn {
    margin-top: 25px;
  }

  /* h2 {
    font-size: 44px;
  } */

  .top-left-red-acc {
    top: 60px;
  }

  .top-right-small-yellow-acc {
    top: 160px;
  }

  .bottom-left-yellow-acc {
    bottom: 20px;
  }

  .bottom-right-yellow-acc {
    bottom: 20px;
  }

  .tastes_item {
    width: 100% !important;
    min-width: unset !important;
    height: auto;
  }

  .tastes_wrapper {
    max-width: 1440px;
    margin: 20px auto 0;

  }

  .tastes_wrapper .slick-track {
    gap: 0;
  }
}

@media(max-width: 1280px) {

  .instagram_item svg {
    width: 45px;
  }

  .top_slider_img {
    max-width: 735px;
    bottom: -440px;
  }

  .accessories_name {
    font-size: 22px;
  }

  .accessories_subname {
    font-size: 17px;
  }

  /* .contact_values {
    padding-left: 15px;
  } */

  .top_slider_title svg {
    width: 65%;
  }

  .fruits_image_2 {
    top: 57%;
  }

  .fruits_image_1 {
    left: 6%;
    top: 31%;
  }

  .top_slider_pretitle {
    margin-bottom: 0;
  }

  .p150 {
    padding: 85px 0;
  }

  .top-left-red {
    top: 30px;
  }

  .top-right-red {
    top: 34px;
  }

  .top-left-green-acc {
    top: 72px;
  }

  .top-right-green-acc {
    top: 40px;
  }

  .gallery_wrapper .slick-next.slick-arrow {
    right: -1.5%;
  }

  .gallery_wrapper .slick-prev.slick-arrow {
    left: -1.5%;
  }

  .header_wrapper {
    padding: 10px 35px;
  }

  .menu_header ul {
    gap: 38px;
  }

  .menu_header ul li a {
    font-size: 14px;
  }

  .header {
    top: 17px;
  }

  .gallery_title {
    margin-bottom: 40px;
  }

  .gallery {
    padding: 85px 0;
  }

  .top_slider .slick-next {
    left: 12%;
  }
}

@media(max-width: 1024px) {

  .instagram_content {
    width: 60%;
  }



  .our_history_wrapper_txt .description_inner {
    padding-right: 15px;
  }

  .our_history_wrapper {
    margin: 190px 0 0;
  }

  .top_dashes {
    bottom: -229%;
    left: 26%;
  }

  .ourhistory_map {
    padding: 70px 0 0;
  }

  .ourhistory_map_title {
    margin-bottom: 60px;
  }

  .txt_img_blocks_top,
  .our_history_wrapper_bottom {
    padding: 80px 0;
  }

  .txt_img_blocks_wrapper .our_history_wrapper_txt {
    padding-left: 90px;
  }

  .txt_img_blocks_top .oval_left,
  .txt_img_blocks_bottom .oval_left_r {
    width: 53%;
  }

  .map_bottom {
    padding: 90px 0;
  }

  .success_dashes {
    width: 52%;
  }

  .our_history_wrapper_txt {
    padding-left: 15px;
  }

  .our_history_top2 .oval_left {
    width: 50%;
  }

  .our_history_wrapper_bottom {
    padding: 80px 0;
  }

  .our_history_top {
    padding: 130px 0 70px;
  }

  .partnership_img_bg {
    right: -30%;
  }

  .partnership_img_bg {
    right: -22%;
  }

  .link_to_page {
    white-space: unset;
  }

  .accessories_bg_imgs {
    display: none;
  }

  .tastes_btn_content {
    height: 55px;
  }

  .tastes_btn {
    font-size: 16px;
  }

  .gallery .tastes_btn {
    margin-top: 25px;
  }

  .instagram_info {
    padding-right: 15px;
    width: 40%;
    justify-content: flex-start;
  }

  .aboutUs_wrapper {
    max-width: 375px;
  }

  .aboutUs_bg {
    width: 45%;
  }

  .aboutUs_bg_oval {
    left: -40px;
  }

  .taste_item_img {
    right: -9%;
    top: -13%;
    width: 62%;
    height: 62%;
  }

  .aboutUs {
    padding: 85px 0;
  }

  .top_slider .slick-next {
    left: 16%;
  }

  .how_work_wrapper {
    gap: 35px;
  }

  .how_work_imgs {
    gap: 30px;
  }

  .how_work_txt {
    width: 44%;
  }

  .how_work_imgs {
    width: 56%;
  }

  .partnership {
    padding: 85px 0;
  }

  .partner_top_wrapper {
    margin: 70px 0;
  }

  .equipment_image img {
    width: 80%;
  }

  .equipment_wrapper {
    padding-top: 70px;
  }

  .footer {
    padding-top: 40px;
  }

  .partner_top2 {
    padding-top: 70px;
  }

  .oval_left {
    bottom: -36%;
    left: -18%;
    width: 68%;
  }

  .oval_right {
    bottom: -111px;
    right: -288px;
  }


  .top_slider_pretitle {
    font-size: 30px;
  }

  .top_slider_img {
    max-width: 664px;
  }

  /* .top_slider_title svg {
    width: 60%;
  } */
  .top_slider_title_txt {
    font-size: 95px;
  }

  .header.sticky .header_wrapper {
    padding: 0 40px;
  }

  .header.sticky .logo_wrapper img {
    width: 155px;
  }

  .page_title {
    font-size: 38px;
  }

  /* h2 {
    font-size: 32px;
  } */

  .form_cat_img {
    right: -46px;
    width: 480px;
    top: -75px;
  }

  .footer_tastes_column li,
  .menu_footer-info ul li a {
    font-size: 13px;
  }

  .footer_contact_item * {
    font-size: 16px;
  }

  .footer_content {
    gap: 38px;
  }

  .bottom_banner_img {
    width: 60%;
  }

  .taste_description {
    margin: 17px 0 8px;
  }

  .tastes_page_item .taste_item_img {
    width: 190px;
    height: 190px;
    right: -21%;
    top: -16%;
  }

  .taste_description {
    font-size: 13px;
    line-height: 140%;
  }

  .tastes_btn {
    margin-top: 0px;
  }

  .tastes_page_item {
    padding: 35px 47px;
  }

  .gallery_item {
    height: 185px;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .footer-logo-wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
  }

  .footer-logo-wrapper .custom-logo-link img {
    scale: 1.5;
  }
}

@media(max-width: 992px) {

  .top_slider_title_txt {
    font-size: 83px;
  }

  .footer_content_bottom {
    flex-direction: column;
  }

  .footer_content_bottom p {
    max-width: 100%;
  }

  .footer_content_bottom div {
    text-align: center;
  }

  .partnership_img_bg {
    right: -47%;
  }

  .gallery_item {
    height: 150px;
  }

  .instagram_bg {
    width: 80%;
  }

  .tastes_page_item .taste_item_img {
    right: -8%;
    top: -10%;
  }

  .taste_description {
    font-size: 12px;
  }

  .tastes_page_item {
    padding: 22px 28px;
  }

  .map_bottom_wrapper {
    flex-direction: column-reverse;
  }

  .map_bottom_side img {
    width: 100%;
  }

  .accessories_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .accessories_bg_imgs {
    opacity: 0.6;
  }

  .equipment {
    padding-top: 80px;
  }

  .equipment_wrapper_t {
    padding-top: 0;
  }

  .equipment_image img {
    top: 50%;
    translate: -50% -50%;
  }

  .partner_top2 .partner_top_wrapper_txt {
    padding-right: 33px;
  }

  .oval_left {
    width: 83%;
  }

  .equipment_description p {
    font-size: 16px;
  }

  .equipment_wrapper_mirr .equipment_image:before {
    left: 0;
  }

  .equipment_wrapper_mirr .equipment_image {
    padding-left: 0;
  }

  .footer_content {
    flex-wrap: wrap;
  }

  .equipment_wrapper {
    gap: 50px;
  }

  .form_cat_img {
    top: -57px;
    width: 49%;
  }

  .contact_wrapper {
    flex-direction: column;
  }

  .contact_values {
    flex-basis: 100%;
    width: 100%;
    /* padding: 0 15px; */
    max-width: 100%;
  }

  .contact_image {
    width: 100%;
  }

  .form_inputs {
    max-width: 100%;
  }

  .form_flex p {
    justify-content: space-between;
  }

  .contact_title {
    max-width: 100%;
  }

  .menu_header ul.sub-menu {
    position: inherit;
    top: 0;
    left: 0;
    height: unset;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    top: 10px;
    /* box-shadow: 0px 5px 12px 6px rgba(239, 239, 239, 0.0); */
  }

  .menu_header ul.sub-menu a {
    font-size: 18px;
  }

  .menu_header ul.sub-menu.open_submenu_mobile {
    max-height: 100px;
    transition: 0.4s;
    /* box-shadow: 0px 5px 12px 6px rgba(239, 239, 239, 0.50); */
    opacity: 1;
    visibility: visible;
  }

  .menu_header ul.sub-menu li {
    padding: 7px 0;
  }

  .mobileSubmenuBtn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid black;
    position: absolute;
    right: 13px;
    top: -3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pll-parent-menu-item .mobileSubmenuBtn {
    display: none;
  }

  .mobileSubmenuBtn:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 12px;
    background-image: url(/wp-content/uploads/2024/02/menu-arrow.svg);
    background-size: cover;
  }

  .menu_header {
    display: none;
  }

  #menu-header-left-ua .menu-item-has-children:after {
    display: block;
  }

  .menu_wrapper_mobile .menu_header {
    display: block;
  }

  .menu_wrapper_mobile {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 60px;
  }

  .menu_header .menu {
    flex-direction: column;
    gap: 35px;
  }

  .menu_header ul li a {
    font-size: 21px;
    text-align: center;
    display: block;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: white;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
    /* background: white; */
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-header ul li a {
    font-size: 20px;
  }
}

@media(max-width: 768px) {

  .page_subtitle {
    font-size: 16px;
  }

  .how_work_imgs {
    width: 100%;
  }

  .tastes_section_top+.form_cat {
    margin-top: 55px;
  }

  .taste_description {
    height: 77px;
  }

  .how_work_txt {
    width: 100%;
  }

  .how_work_wrapper {
    gap: 30px;
    flex-direction: column;
  }

  .page_title br {
    display: none;
  }

  .footer-menu-side {
    width: 100%;
  }

  .footer_menu_title {
    margin-bottom: 20px;
  }

  #menu-footer-menu-information {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  #menu-footer-menu-information li {
    margin-bottom: 0;
  }

  .tastes_section_items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {

  .taste_popup_title {
    font-size: 26px;
  }

  .form_partner_text {
    font-size: 15px;
  }

  .form_partner_text a {
    display: block;
  }

  .top_slider_title_txt {
    font-size: 45px;
    line-height: 50px;
  }

  .taste_popup_order {
    padding: 115px 20px 20px 20px;
  }

  .popup_image {
    width: 83%;
    top: -70px;
  }

  .taste_popup_form input.wpcf7-submit {
    margin-top: 0;
  }

  .top_slider_bg_lines {
    height: 470px;
  }

  .top_slider {
    overflow: hidden;
  }

  .scroll_down {
    display: none;
  }

  .gallery_page_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery_item {
    height: 220px;
  }

  .pll-parent-menu-item ul.sub-menu {
    position: relative;
    top: 0;
    left: 0;
    max-height: unset;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    gap: 15px;
  }

  .pll-parent-menu-item ul.sub-menu li a {
    font-size: 20px;
  }

  .pll-parent-menu-item>a {
    display: none !important;
  }

  .tastes_btn_cat .tastes_btn_content {
    height: 40px;
    padding: 0 30px;
  }

  #menu-footer-menu-information {
    flex-direction: column;
    gap: 3px;
  }

  .footer_content {
    gap: 5px;
  }

  .page_subtitle {
    font-size: 16px;
    line-height: 140%;
  }

  .taste_description {
    height: auto;
  }

  .tastes_page_item {
    box-shadow: 0 4px 42px 0 rgba(0, 0, 0, 0.1);
  }

  .tastes_section_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .tastes_page_item .taste_item_img {
    width: 180px;
    height: 180px;
    right: -7%;
    top: -10%;
  }

  .page-template-page-tastes .form_cat,
  .page-template-page-tastes-big .form_cat {
    margin-top: 35px;
  }

  .bottom_banner_tastes_bg {
    opacity: 0.5;
    scale: 0.7;
  }

  .tastes_item_bottom {
    gap: 5px;
  }

  .tastes_section {
    margin-top: 38px;
  }

  .taste_description {
    margin-top: 0;
  }

  .tastes_page_item .taste_txt_img {
    animation: tasteRotate 20s infinite linear;
  }

  .tastes_page_item .tastes_btn_cat {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .page-template-page-tastes-big .main_page,
  .page-template-page-tastes .main_page {
    padding-top: 130px;
  }

  .main_page_tastes .page_title {
    margin-bottom: 24px;
  }

  .page_our_history_title svg {
    width: 100%;
  }

  .page_our_history_title {
    padding: 0 15px;
    margin: 85px auto 0;
  }

  .map_balls {
    display: none;
  }

  .txt_img_blocks_wrapper {
    flex-direction: column-reverse;
  }

  .txt_img_blocks_wrapper .our_history_wrapper_txt {
    padding: 0 15px;
  }

  .our_history_wrapper_txt .description_inner {
    padding-right: 0;
  }

  .txt_img_blocks_wrapper_img {
    width: 100%;
  }

  .txt_img_blocks_top,
  .our_history_wrapper_bottom {
    padding: 55px 0;
  }

  main .our_history_wrapper h2,
  main .our_history_top2 h2,
  main .our_history_wrapper_txt h2 {
    text-align: left;
  }

  .map_bottom_side img {
    margin-top: 20px;
  }

  .map_bottom_balls {
    display: none;
  }

  .map_bottom {
    padding: 45px 0;
  }

  .txt_img_blocks_bottom .our_history_wrapper_img img {
    right: 0;
    top: 20px;
    left: 50%;
    translate: -50% 0;
  }

  .txt_img_blocks_wrapper_img img {
    position: relative;
    left: 0;
    top: 0;
    translate: 0 0;
  }

  .dashes {
    display: none;
  }

  .our_history_wrapper {
    margin: 100px 0 0;
    flex-direction: column-reverse;
  }

  .our_history_wrapper_txt {
    width: 100%;
  }

  .our_history_wrapper_img {
    width: 100%;
  }

  .our_history_wrapper_img img {
    position: relative;
    left: 0;
    top: 0;
    translate: 0 0;
  }

  .our_history_wrapper_bottom {
    flex-direction: column;
  }

  .our_history_wrapper_bottom .our_history_wrapper_txt {
    width: 100%;
    text-align: left;
  }

  .our_history_wrapper_bottom {
    padding: 50px 0 40px;
  }

  .our_history_top {
    padding: 130px 0 38px;
  }


  h2 {
    margin-bottom: 20px;
  }

  .tastes_btn {
    font-size: 14px;
    height: auto;
  }

  .link_to_page {
    font-size: 14px;
  }

  .tastes_wrapper .slick-track {
    padding: 12px 0;
  }


  .aboutUs {
    padding: 40px 0 61%;
  }

  .aboutUs_bg_circules {
    display: none;
  }

  .aboutUs_wrapper {
    max-width: 100%;
  }

  .aboutUs_bg_circules,
  .aboutUs_bg_oval {
    display: none;
  }

  .aboutUs_bg {
    width: 66%;
  }

  .gallery .link_to_page {
    margin-top: 15px;
  }

  .gallery_item {
    height: 200px;
  }

  .partnership_img_bg {
    display: none;
  }

  .slick-arrow {
    width: 50px;
    height: 50px;
  }

  .partnership {
    padding: 45px 0;
  }

  .form {
    padding: 52px 0;
  }

  .instagram_bg {
    width: 49%;
  }

  .accessories_name {
    font-size: 18px;
  }

  .instagram_wrapper {
    flex-direction: column-reverse;
  }

  .instagram_content {
    width: 93%;
    display: flex;
    flex-wrap: wrap;
  }

  .instagram_info {
    width: 100%;
    padding: 0 15px;
  }

  .tastes_wrapper {
    margin-top: 0;
  }

  .tastes_bg_imgs {
    display: none;
  }

  .top_slider_item {
    height: 55vh;
  }

  .top_slider .slick-next {
    left: 24%;
  }

  .top_slider_img {
    bottom: -243px;
  }

  .instagram_item {
    flex-basis: calc(33.3% - 10px);
  }

  .instagram_post_txt {
    display: none;
  }

  .top_slider_pretitle {
    font-size: 20px;
    margin-top: 20px;
  }

  .top_slider_title svg {
    width: 60%;
    height: auto;
  }

  .partner_top {
    padding-top: 130px;
  }

  .partner_top_wrapper {
    flex-direction: column-reverse;
  }

  .partner_top_wrapper_img {
    padding-right: 0;
  }

  .page_title {
    font-size: 26px;
  }

  .notfound_section_img {
    width: 100%;
  }

  .contact_values_items {
    margin-top: 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .main_page_partner h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .partner_top_wrapper {
    margin: 40px 0;
    gap: 15px;
  }

  .partner_top2 .partner_top_wrapper {
    margin-bottom: 50px;
  }

  .equipment {
    padding-top: 50px;
  }

  .partner_top2 .partner_top_wrapper {
    flex-direction: column-reverse;
  }

  .partner_top2 {
    padding-top: 50px;
  }

  .oval_right,
  .oval_left {
    display: none;
  }

  .equipment_subtitle {
    font-size: 16px;
    line-height: 140%;
  }

  .equipment_description span {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .equipment_wrapper {
    flex-direction: column-reverse;
    padding-top: 40px;
    gap: 0;
  }

  .equipment_image:before {
    right: -50%;
  }

  .equipment_description p {
    line-height: 140%;
  }

  .equipment_image img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    translate: 0 0;
  }

  .equipment_wrapper_mirr .equipment_image img {
    left: 0;
  }

  .equipment_wrapper_mirr .equipment_image:before {
    left: -50%;
  }

  .form_cat_bg {
    display: none;
  }

  .equipment_wrapper_mirr {
    flex-direction: column;
  }

  .equipment_wrapper_mirr .equipment_description {
    text-align: left;
  }

  .form_wrapper form p {
    flex-direction: column;
  }

  .form_cat_partner {
    margin-top: 70px;
    padding: 65px 0;
  }

  .form_wrapper form p input {
    max-width: 100%;
  }

  .wpcf7-spinner {
    display: none;
  }

  .form_cat_img {
    width: 60%;
  }

  .equipment_after_form {
    padding-top: 20px;
  }

  .color_balls {
    display: none;
  }

  .accessories_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .accessories_item {
    gap: 20px;
  }

  .p150 {
    padding: 50px 0;
  }

  .main_page_partner h2.accessories_title {
    margin-bottom: 40px;
  }

  .partner_top2 .partner_top_wrapper_txt {
    padding-right: 0;
    text-align: left;
  }

  .contacts_partner {
    padding-top: 50px;
  }

  .contact_title {
    text-align: center;
  }

  .contact_values .form_title {
    text-align: center;
  }

  .form_inputs input.wpcf7-submit {
    position: relative;
    left: 50%;
    translate: -50% 0;
  }

  .contact_wrapper {
    padding-bottom: 80px;
  }

  .logo_wrapper img {
    width: 85%;
  }

  .page_partner_title {
    margin: 26px auto 0;
  }

  .footer-menu-side-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .footer_tastes_column li {
    margin-bottom: 7px;
  }

  .footer_menu_title {
    margin-bottom: 5px;
  }

  .footer_content_bottom p {
    text-align: center;
  }

  .footer_soc_block {
    margin-top: 22px;
  }

  .footer_contact_item {
    margin-bottom: 15px;
  }

  .footer_content_bottom span {
    text-align: center;
  }

  .menu_footer-info ul li {
    margin-bottom: 10px;
  }

  .footer_content_bottom {
    flex-direction: column;
  }
}

@media(max-width: 376px) {
  .top_slider_pretitle {
    font-size: 18px;
  }

  .top_slider_title svg {
    width: 73%;
  }

  .top_slider_bg_lines {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media(max-width: 321px) {

  .top_slider_title_txt {
    font-size: 37px;
  }

  .gallery_item {
    height: 160px;
  }

  .menu_header ul li a {
    font-size: 19px;
  }

  .menu_wrapper_mobile,
  .menu_header .menu {
    gap: 15px;
  }

  .header.sticky .header_wrapper {
    padding: 0 15px;
  }

  .header_wrapper {
    padding: 0 15px;
  }

  .top_slider_pretitle {
    font-size: 13px;
  }

  .slick-arrow {
    width: 35px;
    height: 35px;
  }

  .top_slider_pretitle {
    margin-top: 50px;
  }

  .instagram_content {
    gap: 8px;
  }

  .menu_wrapper_mobile {
    padding-top: 35px;
  }

  .page_our_history_title {
    margin: 55px auto 0;
  }

  .our_history_top {
    padding: 107px 0 38px;
  }

  .page_title {
    font-size: 20px;
  }

  .our_history_wrapper {
    margin: 65px 0 0;
  }

  h2 {
    font-size: 19px;
  }

  .page-template-page-tastes-big .main_page,
  .page-template-page-tastes .main_page {
    padding-top: 112px;
  }
}