@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --green: #44592E;
  --lgreen: #a6b991;
  --gray: #333;

}

* {
	margin: 0px;
	padding: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0px 100px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  text-align: center;
  transition: 0.5s;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .logo {
  position: relative;
  width: 120px;
  height: 60px;
}

header .logo img {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}


header .navigation {
  position: relative;
  display: flex;
}

header .navigation li {
  list-style: none;   /*bez bodky v zozname*/
  margin-left: 2rem;
}

header .navigation li a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  height: 3rem;
  line-height: 3rem;
}

header .navigation li a.green {
  color: var(--green);
  font-weight: 500;
}


.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
  display: none;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .content {
  position: relative;
  text-align: center;
  color: white;
}

.banner .content h2 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3em;
}

.banner .content p {
  font-size: 1em;
  color: #e3dada;
}

.btn {
    color: #fff;
    display: inline-block;
    background-color: var(--green);
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s;
    margin-top: 30px;
}

.btn:hover {
  letter-spacing: 3px;
}

section {
  padding: 100px;
}

.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title .titletext h2 {
  color: #333;
  font-size: 2.5em;
  font-weight: 400;
}

.title .titletext span {
  color: var(--green);
  font-size: 1.5em;
  font-weight: 600;
}

.recept .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;

}

.recept .content .box {
  position: relative;
  width: 400px;
  height: 350px;
  background-color: red;
  margin: 10px;
}

.recept .content .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-------inside----------*/

.inside .content {
  position: relative;
  width: 100%;
  display: flex;
  padding: 100px 0 100px;
}

.inside .content .photo {
  width: 50%;
  background-image: url(img/Eatfresh-box2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inside .content .text {
  max-width: 800px;
  padding: 50px;
  text-align: center;

}

ul {
 list-style-type: none;
 margin-top: 11px;
}

ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;

}

ion-icon {
  font-size: 2em;
  margin-right: 10px;
  color: var(--green);
}

p {
  font-size: 1em;
}

.rew {
  background-image: url(img/bg2.jpg);
  background-position: center;
  background-size: cover;
}

.rew .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;
}

.rew .content .box {
  width: 350px;
  padding: 30px;
  background-color: #fff;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 5px 35px rgb(0 0 0 / 20%);
}

.rew .content .box .imgbox {
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 10px;
}

.rew .content .box .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rew .content .box .text {
  text-align: center;
  margin-top: 20px;
}

.rew .content .box .text p {
  font-style: italic;
  color: #333;
}

.rew .content .box .text h3 {
  margin-top: 20px;
  color: var(--green);
}

/*-------contact----------*/

.contactform {
  margin: auto;
  padding: 75px 50px;
  background-color: var(--white);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  max-width: 500px;
  margin-top: 50px;
}

.contactform h3 {
  color: var(--black);
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 500;
}

.contactform .inputbox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.contactform .inputbox input,
.contactform .inputbox textarea {
  width: 100%;
  border: 1px solid #555;
  padding: 10px;
  color: #333;
  outline: none;
  font-size: 1em;
  font-weight: 300;
  resize: none;
}

.contactform .inputbox input[type="submit"] {
  font-size: 1em;
  color: #fff;
  background-color: var(--green);
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transform: 0.5s;
}

/*----------plan-------------*/

.plan {

}

.plan .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 50px rgb(0 0 0 / 20%);
  margin-top: 50px;
}

.plan .content .preferences {
  width: 50%;
  padding: 50px 20px 50px 50px;
  text-align: center;
}

.plan .content .preferences .textbox h3 {
  color: #333;
  font-weight: 600;
}

.plan .content .preferences .textbox p {
  color: #333;
  font-size: 0.8em;
  display: inline-block;
  margin-top: 15px;
}

.plan .content .preferences .textbox p:last-child {

  color: red;
}

.plan .content .preferences .boxarea {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 5px;
}

.plan .content .preferences .boxarea .box {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #595959;
  border-radius: 5px;
}

.dot ion-icon {
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px;
  display: none;
}


.plan .content .preferences .boxarea .box:hover {
  border: 2px solid #595959;
}

.plan .content .preferences .boxarea .box .size {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}

/*------------icony-------------------*/

.imgbx {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.meat {

  background-image: url(img/meat.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .meat {
  background-image: url(img/meat2.png);
}

.vegetarian {
  background-image: url(img/broccoli.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .vegetarian {
  background-image: url(img/broccoli2.png);
}

.family {
  background-image: url(img/family.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .family {
  background-image: url(img/family2.png);
}

.low{
  background-image: url(img/low.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .low {
  background-image: url(img/low2.png);
}

.vegan{
  background-image: url(img/vegan.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .vegan {
  background-image: url(img/vegan2.png);
}

.fast-time{
  background-image: url(img/fast-time.png);
  background-size: 42px 42px;
}

.plan .content .preferences .boxarea .box:hover .fast-time {
  background-image: url(img/fast-time2.png);
}

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

.plan .content .customize h3 {
  color: #333;
  font-weight: 600;
}

.plan .content .customize {
  width: 50%;
  padding: 50px 20px;
  text-align: center;
}

.plan .content .customize .selectarea {
  position: relative;
  width: 420px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  margin-top: 30px;
}

.plan .content .customize .selectarea .area {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan .content .customize .selectarea .area:nth-child(2) {
  margin-top: 20px;
}

.plan .content .customize .selectarea .area .numberbox {
  position: relative;
  display: flex;
}

.plan .content .customize .selectarea .area .numberbox button {
  width: 125px;
  height: 40px;
  background-color: #fff;
  border: 1px solid var(--green);
  left: 0;
  border-right: 0;
}

.plan .content .customize .selectarea .area .numberbox button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.plan .content .customize .selectarea .area .numberbox button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: 1px solid var(--green);
}

.plan .content .customize .selectarea .area .numberbox button.active {
  border: 2px solid var(--green);
  background-color: var(--lgreen);
}

.plan .content .customize .selectarea .area .numberbox2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.plan .content .customize .selectarea .area .numberbox2 button {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid var(--green);
  left: 0;
  border-right: 0;
}

.plan .content .customize .selectarea .area .numberbox2 button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.plan .content .customize .selectarea .area .numberbox2 button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: 1px solid var(--green);
}

.plan .content .customize .selectarea .area .numberbox2 button.active {
  border: 2px solid var(--green);
  background-color: var(--lgreen);
}

.menu {
  margin-top: 40px;
}

.menu h3 {
  color: #333;
  font-weight: 600;
}

.menu .menubox {
  margin-top: 20px;
  position: relative;
  height: 100px;
}

.menu .menubox button {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid var(--green);
  position: absolute;
  left: 0;
  border-right: 0;
}

.menu .menubox button.active {
  position: absolute;
  padding-top: 2px;
  border: 2px solid var(--green);
  background-color: var(--lgreen);
}

.menu .menubox button:nth-child(1) {
  left: 0px;
  top: 2px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.menu .menubox button:nth-child(2) {
  left: 70px;
  top: 2px;
}

.menu .menubox button:nth-child(2) {
  left: 70px;
  top: 2px;
}

.menu .menubox button:nth-child(3) {
  left: 140px;
  top: 2px;
}

.menu .menubox button:nth-child(4) {
  left: 210px;
  top: 2px;
}

.menu .menubox button:nth-child(5) {
  left: 280px;
  top: 2px;
}

.menu .menubox button:nth-child(6) {
  left: 350px;
  top: 2px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: 1px solid var(--green);
}

.main-carousel {
  margin-top: 50px;
}

.cell {
  width: 33%;
  height: 350px;
  margin: 0 15px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--green);
}


.cell img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.biele {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.biele .text {
  padding: 10px 20px;
}

.biele .text{
  color: #333;
}

.biele .text p {
  font-size: 0.8em;
  display: inline-block;
  margin-top: 5px;
}

.main-carousel {
  margin-top: 20px;
}

.p{
  padding-top: 100px;
}

section.imgslider {
  padding-top: 0;
}

@media (max-width: 1300px) {
  section {
    padding: 100px 50px;
  }
  .photo {
    width: 40%;
  }
  .inside .content .text {
    padding: 50px 20px;
  }
}

@media (max-width: 1300px) {
  .inside .content{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .inside .content .photo {
    width: 80%;
    height: 500px;
    padding: 20px;
  }
  .inside .content .text {
    width: 100%;
  }
  .inside .content .text ul li{
    justify-content: center;
  }
  .titletext {
    text-align: center;
  }
  .title p {
    text-align: center;
  }
}

@media (max-width: 1130px) {
  .plan .content {
    flex-direction: column;
  }
  .plan .content .customize {
    width: 100%;
  }
  .plan .content .preferences {
    width: 80%;
  }
  .plan .content .preferences {
    padding: 50px 20px;
  }
}

@media (max-width: 1000px) {
  .cell {
    width: 50%;
  }
}

@media (max-width: 750px) {

header {
  padding: 0px 20px;
}

  header .navigation {
    display: none;
  }

  header .navigation.active {
    width: 100%;
    height: calc(100% - 70px);
    position: fixed;
    top: 60px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
  }

  header .navigation li {
    margin: 0;
  }

  header .navigation li a {
    color: #111;
    font-size: 1.6em;
  }

  .menuToggle {
    position: relative;
    width: 35px;
    height: 35px;
    margin-top: 20px;
    color: #333;
  }

  header .bar1,
  header .bar2,
  header .bar3{
    background-color: #333;
  }

  .bar1, .bar2, .bar3 {
    display: block;
  }
  section.plan {
    padding-top: 100px;
  }
  .inside .content .photo {
    width: 90%;
    height: 500px;
    padding: 20px;
  }
  .plan .content .preferences {
    width: 100%;
  }
}

@media (max-width: 730px) {
  section {
    padding: 50px 20px;
  }
}

@media (max-width: 620px) {
  .cell {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .plan .content .customize .selectarea .area {
    flex-direction: column;
  }
  .plan .content .customize .selectarea {
    width: 100%;
  }
  .plan .content .customize .selectarea .area .numberbox2 {
    margin: 0;
  }
  .menu .menubox {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
  }
  .menu .menubox button.active {
    position: static;
  }

  .menu .menubox button {
    position: static;
    border: 1px solid var(--green);
  }
}
