@font-face {
  font-family: "cyrillic-heavy", sans-serif;
  src: local("cyrillic-heavy"), url("../fonts/cyrillic-heavy.ttf");
}
@font-face {
  font-family: "impact", sans-serif;
  src: local("impact"), url("../fonts/impact.ttf");
}
/******* COLORS */
/******* MEDIA SIZES */
/******* ANIMATIONS */
/******* BACKGROUND HEADER */
@-webkit-keyframes rainbow-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes rainbow-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes rainbow-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rainbow-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/******* FUNDUCS */
@-webkit-keyframes header-funducs-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 30px);
  }
}
@-moz-keyframes header-funducs-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 30px);
  }
}
@-o-keyframes header-funducs-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 30px);
  }
}
@keyframes header-funducs-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 30px);
  }
}
@-webkit-keyframes header-funducs-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -30px);
  }
}
@-moz-keyframes header-funducs-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -30px);
  }
}
@-o-keyframes header-funducs-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -30px);
  }
}
@keyframes header-funducs-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -30px);
  }
}
/******* VANILA */
@-webkit-keyframes header-vanila-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 10px);
  }
}
@-moz-keyframes header-vanila-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 10px);
  }
}
@-o-keyframes header-vanila-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 10px);
  }
}
@keyframes header-vanila-levitation-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 10px);
  }
}
@-webkit-keyframes header-vanila-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -10px);
  }
}
@-moz-keyframes header-vanila-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -10px);
  }
}
@-o-keyframes header-vanila-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -10px);
  }
}
@keyframes header-vanila-levitation-up {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -10px);
  }
}
@-webkit-keyframes header-vanila-levitation-up-x10 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -50px);
  }
}
@-moz-keyframes header-vanila-levitation-up-x10 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -50px);
  }
}
@-o-keyframes header-vanila-levitation-up-x10 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -50px);
  }
}
@keyframes header-vanila-levitation-up-x10 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -50px);
  }
}
* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "cyrillic-heavy", sans-serif;
  font-weight: 400;
  color: black;
}

li {
  list-style: none;
}

img {
  display: block;
}

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

/******* WRAPS */
.wrap {
  overflow: hidden;
}
.wrap-inner {
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .wrap-inner {
    max-width: 1100px;
    padding: 0 20px;
  }
}
@media (min-width: 1201px) {
  .wrap-inner {
    max-width: 1620px;
  }
}
@media (min-width: 1367px) {
  .wrap-inner {
    padding: 0 50px;
  }
}
@media (min-width: 1501px) {
  .wrap-inner {
    padding: 0 20px;
  }
}

.panel {
  /* min height incase content is higher than window height */
  min-height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: sans-serif;
  /* outline: 10px solid hotpink; */
  /* turn above on to see the edge of panels */
}

/* colours */
.color-violet {
  background-color: #7A4EAB;
}

.color-indigo {
  background-color: #4332CF;
}

.color-blue {
  background-color: #2F8FED;
}

.color-green {
  background-color: #4DCF42;
}

.color-yellow {
  background-color: #FAEB33;
}

.color-orange {
  background-color: #F19031;
}

.color-red {
  background-color: #F2293A;
}

/******* BUTTONS */
.but {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #070707;
  width: 284px;
  height: 55px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
}
@media (min-width: 760px) {
  .but {
    font-size: 18px;
    line-height: 22px;
  }
}
.but:hover {
  background-color: #67B86C;
}
.but--green {
  background-color: #67B86C;
}
.but--green:hover {
  background-color: #070707;
}
.but--free {
  width: auto !important;
  display: inline-flex;
  padding-left: 20px;
  padding-right: 20px;
}
.but--fixed {
  opacity: 1 !important;
  display: flex;
  position: fixed;
  z-index: 9999;
}

/******* FIELDS */
.field {
  width: 100%;
  height: 54px;
  background-color: white;
  border: 2px solid rgba(23, 124, 116, 0.2);
  padding: 0 15px;
  border-radius: 2px;
  opacity: 0.4;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #67B86C;
}
.field:focus, .field:active {
  border: 2px solid rgba(23, 124, 116, 0.9);
  opacity: 1;
}

/******* TEXTS */
.title {
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: black;
}
@media (min-width: 760px) {
  .title {
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 1201px) {
  .title {
    font-size: 58px;
    line-height: 71px;
  }
  .title br {
    display: none;
  }
}
.title--em {
  font-size: 16px;
  line-height: 20px;
}
.title--l {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.04em;
}
.title--s {
  font-size: 26px;
  line-height: 130%;
  letter-spacing: 0.04em;
}
@media (min-width: 760px) {
  .title--s {
    font-size: 30px;
  }
}
@media (min-width: 769px) {
  .title--s {
    font-size: 40px;
  }
}
@media (min-width: 1367px) {
  .title--s {
    font-size: 50px;
  }
}
.title--sm {
  font-size: 39px;
  line-height: 130%;
}
.title--green {
  color: #67B86C;
}
.title--green-dark {
  color: #177C74;
}
.title--green-lite {
  color: #75981C;
}
.title--yellow {
  color: #FFF467;
}

.description {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) {
  .description {
    font-size: 24px;
  }
}
.description--bold {
  font-weight: 700 !important;
}
.description--white {
  color: white;
}
.description--red {
  color: #CE564B;
}

.obj-anim {
  position: absolute;
  top: 0;
  right: -95px;
  width: 470px;
  transform: rotate(10deg);
}
@media (min-width: 1201px) {
  .obj-anim {
    width: 876px;
    top: -33px;
    right: -167px;
  }
}
@media (min-width: 1300px) {
  .obj-anim {
    width: 990px;
  }
}
.obj-anim__img {
  width: 100%;
}
.obj-granola {
  position: absolute;
  top: inherit;
  right: inherit;
  width: 318px;
}
@media (min-width: 1201px) {
  .obj-granola {
    width: 700px;
  }
}
.obj-granola__img {
  width: 100%;
}
.obj-keto {
  width: 100%;
  position: relative;
  z-index: 3;
  margin: 50px 0 45px;
}
@media (min-width: 769px) {
  .obj-keto {
    margin: 0;
  }
}
.obj-keto__img {
  transform: rotate(45deg);
  width: 100%;
}

.header {
  position: relative;
  padding: 40px 0 55px;
  height: auto;
  background-color: #FFF467;
}
@media (min-width: 1201px) {
  .header {
    height: 969px;
  }
}
.header__logo {
  position: relative;
  width: 90px;
  height: 60px;
  margin: 0 auto;
}
@media (min-width: 601px) {
  .header__logo {
    width: 150px;
    height: 102px;
    margin: 0;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}
.header__bot {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 760px) {
  .header__bot {
    flex-direction: inherit;
  }
}
@media (min-width: 769px) {
  .header__bot {
    align-items: center;
  }
}
.header__bot-col {
  width: 100%;
}
@media (min-width: 760px) {
  .header__bot-col {
    width: 50%;
  }
}
.header__bot-col--left {
  order: 2;
  margin-bottom: 50px;
}
@media (min-width: 760px) {
  .header__bot-col--left {
    order: 1;
    margin-bottom: 0;
    margin-top: 103px;
  }
}
@media (min-width: 769px) {
  .header__bot-col--left {
    margin-top: 8px;
  }
}
.header__bot-col--right {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: none;
}
@media (min-width: 760px) {
  .header__bot-col--right {
    display: flex;
    order: 2;
  }
}
.header__contact {
  display: none;
}
@media (min-width: 601px) {
  .header__contact {
    display: block;
  }
}
.header__animated {
  position: relative;
  z-index: 2;
  margin: 50px 0 27px;
  width: 255px;
  height: 370px;
}
@media (min-width: 760px) {
  .header__animated {
    width: 275px;
    height: 435px;
  }
}
@media (min-width: 769px) {
  .header__animated {
    width: 327px;
    height: 383px;
  }
}
@media (min-width: 1201px) {
  .header__animated {
    width: 495px;
    height: 745px;
  }
}
.header__animated img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__animated--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__animated--protein {
  width: 100%;
}
.header__animated--protein .obj-granola {
  width: 100%;
  transform: rotate(45deg);
}
.header__funducs {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.header__funducs-img {
  position: absolute;
  -webkit-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  -moz-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  -o-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
}
@media (min-width: 1201px) {
  .header__funducs-img {
    width: auto !important;
  }
}
.header__funducs-img--one {
  width: 34px;
  top: 130px;
  left: 140px;
}
.header__funducs-img--three {
  width: 20px;
  top: 98px;
  left: 25px;
  -webkit-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -moz-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -o-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
}
@media (min-width: 760px) {
  .header__funducs-img--three {
    top: 115px;
    left: 37px;
  }
}
@media (min-width: 769px) {
  .header__funducs-img--three {
    top: 99px;
    left: 35px;
    width: 27px;
  }
}
@media (min-width: 1201px) {
  .header__funducs-img--three {
    top: 145px;
    left: 53px;
  }
}
.header__funducs-img--four {
  width: 35px;
  top: 114px;
  right: 20px;
  -webkit-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -moz-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -o-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
}
.header__funducs-img--six {
  display: none;
  bottom: 291px;
  right: 145px;
  -webkit-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  -moz-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  -o-animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
  animation: 6s linear 0s infinite alternate header-funducs-levitation-down;
}
@media (min-width: 769px) {
  .header__funducs-img--six {
    display: block;
    width: 31px;
    bottom: 135px;
    right: 22px;
  }
}
@media (min-width: 1201px) {
  .header__funducs-img--six {
    bottom: 387px;
    right: 40px;
  }
}
.header__funducs-img--seven {
  width: 50px;
  bottom: 100px;
  left: 26px;
}
@media (min-width: 760px) {
  .header__funducs-img--seven {
    width: 56px;
    bottom: 129px;
    left: 34px;
  }
}
@media (min-width: 769px) {
  .header__funducs-img--seven {
    bottom: 46px;
    left: 33px;
    width: 68px;
  }
}
@media (min-width: 1201px) {
  .header__funducs-img--seven {
    bottom: 246px;
    left: 55px;
  }
}
.header__funducs-img--eight {
  width: 26px;
  bottom: 131px;
  right: 4px;
  -webkit-animation: 6s linear 0s infinite alternate header-funducs-levitation-up;
  -moz-animation: 6s linear 0s infinite alternate header-funducs-levitation-up;
  -o-animation: 6s linear 0s infinite alternate header-funducs-levitation-up;
  animation: 6s linear 0s infinite alternate header-funducs-levitation-up;
}
@media (min-width: 760px) {
  .header__funducs-img--eight {
    width: 29px;
    bottom: 165px;
    right: 10px;
  }
}
@media (min-width: 769px) {
  .header__funducs-img--eight {
    bottom: 92px;
    width: 35px;
  }
}
@media (min-width: 1201px) {
  .header__funducs-img--eight {
    bottom: 205px;
    right: -22px;
  }
}
.header-burger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.header-burger__txt {
  margin-right: 12px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.07em;
  color: black;
}
.header-burger__icon {
  width: 20px;
  height: 20px;
  background: url("../img/header-burger-icon.svg") no-repeat 0 0;
  background-size: contain;
}
.header__bg-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: opacity;
}
.header__bg-image--first {
  background-image: url("../img/main-bg.webp");
  z-index: 2;
  -webkit-animation: rainbow-fade 3s linear infinite alternate forwards;
  animation: rainbow-fade 3s linear infinite alternate forwards;
  -z-animation: rainbow-fade 3s linear infinite alternate forwards;
  -o-animation: rainbow-fade 3s linear infinite alternate forwards;
}
.header__bg-image--last {
  background-image: url("../img/main-bg2.webp");
}
.header__animated-img {
  position: absolute;
  right: 0;
  z-index: 2;
}
.header__info {
  z-index: 2;
  position: relative;
}
.header__info .title {
  margin-bottom: 15px;
  color: #3AAF65;
}
@media (min-width: 760px) {
  .header__info .title {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .header__info .title {
    margin-bottom: 24px;
  }
  .header__info .title br {
    display: none;
  }
}
.header__info .description {
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 29px;
  font-size: 18px;
}
@media (min-width: 769px) {
  .header__info .description {
    margin-bottom: 29px;
    font-size: 30px;
  }
}
.header__info .description span {
  font-weight: 700;
}
.header__info .but {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  height: 60px;
}
@media (min-width: 760px) {
  .header__info .but {
    width: 253px;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .header__info .but {
    width: 274px;
    margin: 0;
  }
}

.slider-dots {
  margin-top: 66px;
}
.slider-dots .slick-dots {
  display: flex;
  justify-content: center;
}
.slider-dots .slick-dots li {
  padding: 0 7px;
}
.slider-dots .slick-dots li button {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  width: 22px;
  height: 22px;
  border: 3px solid #75981C;
  border-radius: 100%;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
}
.slider-dots .slick-dots li button:hover {
  background-color: #75981C;
}
.slider-dots .slick-dots li.slick-active button {
  background-color: #75981C;
}
.slider-dots--dark {
  margin-top: 10px;
}
.slider-dots--dark .slick-dots li button {
  border-color: #177C74;
}
.slider-dots--dark .slick-dots li button:hover {
  background-color: #177C74;
}
.slider-dots--dark .slick-dots li.slick-active button {
  background-color: #177C74;
}

.product {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  padding: 10px 0;
}
.product:hover .product__name {
  color: #75981C;
}
.product__media {
  width: 100%;
  height: 200px;
  margin: 0 auto;
}
.product__media img {
  -webkit-transition: all 0.25s linear 0s;
  -moz-transition: all 0.25s linear 0s;
  -o-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product__media:hover img {
  transform: scale(1.07, 1.07);
  transition: transform 1.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__name {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: inherit;
  margin-top: 30px;
}
.product-ing__media {
  height: 195px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
}
@media (min-width: 760px) {
  .product-ing__media {
    margin-bottom: 17px;
  }
}
.product-ing__media img {
  width: 100%;
  height: auto;
}
@media (min-width: 760px) {
  .product-ing__media img {
    width: auto;
  }
}
.product-ing__name {
  margin-bottom: 2px;
  text-align: center;
  text-transform: inherit;
}
.product-ing__desc {
  max-width: 185px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.contact {
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact__title {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 767px) {
  .contact__title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}
.contact__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .contact__inner {
    flex-direction: inherit;
  }
}
.contact__col--left {
  width: 100%;
}
@media (min-width: 767px) {
  .contact__col--left {
    width: 60%;
  }
}
.contact__col--right {
  width: 100%;
}
@media (min-width: 767px) {
  .contact__col--right {
    width: 40%;
    padding-left: 50px;
  }
}
.contact__map {
  border: 1px solid #828282;
  padding: 15px;
}
.contact__map-inner {
  height: 260px;
}
@media (min-width: 767px) {
  .contact__map-inner {
    height: 400px;
  }
}
.contact__map-inner iframe,
.contact__map-inner div {
  height: 100% !important;
}
.contact__list {
  margin-top: 50px;
}
@media (min-width: 767px) {
  .contact__list {
    margin-top: 0;
  }
}
.contact__list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
  padding-left: 35px;
  color: #828282;
  font-size: 14px;
}
@media (min-width: 767px) {
  .contact__list-item {
    margin-bottom: 30px;
    padding-left: 40px;
    font-size: 16px;
  }
}
.contact__list-item:last-child {
  margin-bottom: 0;
}
.contact__list-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
}
@media (min-width: 767px) {
  .contact__list-item:before {
    width: 25px;
    height: 25px;
  }
}
.contact__list-item a {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: block;
  color: #828282;
}
.contact__list-item a:hover {
  color: #3AAF65;
}
.contact__list-item--phone:before {
  background: url("../img/icons/phone.svg") no-repeat 0 0;
  background-size: contain;
}
.contact__list-item--mail:before {
  background: url("../img/icons/mail.svg") no-repeat 0 0;
  background-size: contain;
}
.contact__list-item--adres:before {
  background: url("../img/icons/locationr.svg") no-repeat 0 0;
  background-size: contain;
}

.footer {
  position: relative;
  z-index: 99999;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #F6FCFB;
}
.footer__logo {
  display: block;
  width: 95px;
  height: 65px;
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #828282;
}
.footer-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
}
@media (min-width: 760px) {
  .footer-top {
    flex-flow: row wrap;
    flex-direction: inherit;
    justify-content: space-between;
    margin-bottom: 4px;
  }
}
.footer-bot {
  margin-top: 50px;
  padding-top: 37px;
  border-top: 1px solid #DFE4E3;
}
@media (min-width: 760px) {
  .footer-bot {
    margin-top: 48px;
    padding-top: 51px;
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 52px;
}
@media (min-width: 760px) {
  .footer-col {
    padding-right: 20px;
  }
}
.footer-col--last {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 760px) {
  .footer-col--last {
    padding-right: 0;
    min-width: 284px;
  }
}
@media (min-width: 1000px) {
  .footer-col--last {
    width: auto;
  }
}
.footer-menu .title {
  margin-bottom: 15px;
}
.footer-copy {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #828282;
}
@media (min-width: 760px) {
  .footer-copy {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .footer-copy {
    font-size: 18px;
  }
}
.footer__slogan {
  margin-bottom: 30px;
  color: #C24C42;
}

.list-contact .list-menu__item {
  margin-bottom: 25px;
}
.list-contact .list-menu__item:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 15px;
}

.list-menu__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
  padding-left: 28px;
}
.list-menu__item:last-child {
  margin-bottom: 0;
}
.list-menu__item:before {
  content: "";
  position: absolute;
  left: 0;
}
.list-menu__item--mail:before {
  background: url("../img/icon-mail.svg");
}
.list-menu__item--mail a {
  font-family: "cyrillic-heavy", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.list-menu__item--phone:before {
  background: url("../img/icon-phone.svg");
}
.list-menu__item--phone a {
  font-family: "cyrillic-heavy", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.list-menu__item a {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 120%;
  color: #67B86C;
}
.list-menu__item a:hover {
  color: black;
}

.subscribe .title {
  margin-bottom: 24px;
}
.subscribe__field {
  margin-bottom: 25px;
}
.subscribe .but {
  width: 100%;
}

.milk {
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 760px) {
  .milk {
    display: flex;
    padding-bottom: 96px;
    padding-left: 0;
    padding-right: 0;
    max-width: 625px;
  }
}
@media (min-width: 1082px) {
  .milk {
    max-width: 1062px;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1367px) {
  .milk {
    flex-direction: inherit;
    padding-top: 132px;
    padding-bottom: 142px;
    max-width: 1442px;
  }
}
.milk-col {
  position: relative;
  z-index: 3;
}
@media (min-width: 1366px) {
  .milk-col {
    width: 50%;
  }
}
.milk-col--left {
  width: 100%;
  height: 415px;
}
@media (min-width: 760px) {
  .milk-col--left {
    height: 520px;
  }
}
@media (min-width: 1082px) {
  .milk-col--left {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 760px) {
  .milk-col--right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 23px;
  }
}
@media (min-width: 1082px) {
  .milk-col--right {
    padding-left: 67px;
  }
}
@media (min-width: 1201px) {
  .milk-col--right {
    padding-left: 0;
  }
}
@media (min-width: 1367px) {
  .milk-col--right {
    padding-left: 35px;
  }
}
.milk-media {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  height: 390px;
  margin: 0 auto 1px;
}
@media (min-width: 760px) {
  .milk-media {
    height: 500px;
  }
}
.milk-media-img {
  position: absolute;
  left: 0;
}
.milk-media-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  right: -12px;
}
@media (min-width: 1367px) {
  .milk-media-img img {
    right: 0;
  }
}
.milk-media-img--one {
  width: 49%;
  left: -20px;
}
@media (min-width: 769px) {
  .milk-media-img--one {
    width: 300px;
    height: 390px;
  }
}
.milk-media-img--two {
  width: 53%;
  left: 10px;
}
@media (min-width: 769px) {
  .milk-media-img--two {
    width: 350px;
    height: 455px;
    left: 43px;
  }
}
.milk-media-img--free {
  width: 63%;
  left: 45px;
}
@media (min-width: 769px) {
  .milk-media-img--free {
    width: 400px;
    height: 520px;
    left: 142px;
  }
}
.milk-media-img--four {
  width: 73%;
  left: 78px;
}
@media (min-width: 769px) {
  .milk-media-img--four {
    width: 450px;
    height: 585px;
    left: 235px;
  }
}
.milk-media--keto {
  margin: 0 auto 25px;
}
.milk-media--protein img {
  width: 100%;
}
.milk .title {
  margin-bottom: 13px;
  text-transform: inherit;
}
@media (min-width: 760px) {
  .milk .title {
    margin-bottom: 24px;
    font-size: 30px;
  }
}
@media (min-width: 1082px) {
  .milk .title {
    margin-bottom: 27px;
    font-size: 40px;
  }
}
.milk .description {
  font-weight: 300;
  margin-bottom: 15px;
}
@media (min-width: 760px) {
  .milk .description {
    font-size: 16px;
  }
}
@media (min-width: 1082px) {
  .milk .description {
    font-size: 24px;
  }
}
.milk .description:last-child {
  margin-bottom: 0;
}
.milk .description span {
  font-weight: 700 !important;
}
.milk__but {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  opacity: 0;
  position: fixed;
  width: 180px;
  right: 20px;
  bottom: 35px;
  z-index: 99999;
}
@media (min-width: 769px) {
  .milk__but {
    width: 284px;
  }
}
.milk-anim {
  position: absolute;
  top: 65px;
  height: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
@media (min-width: 760px) {
  .milk-anim {
    height: 75%;
  }
}
@media (min-width: 769px) {
  .milk-anim {
    height: 50%;
    top: initial;
  }
}
.milk-anim--left {
  left: 10px;
}
@media (min-width: 760px) {
  .milk-anim--left {
    left: -40px;
  }
}
@media (min-width: 769px) {
  .milk-anim--left {
    left: -70px;
  }
}
@media (min-width: 1082px) {
  .milk-anim--left {
    left: 20px;
  }
}
@media (min-width: 1366px) {
  .milk-anim--left {
    left: -5px;
  }
}
@media (min-width: 1367px) {
  .milk-anim--left {
    left: -55px;
  }
}
.milk-anim--left .milk-anim__el--top {
  left: 0;
}
.milk-anim--left .milk-anim__el--top-pre,
.milk-anim--left .milk-anim__el--bottom-pre {
  position: relative;
  left: 0;
}
@media (min-width: 769px) {
  .milk-anim--left .milk-anim__el--top-pre,
.milk-anim--left .milk-anim__el--bottom-pre {
    left: -30px;
  }
}
.milk-anim--right {
  right: 10px;
}
@media (min-width: 760px) {
  .milk-anim--right {
    right: -45px;
  }
}
@media (min-width: 769px) {
  .milk-anim--right {
    right: -105px;
  }
}
@media (min-width: 1082px) {
  .milk-anim--right {
    right: -3px;
  }
}
@media (min-width: 1366px) {
  .milk-anim--right {
    right: -65px;
  }
}
.milk-anim--right .milk-anim__el--bottom {
  right: 0;
}
.milk-anim--right .milk-anim__el--top-pre,
.milk-anim--right .milk-anim__el--bottom-pre {
  position: relative;
  right: 0;
}
@media (min-width: 769px) {
  .milk-anim--right .milk-anim__el--top-pre,
.milk-anim--right .milk-anim__el--bottom-pre {
    right: -60px;
  }
}
.milk-anim__el {
  position: relative;
}
.milk-anim__el--top {
  width: 30px;
  height: 36px;
  background: url("../img/food-elements/greens-1.png") no-repeat 0 0;
  background-size: contain;
  -webkit-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -moz-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  -o-animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
  animation: 6s linear 0s infinite alternate header-vanila-levitation-up-x10;
}
.milk-anim__el--top-keto {
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--top-granola {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--top-protein {
  background: url("../img/food-elements/greens-1.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 769px) {
  .milk-anim__el--top {
    width: 55px;
    height: 61px;
  }
}
.milk-anim__el--top-pre {
  width: 20px;
  height: 28px;
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
  -webkit-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  -moz-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  -o-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
}
.milk-anim__el--top-pre-keto {
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--top-pre-granola {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 769px) {
  .milk-anim__el--top-pre {
    width: 40px;
    height: 57px;
  }
}
.milk-anim__el--middle {
  width: 55px;
  height: 45px;
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
  -webkit-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  -moz-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  -o-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
}
.milk-anim__el--middle-keto {
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--middle-granola {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--middle-granola-min {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--middle-protein {
  background: url("../img/food-elements/greens-1.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 1900px) {
  .milk-anim__el--middle-rich {
    right: -55px !important;
  }
}
@media (min-width: 769px) {
  .milk-anim__el--middle {
    width: 90px;
    height: 70px;
  }
}
.milk-anim__el--bottom {
  width: 45px;
  height: 53px;
  background: url("../img/food-elements/greens-1.png") no-repeat 0 0;
  background-size: contain;
  -webkit-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  -moz-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  -o-animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
  animation: 2s linear 0s infinite alternate header-vanila-levitation-down;
}
.milk-anim__el--bottom-keto {
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--bottom-granola {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--bottom-protein {
  background: url("../img/food-elements/greens-1.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 1900px) {
  .milk-anim__el--bottom-rich {
    right: 60px !important;
  }
}
@media (min-width: 769px) {
  .milk-anim__el--bottom {
    width: 76px;
    height: 88px;
  }
}
.milk-anim__el--bottom-pre {
  width: 26px;
  height: 28px;
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
  -webkit-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  -moz-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  -o-animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
  animation: 2s linear 0s infinite alternate header-vanila-levitation-up;
}
.milk-anim__el--bottom-pre-keto {
  background: url("../img/food-elements/meat-1.png") no-repeat 0 0;
  background-size: contain;
}
.milk-anim__el--bottom-pre-granola {
  background: url("../img/food-elements/chees-1.png") no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 769px) {
  .milk-anim__el--bottom-pre {
    width: 52px;
    height: 57px;
  }
}

#image-reel, #image-reel .reel {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rich--keto .rich-content--bg {
  background: linear-gradient(180deg, rgba(255, 174, 174, 0) 0%, #FFAEAE 18.8%, #FFAEAE 75.35%, rgba(255, 174, 174, 0) 90.39%);
}
.rich--protein .rich-content--bg {
  background: linear-gradient(180deg, rgba(255, 174, 174, 0) 0%, #FFAEAE 18.8%, #FFAEAE 75.35%, rgba(255, 174, 174, 0) 90.39%);
}
.rich-head {
  position: relative;
  background-color: #67B86C;
  padding-top: 85px;
  padding-bottom: 85px;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media (min-width: 760px) {
  .rich-head {
    padding-top: 102px;
  }
}
@media (min-width: 1367px) {
  .rich-head {
    padding-top: 151px;
  }
}
.rich-head--keto:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 29px;
  width: 100%;
  height: 140px;
  background: url(../img/line-x1200.webp) repeat-x center bottom;
  background-size: contain;
  z-index: inherit;
}
@media (min-width: 760px) {
  .rich-head--keto:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 769px) {
  .rich-head--keto:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 1367px) {
  .rich-head--keto:after {
    bottom: -453px;
    height: 1189px;
  }
}
.rich-head--granola {
  padding-bottom: 200px;
}
.rich-head--granola:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 29px;
  width: 100%;
  height: 140px;
  background: url(../img/granola-line.webp) repeat-x center bottom;
  background-size: contain;
  z-index: 1;
}
@media (min-width: 760px) {
  .rich-head--granola:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 769px) {
  .rich-head--granola:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 1367px) {
  .rich-head--granola:after {
    bottom: -345px;
    height: 527px;
  }
}
.rich-head--protein:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 29px;
  width: 100%;
  height: 140px;
  background: url(../img/protein-line.webp) repeat-x center bottom;
  background-size: contain;
  z-index: inherit;
}
@media (min-width: 760px) {
  .rich-head--protein:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 769px) {
  .rich-head--protein:after {
    bottom: -80px;
    height: 265px;
  }
}
@media (min-width: 1367px) {
  .rich-head--protein:after {
    bottom: -453px;
    height: 1189px;
  }
}
.rich-head--shadow {
  padding-bottom: 200px;
}
@media (min-width: 1367px) {
  .rich-head--shadow {
    padding-bottom: 395px;
  }
}
@media (min-width: 1367px) {
  .rich-head--shadow:after {
    bottom: -215px;
  }
}
@media (min-width: 1981px) {
  .rich-head--shadow:after {
    bottom: -430px;
  }
}
@media (min-width: 2501px) {
  .rich-head--shadow:after {
    bottom: -540px;
  }
}
@media (min-width: 2700px) {
  .rich-head--shadow:after {
    bottom: -721px;
  }
}
@media (min-width: 5000px) {
  .rich-head--shadow:after {
    bottom: -540px;
  }
}
.rich-content {
  position: relative;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #B8DD5A;
}
@media (min-width: 760px) {
  .rich-content {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.rich-content .wrap-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rich-content .title {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  position: relative;
}
.rich-content--bg {
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  background-color: #FFF467;
}
.rich-content--bg .rich__desc {
  color: #3AAF65;
}
.rich-content--bg .product:hover .product__name {
  color: #AE6E0A;
}
.rich-content--keto {
  background: linear-gradient(180deg, rgba(179, 205, 94, 0) 0%, #B3CD5E 27.25%, #B3CD5E 78.72%, rgba(179, 205, 94, 0) 95.27%);
}
.rich-content--keto.rich-content--bg .rich__desc {
  color: #CE564B;
}
.rich-content--keto.rich-content--bg .product:hover .product__name {
  color: #CE564B;
}
.rich-content--granola {
  background: linear-gradient(180deg, rgba(255, 220, 209, 0) 0%, #B8DD5A 0.01%, #B8DD5A 88.26%, rgba(255, 220, 209, 0) 100%);
}
@media (min-width: 1367px) {
  .rich-content--granola {
    padding-top: 480px;
  }
}
.rich-content--granola.rich-content--bg {
  background: linear-gradient(180deg, rgba(255, 220, 209, 0) 0%, #FFDCD1 0.01%, #FFDCD1 88.26%, rgba(255, 220, 209, 0) 100%);
}
.rich-content--protein {
  background: linear-gradient(180deg, rgba(179, 205, 94, 0) 0%, #B3CD5E 27.25%, #B3CD5E 78.72%, rgba(179, 205, 94, 0) 95.27%);
}
.rich-content--protein.rich-content--bg .rich__desc {
  color: #CE564B;
}
.rich-content--protein.rich-content--bg .product:hover .product__name {
  color: #CE564B;
}
.rich-content--protein .title span {
  font-weight: 300;
}
.rich-content--shadow {
  margin-top: -163px;
  padding-bottom: 183px;
}
@media (min-width: 760px) {
  .rich-content--shadow {
    margin-top: -163px;
    padding-bottom: 185px;
  }
}
.rich__title {
  position: relative;
  z-index: 2;
}
.rich__title .title {
  display: block;
  font-family: "impact", sans-serif;
  letter-spacing: -1px;
  font-size: 38px;
  transition: transform 2.4s, opacity 0.25s ease 0s !important;
}
.rich__title .title.active {
  transform: translate(0) rotate(0) !important;
}
.rich__title .title:nth-child(1) {
  transform: rotate(5deg);
}
.rich__title .title:nth-child(2) {
  transform: translate(50%, -50%) rotate(-2deg);
}
.rich__title .title:nth-child(3) {
  transform: translate(10%) rotate(-7deg);
}
@media (min-width: 760px) {
  .rich__title .title {
    font-size: 92px;
    display: block;
  }
}
@media (min-width: 769px) {
  .rich__title .title {
    font-size: 145px;
  }
}
@media (min-width: 1367px) {
  .rich__title .title {
    font-size: 214px;
  }
}
.rich__title--keto .title {
  font-size: 28px;
}
@media (min-width: 601px) {
  .rich__title--keto .title {
    font-size: 50px;
  }
}
@media (min-width: 769px) {
  .rich__title--keto .title {
    font-size: 85px;
  }
}
@media (min-width: 1367px) {
  .rich__title--keto .title {
    font-size: 161px;
  }
}
.rich__title--protein .title {
  font-size: 55px;
}
@media (min-width: 769px) {
  .rich__title--protein .title {
    font-size: 85px;
  }
}
@media (min-width: 1367px) {
  .rich__title--protein .title {
    font-size: 161px;
  }
}
.rich__desc {
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 33px;
  text-transform: inherit;
  max-width: 775px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 760px) {
  .rich__desc {
    margin-bottom: 71px;
  }
}
@media (min-width: 1367px) {
  .rich__desc {
    max-width: 1075px;
  }
}
.rich__products {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
@media (min-width: 1367px) {
  .rich__products {
    max-width: 970px;
  }
}
.rich__products .product {
  width: 25%;
}
.rich__products--keto {
  max-width: inherit;
}
.rich__products--keto .product__media {
  height: 120px;
}
.rich__products--granola {
  max-width: inherit;
}
.rich__products--granola .product__media {
  height: 440px;
}
.rich .milk-anim {
  height: 75%;
}
.rich .milk-anim--left {
  left: 0;
}
.rich .milk-anim--right {
  right: 0;
}

.tabs__list {
  display: flex;
}
.tabs__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  width: 25%;
}
@media (min-width: 601px) {
  .tabs__list-item {
    padding: 50px 30px;
  }
}
.tabs__list-item--becon {
  background-color: #C24C42;
}
.tabs__list-item--chees {
  background-color: #FFF326;
}
.tabs__list-item--greens {
  background-color: #3AAF65;
}
.tabs__list-item--papric {
  background-color: #CD655C;
}
.tabs__list-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tabs__list-img {
  width: 100%;
  height: 100px;
}
@media (min-width: 601px) {
  .tabs__list-img {
    width: 175px;
    height: 220px;
  }
}
.tabs__content-item {
  padding: 15px;
  display: none;
}
@media (min-width: 601px) {
  .tabs__content-item {
    padding: 50px;
  }
}
.tabs__content-item--becon {
  background-color: #C24C42;
}
.tabs__content-item--chees {
  background-color: #FFF326;
}
.tabs__content-item--chees .tabs__title,
.tabs__content-item--chees .type__content {
  color: #3AAF65;
}
.tabs__content-item--greens {
  background-color: #3AAF65;
}
.tabs__content-item--papric {
  background-color: #CD655C;
}
.tabs__content-item.active {
  display: block;
}
.tabs__title {
  text-align: center;
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 601px) {
  .tabs__title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}

/******* product */
.type {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .type {
    align-items: center;
    flex-direction: inherit;
  }
}
.type__media {
  width: 100%;
  height: 200px;
}
@media (min-width: 1200px) {
  .type__media {
    min-width: 500px;
    width: 500px;
    height: 651px;
  }
}
.type__media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.type__content {
  color: white;
}
@media (min-width: 1200px) {
  .type__content {
    padding-left: 50px;
  }
}
.type__content-name {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .type__content-name {
    font-size: 40px;
  }
}
.type__content-desc {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .type__content-desc {
    margin-top: 50px;
  }
}
.type__content-desc p {
  line-height: 20px;
  font-size: 16px;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .type__content-desc p {
    line-height: 28px;
    font-size: 21px;
    margin-top: 30px;
  }
}
.type__content-desc p:first-child {
  margin-top: 0;
}

/******* partners */
.partners {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FFF326;
}
.partners__title {
  text-align: center;
  font-size: 30px;
}
@media (min-width: 767px) {
  .partners__title {
    font-size: 60px;
  }
}
.partners__content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .partners__content {
    justify-content: center;
    flex-direction: inherit;
  }
}
.partners__item {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partners__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .partners__item {
    padding: 0 30px;
    margin-bottom: 0;
  }
}
.partners__item-icon {
  width: 80px;
  height: 80px;
}
.partners__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners__item-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 767px) {
  .partners__item-desc {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
}

.magic {
  padding-top: 50px;
  padding-bottom: 50px;
}
.magic--keto {
  padding-top: 0;
}
@media (min-width: 760px) {
  .magic {
    padding-bottom: 57px;
  }
}
@media (min-width: 1367px) {
  .magic {
    padding-top: 100px;
  }
}
.magic__title {
  margin-bottom: 15px;
  text-align: center;
  text-transform: inherit;
}
.magic__title br {
  display: block;
}
.magic__desc {
  text-align: center;
  margin-bottom: 33px;
}
.magic-products--keto .product-ing__desc {
  max-width: inherit;
}

.card {
  position: relative;
  left: 0;
}
.card-rows {
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}
.card__media {
  display: none;
  position: absolute;
  left: initial;
  right: -208px;
  top: -330px;
  margin: 0 auto;
  width: 210px;
  height: 408px;
  transform: rotate(-90deg);
}
.card__media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card__row-col {
  width: 100%;
  margin-bottom: 16px;
}
.card__row-col--left {
  display: flex;
}
.card__row-col--left .card__arrow,
.card__row-col--left .card__arrow-line {
  order: 2;
}
.card__row-col--left .card__arrow {
  margin-right: 0;
  margin-left: 33px;
}
.card__row-col--left span {
  left: initial !important;
}
.card__row--first .card__row-col--left {
  display: none;
}
.card__row--first .card__row-col--right .card__arrow {
  width: 100%;
  max-width: 149px;
}
.card__row--first .card__row-col--right .card__arrow-line {
  max-width: 149px;
}
.card__row--next .card__row-col--right .card__arrow {
  width: 100%;
  max-width: 262px;
}
.card__row--next .card__row-col--right .card__arrow-line {
  max-width: 262px;
}
.card__row--next .card__row-col--left .card__arrow {
  width: 100%;
  max-width: 178px;
}
.card__row--next .card__row-col--left .card__arrow-line {
  max-width: 178px;
}
.card__row--second .card__row-col--left .card__arrow {
  width: 100%;
  max-width: 290px;
}
.card__row--second .card__row-col--left .card__arrow-line {
  max-width: 290px;
}
.card__row--second .card__row-col--right .card__arrow {
  width: 100%;
  max-width: 220px;
}
.card__row--second .card__row-col--right .card__arrow-line {
  max-width: 220px;
}
.card__row--last .card__row-col {
  margin-bottom: 0;
}
.card__row--last .card__row-col--left .card__arrow {
  width: 100%;
  max-width: 146px;
}
.card__row--last .card__row-col--left .card__arrow-line {
  max-width: 146px;
}
.card__row--last .card__row-col--right .card__item-wrap {
  position: relative;
  max-width: 276px;
  padding: 12px;
  margin-top: 50px;
  background-color: black;
  border-radius: 8px 8px 0 0;
  color: white;
  font-weight: 600;
}
.card__row--last .card__row-col--right .card__item-wrap span {
  padding-left: 0;
}
.card__row--last .card__row-col--right .card__item-wrap span:before {
  display: none;
}
.card__row--last .card__row-col--right .card__arrow {
  width: 100%;
  max-width: 229px;
}
.card__row--last .card__row-col--right .card__arrow-line {
  max-width: 229px;
}
.card__row--last .card__row-col--right span {
  left: 0 !important;
}
.card__item {
  display: flex;
  align-items: center;
  position: relative;
}
.card__item-wrap {
  position: relative;
  overflow: hidden;
}
.card__item span {
  position: relative;
  left: -240px;
  font-size: 0.875rem;
  line-height: 22px;
  padding-top: 3px;
  display: block;
  padding-left: 10px;
}
.card__item span:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: black;
}
.card__arrow {
  display: none;
  align-items: center;
  margin-right: 18px;
}
.card__arrow-line {
  width: 0;
  height: 2px;
  background-color: black;
}
.card__arrow-ellipse {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: black;
}

@media only screen and (min-width: 1200px) {
  .card {
    left: 0;
    overflow: hidden;
    min-height: 648px;
  }
  .card-rows {
    margin-top: 0;
  }
  .card__row {
    flex-direction: inherit;
  }
  .card__row-col {
    width: 50%;
    margin-bottom: 0;
  }
  .card__row-col:first-child {
    padding-right: 50px;
  }
  .card__row-col:last-child {
    padding-left: 50px;
  }
  .card__row-col--left {
    justify-content: flex-end;
  }
  .card__row--first {
    margin-top: 71px;
  }
  .card__row--first .card__row-col--left {
    display: block;
  }
  .card__row--first .card__row-col--right {
    padding-left: 150px;
  }
  .card__row--next {
    margin-top: 51px;
  }
  .card__row--next .card__row-col--right .card__item-wrap {
    top: 8px;
  }
  .card__row--next .card__row-col--left .card__item {
    top: 25px;
  }
  .card__row--second {
    margin-top: 52px;
  }
  .card__row--second .card__row-col--left .card__item-wrap {
    max-width: inherit;
    right: -18px;
    top: 7px;
  }
  .card__row--second .card__row-col--left .card__arrow {
    max-width: 200px;
  }
  .card__row--second .card__row-col--right .card__item-wrap {
    top: 12px;
  }
  .card__row--second .card__row-col--right .card__item {
    top: 35px;
  }
  .card__row--last {
    margin-top: 76px;
  }
  .card__row--last .card__row-col--left .card__item-wrap {
    top: 7px;
    left: 2px;
  }
  .card__row--last .card__row-col--right .card__item {
    top: 57px;
    max-width: 484px;
    justify-content: space-between;
  }
  .card__row--last .card__row-col--right .card__item-wrap {
    max-width: 233px;
    padding: 17px 5px 24px;
    border-radius: 16px 16px 0 0;
    margin-top: 0;
  }
  .card__row--last .card__row-col--right .card__item-wrap span {
    padding-left: 10px;
  }
  .card__row--last span {
    right: -240px;
  }
  .card__item span {
    font-size: 1.125rem;
    line-height: 32px;
    padding-left: 0;
  }
  .card__item span:before {
    display: none;
  }
  .card__arrow {
    display: flex;
  }
  .card__media {
    transform: rotate(0);
    width: 410px;
    height: 550px;
    right: 0;
    left: 0;
    top: initial;
    bottom: -180px;
    display: block;
  }
}
@media only screen and (min-width: 1365px) {
  .card {
    padding-left: 0;
    padding-right: 0;
  }
  .card__row--last .card__row-col--right .card__item-wrap {
    padding: 21px 24px 24px;
  }
}

/*================================================================================
                                    DEFAULTS SLICK SLIDER STYLES
================================================================================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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