.main {
  display: grid;
  grid-template-columns: auto 1fr;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main {
    display: block;
  }
}
.main .cover {
  top: 80px;
  bottom: 0;
  position: sticky;
  width: 40vw;
  height: calc(100vh - 80px);
}
@media screen and (max-width: 1024px) {
  .main .cover {
    height: auto;
    min-height: max(60vh, 500px);
    position: relative;
    width: auto;
    top: 0;
    overflow: hidden;
  }
}
.main .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
.main .cover-content {
  position: absolute;
  width: 100%;
  padding: 80px 48px;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .main .cover-content {
    padding: max(20px, 8vw);
    margin-top: auto;
  }
}
.main .cover-content h1 {
  color: white;
  font-size: 64px;
  line-height: 120%;
  margin-bottom: 36px;
}
@media screen and (max-width: 1366px) {
  .main .cover-content h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .main .cover-content h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .main .cover-content h1 {
    font-size: 48px;
  }
}
.main .cover-content .button * {
  color: white;
  fill: white;
  stroke: white;
}
.main .cover-content .button:hover * {
  color: black;
  fill: black;
  stroke: black;
}
.main .content {
  width: max-content;
  background: white;
  padding: 80px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1366px) {
  .main .content {
    padding: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .main .content {
    padding: max(20px, 8vw);
  }
}
.main .content > section {
  margin-bottom: 140px;
}
@media screen and (max-width: 1366px) {
  .main .content > section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .main .content > section {
    margin-bottom: 80px;
  }
}
.main .content > section > .content-heading {
  font-size: 64px;
  line-height: 120%;
  margin-bottom: 36px;
}
@media screen and (max-width: 1024px) {
  .main .content > section > .content-heading {
    display: none;
  }
}
@media screen and (max-width: 1366px) {
  .main .content > section > .content-heading {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .main .content > section > .content-heading {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .main .content > section > .content-heading {
    font-size: 48px;
  }
}
.main .content > section > h2 {
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 36px;
}
@media screen and (max-width: 1366px) {
  .main .content > section > h2 {
    font-size: 36px;
  }
}
.main .content > section > p {
  font-size: 24px;
  line-height: 150%;
}
.main .content .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0 !important;
}
.main .content .cards-container .card {
  flex: 200px;
  background: #96a053;
  padding: 40px 35px;
}
.main .content .cards-container .card .description {
  margin-right: 0 !important;
}
.main .content .cards-container .card .heading {
  line-height: 120%;
}
.main .content #transport {
  margin-bottom: 0px;
}
.main .content #transport .gallery {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main .content #transport .gallery .col {
  flex: 270px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .content #transport .gallery .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.mouse {
  transition: 0.3s;
}
.mouse:hover {
  opacity: 0.5;
}

.mouse-icon {
  width: 20px;
  height: 38px;
  border: 2px solid black;
  background: transparent;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  margin: auto;
}

.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: #DECCB2;
  border-radius: 50%;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  animation: 1.6s ease infinite wheel-up-down;
}

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
.navbar {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.navbar .container--big {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.navbar__section {
  height: 130px;
  width: 41%;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
}
.navbar__section a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
}
.navbar__section a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1536px) {
  .navbar__section a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1536px) {
  .navbar__section {
    height: 90px;
  }
}

.navbar__section--left nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.navbar__section--right {
  justify-content: flex-end;
}
.navbar__section--right .button {
  margin-left: 50px;
}
@media only screen and (max-width: 1536px) {
  .navbar__section--right .button {
    margin-left: 40px;
  }
}

.navbar__logo {
  margin-left: 76px;
  margin-right: 76px;
  margin-top: 35px;
}
.navbar__logo a {
  display: block;
  text-decoration: none;
}
.navbar__logo a img {
  width: 162px;
  transition: 0.3s;
}
.navbar__logo a img:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1536px) {
  .navbar__logo a img {
    width: 125px;
  }
}
@media only screen and (max-width: 1536px) {
  .navbar__logo {
    margin-top: 20px;
    margin-left: 67px;
    margin-right: 67px;
  }
}

@media only screen and (max-width: 1366px) {
  .navbar--desktop {
    display: none !important;
  }
}

@media not screen and (max-width: 1366px) {
  .navbar--responsive {
    display: none !important;
  }
}

.navbar__responsive {
  display: none !important;
  border: none !important;
  margin: 0 !important;
}
@media only screen and (max-width: 1366px) {
  .navbar__responsive {
    display: flex !important;
  }
}

.navbar__responsive__contact-button svg {
  width: 14px !important;
  height: 14px !important;
}

.navbar__responsive__popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: transform 0.2s, opacity 0.2s;
  z-index: 22;
  background: #96A053;
  border-radius: 0 0 0 30px;
  padding-bottom: 44px;
}
.navbar__responsive__popup .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.navbar__responsive__popup nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.navbar__responsive__popup nav a {
  margin: 0 !important;
  color: #000;
  font-size: 26px !important;
  line-height: 38px;
  text-decoration: none;
  display: inline-block;
}
.navbar__responsive__popup nav a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1536px) {
  .navbar__responsive__popup nav a {
    font-size: 20px;
  }
}
.navbar__responsive__popup .button {
  background: #fff;
  color: black;
  font-size: 18px;
  line-height: 26px;
}
.navbar__responsive__popup .button * {
  stroke: black;
}

.navbar__responsive__popup__call {
  display: flex;
  gap: 11px;
  color: black;
  font-size: 22px;
  margin: 0 !important;
}
.navbar__responsive__popup__call svg {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}
.navbar__responsive__popup__call:hover {
  text-decoration: underline;
}

.navbar__responsive__popup--to-hidden-animation {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.navbar__responsive__popup--hidden {
  display: none;
}

.navbar__responsive__call {
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 576px) {
  .navbar__logo a img {
    width: 104px !important;
  }
}
@media only screen and (max-width: 375px) {
  .navbar__logo {
    margin: 20px 40px 40px 0;
  }
  .navbar__logo a img {
    width: 80px !important;
  }
}

.navbar__contact-button {
  --color: white;
}
.navbar__contact-button:hover {
  --color: black;
}
.navbar__contact-button svg {
  width: 14px !important;
  height: 14px !important;
}

.nav-hamburger {
  margin-right: -15px;
  margin-left: -15px;
  z-index: 90;
  position: relative;
}

.app-button {
  border: 2px solid #FFBF00;
  border-radius: 4px;
  background: transparent;
  color: #FFBF00;
  text-decoration: none;
  transition: 0.3s;
  box-sizing: border-box;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
  font-size: 14px;
  padding: 10px 30px;
}

.button-inverted {
  background: #FFBF00;
  color: black;
}
.button-inverted:hover {
  color: #FFBF00 !important;
  background: transparent !important;
}

.app-button--white {
  border: 1px solid #fff;
  color: #fff;
}
.app-button--white:hover {
  color: #fff !important;
  background: #FFBF00;
  border: 1px solid #FFBF00;
}

.app-text-button {
  border: none;
  font-size: 15px;
  display: inline-block;
  width: auto;
}
.app-text-button:hover {
  color: white;
  background: none !important;
}

.app-body-content-button {
  float: right;
  font-size: 16px;
  padding: 15px;
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .app-body-content-button {
    padding: 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 800px) {
  .app-body-content-button {
    width: 100%;
  }
}

.app-button:hover {
  background: #FFBF00;
  color: white;
  cursor: pointer;
}

.button {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 31.5px;
  padding: 16px 50px;
  box-sizing: border-box;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  font-size: 20px;
  width: fit-content;
}
.button:hover {
  background: #fff;
  color: #000;
  cursor: pointer;
  text-decoration: none !important;
}
@media only screen and (max-width: 1536px) {
  .button {
    font-size: 16px;
    padding: 13px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .button {
    padding: 15px 30px;
  }
}

.button__arrow {
  padding-right: 30px;
}
.button__arrow svg {
  margin-left: 30px;
  width: 10px;
  stroke: #fff;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 1536px) {
  .button__arrow svg {
    margin-left: 20px;
  }
}
.button__arrow:hover svg {
  animation: button__arrow__move 0.3s ease-in-out;
}

@keyframes button__arrow__move {
  0% {
    top: 0px;
    left: 0;
    opacity: 1;
  }
  33% {
    top: -50px;
    left: 40px;
    opacity: 0;
  }
  66% {
    top: 50px;
    left: -40px;
    opacity: 0;
  }
  100% {
    top: 0px;
    left: 0;
    opacity: 1;
  }
}
.button--white:hover {
  background: #fff;
  box-shadow: 0 0 0 3px #fff;
  cursor: pointer;
  color: #373418;
}
.button--white:hover svg {
  stroke: #BD7C30;
  animation: button__arrow__move 0.3s ease-in-out;
}

.button--sm {
  padding: 13px 40px 13px 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}
.button--sm svg {
  margin: 0 !important;
  height: 14px;
  width: 14px;
}
.button--sm .text {
  font-size: 18px;
  line-height: 26.68px;
  margin-bottom: 1px;
  white-space: nowrap;
}

.button--black {
  border-color: black;
  cursor: pointer;
  color: black;
}
.button--black svg {
  stroke: black;
}
.button--black:hover svg {
  animation: button__arrow__move 0.3s ease-in-out;
}

.circle-arrow {
  width: 50px;
  height: 50px;
  border: solid 1px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  overflow: hidden;
}
.circle-arrow svg {
  width: 12px;
  position: relative;
  top: 2px;
}
.circle-arrow:hover {
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.circle-arrow:hover svg {
  animation: circle-arrow__move 0.3s ease-in-out;
  fill: black;
}

.circle-arrow--white {
  border: solid 1px #000;
}

@keyframes circle-arrow__move {
  0% {
    top: 2px;
    opacity: 1;
  }
  33% {
    top: -50px;
    opacity: 0;
  }
  66% {
    top: 50px;
    opacity: 0;
  }
  100% {
    top: 2px;
    opacity: 1;
  }
}
.carousel {
  margin-top: 90px;
  overflow-x: hidden;
}
.carousel .swiper-wrapper {
  display: flex;
}

.carousel__item {
  max-width: 1050px;
  width: 100%;
  min-height: 600px;
  border-radius: 5px;
}
@media only screen and (max-width: 1536px) {
  .carousel__item {
    max-width: 500px;
    min-height: 435px;
  }
}
@media only screen and (max-width: 768px) {
  .carousel__item {
    max-width: 435px;
    min-height: 375px;
  }
}
@media only screen and (max-width: 576px) {
  .carousel__item {
    max-width: 335px;
    min-height: 285px;
  }
}
@media only screen and (max-width: 376px) {
  .carousel__item {
    max-width: 100%;
  }
}

.carousel-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding-right: 70px;
}
@media only screen and (max-width: 1536px) {
  .carousel-navigation {
    padding-right: 65px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .carousel-navigation {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .carousel-navigation {
    padding-right: 0px;
    justify-content: center;
  }
}

.carousel-navigation__arrow:hover {
  cursor: pointer;
}
@media only screen and (max-width: 1536px) {
  .carousel-navigation__arrow {
    width: 50px !important;
    height: 50px !important;
  }
}

#carousel-navigation__arrow--prev {
  transform: rotate(-90deg);
}

#carousel-navigation__arrow--next {
  margin-left: 20px;
  transform: rotate(90deg);
}

/*HAMBURGERS*/
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 50px;
  height: 24px;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 375px) {
  .hamburger-box {
    transform: scale(0.8);
    margin: 0 -10px 0 -5px;
  }
}

.hamburger-inner {
  display: block;
  top: 50%;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Slider */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* Slider */
/*HAMBURGERS*/
.footer-bottom-row {
  width: 100%;
  background: #DECCB2;
  border-top: 1px solid white;
}
.footer-bottom-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-items: center;
  padding: 38px 0;
}
@media only screen and (max-width: 720px) {
  .footer-bottom-row .container {
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
  }
}

.footer-copyright p {
  font-size: 16px;
  color: black;
}

.footer-author {
  display: flex;
  align-items: center;
}
.footer-author .footer-author-logos {
  display: flex;
}
.footer-author .footer-author-logos a {
  text-decoration: none;
}
@media only screen and (max-width: 720px) {
  .footer-author .footer-author-logos {
    margin-top: 10px;
  }
}
.footer-author p {
  font-size: 16px;
  color: black;
}
.footer-author svg {
  margin-left: 10px;
  width: 100px;
  fill: black;
  transition: 0.3s;
  position: relative;
  top: 4px;
}
@media only screen and (max-width: 400px) {
  .footer-author svg {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 720px) {
  .footer-author {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .footer-author {
    margin-top: 15px;
    flex-direction: column;
  }
}

@media only screen and (max-width: 400px) {
  #footer-crow-logo {
    margin-left: 0px;
    margin-top: 5px;
  }
}

.navbar-floating {
  position: fixed;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 20;
  transition: opacity 0.2s, transform 0.2s;
}
.navbar-floating .container--big {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.navbar-floating nav a {
  color: black;
  padding: 0 clamp(8px, 1.3vw, 24px);
  margin: 0 clamp(8px, 0.52vw, 10px);
  font-size: 18px;
  line-height: 26.68px;
}
.navbar-floating nav a:first-of-type {
  margin-left: 0;
  padding-left: 0;
}
.navbar-floating nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.navbar-floating .navbar-floating__section {
  display: flex;
}
.navbar-floating .navbar-floating_hamburger-section .hamburger-inner {
  background-color: black !important;
}
.navbar-floating .navbar-floating_hamburger-section .hamburger-inner::before {
  background-color: black;
}
.navbar-floating .navbar-floating_hamburger-section .hamburger-inner::after {
  background-color: black;
}
.navbar-floating .navbar-floating__call {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  line-height: 20px;
  margin-right: clamp(20px, 2.2vw, 50px);
}
.navbar-floating .navbar-floating__call:hover {
  text-decoration: underline;
}
.navbar-floating .navbar-floating__call img {
  width: 28px;
  height: 28px;
}
.navbar-floating .navbar-floating__call--responsive {
  margin-right: 0;
}
.navbar-floating .navbar-floating__call--responsive img {
  width: 35px;
  height: 35px;
}
.navbar-floating .navbar-floating__logo-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.navbar-floating .navbar-floating__logo-wrapper a {
  pointer-events: all;
}
.navbar-floating.to-hidden-animation {
  transform: translateY(-5%);
  opacity: 0;
}
.navbar-floating.hidden {
  display: none;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 148px;
}
@media only screen and (max-width: 1536px) {
  .cards-container {
    margin-top: 80px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1366px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .cards-container {
    margin-top: 60px;
    gap: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .cards-container {
    margin-top: 40px;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cards-container .card {
  padding: 60px 0 77px 40px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 1536px) {
  .cards-container .card {
    padding: 41px 0 50px 30px;
  }
}
@media only screen and (max-width: 1366px) {
  .cards-container .card {
    padding: 40px 0 60px 30px;
  }
}
.cards-container .card .description {
  font-size: 20px;
  line-height: 24px;
  margin-right: 57px;
}
@media only screen and (max-width: 1536px) {
  .cards-container .card .description {
    font-size: 18px;
    line-height: 21.6px;
    margin-right: 44px;
  }
}
@media only screen and (max-width: 1366px) {
  .cards-container .card .description {
    margin-right: 31px;
  }
}
.cards-container .card .heading {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  margin-right: 99px;
}
@media only screen and (max-width: 1536px) {
  .cards-container .card .heading {
    margin-right: 54px;
    font-size: 28px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1366px) {
  .cards-container .card .heading {
    margin-right: 59px;
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .cards-container .card .heading {
    margin-right: 90px;
  }
}
.cards-container .card .icon {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media only screen and (max-width: 1536px) {
  .cards-container .card .icon {
    width: 70px;
    height: 70px;
    top: 10px;
    right: 10px;
  }
}
@media only screen and (max-width: 1366px) {
  .cards-container .card .icon {
    top: 10px;
    right: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .cards-container .card .icon {
    width: 65px;
    height: 65px;
  }
}
@media only screen and (max-width: 576px) {
  .cards-container .card .icon {
    width: 58px;
    height: 58px;
    top: 10px;
    right: 20px;
  }
}

/*# sourceMappingURL=preprava-zvirat.css.map */
