/*
CSS CREATED BY Kacper Grodzki - modek
© 2022 for zph wojna sp. z o.o
*/
/* GLOBAL*/
*{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-moz-selection{
  color: #fff;
  background: #598953;
}
::selection{
  color: #fff;
  background: #598953;
}
html *,
html *:before,
html *:after {
  box-sizing: inherit;
}
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
.clear_both{
  clear: both;
}
h1{
  text-decoration: none;
  font-weight: 400;
  font-size: 100%;
}
/* COLORS */
:root {
  --darkgreen: #2c4c3c;
  --green: #598953;
  --gold: #f2be30;
}
/* FONTS */
@font-face {
	src: url('fonts/Dynalight.ttf');
	font-family:'Dynalight';
	font-style: normal;
}
@font-face {
	src: url('fonts/Bahnschrift.ttf');
	font-family:'Bahnschrift';
	font-style: normal;
}
/* LOADER */
#preload{
  margin: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background: #2c4c3c;
  color: white;
}
.loading{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width:100%;
}
.loading svg{
  fill: var(--gold);
  animation-name: loader;
  animation-duration: .5s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* NAVBAR */
#navbar{
  width: 100%;
  margin: 0;
  background-color:  rgba(44,76,63,0.8);
  color: white;
  position: fixed;
  z-index: 99;
  transition: .5s;
}
#navbarback{
  width: 100%;
  margin: 0;
  background-color:  rgba(44,76,63);
  display: none;
}
.flags{
  width: 10%;
  float: left;
  text-align: center;
  position: absolute;
}
.flags img,
.flags_mobile img{
  width: 3rem;
  border-radius: 50%;
  padding-top: 3%;
  padding-bottom: 3%;
  margin-left: 3%;
  margin-top: 3.5%;
  margin-right: 3%;
  display: inline-block;
  transition: .5s;
}
.flags img:hover,
.flags_mobile img:hover{
  cursor: pointer;
}
.nav_content{
  width: 95%;
  float: left;
  margin-left: 3%;
  text-align: center;
}
.nav_content ul{
  list-style-type: none;
  text-align: center;
  font-size: 200%;
  font-family: "Dynalight";
  margin-left: 5%;
  margin-right: 5%;
  display: inline;
  transition: .5s;
}
.nav_content ul li{
  color: white;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 1%;
  padding-bottom: 1%;
  display: inline-block;
}
.nav_content ul li:hover{
  cursor: pointer;
  transition: .5s;
  background-color:  rgba(44,76,63,0.95);
  color: var(--gold);
}
.nav_mobile,
.nav_mobile_content,
.nav_icon{
  display: none;
}
@media only screen and (max-width: 1200px) {
  .flags img {
    width: 2rem;
  }
  .nav_content ul{
    font-size: 150%;
  }
}
@media only screen and (max-width: 900px) {
  .flags img {
    width: 1.7rem;
  }
  .nav_content ul{
    font-size: 130%;
  }
}
.nav_mobile{
  width: 100%;
  text-align: center;
}
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 4;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 4;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}
@media only screen and (max-width: 720px) {
  .flags img,.nav_content ul {
    display: none;
  }
  .nav_icon,
  .nav_mobile,
  .nav_mobile_content{
    display: block;
  }
  #navbarback{
    display: block;
  }
}
.menuOn{
  left: 0%;
  transition: .5s;
}
.menuOff{
  left: -150%;
  transition: .5s;
}
.nav_mobile_content{
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 99;
  transition: .5s;
  background-color: rgba(44,76,63,0.8);
}
.nav_mobile_content ul li{
  font-family: "Dynalight";
  font-size: 180%;
  letter-spacing: 1rem;
  padding-top: 3%;
  transition: .5s;
  padding-bottom: 3%;
}
.nav_mobile_content ul li:hover{
  cursor: pointer;
  color: var(--gold);
  background-color: rgba(44,76,63,0.95);
}
.padding_top{
  padding-top: 6vh;
}
/* ABOUT */
#about{
  width: 100%;
  margin: 0;
}
#about h1{
  font-family: "Dynalight";
  font-size: 300%;
  letter-spacing: 1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1%;
  color: var(--green);
  text-shadow: 2px 2px 10px rgba(0, 0, 0,.4);
  transition: .5s;
}
#about hr{
  height: 3px;
  background-color: var(--darkgreen);
  margin-bottom: 1%;
}
.about_content div{
  float: left;
  width: 48%;
  margin: 1%;
  transition: .5s;
  min-height: 30vh;
}
.about_content{
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.about_content div:nth-child(1),
.about_content div:nth-child(4){
  transition: .5s;
  text-align: justify;
  text-indent: 5%;
}
.about_content div:nth-child(1)::first-letter,
.about_content div:nth-child(4)::first-letter{
  color: var(--darkgreen);
  font-size: 200%;
  line-height: 0;
  font-weight: 600;
  font-family: "Dynalight";
}
.about_content div:nth-child(3),
.about_content div:nth-child(2){
  transition: .5s;
  text-align: justify;
  text-indent: 5%;
  background-color: #f2be30;
}
.about_content div:nth-child(3){
  background-image: url("assets/about_1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about_content div:nth-child(2){
  background-image: url("assets/about_2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about_content span{
  font-size: 130%;
  font-family:'Bahnschrift';
  color: black;
  transition: .5s;
}
.about_content img{
  width: 50%;
  transition: .5s;
  margin: 0 auto;
}
/*#about div{
  float: left;
  margin: 0;
  min-height: 30vh;
}
#about div span{
  font-size: 140%;
  font-family:'Bahnschrift';
  color: black;
  transition: .5s;
}
#about div div:nth-child(1) div,
#about div div:nth-child(4) div{
  width: 90%;
  transition: .5s;
  margin-left: 5%;
}
#about div div:nth-child(1),
#about div div:nth-child(4){
  width: 50%;
  transition: .5s;
  text-align: justify;
  text-indent: 5%;
}
#about div div:nth-child(3),
#about div div:nth-child(2){
  width: 50%;
  transition: .5s;
  margin: 0 auto;
  text-align: center;
}
#about div div img{
  width: 50%;
  transition: .5s;
  margin: 0 auto;
}*/
@media screen and (max-width: 1500px) {
  .about_content div{
    transition: .5s;
    min-height: 45vh;
  }
}
@media only screen and (max-width: 1200px) {
  #about div span{
    font-size: 120%;
    transition: .5s;
  }
}
@media only screen and (max-width: 900px) {
  #about div span{
    font-size: 110%;
    transition: .5s;
  }
  #about div{
    clear: both;
    min-height: 20vh;
  }
  #about div div:nth-child(3){
    display: none;
  }
  #about div div:nth-child(2){
    margin-bottom: 2%;
  }
  #about div div:nth-child(1),
  #about div div:nth-child(4){
    width: 98%;
    transition: .5s;
  }
  #about div div:nth-child(3),
  #about div div:nth-child(2){
    width: 98%;
    transition: .5s;
  }
}
@media only screen and (max-width: 680px) {
  #about div span{
    font-size: 100%;
    transition: .5s;
  }
}
/*opinions*/
#opinions{
  min-height: 30vh;
  width: 100%;
  margin: 0;
}
#opinions h1{
  font-family: "Dynalight";
  font-size: 300%;
  letter-spacing: 1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1%;
  color: var(--green);
  text-shadow: 2px 2px 10px rgba(0, 0, 0,.4);
  transition: .5s;
}
#opinions hr{
  height: 3px;
  background-color: var(--darkgreen);
}
.opinions_table{
  font-size: 120%;
  transition: .5s;
  color: black;
  font-family:'Bahnschrift';
}
.opinions_table tr td:nth-child(2){
  font-size: 220%;
  font-weight: 500;
  color: var(--darkgreen);
  font-family:'Dynalight';
}
.opinions_table tr td:nth-child(1) img {
  width: 50px;
  color:#f2be30;
  margin: 0 auto;
}
.opinions_table tr:nth-child(1) td:nth-child(1) {
  text-align: center;
  color: var(--gold);
  margin: 0 auto;
}
.opinions_table tr:nth-child(2) td{
  font-size: 120%;
  color: black;
  text-indent: 2%;
  padding-left: 5%;
  padding-right: 5%;
  font-family:'Bahnschrift';
}
@media only screen and (max-width: 680px) {
  .opinions_table{
    font-size: 80%;
    transition: .5s;
  }
}
/*recipes & products*/
.recipes_en_comment{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family:'Bahnschrift';
  font-size: 80%;
}
#recipe_item{
  margin-top: 2%;
  margin-bottom: 2%;
  min-height: 60vh;
}
.recipe_item_title{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: black;
  font-family:'Bahnschrift';
  font-size: 180%;
  letter-spacing: .1rem;
}
.recipe_item_date{
  color: darkgray;
  margin: 0 auto;
  width: 80%;
  font-family: "Dynalight";
}
.recipe_item_content{
  width: 80%;
  padding-top: 1%;
  margin: 0 auto;
}
.recipe_item_content img{
  max-width: 90%;
  height: auto !important;
}
#recipes,
#products{
  margin-top: 2%;
  min-height: 30vh;
}
.new_recipes,
.new_products{
  min-height: 60vh;
}
.new_recipes h1,
.new_products h1{
  font-family: "Dynalight";
  font-size: 300%;
  letter-spacing: 1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1%;
  color: var(--green);
  text-shadow: 2px 2px 10px rgba(0, 0, 0,.4);
  transition: .5s;
}
@media only screen and (max-width: 680px) {
  .new_recipes h1,
  .new_products h1{
    font-size: 200%;
    transition: .5s;
    letter-spacing: .4rem;
  }
}
.new_recipes hr,
.new_products hr{
  height: 3px;
  background-color: var(--darkgreen);
}
.recipes_container,
.products_container{
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding-top: 2%;
  text-align: center;
  padding-bottom: 2%;

}
.recipes_container li{
  display: inline-block;
  min-height: 15vh;
  margin-top: .1rem;
  position: relative;
  margin-bottom: .1rem;
  width: 25%;
  transition: .5s;
}
.recipes_container li img{
  width: 90%;
  background-color: var(--green);
  opacity: .95;
  height: 250px;
  object-fit: cover;
  transition: .5s;
}
.recipes_container li img:hover{
  opacity: 1;
  transition: .5s;
  cursor: pointer;
}
.recipes_container li span{
  z-index: 2;
  position: absolute;
  background-color: #2c4b3b78;
  bottom: 2%;
  left: 0;
  width: 80%;
  padding: 5%;
  margin-left: 5%;
  color: #fff;
  font-family:'Bahnschrift';
}
.recipes_button{
  width: 100%;
  margin-bottom: 2%;
  text-align: center;
  display: flex;
  transition: .5s;
  transform: scale(.8);
  justify-content: center;
}
.recipes_button_text {
    display: flex;
    padding: 10px 45px;
    text-decoration: none;
    font-family: "Dynalight";
    font-size: 40px;
    color: white;
    background: var(--darkgreen);
    transition: 1s;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.13);
    transform: skewX(-15deg);
}
.recipes_button_text:focus {
   outline: none;
}
.recipes_button_text:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 var(--green);
}
.recipes_button_text span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}
.recipes_button_text:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}
.recipes_button_text span {
    transform: skewX(15deg)
}
.recipes_button_text span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
}
path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}
path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}
.recipes_button_text:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}
.recipes_button_text:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}
.recipes_button_text:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}
@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: var(--green);
    }
    100% {
        fill: white;
    }
}

[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}
[data-pagination] {
  font-size: 8pt;
  line-height: 1;
  font-weight: 400;
  font-family:'Bahnschrift';
  -webkit-text-size-adjust: 100%;
  margin: 1em auto;
  text-align: center;
  transition: font-size 0.2s ease-in-out;
}
[data-pagination] ul {
  list-style-type: none;
  display: inline;
  font-size: 100%;
  margin: 0;
  padding: 0.5em;
}
[data-pagination] ul li {
  display: inline-block;
  font-size: 100%;
  width: auto;
  border-radius: 3px;
}
[data-pagination] > a {
  font-size: 140%;
}
[data-pagination] a {
  color: var(--darkgreen);
  font-size: 130%;
  text-decoration: none;
  padding: 0.5em;
}
[data-pagination] a:focus,
[data-pagination] a:hover {
  color: var(--gold);
}
[data-pagination] li.current {
  background: rgba(0, 0, 0, 0.1);
}
/* Disabled & Hidden Styles */
[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 350px) {
  [data-pagination] {
    font-size: 12pt;
  }
}
@media (min-width: 500px) {
  [data-pagination] {
    font-size: 14pt;
  }
}
@media (min-width: 700px) {
  [data-pagination] {
    font-size: 16pt;
  }
}
@media (min-width: 900px) {
  [data-pagination] {
    font-size: 17pt;
  }
}
.recipes_pagination{
  display: none;
  transition: .5s;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(44,76,63,0.8);
}
.recipes_pagination_dots:hover{
  cursor: pointer;
}
.recipes_pagination a{
  position: absolute;
  right: 1%;
  top: 1%;
  color: #fff;
  font-size: 250%;
  transition: .5s;
  font-family:'Bahnschrift';
}
.recipes_pagination a:hover{
  cursor: pointer;
  transition: .5s;
  color: #b6b6b6;
}
.recipes_pagination form{
  margin-top: 20%;
  width: 100%;
}
.recipes_pagination input[type="number"]{
  width: 80%;
  background: transparent;
  border: 0;
  color: var(--gold);
  height: 6vh;
  text-align: center;
  font-size: 150%;
  font-family:'Bahnschrift';
  border-bottom: 2px solid var(--gold);
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.recipes_pagination input[type="submit"]{
  width: 10%;
  background: transparent;
  color: var(--gold);
  height: 6vh;
  text-align: center;
  font-size: 150%;
  font-family:'Bahnschrift';
  border: 3px solid var(--gold);
  transition: .5s;
}
.recipes_pagination input[type="submit"]:hover{
  transition: .5s;
  cursor: pointer;
  background-color: var(--gold);
  color: var(--darkgreen);
}
@media only screen and (max-width: 1200px) {
  .recipes_container li{
    width: 35%;
    transition: .5s;
  }
  .recipes_container li:nth-child(9){
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .recipes_container li{
    width: 45%;
    transition: .5s;
  }
  .recipes_button {
    transform: scale(.7);
    transition: .5s;
  }
  .recipes_pagination form{
    margin-top: 40%;
  }
  .products_item{
    transition: .5s;
    font-size: 80%;
  }
}
@media only screen and (max-width: 680px) {
  .recipes_container li{
    width: 65%;
    transition: .5s;
  }
  .recipes_container li:nth-child(9){
    display: inline-block;
  }
  .recipes_button {
    transform: scale(.6);
    transition: .5s;
  }
  .products_item{
    transition: .5s;
    font-size: 70%;
  }
  .products_item td{
    text-align: center;
    margin: 0 auto;
  }
  .products_item_left img{
    transition: .5s;
    max-height: 200px !important;
  }
  .products_item_left{
    transition: .5s;
    width: 32% !important;
  }
  .products_item_right{
    transition: .5s;
    width: 67% !important;
  }
}
@media only screen and (max-width: 420px) {
  .recipes_container li{
    width: 85%;
    transition: .5s;
  }
  .products_item{
    transition: .5s;
    font-size: 60%;
  }
  .products_item_left img{
    transition: .5s;
    max-height: 220px !important;
  }
  .products_item_left{
    transition: .5s;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto;
    border: 0 !important;
    clear: both;
  }
  .products_item_right{
    transition: .5s;
    width: 100% !important;
    clear: both;
  }
}
.products_item_container{
  margin-bottom: 2%;
}
.products_item_left,
.products_item_right{
  float: left;
}
.products_item_right{
  width: 48%;
  margin: 0;
  padding: 0;
  transition: .5s;
}
.products_item_left{
  border-right: 4px solid var(--darkgreen);
  width: 48%;
  padding: 0;
  margin: 0;
  text-align: right;
  transition: .5s;
}
.products_item_left img{
  transition: .5s;
  max-height: 350px;
}
.products_item{
  margin: 0 auto;
  color: black;
  font-family:'Bahnschrift';
  letter-spacing: .1rem;
  transition: .5s;
  margin-top: 1%;
  margin-bottom: 1%;
}
.products_item td{
  width: 40%;
  text-align: left;
  padding-left: 3%;
  text-transform: uppercase;
}
.products_item td span{
  color: var(--darkgreen);
  font-weight: 600;
}
.products_item tr:nth-child(1){
  font-size: 220%;
}
.products_item tr:nth-child(2),
.products_item tr:nth-child(3),
.products_item tr:nth-child(4),
.products_item tr:nth-child(5),
.products_item tr:nth-child(9){
  font-size: 170%;
}
.products_category li{
  display: inline-block;
  font-family:'Bahnschrift';
  letter-spacing: .1rem;
  transition: .5s;
}
.rad-label {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 14px 16px;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.3s;
}
.rad-label:hover,
.rad-label:focus-within {
  background: hsla(0, 0%, 80%, 0.14);
}
.rad-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.rad-design {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: linear-gradient(
    to right bottom,
    var(--darkgreen),
    var(--green)
  );
  position: relative;
}
.rad-design::before {
  content: "";
  display: inline-block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: hsl(0, 0%, 90%);
  transform: scale(1.1);
  transition: 0.3s;
}
.rad-input:checked + .rad-design::before {
  transform: scale(0);
}
.rad-text {
  color: hsl(0, 0%, 20%);
  margin-left: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 80%;
  font-weight: 900;
  transition: 0.3s;
}
.rad-input:checked ~ .rad-text {
  color: hsl(0, 0%, 40%);
}
.products_category{
  margin: 0 auto;
  text-align: center;
}
/*where_to_buy*/
#where_to_buy{
  min-height: 30vh;
}
.where_to_buy_image{
  width: 100%;
  height: 90vh;
  transition: .5s;
  margin: 0;
  background-image: url("assets/location.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.where_to_buy_image div:nth-child(1){
  width: 100%;
  height: 40vh;
  z-index: 3;
  background-color: transparent;
}
.where_to_buy_text{
  width: 100%;
  z-index: 3;
  transition: .5s;
  background-color: var(--darkgreen);
}
.where_to_buy_text table tr td{
  width: 33.3%;
}
.where_to_buy_adres{
  font-size: 300%;
  transition: .5s;
}
.where_to_buy_zph_mobile{
  display: none;
}
.where_to_buy_zph,
.where_to_buy_zph_mobile{
  font-size: 200%;
  transition: .5s;
}
.where_to_buy_zph span,
.where_to_buy_zph_mobile span{
  font-size: 180%;
  letter-spacing: .2rem;
  transition: .5s;
}
.where_to_buy_text table tr td img{
  transform: scale(2);
  transition: .5s;
}
.where_to_buy_text table{
  color: white;
  width: 100%;
  font-family:'Bahnschrift';
  letter-spacing: .1rem;
  transition: .5s;
}
#where_to_buy h1{
  font-family: "Dynalight";
  font-size: 280%;
  letter-spacing: 1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1%;
  color: var(--green);
  text-shadow: 2px 2px 10px rgba(0, 0, 0,.4);
  transition: .5s;
}
#where_to_buy hr{
  height: 3px;
  background-color: var(--darkgreen);
}
#where_to_buy table{
  margin-top: 2%;
  margin-bottom: 2%;
}
#where_to_buy table tr{
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
#where_to_buy table img{
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .4));
  width: 50%;
  margin: 0;
}
.where_to_buy_flex_container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
.where_to_buy_partner {
  width: 400px;
  max-height: 400px;
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: center;
  display: flex;
}
.where_to_buy_partner img{
  margin: auto;
  width: 60%;
  opacity: .8;
  transition: .5s;
}
.where_to_buy_partner img:hover{
  opacity: 1;
  transition: .5s;
}
@media only screen and (max-width: 1440px) {
  .where_to_buy_adres{
    font-size: 280%;
    transition: .5s;
  }
  .where_to_buy_zph{
    font-size: 170%;
    transition: .5s;
  }
  .where_to_buy_zph span{
    font-size: 160%;
    transition: .5s;
  }
}
@media only screen and (max-width: 1200px) {
  .where_to_buy_adres{
    font-size: 250%;
    transition: .5s;
  }
  .where_to_buy_zph{
    font-size: 150%;
    transition: .5s;
  }
  .where_to_buy_zph span{
    font-size: 140%;
    transition: .5s;
  }
}
@media only screen and (max-width: 900px) {
  .where_to_buy_adres{
    font-size: 200%;
    transition: .5s;
  }
  .where_to_buy_zph{
    font-size: 130%;
    transition: .5s;
  }
  .where_to_buy_zph span{
    font-size: 110%;
    transition: .5s;
  }
}
@media only screen and (max-width: 680px) {
  .where_to_buy_adres{
    font-size: 140%;
    transition: .5s;
  }
  .where_to_buy_zph{
    display: none;
  }
  .where_to_buy_zph_mobile{
    display: block;
  }
  .where_to_buy_zph_mobile{
    font-size: 140%;
    transition: .5s;
  }
  .where_to_buy_zph_mobile span{
    font-size: 70%;
    transition: .5s;
  }
  .where_to_buy_image{
    transition: .5s;
  }
}
@media only screen and (max-width: 420px) {
  .where_to_buy_adres{
    font-size: 100%;
    transition: .5s;
  }
  .where_to_buy_zph_mobile{
    font-size: 110%;
    transition: .5s;
  }
  .where_to_buy_zph_mobile span{
    font-size: 60%;
    transition: .5s;
  }
}
/*contact*/
#contact{
  width: 100%;
  min-height: 20vh;
  margin: 0;
  padding: 0;
}
#contact h1{
  font-family: "Dynalight";
  font-size: 280%;
  letter-spacing: 1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1%;
  color: var(--green);
  text-shadow: 2px 2px 10px rgba(0, 0, 0,.4);
  transition: .5s;
}
.contact_conteiner{
  width: 100%;
  margin: 0;
  padding: 0;
  font-family:'Bahnschrift';
  text-align: center;
}
.contact_numbers{
  width: 50%;
  margin: 0 auto;
  text-align: left;
  transition: .5s;
}
.contact_numbers hr{
  margin: 1%;
  margin-top: 2%;
  margin-bottom:2%;
  border: 2px solid var(--darkgreen);
}
.contact_numbers_left,
.contact_numbers_right{
  width: 50%;
  float: left;
  transition: .5s;
  margin: 0;
}
.contact_numbers_left{
  font-size: 120%;
}
.contact_numbers_right{
  text-align: right;
  font-size: 180%;
}
.contact_numbers_right_left{
  width: 100%;
  text-align: center;
  font-size: 140%;
}
.contact_numbers_right_left a{
  text-decoration: none;
  color: black;
}
.contact_adres{
  width: 100%;
  padding-top: 1%;
  padding-bottom: 1%;
  text-align: center;
  font-size: 250%;
  font-family: "Dynalight";
  font-weight: 400;
  transition: .5s;
  color: black;
}
#socialmedia{
  width: 100%;
  min-height: 10vh;
  margin: 0 auto;
  text-align: center;
}
#socialmedia ul{
  list-style: none;
  margin: 0 auto;
  text-decoration: none;
}
#socialmedia ul li{
  margin-left: 1%;
  margin-right: 1%;
  display: inline-block;
  transition: .5s;
}
#socialmedia ul li a{
  margin-left: 1%;
  margin-right: 1%;
  font-size: 300%;
  text-decoration: none;
  color: var(--darkgreen);
  display: inline-block;
  transition: .5s;
}
#socialmedia ul li a:hover{
  cursor: pointer;
  color: var(--green);
  transition: .5s;
}
#socialmedia ul li a:link,
#socialmedia ul li a:active,
#socialmedia ul li a:visited,
#socialmedia ul li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1200px) {
  .contact_numbers{
    width: 60%;
    transition: .5s;
  }
}
@media only screen and (max-width: 900px) {
  .contact_numbers{
    width: 70%;
    transition: .5s;
  }
}
@media only screen and (max-width: 680px) {
  .contact_numbers{
    width: 85%;
    transition: .5s;
  }
  .contact_numbers_left{
    font-size: 110%;
  }
  .contact_numbers_right{
    font-size: 130%;
  }
}
@media only screen and (max-width: 350px) {
  .contact_numbers{
    width: 95%;
    transition: .5s;
  }
}
@media only screen and (max-width: 340px) {
  .contact_numbers_left{
    font-size: 100%;
  }
  .contact_numbers_right{
    font-size: 110%;
  }
}
/*FOOTER*/
footer{
  background-color: rgba(44,76,63,1);
  width: 100%;
}
footer table{
  width: 100%;
  padding-top: 1%;
}
footer table tr td div{
  width: 25%;
  text-align: center;
  color: white;
}
footer table tr td ul{
  width: 100%;
  text-align: center;
  color: white;
  padding-top: 1%;
  transition: .5s;
  letter-spacing: .2rem;
  font-size: 80%;
  font-family: "Bahnschrift";
}
footer table tr td ul li a{
  text-decoration: none;
  color: var(--green);
}
footer table tr td div img{
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .4));
  width: 70%;
}
.certyficate_brand{
  width: 100%;
  text-decoration: none;
}
.certyficate_brand:hover{
  text-decoration: none !important;
  cursor: default !important;
}
.brc{
  max-width: 3rem;
  margin: 0 auto;
}
.good_brand{
  max-height: auto;
  max-width: 2.8rem;
}
footer table tr:nth-child(1) td div ul{
  list-style-type: none;
  font-size: 150%;
}
footer table tr td div:nth-child(2) ul li:nth-child(1){
  font-family: "Dynalight";
  font-size: 150%;
  letter-spacing: .7rem;
  color: var(--gold);
}
footer table tr td div:nth-child(2) ul li{
  font-family: "Bahnschrift";
  font-size: 100%;
  letter-spacing: .1rem;
  transition: .5s;
  color: #ffffff;
}
footer table tr td div:nth-child(2) ul li:hover{
  cursor: pointer;
  text-decoration-line: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2%;
}
footer table tr td div:nth-child(4),
footer table tr td div:nth-child(3),
footer table tr td div:nth-child(2),
footer table tr td div:nth-child(1){
  float: left;
  margin: 0 auto;
}
footer table tr td div:nth-child(3) ul li{
  font-family: "Dynalight";
  font-size: 150%;
  transition: .5s;
  letter-spacing: .3rem;
  color: var(--gold);
}
footer table tr td div:nth-child(3) ul li:hover{
  cursor: pointer;
  text-decoration-line: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2%;
}
footer table tr td div:nth-child(3){
  width: 20% !important;
}
footer table tr td div:nth-child(4){
  width: 30% !important;
}
footer table tr td div:nth-child(4) ul li:nth-child(1){
  font-family: "Dynalight";
  font-size: 150%;
  letter-spacing: .7rem;
  color: var(--gold);
  text-align: center;
}
footer table tr td div:nth-child(4) ul li{
  font-family: "Bahnschrift";
  font-size: 100%;
  letter-spacing: .1rem;
  transition: .5s;
  color: #ffffff;
}
footer table tr td div:nth-child(4) ul li table{
  margin: 0 auto;
  transition: .5s;
}
footer table tr td div:nth-child(4) ul li table tr td{
  text-align: left;
  transition: .5s;
}
.socialmedia_footer{
  text-align: center !important;
  font-size: 120% !important;
  transition: .5s;
}
.socialmedia_footer a{
  margin-left: 2%;
  margin-right: 2%;
  color: var(--green) !important;
  transition: .5s;
}
.socialmedia_footer a:hover{
  cursor: pointer;
  color: #679e5f !important;
}
footer table tr td div:nth-child(4) ul li table tr th{
  text-align: right;
  width: 20%;
  padding-right: 5%;
  transition: .5s;
  fill: var(--green);
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .2));
}
footer table tr td div:nth-child(4) ul li table tr td a{
  text-decoration: none;
  color: white;
  transition: .5s;
}
footer table tr:nth-child(2) td div ul li{
  font-family: "Bahnschrift";
  margin-top: 2%;
  font-size: 80%;
  color: white;
  transition: .5s;
  letter-spacing: .2rem;
}
footer table tr:nth-child(2) td div ul li:nth-child(2) a{
  text-decoration: none;
  color: var(--green);
}
@media only screen and (max-width: 1200px) {
  footer table tr td div:nth-child(3) ul li{
    font-size: 120%;
    transition: .5s;
  }
  footer table tr td div:nth-child(2) ul li{
    font-size: 80%;
    transition: .5s;
  }
  footer table tr td div:nth-child(4) ul li{
    font-size: 80%;
    transition: .5s;
  }
  footer table tr td ul{
    font-size: 60%;
    transition: .5s;
  }
}
@media only screen and (max-width: 900px) {
  footer table tr td div:nth-child(1){
    width: 100% !important;
    padding-bottom: 1%;
  }
  footer table tr td div img{
    width: 30%;
  }
  footer table tr td div{
    width: 33%;
  }
  footer table tr td div:nth-child(3){
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media only screen and (max-width: 680px) {
  footer table tr td div{
    width: 100%;
    padding-bottom: 1%;
  }
  footer table tr td div:nth-child(3),
  footer table tr td div:nth-child(2){
    display: none;
  }
  footer table tr td div:nth-child(4){
    width: 100% !important;
    text-align: center;
  }
}
@media only screen and (max-width: 350px) {
  footer table tr td div:nth-child(4) ul li table{
    font-size: 80%;
    transition: .5s;
  }
  footer table tr:nth-child(2) td ul li{
    font-size: 60%;
    transition: .5s;
  }
}