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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  scroll-behavior: smooth;
  color: var(--wp--preset--color--vivid-green-dark);
}

:root {
  --wp--preset--color--black: #000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #fff;
  --wp--preset--color-light-white: #f5f8fd;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--color--luminous-black: #12121d;
  --wp--preset--color--vivid-gray: #2f2f42;
  --wp--preset--color--luminous-gray: #444;
  --wp--preset--color--light-green: #a7f3d0;
  --wp--preset--color--luminous-green: #6ee7b7;
  --wp--preset--color--vivid-green: #34d399;
  --wp--preset--color--light-green-dark: #047857;
  --wp--preset--color--luminous-green-dark: #065f46;
  --wp--preset--color--vivid-green-dark: #064e3b;
  --button-width: 30px;
  --button-height: calc(var(--button-width) * .8);
  --rectangle-height: calc(var(--button-width) * .1);
  --translate: calc(var(--button-width) * .17);
  --transition-short: .35s;
  --transition-long: .65s;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Bitter', serif;
  font-weight: 600;
}

p {
  line-height: 1.6;
  color: var(--wp--preset--color--luminous-gray);
}

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

ul {
  list-style: none;
}

img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

form * {
  outline: none;
}

svg {
  overflow: hidden;
}

.showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 120vh;
  background: linear-gradient(to right bottom, #d1fae5, #fff 70%);
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10%;
}

.logo a img {
  width: 200px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 3em;
}

nav ul li a {
  position: relative;
  padding-block: 1em;
  color: var(--wp--preset--color--luminous-gray);
  transition: var(--transition-short);
}

nav ul li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  left: 50%;
  bottom: 0;
  background: linear-gradient(to right, #047857, #00d084);
  transition: var(--transition-short);
}

nav ul li a:hover {
  color: var(--wp--preset--color--vivid-gray);
}

nav ul li a:hover:before {
  width: 100%;
  left: 0;
}

.toggle-button {
  display: none;
  position: absolute;
  cursor: pointer;
  flex-direction: column;
  text-align: center;
  width: var(--button-width);
  min-width: 30px;
  height: var(--button-height);
  border-radius: 30px;
  appearance: none;
  background: none;
  outline: none;
  border: none;
  z-index: 4;
}

.bar { 
  display: block;
  position: absolute;
  border-radius: 2px;
  background-color: var(--wp--preset--color--light-green-dark);
  height: var(--rectangle-height);
  transition: transform var(--transition-long);
}

.bar--small {
  width: var(--button-width);
}

.toggle-button:hover .bar--small {
  width: calc(var(--button-width) / 2);
  transition: var(--transition-short);
}

.bar--top {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.bar--top.open {
  transform: translateX(var(--translate)) rotate(45deg);
}

.bar--middle {
  top: 50%;
  left: 0;
  width: var(--button-width);
  transform: translatey(-50%);
}

.bar--middle.open {
  transform: translatey(-50%) rotate(-45deg);
}

.bar--bottom {
  bottom: 0;
  right: 0;
  width: var(--button-width);
  transform-origin: bottom right;
}

.bar--bottom.open {
  transform: translateX(calc(-1 * var(--translate))) rotate(45deg);
}

.toggle-button .bar.is-active {
  opacity: 0;
}

.mobile-navigation {
  display: none; 
  position: absolute;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 1.5em 10%;
  top: 15%;
  left: -100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(to right bottom, #a7f3d0, #fff);
  transition: var(--transition-long);
  z-index: 2;
}

.pagecase .mobile-navigation {
  top: 25%;
}

.mobile-navigation.is-active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-navbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-navbar a {
  font-size: 1.25em;
  font-weight: normal;
  text-align: center;
  margin: .25em;
  padding: 20px 35px;
  color: var(--wp--preset--color--white);
  background: linear-gradient(to right, #047857, #00d084);
  border-radius: 20px;
  transition: all .35s ease;
}

.hero_sec {
  position: absolute;
  max-width: 550px;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero_img {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-55%);
  z-index: 1;
}

.hero_img img {
  width: 550px;
}

.hero_img_nadpis {
  
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-35%);
  z-index: 1;
}

.hero_img_nadpis img {
  width: 550px;
}


.hero_sec h1 {
  font-size: 2.75em;
  font-weight: 600;
}

.hero_sec p {
  font-size: 1.15em;
  /*margin-block: 15px 2.25em;*/
  /*margin-block: 15px 1em;*/
  margin-top: 15px;
  margin-bottom: 30px;
}

.hero_btn.primar_btn a {
  margin-top: 40px;
  padding: 1.5em 2em;
}

.primar_btn a {
  padding: 1em 1.5em;
  color: var(--wp--preset--color--white);
  border-radius: 15px;
  background: linear-gradient(to right, #047857, #00d084);
  transition: var(--transition-short);
}

.primar_btn a:hover {
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.05);
}

.header_wave {
  position: absolute;
  left: 0;
  bottom: 0;
}

section {
  display: flex;
  padding: 4em 10%;
}

section.col {
  flex-direction: column;
}

section.p-0 {
  padding: 0;
}

article {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 10px;
  padding: 20px;
}

.section_head {
  padding: 0;
  margin-bottom: 2.5em;
}

.section_head h1 {
  position: relative;
  font-size: 2.5em;
  font-weight: 600;
  padding-block: 0.75em;
  color: var(--wp--preset--color--vivid-green-dark);
}

.section_head h1:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #047857, #00d084);
}

.benefits_sec {
  padding-block: 0;
  background-image: url(section_left_bg_img.png);
  background-size: 250px;
  background-position: top left;
  background-repeat: no-repeat;
}

.benefit_art {
  align-items: center;
  text-align: center;
  gap: 10px;
}

.benefit_art img {
  width: 100px;
  margin-bottom: 10px;
}

.top_sec_wave {
  position: relative;
  bottom: -0.5em;
}

.lizards_parent_sec {
  padding-block: 0;
  background-color: var(--wp--preset--color--luminous-green-dark);
}

.lizards_parent_sec .section_head h1 {
  color: var(--wp--preset--color--white);
}

.lizard_art {
  padding: 0;
}

.lizard_art .lizard_overlay {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  background-color: rgba(2, 31, 23, 0.5);
  transition: var(--transition-short);
}

.lizard_art img {
  height: 300px;
  border-radius: 20px;
}

.lizard_art .lizard_group {
  position: absolute;
  font-size: 1.75em;
  font-weight: 600;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  color: var(--wp--preset--color--white);
  transition: var(--transition-short);
  z-index: 1;
}

.lizard_art a:hover .lizard_overlay,
.lizard_art a:hover .lizard_group {
  opacity: 1;
  visibility: visible;
}

.blog_parent_sec {
  background-image: url(section_right_bg_img.png);
  background-size: 300px;
  background-position: top right;
  background-repeat: no-repeat;
}

.blog_art {
  padding: 2em;
  padding-bottom: 3em;
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
}

.blog_art h2 {
  font-size: 1.25em;
  margin-top: 5px;
}

.blog_art .intro {
  margin-block: 15px;
}

.blog_art .blog_link {
  color: var(--wp--preset--color--light-green-dark);
}

.blog_art .blog_link:hover {
  text-decoration: underline;
}

.contact_child_sec {
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
}

.contact_options_sec {
  padding: 1.5em;
  border-radius: 20px 20px 0 0;
  background-color: var(--wp--preset--color--luminous-green-dark);
}

.contact_option {
  flex-direction: row;
  align-items: center;
  gap: 1.25em;
}

.contact_option i {
  font-size: 1.25em;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--wp--preset--color--white);
  background: rgba(255, 255, 255, 0.5);
}

.contact_option h2 {
  margin-bottom: 5px;
  color: var(--wp--preset--color--white);
} 

.contact_option a {
  color: var(--wp--preset--color-light-white);
}

.contact_option a:hover {
  text-decoration: underline;
}

.contact_form_sec {
  padding: 1.5em;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
}

.form_group {
  position: relative;
}

.contact_form input {
  font-size: 0.9em;
  width: 100%;
  height: 60px;
  padding: 0 1.75em;
  border: none;
  border-radius: 15px;
  color: var(--wp--preset--color--luminous-gray);
  background-color: var(--wp--preset--color--white);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.05);
}

.contact_form label {
  position: absolute;
  font-size: 0.85em;
  text-transform: uppercase;
  top: -0.5em;
  left: 1.25em;
  padding-inline: 5px;
  color: #64748b;
  background-color: var(--wp--preset--color--white);
}

.contact_form select {
  font-size: 0.9em;
  width: 100%;
  height: 60px;
  padding: 0 1.75em;
  border: none;
  border-radius: 15px;
  color: var(--wp--preset--color--luminous-gray);
  background-color: var(--wp--preset--color--white);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.05);
}

.contact_form textarea {
  font-size: 0.9em;
  width: 100%;
  padding: 1.75em;
  border: none;
  border-radius: 15px;
  color: var(--wp--preset--color--luminous-gray);
  background-color: var(--wp--preset--color--white);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.05);
}

.contact_form input[type="submit"] {
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  color: var(--wp--preset--color--white);
  background: linear-gradient(to right, #047857, #00d084);
  box-shadow: none;
  transition: var(--transition-short);
}

.contact_form input[type="submit"]:hover {
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.05);
}

footer {
  background: linear-gradient(to top right, #d1fae5, #fff 70%);
}

.footer_main_sec {
  margin: 0 10%;
  padding: 4em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer .logo img {
  width: 200px;
}

footer ul {
  display: flex;
  flex-direction: column;
  margin-top: 4em;
  gap: 10px;
}

footer .footer_structure_art ul {
  margin-top: 0.5em;
  margin-left: 1em;
}

footer ul li {
  line-height: 1.4;
}

footer ul li a {
  color: var(--wp--preset--color--navy-bluish-gray);
  transition: var(--transition-short);
}

footer ul li a:hover {
  margin-left: 0.5em;
  color: var(--wp--preset--color--light-green-dark);
}

.footer_art h2 {
  position: relative;
  font-weight: 400;
}

.footer_art h2:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 5px;
  left: 0;
  bottom: -1em;
  background: linear-gradient(to right, #047857, #00d084);
}

footer .socials {
  flex-direction: row;
  gap: 1.5em;
}

footer .socials li a i {
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  color: var(--wp--preset--color--luminous-green-dark);
  background-color: var(--wp--preset--color--white);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-short);
}

footer .socials li a:hover {
  margin-left: 0;
}

footer .socials li a i:hover {
  color: var(--wp--preset--color--vivid-green);
}

.footer_copy_sec {
  padding: 0.5em 10%;
}

.footer_copy_art {
  align-items: center;
  text-align: center;
}

.footer_copy_art p a {
  color: var(--wp--preset--color--vivid-green-dark);
  transition: var(--transition-short);
}

.footer_copy_art p a:hover {
  color: var(--wp--preset--color--light-green-dark);
}

.pagecase {
  position: relative;
  width: 100%;
  height: 60vh;
  background: linear-gradient(to right bottom, #d1fae5, #fff 70%);
}

.pagecase header {
  height: 60vh;
}

.mini_nav {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 30%;
  left: 11%;
  z-index: 1;
}

.mini_nav a {
  color: var(--wp--preset--color--vivid-gray);
  transition: var(--transition-short);
}

.mini_nav a:hover {
  color: var(--wp--preset--color--luminous-gray);
}

.mini_nav i {
  color: var(--wp--preset--color--luminous-green-dark);
}

.mini_nav p {
  color: var(--wp--preset--color--luminous-gray);
}

.animal_sec_2 {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-image: url(section_right_bg_img.png);
  background-size: 300px;
  background-position: top right;
  background-repeat: no-repeat;
  
}
.animal_sec {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  /*background-image: url(section_right_bg_img.png);*/
  background-size: 300px;
  background-position: top right;
  background-repeat: no-repeat;
  
}

.animal_sec.geckons_sec {
  /*background-image: url(section_left_bg_img.png);*/
  background-position: top left;
}

.animal_card {
  /*padding: 0;*/
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
  flex-basis: 30%;
  padding: 1%;
  flex-grow: 0;
}

.animal_card img {
  height: 300px;
  border-radius: 20px 20px 0 0;
}

.animal_des {
  display: flex;
  flex-direction: column;
  padding: 2em;
}

.animal_des h2 {
  margin-bottom: 15px;
}

.animal_des ul li {
  line-height: 2.2;
  color: var(--wp--preset--color--luminous-gray);
}

.animal_des ul li i {
  width: 22px;
  margin-right: 10px;
  color: var(--wp--preset--color--light-green-dark);
}

.animal_des .primar_btn {
  margin-block: 2.5em;
}

.article_sec {
  padding-inline: 20%;
}

.article_sec .section_head h1 {
  font-size: 2em;
}

.article_content {
  display: block;
  gap: 10px;
  margin-left: 0;
  padding-left: 10px;
}

.article_content p {
  margin-bottom: 10px;
}

.article_aside {
  max-width: 400px;
  margin-left: 20px;
  margin-right: -20%;
  float: right;
}

.article_aside img {
  border-radius: 20px;
}

.article_aside.float_left {
  margin-right: 20px;
  margin-left: -20%;
  float: left;
}

.article_content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 1em;
}

.article_content ol li {
  line-height: 1.6;
  color: var(--wp--preset--color--luminous-gray);
}

.clankyfoto {
  width: 100%;
  display:flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;

}

.clankyfoto img{ width: 400px;
                 /* margin: 10px; */
                }
.clankyfoto article {display:flex;
                    flex-direction: column;
                    align-items: center;
                    width: 400px; } 
.clankyfoto article p {text-align: center;}      

#blog_row {display:flex;
       flex-direction: row;
       flex-wrap: wrap;}

#blog_row img {
  flex-basis: 30%;}

  #nabidka_row {display:flex;
    flex-direction: row;
    flex-wrap: wrap;}


/* .products {
  display: flex;
  flex-wrap: wrap;
} */

.product-card {
  padding: 2%;
  flex-grow: 1;
  flex-basis: 16%;

  display: flex; /* so child elements can use flexbox stuff too! */
}

/*.blogsekce {display:flex;
            flex-direction: row;
             flex-direction: wrap;
            } */
            
#nahledy {width: 500px;
           background-color: #00d084;}
 .nahledy {flex-basis: 29%;
           padding: 2%;}   

#vchovu {display:flex;
       flex-direction: column;}

.rozcestnik {display: flex;
             justify-content: space-between;}    

.film video {width: 800px;}
@media (max-width: 1467px) {
  .hero_sec {
    left: 5%;
  }
  .hero_img {
    right: 5%;
  }
  .hero_img_nadpis {
    right: 5%;
  }
  section {
    /*padding: 4em 5%; */
    padding: 3em 5%; 
  }
  .nahledy {flex-basis: 42%;}   
  .animal_card {
   
    flex-basis: 42%;
    padding: 1%;
  }
}

@media (max-width: 1300px) {
  .hero_sec {
    left: 5%;
  }
  .hero_img {
    right: 5%;
  }
  .hero_img_nadpis {
    right: 5%;
  }
  .hero_img_nadpis {
  
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-32%);
    z-index: 1;
  }
  
  .hero_img_nadpis img {
    width: 380px;
  }
  section {
    /*padding: 4em 5%; */
    padding: 3em 5%; 
  }
  .nahledy {flex-basis: 42%;}   
  .animal_card {
   
    flex-basis: 42%;
    padding: 1%;
  }
}

@media (max-width: 1167px) {
  .hero_img {display:none;}
  .header_top {
    padding: 10px 2.5%;
  }
  .logo img {
    width: 175px;
  }
  nav ul {
    gap: 1.75em;
  }
  .hero_sec {
    align-items: center;
    text-align: center;
    margin-inline: auto;
    top: 20%;
    left: 2.5%;
    right: 2.5%;
    transform: translateY(-20%);
  }
  .hero_sec h1 {
    max-width: 100%;
  }
  .hero_img {
    position: relative;
    margin-inline: auto;
    left: 2.5%;
    right: 2.5%;
    transform: translateY(-15%);
  }
  .hero_img img {
    width: 380px;
  }
  .hero_img_nadpis {
    display:none;
    
  }
 
  section {
    padding: 4em 2.5%;
  }
  .benefits_sec,
  .blog_parent_sec,
  .animal_sec,
  .animal_sec.geckons_sec {
    background-image: none;
  }
  .footer_main_sec {
    margin: 0 2.5%;
  }
  .article_sec {
    padding: 4em 15%;
  }
  .nahledy {flex-basis: 94%;}  
  .film video {width: 640px;}
}

@media (max-width: 767px) {
  .hero_img {display:none;}
  .logo a img {
    width: 150px;
  }
  nav {
    display: none;
  }
  .toggle-button {
    display: flex;
    top: 2.1em;
    right: 2.1em;
  }
  .mobile-navigation {
    display: flex;
  }
  .hero_sec {
    top: 30%;
    transform: translateY(-30%);
  }
  .hero_sec h1 {
    font-size: 2.25em;
  }
  .hero_img {
    transform: translateY(45%); 
    /*display:none;*/
  }
  .hero_img img {
    width: 250px;
  }
 
  section {
    flex-direction: column;
    padding: 2.5em 2.5%;
  }
  .benefits_sec {
    padding-top: 4em;
  }
  .contact_options_sec,
  .contact_form_sec {
    padding-inline: 0;
  }
  footer .footer_structure_art ul {
    margin-left: 0;
  }
  .mini_nav {
    left: 5%;
  }
  .article_sec {
    padding: 2em 2.5%;
  }
  .article_aside {
    float: none;
    margin-block: 10px;
    margin-inline: auto;
  }
  .article_aside.float_left {
    margin-inline: auto;
  }
  .animal_card {
   
    flex-basis: 98%;
    padding: 1%;
  }
  .film video {width: 500px;}
}