/* Scss Document */
* {
  box-sizing: border-box;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

h1, h2, h3, h4 {
  font-family: "Arvo", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

h5, h6 {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: 59px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
}

ul, li {
  list-style: none;
}

@media screen and (min-width: 899px) {
  h1 {
    font-size: 86px;
  }
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 42px;
  }
  h4 {
    font-size: 36px;
  }
  h5 {
    font-size: 27px;
  }
  h6 {
    font-size: 21px;
  }
  p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
  }
}
/* -------------------------------------------------------------------- 

                        Layout

----------------------------------------------------------------------- */
.full_width {
  width: 100vw;
}

.fixed_width {
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.flex_half {
  width: 100%;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.flex_center_col_row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8%;
}

.flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.social_row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (min-width: 899px) {
  .flex_half {
    width: 50%;
  }
  .flex_center_col_row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1%;
  }
  .social_row {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
/* ----------------------------------------------------------------------- 

                        Common

----------------------------------------------------------------------- */
.green_bg {
  background-color: #94C83C;
}

main {
  width: 100%;
  margin: 0;
  top: 0;
}

.main_padding {
  padding-top: 54vh;
}

.page_header {
  height: 58vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  z-index: -1;
  top: 0;
}
.page_header h1 {
  display: block;
  margin-bottom: 0vh;
}
.page_header .group_title h1 {
  display: block;
  margin-bottom: 0vh;
}
.page_header .group_title h3 {
  display: block;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 24px;
}

.logo {
  background-image: url(/images/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hover_bigger {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  cursor: pointer;
}

.hover_bigger:hover {
  transform: scale(1.1);
}

.fb_icon {
  background-image: url(/images/fb.svg);
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 16px;
  min-height: 20px;
}

.yt_icon {
  background-image: url(/images/yt.svg);
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 16px;
}

.ig_icon {
  background-image: url(/images/ig.svg);
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 20px;
}

.index_mail_us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: White;
  width: 90%;
  max-width: 880px;
  min-height: 120px;
  padding: 20px 40px;
  border-radius: 14px;
  transform: translateY(36px);
  z-index: 90;
  color: #94C83C;
}
.index_mail_us h5 {
  text-align: center;
  margin-bottom: 4px;
  color: #94C83C;
}
.index_mail_us p {
  text-align: center;
  color: #94C83C;
}
.index_mail_us .mail_button {
  color: #94C83C;
  text-align: center;
  margin-top: 30px;
}

.mail_icon {
  width: 40px;
  height: 26px;
  margin: 0 auto;
  margin-bottom: 4px;
  -webkit-mask: url(/images/email.svg) no-repeat 100% 100%;
  mask: url(/images/email.svg) no-repeat 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #94C83C;
}

.group_title {
  padding: 0 20px;
}

.button {
  display: inline-block;
  border-radius: 12px;
  color: white;
  padding: 12px 30px;
  margin: 8px 0;
  background-color: #94C83C;
  margin-top: 4px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

@media screen and (min-width: 899px) {
  .page_header {
    height: 64vh;
  }
  .page_header h1 {
    margin-bottom: 0vh;
  }
  .page_header .group_title {
    padding: 0;
  }
  .page_header .group_title h1, .page_header .group_title h2 {
    display: block;
    margin-bottom: 0vh;
  }
  .page_header .group_title h3 {
    display: block;
    margin-bottom: 4px;
  }
  .main_padding {
    padding-top: 52vh;
  }
  .index_mail_us {
    flex-direction: row;
    justify-content: space-between;
  }
  .index_mail_us h5, .index_mail_us p {
    text-align: left;
  }
  .index_mail_us .mail_button {
    margin-top: 0px;
  }
}
/* ----------------------------------------------------------------------- 

                        header

-------------------------------------------------------------------------- */
.rotate_0 {
  transform: translateY(0) rotate(0deg);
}

.rotate_45 {
  transform: translateY(9px) rotate(45deg);
}

.rotate_45rev {
  transform: translateY(-9px) rotate(-45deg);
}

.scale_0 {
  transform: scaleX(0);
}

.scale_100 {
  transform: scaleX(1);
}

.top_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 48px;
  background-color: rgba(66, 47, 24, 0.1);
  padding: 10px;
  text-align: -webkit-center;
  z-index: 998;
}
.top_bar .hamburger {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  margin: 8px 14px;
  width: 32px;
  height: 34px;
  z-index: 999;
  cursor: pointer;
}
.top_bar .hamburger .ham_line {
  width: 32px;
  height: 3px;
  margin: 3px 0;
  background-color: white;
  transition: all 0.2s ease;
}
.top_bar h5 {
  font-size: 13pt;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
}

header {
  position: fixed;
  display: block;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -110vw;
  z-index: 99;
  transition: all 0.2s ease;
  background-color: #94C83C;
}

.header_fixed {
  position: relative;
  width: 90%;
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_fixed .logo {
  position: absolute;
  display: inline-block;
  vertical-align: inherit;
  width: 100%;
  height: 100%;
  filter: none;
  opacity: 0.1;
  top: 0;
  left: 0;
}

.main_nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 100vw;
  height: 80vh;
  text-align: center;
  z-index: 998;
}
.main_nav .nav_list {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.main_nav .nav_list li {
  margin: 0 0 1.2rem 0;
}

.nav_item a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  filter: none;
}

.language {
  display: block;
  border: 2px solid white;
  padding: 20px 16px;
  margin-top: 40px;
  min-width: 160px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  text-align: center;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lang_nav {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.lang_nav li {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  margin: 12px 0 0 0 !important;
  padding: 2px 10px;
}
.lang_nav li:hover {
  cursor: pointer;
  background-color: #94C83C;
}

.lang_item a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  filter: none;
}

@media screen and (min-width: 899px) {
  .top_bar {
    display: none;
  }
  header {
    position: absolute;
    height: 60px;
    top: 20px;
    left: 0 !important;
    background-color: transparent;
  }
  .header_fixed {
    display: block;
    align-items: center;
    justify-content: center;
    height: 60px;
  }
  .header_fixed .logo {
    display: inline-block;
    vertical-align: top;
    width: 20vw;
    height: 14vw;
    max-width: 200px;
    max-height: 170px;
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.4));
    opacity: 1;
  }
  .main_nav {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 0;
    width: 78%;
    height: auto;
    text-align: right;
  }
  .main_nav .nav_list {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
  }
  .main_nav .nav_list li {
    display: inline-block;
    margin: 0;
  }
  .nav_item a {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    color: white;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.5));
  }
  .language {
    padding: 3px 16px;
    margin: 0;
  }
  .language a {
    font-size: 18px;
  }
  .lang_nav {
    height: 0;
  }
  .language:hover .lang_nav {
    height: auto;
    cursor: pointer;
    opacity: 1;
  }
  .lang_nav li {
    margin: 6px 0;
  }
  .lang_item a {
    font-size: 16px;
    font-weight: 400;
  }
}
/* ----------------------------------------------------------------------- 

                        footer

----------------------------------------------------------------------- */
footer {
  position: relative;
  width: 100vw;
  min-height: 60px;
  background-color: #2E261E;
  text-align: center;
}
footer .fixed_width {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
footer .logo {
  display: block;
  width: 36vw;
  height: 36vw;
  max-width: 140px;
  max-height: 140px;
  min-width: 90px;
  min-height: 90px;
  margin: 90px 0 45px 0;
}
footer .footer_list {
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer_list .footer_item {
  display: block;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
footer .footer_list .footer_item a {
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
footer .social_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
  list-style: none;
}
footer .social_list .social_item {
  margin: 20px 30px;
  list-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
footer .social_list .social_item:hover {
  cursor: pointer;
  transform: scale(1.4);
}
footer .social_list .fb_icon {
  width: 16px;
  height: 30px;
}
footer .social_list .yt_icon {
  width: 30px;
  height: 23px;
}
footer .social_list .ig_icon {
  width: 30px;
  height: 30px;
}
footer smaller {
  margin: 60px 0 10px 0;
  font-size: 12px;
  color: white;
}

@media screen and (min-width: 899px) {
  footer .footer_list {
    width: 65%;
  }
  footer .footer_list .footer_item {
    width: 25%;
    margin: 6px 0;
  }
  footer .footer_list .footer_item a {
    font-size: 16px;
  }
}
/* ----------------------------------------------------------------------- 

                        index

----------------------------------------------------------------------- */
.index_slider {
  display: flex;
  height: 70vh;
  background-color: #4e361d;
}
.index_slider .slide_item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  background-image: url(/images/index/slide_01_m.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index_slider .slide_title {
  width: 85%;
  max-width: 1360px;
  margin-bottom: 6vh;
}
.index_slider .slide_title h1 {
  width: 100%;
}

#Social {
  width: 100vw;
}

.fb_wrapper {
  background-image: url(/images/index/dog_01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 40vh;
}
.fb_wrapper .fb_title {
  width: 80%;
  text-align: center;
  /* .fb_icon{
      width: 16px;
      height: 30px;
      margin-bottom: 6px;
  } */
}

.action_fb {
  flex-direction: row;
  gap: 10px;
  margin: 14px 0;
}
.action_fb .fb_mask_icon {
  width: 12px;
  height: 27px;
  -webkit-mask: url(/images/fb.svg) no-repeat 100% 100%;
  mask: url(/images/fb.svg) no-repeat 100% 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: white;
}

.yt_wrapper {
  background-image: url(/images/index/dog_02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
}
.yt_wrapper .yt_title {
  /* .yt_icon{
      width: 60px;
      height: 46px;
      margin-bottom: 12px;
  } */
}
.yt_wrapper .yt_title .yt_mask_icon {
  width: 60px;
  height: 46px;
  margin-bottom: 6px;
  -webkit-mask: url(/images/yt.svg) no-repeat 100% 100%;
  mask: url(/images/yt.svg) no-repeat 100% 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #F0543C;
}

.virtue_index {
  width: 100vw;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.virtue_index h3 {
  text-align: center;
  margin: 70px 0 30px 0;
  color: #94C83C;
}
.virtue_index .fixed_width {
  margin-bottom: 80px;
}
.virtue_index .item_v {
  display: flex !important;
  grid-area: item_v;
  grid-column: 1/span 2;
  grid-row: 1;
  min-width: 90vw;
  min-height: 82vw;
  align-items: center;
  justify-content: center;
}
.virtue_index .item_v img {
  width: 100%;
}
.virtue_index .item_v a {
  position: absolute;
}
.virtue_index .item_1 {
  grid-area: item_1;
  margin-bottom: 20px;
}
.virtue_index .item_2 {
  grid-area: item_2;
  margin-bottom: 20px;
}
.virtue_index .item_3 {
  grid-area: item_3;
}
.virtue_index .item_4 {
  grid-area: item_4;
}
.virtue_index .grid-container {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto auto;
  grid-template-areas: "item_v item_v" "item_1 item_2" "item_3 item_4";
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  align-items: start;
  margin: 0 auto;
}
.virtue_index .grid-item {
  display: inline-grid;
  min-width: 20px;
  min-height: 20px;
  color: #94C83C;
}
.virtue_index .grid-item h5 {
  color: #94C83C;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 700;
}
.virtue_index .grid-item p {
  text-align: center;
  color: #94C83C;
}

#Product {
  width: 100vw;
}

.dog_wrapper {
  background-color: #EFE66C;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 45vh;
  padding-bottom: 10vh;
}
.dog_wrapper .dog_img {
  position: absolute;
  height: 108%;
  bottom: 0;
  transform-origin: center bottom;
  transform: translateX(0%);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.dog_wrapper .dog_img img {
  width: auto;
  height: 100%;
}
.dog_wrapper .index_dog_title {
  width: 70%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dog_wrapper .index_dog_title h2 {
  text-align: left;
  color: white;
}

.dog_wrapper:hover > .dog_img {
  height: 125%;
}

.cat_wrapper {
  background-color: #C6E480;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 45vh;
  padding-bottom: 10vh;
}
.cat_wrapper .cat_img {
  position: absolute;
  height: 100%;
  bottom: 0;
  transform-origin: center bottom;
  transform: translateX(-10%);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  z-index: 0;
}
.cat_wrapper .cat_img img {
  height: 100%;
}
.cat_wrapper .index_cat_title {
  width: 70%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cat_wrapper .index_cat_title h2 {
  text-align: right;
  color: white;
}

.cat_wrapper:hover > .cat_img {
  height: 115%;
}

.testimon_index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(/images/bg/testi_bw.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.testimon_index h3 {
  text-align: center;
  margin: 70px 0;
}

.index_testimon_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.index_testimon_list .testimon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 46%;
  margin: 0 1%;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 400;
  color: white;
}
.index_testimon_list .testimon_item .user_photo {
  width: 80px;
  height: 80px;
  background-color: aquamarine;
  border-radius: 50%;
  margin-bottom: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index_testimon_list .testimon_item .user_name {
  color: #94C83C;
  margin-top: 4px;
}

@media screen and (min-width: 899px) {
  .index_slider {
    height: 75vh;
  }
  .index_slider .slide_item {
    background-image: url(/images/index/slide_01_smaller.jpg);
  }
  .index_slider .slide_title {
    margin-bottom: 14vh;
  }
  .index_slider .slide_title h1 {
    width: 65%;
  }
  .index_slider .slide_title .button {
    font-size: 18px;
    line-height: 18px;
    margin-top: 10px;
  }
  .fb_wrapper {
    height: 45vh;
  }
  .fb_wrapper .fb_title h5 {
    font-size: 36px;
    line-height: 39px;
  }
  .fb_wrapper .fb_title p {
    font-size: 16px;
    line-height: 16px;
  }
  .yt_wrapper {
    height: 45vh;
  }
  .yt_wrapper .yt_title p {
    font-size: 16px;
    line-height: 16px;
  }
  .dog_wrapper {
    justify-content: center;
    align-items: center;
  }
  .dog_wrapper .dog_img {
    height: 112%;
    transform: translateX(20%);
  }
  .dog_wrapper .index_dog_title h2 {
    font-size: 96px;
    line-height: 80px;
    width: 70%;
  }
  .cat_wrapper {
    justify-content: center;
    align-items: center;
  }
  .cat_wrapper .cat_img {
    transform: translateX(-30%);
    z-index: 1;
  }
  .cat_wrapper .index_cat_title {
    z-index: 0;
  }
  .cat_wrapper .index_cat_title h2 {
    font-size: 96px;
    line-height: 80px;
    width: 70%;
  }
  .virtue_index {
    width: 100vw;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .virtue_index h3 {
    text-align: center;
    margin: 70px 0 40px 0;
    color: #94C83C;
  }
  .virtue_index .grid-container {
    display: grid;
    grid-template-rows: auto 50% auto;
    grid-template-columns: auto 50% auto;
    grid-template-areas: "item_1 item_v item_2" "item_3 item_v item_4";
    width: 100%;
    max-width: 1200px;
    justify-content: stretch;
  }
  .virtue_index .grid-item {
    display: inline-grid;
  }
  .virtue_index .item_v {
    grid-column: 2;
    grid-row: 1/span 2;
    background-color: gold;
  }
  .virtue_index .item_v img {
    width: 100%;
  }
  .index_testimon_list {
    flex-wrap: nowrap;
  }
  .index_testimon_list .testimon_item {
    width: 23%;
    margin-bottom: 0;
  }
}
/* ----------------------------------------------------------------------- 

                        Products

----------------------------------------------------------------------- */
.dog_header {
  background-color: #e7b76e;
  background-image: url(/images/dog_head.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
}
.dog_header h1 {
  transform: translateY(10vh);
}

.cat_header {
  background-color: #f8cb80;
  background-image: url(/images/cat_head.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
}
.cat_header h1 {
  transform: translateY(10vh);
}

.cat_flex {
  margin-bottom: 80px;
}

.products_wrapper {
  display: flex;
  flex-direction: column;
}
.products_wrapper .product_row {
  width: 100vw;
  height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.products_wrapper .product_row .product_title {
  position: absolute;
  z-index: 9;
  align-self: flex-end;
  padding-bottom: 4vh;
  width: 88vw;
}
.products_wrapper .product_row .product_preview {
  position: relative;
  width: 98vw;
  display: flex;
  justify-content: center;
  height: inherit;
}
.products_wrapper .product_row .product_preview img {
  position: relative;
  height: 90%;
  width: -moz-fit-content;
  width: fit-content;
}
.products_wrapper .product_row:nth-of-type(odd) {
  flex-direction: row;
  /* .product_preview {
      transform: translateX(7vw) translateY(-5vw);
  } */
}
.products_wrapper .product_row:nth-of-type(odd) .product_title {
  text-align: left;
}
.products_wrapper .product_row:nth-of-type(even) {
  flex-direction: row-reverse;
  /* .product_preview {
      transform: translateX(-7vw) translateY(-5vw);
  } */
}
.products_wrapper .product_row:nth-of-type(even) .product_title {
  text-align: right;
}
.products_wrapper h2 {
  color: white;
}
.products_wrapper p {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  color: white;
}
.products_wrapper .button {
  margin-top: 10px;
}

.dog_products_cb {
  background-image: url(/images/bg/dog_bg_cb.jpg);
}

.dog_products_ob {
  background-image: url(/images/bg/dog_ob_bg.jpg);
}

.dog_products_ad {
  background-image: url(/images/bg/dog_ad_beef.jpg);
}

.dog_products_fd {
  background-image: url(/images/bg/fd_venison.jpg);
}

.cat_products_cb {
  background-image: url(/images/bg/cat_cb_bg.jpg);
}

.cat_products_ob {
  background-image: url(/images/bg/cat_ob2_bg.jpg);
}

.cat_products_cf {
  background-image: url(/images/bg/cat_cf_green.jpg);
}

.cat_products_fd {
  background-image: url(/images/bg/fd_mussel.jpg);
}

@media screen and (min-width: 899px) {
  .products_wrapper .product_row {
    height: 60vh;
  }
  .products_wrapper .product_row .product_title {
    align-self: center;
    padding-bottom: 0;
    width: clamp(800px, 65%, 1300px);
  }
  .products_wrapper .product_row .product_title h2 {
    font-size: clamp(1.6rem, 6vw + 2.4rem, 3.3rem);
  }
  .products_wrapper .product_row .product_title p {
    font-size: 21px;
  }
  .products_wrapper .product_row .product_preview {
    width: clamp(800px, 65%, 1300px);
  }
  .products_wrapper .product_row .product_preview img {
    height: 95%;
  }
  .products_wrapper .product_row:nth-of-type(odd) .product_preview {
    justify-content: flex-end;
  }
  .products_wrapper .product_row:nth-of-type(even) .product_preview {
    justify-content: flex-start;
  }
}
/* ----------------------------------------------------------------------- 

                        Product Details 

----------------------------------------------------------------------- */
.details_padding {
  padding-top: 38vh;
}

.sub_cat_menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 1vh;
}
.sub_cat_menu .sub_cat_button {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 51px;
  font-family: "Arvo", serif;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 8px;
  color: white;
  border-top: #fff 2px solid;
  border-right: #fff 1px solid;
  border-left: #fff 1px solid;
  border-bottom: #fff 2px solid;
  transition: all 0.2s ease-in-out;
}
.sub_cat_menu :first-child {
  border-left: 2px solid #fff;
}
.sub_cat_menu :last-child {
  border-right: 2px solid #fff;
}

.sub_cat_back {
  width: 51px;
  height: 51px;
  background-image: url(/images/sub_back.png);
  background-size: cover;
  border-top: #fff 2px solid;
  border-right: #fff 1px solid;
  border-left: #fff 1px solid;
  border-bottom: #fff 2px solid;
}

.dog_ad1_bg, .dog_ad1_button, .dog_ad1_button.isselected, .dog_ad1_button:hover {
  background-color: #d67d74;
}

.dog_ad2_bg, .dog_ad2_button, .dog_ad2_button.isselected, .dog_ad2_button:hover {
  background-color: #4e7eb2;
}

.dog_ad3_bg, .dog_ad3_button, .dog_ad3_button.isselected, .dog_ad3_button:hover {
  background-color: #99aa38;
}

.dog_cb1_bg, .dog_cb1_button, .dog_cb1_button.isselected, .dog_cb1_button:hover {
  background-color: #d04728;
}

.dog_cb2_bg, .dog_cb2_button, .dog_cb2_button.isselected, .dog_cb2_button:hover {
  background-color: #7c9532;
}

.dog_cb3_bg, .dog_cb3_button, .dog_cb3_button.isselected, .dog_cb3_button:hover {
  background-color: #d1b20d;
}

.dog_cb4_bg, .dog_cb4_button, .dog_cb4_button.isselected, .dog_cb4_button:hover {
  background-color: #3b9b9b;
}

.dog_cb5_bg, .dog_cb5_button, .dog_cb5_button.isselected, .dog_cb5_button:hover {
  background-color: #c5828d;
}

.fd1_bg, .fd1_button, .fd1_button.isselected, .fd1_button:hover {
  background-color: #659d36;
}

.fd2_bg, .fd2_button, .fd2_button.isselected, .fd2_button:hover {
  background-color: #bd8023;
}

.fd3_bg, .fd3_button, .fd3_button.isselected, .fd3_button:hover {
  background-color: #b29800;
}

.fd4_bg, .fd4_button, .fd4_button.isselected, .fd4_button:hover {
  background-color: #3b9b9b;
}

.fd5_bg, .fd5_button, .fd5_button.isselected, .fd5_button:hover {
  background-color: #288a6c;
}

.dog_ob1_bg, .dog_ob1_button, .dog_ob1_button.isselected, .dog_ob_button:hover {
  background-color: #b1ca67;
}

.cat_cb1_bg, .cat_cb1_button, .cat_cb1_button.isselected, .cat_cb1_button:hover {
  background-color: #9b87c5;
}

.cat_cb2_bg, .cat_cb2_button, .cat_cb2_button.isselected, .cat_cb2_button:hover {
  background-color: #6bb389;
}

.cat_cb3_bg, .cat_cb3_button, .cat_cb3_button.isselected, .cat_cb3_button:hover {
  background-color: #c08d59;
}

.cat_cf1_bg, .cat_cf1_button, .cat_cf1_button.isselected, .cat_cf1_button:hover {
  background-color: #7a932c;
}

.cat_cf2_bg, .cat_cf2_button, .cat_cf2_button.isselected, .cat_cf2_button:hover {
  background-color: #ddaa18;
}

.cat_cf3_bg, .cat_cf3_button, .cat_cf3_button.isselected, .cat_cf3_button:hover {
  background-color: #e3743a;
}

.cat_cf4_bg, .cat_cf4_button, .cat_cf4_button.isselected, .cat_cf4_button:hover {
  background-color: #d15458;
}

.cat_cf5_bg, .cat_cf5_button, .cat_cf5_button.isselected, .cat_cf5_button:hover {
  background-color: #336ca8;
}

.cat_ob1_bg, .cat_ob1_button, .cat_ob1_button.isselected, .cat_ob1_button:hover {
  background-color: #db8376;
}

.cat_ob2_bg, .cat_ob2_button, .cat_ob2_button.isselected, .cat_ob2_button:hover {
  background-color: #68a2cd;
}

.product_d_header {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
  align-items: start;
  padding-top: 12vh;
}

.lamb_header {
  background-image: url(/images/bg/lamb_header.jpg);
}

.salmon_header {
  background-image: url(/images/bg/fish_header.jpg);
}

.duck_header {
  background-image: url(/images/bg/duck_header.jpg);
}

.chicken_header {
  background-image: url(/images/bg/chicken_header.jpg);
}

.red_header {
  background-image: url(/images/bg/dog_bg_cb5.jpg);
}

.dog_ad1_header {
  background-image: url(/images/bg/dog_ad_venison.jpg);
}

.dog_ad2_header {
  background-image: url(/images/bg/dog_ad_beef.jpg);
}

.dog_ad3_header {
  background-image: url(/images/bg/dog_ad_green.jpg);
}

.dog_ob1_header {
  background-image: url(/images/bg/dog_ob_bg.jpg);
}

.cat_salmon_header {
  background-image: url(/images/bg/cat_cb_bg.jpg);
}

.cat_chicken_header {
  background-image: url(/images/bg/cat_chicken_header.jpg);
}

.cat_venison_header {
  background-image: url(/images/bg/cat_cb_venison.jpg);
}

.cat_ob1_header {
  background-image: url(/images/bg/cat_ob1_bg.jpg);
}

.cat_ob2_header {
  background-image: url(/images/bg/cat_ob2_bg.jpg);
}

.cat_cf1_header {
  background-image: url(/images/bg/cat_cf_green.jpg);
}

.cat_cf2_header {
  background-image: url(/images/bg/cat_cf_white.jpg);
}

.cat_cf3_header {
  background-image: url(/images/bg/cat_cf_og.jpg);
}

.cat_cf4_header {
  background-image: url(/images/bg/cat_cf_red.jpg);
}

.cat_cf5_header {
  background-image: url(/images/bg/cat_cf_blue.jpg);
}

.fd_chicken_header {
  background-image: url(/images/bg/fd_chicken.jpg);
}

.fd_duck_header {
  background-image: url(/images/bg/fd_duck.jpg);
}

.fd_venison_header {
  background-image: url(/images/bg/fd_venison.jpg);
}

.fd_salmon_header {
  background-image: url(/images/bg/fd_salmon.jpg);
}

.fd_green_header {
  background-image: url(/images/bg/fd_mussel.jpg);
}

.stamp_lamb {
  background-image: url(/images/products/stamp_lamb.svg);
}

.stamp_salmon {
  background-image: url(/images/products/stamp_salmon.svg);
}

.stamp_duck {
  background-image: url(/images/products/stamp_duck.svg);
}

.stamp_chicken {
  background-image: url(/images/products/stamp_chicken.svg);
}

.stamp_red {
  background-image: url(/images/products/stamp_red.svg);
}

.stamp_venison {
  background-image: url(/images/products/stamp_venison.svg);
}

.stamp_mussel {
  background-image: url(/images/products/stamp_mussel.svg);
}

.isselected {
  pointer-events: none;
}

.transparent {
  background-color: hsla(0, 0%, 0%, 0.4);
}

.darker_bg {
  background-color: rgba(0, 0, 0, 0.16);
  padding: 48px 0;
}

.details_container {
  padding: 48px 0;
}

.product_features_flex {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}
.product_features_flex .feature_container {
  width: calc(50% - 2px);
  height: auto;
}
.product_features_flex .feature_container img {
  width: 100%;
}

.product_icon_flex {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.product_icon_flex .icon_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  flex: 1;
  gap: 12px;
}
.product_icon_flex .icon_container .product_icon {
  flex: 1;
  max-width: 100px;
}
.product_icon_flex .icon_container .product_icon img {
  width: 100%;
}
.product_icon_flex .icon_container .icon_text {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.product_icon_flex .icon_container .icon_text h6, .product_icon_flex .icon_container .icon_text p {
  color: white;
}
.product_icon_flex .icon_container .icon_text h6 {
  margin-bottom: 8px;
}

.product_ingedient_flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 40px 0;
  align-items: start;
  justify-content: start;
  row-gap: 20px;
}
.product_ingedient_flex .ingedient_container {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  gap: 8px;
  align-items: center;
}
.product_ingedient_flex .ingedient_container .ingedient_icon {
  flex: 1;
}
.product_ingedient_flex .ingedient_container .ingedient_icon img {
  width: 100%;
}
.product_ingedient_flex .ingedient_container .ingedient_text {
  flex: 1;
  display: flex;
}
.product_ingedient_flex .ingedient_container .ingedient_text p {
  color: white;
  text-align: left;
}

.product_feeding_flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
  align-items: start;
  justify-content: center;
}

.feeding_grid {
  display: grid;
  grid-auto-flow: row;
  justify-content: stretch;
  align-content: stretch;
  grid-gap: 0;
  color: white;
  border: solid 1px white;
}
.feeding_grid div {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 400;
  justify-content: center;
  align-content: center;
  border: solid 1px white;
}
.feeding_grid div p, .feeding_grid div small {
  color: white;
}
.feeding_grid div p {
  font-size: 15px;
}
.feeding_grid div img {
  max-height: 40px;
  margin-bottom: 4px;
}
.feeding_grid .feeding_text {
  position: relative;
  grid-row-end: span 1;
  grid-column-end: span 3;
  align-items: start;
  justify-self: start;
  padding: 30px 20px 30px 20px;
  text-align: left;
}
.feeding_grid .feeding_text h6, .feeding_grid .feeding_text p {
  color: white;
}
.feeding_grid .feeding_text p {
  font-size: 16px;
}
.feeding_grid .feeding_text h6 {
  margin-bottom: 8px;
}
.feeding_grid .table_pet_title {
  text-align: left;
  padding: 30px 20px;
  justify-content: start;
}
.feeding_grid .table_pet, .feeding_grid .table_cup {
  font-size: 14px;
  font-weight: 400;
  color: white;
}
.feeding_grid .table_pet strong, .feeding_grid .table_cup strong {
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.feeding_grid .table_pet small, .feeding_grid .table_cup small {
  font-size: 14px;
  font-weight: 400;
  color: white;
}
.feeding_grid .table_pet_2 {
  grid-row-end: span 2;
}
.feeding_grid .table_pet_3 {
  grid-row-end: span 3;
}
.feeding_grid .table_pet_4 {
  grid-row-end: span 4;
}
.feeding_grid .table_pet_8 {
  grid-row-end: span 8;
}
.feeding_grid .extra {
  position: relative;
  font-size: 14px;
  margin-top: 20px;
  text-align: left;
  line-height: 18px;
}

.feeding_grid_cb_dog {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr 1fr 1fr 1fr 1fr;
}
.feeding_grid_cb_dog .feeding_text {
  grid-row-end: span 1;
  grid-column-end: span 2;
}

.feeding_grid_cb_cat {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr 1fr 1fr 1fr 1fr 1fr;
}
.feeding_grid_cb_cat .feeding_text {
  grid-row-end: span 1;
  grid-column-end: span 2;
}

.feeding_grid_ob_cat {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.feeding_grid_ob_cat .feeding_text {
  grid-row-end: span 1;
  grid-column-end: span 3;
}

.feeding_grid_ob_dog {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.feeding_grid_ob_dog .feeding_text {
  grid-row-end: span 1;
  grid-column-end: span 3;
}

.feeding_grid_fd {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 2fr 2fr 2fr;
  grid-auto-flow: row;
  justify-content: stretch;
  align-content: stretch;
  grid-gap: 0;
  color: white;
  border: solid 2px white;
}
.feeding_grid_fd div {
  border: solid 1px white;
}
.feeding_grid_fd div p, .feeding_grid_fd div small {
  color: white;
}
.feeding_grid_fd div p {
  font-size: 14px;
}
.feeding_grid_fd div img {
  max-height: 80px;
  margin-bottom: 6px;
}
.feeding_grid_fd .table_pet_title {
  grid-row-end: span 1;
  grid-column-end: span 2;
}
.feeding_grid_fd .feeding_text {
  grid-row-end: span 1;
  grid-column-end: span 3;
}
.feeding_grid_fd .table_pet {
  grid-column-end: span 2;
  padding: 20px 0;
}

.feeding_grid_cf {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 2fr 2fr 2fr;
  grid-auto-flow: row;
  justify-content: stretch;
  align-content: stretch;
  border: solid 2px white;
}
.feeding_grid_cf div {
  border: none;
}
.feeding_grid_cf div p, .feeding_grid_cf div small {
  color: white;
}
.feeding_grid_cf div p {
  font-size: 14px;
}
.feeding_grid_cf div img {
  max-height: 80px;
  margin-bottom: 6px;
}
.feeding_grid_cf .table_pet_title {
  grid-row-end: span 1;
  grid-column-end: span 2;
}
.feeding_grid_cf .table_pet {
  grid-column-end: span 2;
  padding: 20px;
}
.feeding_grid_cf .extra {
  padding: 0pc 20px 20px;
  align-self: end;
  margin-top: 0;
}

.product_virtue {
  width: 100%;
  padding: 30px 20px;
  border: solid 2px white;
  grid-auto-rows: auto;
}
.product_virtue h6 {
  color: white;
  margin-bottom: 8px;
}
.product_virtue .product_table {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.product_virtue .product_table th {
  text-align: left;
  color: white;
}
.product_virtue .product_table td {
  text-align: right;
  color: white;
}
.product_virtue .extra {
  display: block;
  position: relative;
  font-size: 14px;
  margin-top: 24px;
  text-align: left;
  line-height: 18px;
}

.product_details_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product_details_flex * {
  color: white;
}
.product_details_flex h5 {
  margin-bottom: 10px;
}
.product_details_flex .group_photo {
  width: 100%;
  height: auto;
  margin-bottom: 70px;
}
.product_details_flex .group_photo img {
  width: 100%;
  height: auto;
}
.product_details_flex .stamp {
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  /* min-width: 140px; */
  /* min-height: 140px; */
  /* max-width: 190px; */
  /* max-height: 190px; */
  z-index: 88;
  transform: translate(1vw, -21vw) rotate(180deg) scale(0.2);
  transition: all 0.3s ease-out;
  opacity: 0;
}
.product_details_flex .active {
  transform: translate(1vw, -21vw) rotate(-18deg) scale(1);
  opacity: 1;
}
.product_details_flex .product_content {
  width: 100%;
  margin-bottom: 50px;
}
.product_details_flex .product_content .second_p {
  margin-top: 50px;
}

.other_products .other_title {
  text-align: center;
  margin-bottom: 30px;
}
.other_products .other_title p {
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 700;
  font-size: 16px;
}
.other_products .other_item {
  width: 46%;
  margin: 10px 0;
}
.other_products .other_item img {
  width: 100%;
  height: auto;
}
.other_products .other_item p {
  color: white;
  text-align: center;
}

@media screen and (min-width: 899px) {
  .details_padding {
    padding-top: 52vh;
  }
  .details_container {
    padding: 100px 0;
  }
  .sub_cat_menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-bottom: 0;
  }
  .sub_cat_menu .sub_cat_button {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    height: 60px;
    font-family: "Arvo", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    padding: 12px 16px;
    color: white;
    border-top: #fff 2px solid;
    border-right: #fff 1px solid;
    border-left: #fff 1px solid;
    border-bottom: none;
  }
  .sub_cat_menu :first-child {
    border-left: 2px solid #fff;
  }
  .sub_cat_menu :last-child {
    border-right: 2px solid #fff;
  }
  .sub_cat_back {
    width: 60px;
    height: 60px;
  }
  .lamb_header h3 {
    margin-right: 14px;
    margin-bottom: 10vh;
  }
  .product_d_header {
    align-items: center;
    padding-top: 0;
  }
  .product_features_flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: none;
    padding: 0 80px 20px 80px;
  }
  .product_features_flex .feature_container {
    width: auto;
    height: auto;
  }
  .product_features_flex .feature_container img {
    width: 100%;
  }
  .product_icon_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px;
    align-items: start;
    justify-content: center;
    gap: 36px;
  }
  .product_icon_flex .icon_container {
    flex: calc(50% - 18px);
    align-items: center;
    gap: 14px;
  }
  .product_icon_flex .icon_container .product_icon {
    flex: 1;
  }
  .product_icon_flex .icon_container .icon_text {
    flex: 3;
  }
  .product_ingedient_flex {
    flex-direction: row;
    justify-content: flex-start;
    padding: 40px;
    gap: 0;
  }
  .product_ingedient_flex .ingedient_container {
    flex-direction: row;
    width: 20%;
    height: auto;
    flex: none;
    gap: 12px;
  }
  .product_ingedient_flex .ingedient_container .ingedient_icon {
    flex: 1;
  }
  .product_ingedient_flex .ingedient_container .ingedient_text {
    flex: 1;
    text-align: left;
    text-transform: capitalize;
  }
  .product_details_flex {
    align-items: flex-start;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .product_details_flex .group_photo {
    width: 50%;
    height: auto;
    max-width: 600px;
    margin-bottom: 0;
  }
  .product_details_flex .stamp {
    width: 150px;
    height: 150px;
    transform: translate(-30%, -90%) rotate(120deg) scale(1.3);
  }
  .product_details_flex .active {
    transform: translate(-30%, -90%) rotate(-18deg) scale(1);
    opacity: 1;
  }
  .product_details_flex .product_content {
    width: 50%;
    max-width: 600px;
    margin-top: 60px;
    padding-left: 2%;
    padding-right: 5%;
  }
  .product_feeding_flex {
    flex-direction: row;
  }
  .product_virtue {
    flex: 1;
    align-self: stretch;
    min-width: 190px;
  }
  .product_virtue h6 {
    margin-bottom: 16px;
  }
  .other_products .other_item {
    width: 30%;
    max-width: 380px;
  }
  .feeding_grid {
    flex: 5;
    grid-auto-flow: column;
    align-self: stretch;
  }
  .feeding_grid div p {
    font-size: 14px;
  }
  .feeding_grid div img {
    max-height: 40px;
    margin-bottom: 4px;
  }
  .feeding_grid .feeding_text {
    position: relative;
    padding: 30px 20px 30px 20px;
  }
  .feeding_grid .feeding_text h6 {
    margin-bottom: 8px;
  }
  .feeding_grid .table_pet_2 {
    grid-row-end: span 1;
    grid-column-end: span 2;
  }
  .feeding_grid .table_pet_3 {
    grid-row-end: span 1;
    grid-column-end: span 3;
  }
  .feeding_grid .table_pet_4 {
    grid-row-end: span 1;
    grid-column-end: span 4;
  }
  .feeding_grid .table_pet_8 {
    grid-row-end: span 1;
    grid-column-end: span 8;
  }
  .feeding_grid_cb_dog {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  }
  .feeding_grid_cb_dog .feeding_text {
    grid-row-end: span 2;
    grid-column-end: span 1;
  }
  .feeding_grid_cb_cat {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr;
  }
  .feeding_grid_cb_cat .feeding_text {
    grid-row-end: span 2;
    grid-column-end: span 1;
  }
  .feeding_grid_ob_cat {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .feeding_grid_ob_cat .feeding_text {
    grid-row-end: span 3;
    grid-column-end: span 1;
  }
  .feeding_grid_ob_dog {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .feeding_grid_ob_dog .feeding_text {
    grid-row-end: span 3;
    grid-column-end: span 1;
  }
  .feeding_grid_cf {
    flex: 3;
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    align-self: stretch;
  }
  .feeding_grid_cf div p {
    font-size: 14px;
  }
  .feeding_grid_cf div img {
    max-height: 60px;
    margin-bottom: 10px;
  }
  .feeding_grid_cf .table_pet_title {
    grid-row-end: span 1;
    grid-column-end: span 3;
  }
  .feeding_grid_cf .table_pet {
    grid-column-end: span 1;
    padding: 0px 30px;
  }
  .feeding_grid_cf .extra {
    grid-row-end: span 1;
    grid-column-end: span 3;
  }
}
/* ----------------------------------------------------------------------- 

                        Virtue 

----------------------------------------------------------------------- */
.virtue_header {
  background-image: url(/images/bg/foods_header_m.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
}

.virtue_wrapper {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  align-items: center;
  width: 100vw;
  background-color: white;
  background-image: url(/images/bg/virtue_bg_m.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.virtue_wrapper .flex_row {
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.virtue_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border: solid 2px #94C83C;
  padding: 2vw;
}
.virtue_flex p {
  transform: translateY(-20px);
  color: #94C83C;
}

.virtue_title {
  z-index: 9;
  transform: translateY(-28px);
}
.virtue_title h3 {
  color: #94C83C;
  background-color: white;
}
.virtue_title h3 span {
  color: #94C83C;
  background-color: white;
  font-family: "Arvo", serif;
  text-transform: uppercase;
  font-weight: 700;
}

.virtue_grain, .virtue_premium, .virtue_protein, .virtue_calories, .virtue_probiotics, .virtue_vitamin, .virtue_artifical {
  width: 80vw;
  max-width: 600px;
  margin: 40px 0;
}

@media screen and (min-width: 899px) {
  .virtue_header {
    background-image: url(/images/bg/foods_header.jpg);
    background-size: cover;
  }
  .virtue_wrapper {
    background-image: url(/images/bg/virtue_bg.jpg);
    background-size: cover;
  }
  .virtue_flex {
    align-self: stretch;
  }
  .virtue_title {
    transform: translateY(-48px);
  }
  .virtue_title h2 {
    font-size: 48px;
    line-height: 50px;
  }
  .flex_row {
    flex-wrap: nowrap;
  }
  .virtue_grain, .virtue_premium {
    width: 40vw;
    max-width: 400px;
    margin: 2vw;
  }
  .virtue_protein, .virtue_calories, .virtue_probiotics {
    width: 30vw;
    max-width: 280px;
    margin: 2vw;
  }
  .virtue_vitamin, .virtue_artifical {
    width: 70vw;
    max-width: 800px;
    margin: 2vw;
  }
}
/* ----------------------------------------------------------------------- 

                        Testimonals

----------------------------------------------------------------------- */
.testimon_header {
  background-image: url(/images/bg/testi_header_m.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
}
.testimon_header h1 {
  font-size: 42px;
}

.testimon_wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  align-items: center;
  width: 100vw;
  background-color: #EDE9D3;
}
.testimon_wrapper .testimon_flex {
  display: flex;
  width: 80%;
  max-width: 1200px;
  justify-content: center;
  margin: 80px 0 0 0;
}
.testimon_wrapper .testimon_flex .user_photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 3%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.testimon_wrapper .testimon_flex .user_comment {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.testimon_wrapper .testimon_flex .user_comment .quote_icon {
  width: 30px;
  height: 24px;
  background-color: #94C83C;
  -webkit-mask: url(/images/quote.svg) no-repeat 100% 100%;
  mask: url(/images/quote.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.testimon_wrapper .testimon_flex .user_comment h5 {
  text-transform: none;
  margin: 6px 0;
  color: #94C83C;
}
.testimon_wrapper .testimon_flex .user_comment p {
  color: #94C83C;
}

.user_01 {
  background-image: url(/images/testimonals/people_4.jpg);
}

.user_02 {
  background-image: url(/images/testimonals/people_3.jpg);
}

.user_03 {
  background-image: url(/images/testimonals/people_2.jpg);
}

.user_04 {
  background-image: url(/images/testimonals/people_5.jpg);
}

.user_05 {
  background-image: url(/images/testimonals/people_1.jpg);
}

.testimon_flex:nth-of-type(odd) {
  flex-direction: column;
  align-items: flex-start;
}

.testimon_flex:nth-of-type(even) {
  flex-direction: column;
  align-items: flex-end;
}
.testimon_flex:nth-of-type(even) .user_comment {
  align-items: flex-end;
  text-align: right;
}

@media screen and (min-width: 899px) {
  .testimon_header {
    background-image: url(/images/bg/testi_2.jpg);
  }
  .testimon_header h1 {
    font-size: 102px;
  }
  .testimon_wrapper .testimon_flex .user_comment {
    width: 60%;
  }
  .testimon_flex:nth-of-type(odd) {
    flex-direction: row;
  }
  .testimon_flex:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
/* ----------------------------------------------------------------------- 

                        About 

--------------------------------------------------------------------------- */
.about_header {
  background-image: url(/images/bg/about_header.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
}

.about_bg {
  background-color: #EDE9D3;
}

.about_wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  align-items: center;
}
.about_wrapper .about_flex {
  width: 100%;
  max-width: 750px;
  margin-bottom: 90px;
  text-align: center;
}
.about_wrapper .about_flex h3, .about_wrapper .about_flex p {
  color: #94C83C;
}
.about_wrapper .about_flex h3 {
  margin-bottom: 16px;
}
.about_wrapper .about_flex h6 {
  color: #94C83C;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.about_mail {
  background-color: white;
}
.about_mail h4 {
  color: #94C83C;
}

/* ----------------------------------------------------------------------- 

                        Stores 

----------------------------------------------------------------------- */
.store_header {
  background-image: url(/images/bg/about_header.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
}

.store_bg {
  background-color: #EDE9D3;
}

.store_wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 0px;
  align-items: center;
}
.store_wrapper .store_flex {
  width: 100%;
  max-width: 750px;
  margin-bottom: 90px;
  text-align: center;
}
.store_wrapper .store_flex h5 {
  color: #94C83C;
}
.store_wrapper .store_flex h6 {
  color: #94C83C;
  line-height: 30px;
  text-transform: capitalize;
}

/* ----------------------------------------------------------------------- 

                        Contact

----------------------------------------------------------------------- */
.contact_header {
  background-image: url(/images/bg/contact_header_m.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: fixed;
}

.contact_bg {
  background-color: #EDE9D3;
}

.contact_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0 auto;
}

.location {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  color: White;
  background-color: #94C83C;
  padding: 4px 16px;
  border-radius: 16px;
  margin-bottom: 4px;
}

.contact_flex {
  width: 80%;
  max-width: 400px;
  margin-bottom: 80px;
  text-align: center;
}
.contact_flex h5, .contact_flex p {
  color: #94C83C;
}
.contact_flex h6 {
  color: #94C83C;
  line-height: 30px;
  text-transform: capitalize;
  color: #94C83C;
}

@media screen and (min-width: 899px) {
  .contact_header {
    background-image: url(/images/bg/contact_header.jpg);
  }
  .contact_flex {
    width: 50%;
  }
}
/* ----------------------------------------------------------------------- 

                        @media 

----------------------------------------------------------------------- */
/* start of medium tablet styles *//*# sourceMappingURL=meadow_basic.css.map */