/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/* ---------------- Basic css ------------------ */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --bodyFont: "Ubuntu", serif;
  --menuHeight: 9rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}
.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  color: #000;
  overflow-x: hidden;
  font-family: var(--bodyFont);
  background: #FFF8E7;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: var(--menuHeight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--bodyFont);
  color: #162f24;
}

.title {
  font-size: 4rem;
  line-height: 5rem;
}

/* image colors */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* texts */
.text_xl {
  font-size: 2rem;
  line-height: 3rem;
}
.text_lg {
  font-size: 1.8rem;
  line-height: 3.2rem;
}
.text_md {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.text_sm {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.text_xsm {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.text_2xsm {
  font-size: 1.05rem;
  line-height: 1.21rem;
}
.text-light {
  color:#fff !important;
  /* color: #fff2e4 !important; */
}
.textshadow {
  text-shadow: 6px 6px 15px #4f72a8;
}

/* ============= hamburger_btn ============= */
.hamburger_btn {
  transform: translateX(0.2rem);
  overflow: hidden;
}

.hamburger_btn input {
  display: none;
}
.hamburger_btn .grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.hamburger_btn .grid > * {
  position: relative;
}
.hamburger_btn label {
  display: block;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
}
.hamburger_btn svg {
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.hamburger_btn circle {
  font-size: 5rem;
}
@media (min-aspect-ratio: 1) {
  .hamburger_btn label {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.hamburger_btn .menu--1 label {
  bottom: 0;
}
.hamburger_btn .menu--1 label {
  right: 0;
}
.hamburger_btn path {
  fill: none;
  stroke: #414042;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger_btn circle {
  fill: rgba(255, 255, 255, 0);
  opacity: 0;
}
.hamburger_btn label:hover circle {
  opacity: 1;
}
.hamburger_btn .cross input:checked + svg .line--1,
.hamburger_btn .cross input:checked + svg .line--3 {
  --length: 22.627416998;
}
.hamburger_btn .cross input:checked + svg .line--2 {
  --length: 0;
}
.hamburger_btn .back input:checked + svg .line--1,
.hamburger_btn .back input:checked + svg .line--3 {
  --length: 8.602325267;
}
.hamburger_btn .menu--1 .line--1,
.hamburger_btn .menu--1 .line--3 {
  --total-length: 126.6418304443;
}
.hamburger_btn .menu--1 .line--2 {
  --total-length: 70;
}
.hamburger_btn .menu--1 input:checked + svg .line--1,
.hamburger_btn .menu--1 input:checked + svg .line--3 {
  --offset: -94.1149185097;
}
.hamburger_btn .menu--1 input:checked + svg .line--2 {
  --offset: -50;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: #239151;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000000;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.back-to-top:hover {
  background: #162f24;
}

.back-to-top img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
  width: 1.5rem;
}

.topbtn_hide {
  opacity: 1;
}

/* rounded */
.rounded_8 {
  border-radius: var(--radius8) !important;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #FFF8E7;
  height: var(--menuHeight);
}

.site_header.sticky {
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.2);
}

/* added styles */
.menu_link {
  color: #162f24;
  margin: 0 auto;
  padding: 0 1.8rem;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.logo img {
  width: 30rem;
}

.primary_menu {
  display: flex;
  align-items: center; /* zarovnanie na stred výšky */
  height: var(--menuHeight); /* zabezpečí rovnakú výšku ako header */
}

.menu_link:hover,
.menu_link.active {
  background: #fff;
  color: #239151;
}

body.menu_toggled .mobile_menu .menu_link:hover span {
  color: #239151;
}

.kontakt-selection_btn {
  background: #162f24;
  padding: 1.2rem 3.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3rem;
  margin: 0 4rem;
  margin-right: 0;
}

.kontakt-selection_btn:hover {
  background: #239151;
  color: white;
}

.btn_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*
.btn_wrap:before {
  width: 0;
  height: 0.4rem;
  background: #12502F;
  content: "";
  position: absolute;
  top: 0;
  left: 4rem;
  transition: 0.35s ease;
}

.menu_link:before {
  width: 0;
  height: 0.4rem;
  background: #12502F;
  content: "";
  position: absolute;
  top: 0;
  transition: 0.35s ease;
}

.btn_wrap:hover:before {
  width: calc(100% - 4rem);
}

.menu_link:hover:before,
.menu_link.active:before {
  width: 100%;
}
*/

/* doplnenie */
.menu_link span {
  position: relative;
}

/*
.menu_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu_link:hover::before {
  transform: scaleX(1);
}
*/

body.menu_toggled .menu_link::before {
  display: none !important;
}

body.menu_toggled .btn_wrap:before {
  display: none !important;
}


/* ================== hero_area ===================== */
.hero_area {
  padding: 5rem 0 7.5rem;
}

.hero_img1 {
  width: 18.8rem;
  position: absolute;
  left: 18rem;
  top: 10rem;
}

.hero_img2 {
  width: 47rem;
  position: absolute;
  right: 9rem;
  top: 2.5rem;
}

.hero_content {
  min-height: 60rem;
  position: relative;
}

/* ================== about_area ===================== */
.about_area {
  padding: 7.5rem 0;
  position: relative;
}
.about_area::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(50% + 10.55rem);
  height: 100%;
  top: 0;
  /* background: #162f24; */
  background: #239151;
}
.about_area .row {
  margin: 0 -2.75rem;
  gap: 4.8rem 0;
}
.about_area .row > * {
  padding: 0 2.75rem;
}

/* ===================== art_area =================== */
.art_area {
  padding-top: 5rem;
  padding-bottom: 48.6rem;
}

/* ==================== product_area ================== */
.product_area {
  padding: 6.7rem 0 8.5rem;
  position: relative;
  z-index: 9;
}
.product_area .row {
  margin: 0 -2.5rem;
  gap: 1rem 0;
  padding: 6.3rem 15.7rem;
}
.product_area .row > * {
  padding: 0 2.5rem;
}
.product_area .section_top {
  width: 96.5rem;
}
.item {
  padding: 1.7rem 1rem;
  min-height: 30.7rem;
  transition: 0.25s ease;
  border-radius: 0.8rem;
}
.item:hover {
  background: #fff;
}
.item h4 {
  padding: 3.2rem 0 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0.020000000298023224rem;
  color: #162f24;
}
.item p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0.020000000298023224rem;
  color: #000;
}

.item_img {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item_img img {
  width: 90%;
}

/* ============= cta_area ========== */
.cta_area {
  position: relative;
}
.cta_area .section_top {
  max-width: 49.4rem;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8.5rem;
}


/* ============= cena_area ========== */
.cena_area {
  /* background: #76B493; */
  background: #239151;
  padding: 6.8rem 0 ;
}


/* ============== Footer area ============== */
.footer_section {
  background: #162f24;
  padding: 6.8rem 0 3.4rem;
}

.footer_section .section_top h2 {
  font-size: 4.6rem;
  text-align: center;
  color: #fff;
  line-height: 5.6rem;
  padding-bottom: 4rem;
}

.social svg.youtube {
  width: 8rem;
}

.social svg.lin {
  width: 5.2rem;
}

.social a {
  margin: 0 1.8rem;
  padding: 0.5rem 1.2rem;
}

.social {
  text-align: center;
}

.footer_section .section_top {
  padding-bottom: 11rem;
}

.footer_links {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  text-transform: uppercase;
  display: grid;
  gap: 1.5rem;
  font-weight: 400;
}

.footer_links li {
  position: relative;
  width: fit-content;
}

.footer_links li:before {
  width: 0;
  background: #fff;
  height: 0.1rem;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.35s ease;
}

.footer_links li:hover:before {
  width: 100%;
}

.footer_address p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
}

.footer_last img {
  width: 12rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.footer_last p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ======================== about_areav3 ======================== */
.about_areav3:before {
  /* background: #fff; */
  background: #FFF8E7;
}

.about_areav3 .row {
  margin: 0 -4.6rem;
}

.about_areav3 .row > * {
  padding: 0 4.6rem;
}

.about_areav3 .content {
  max-width: 45rem;
}

/* ==================== art_top ====================== */
.art_top .section_top {
  max-width: 96.5rem;
}

/* =================== Contact area ==================== */
.contact_area {
  background: #FFF8E7;
}

.contact_area .content h2 {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.02em;
}

.h2_two {
  padding: 5rem 0 2rem;
}

.big-text-list {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-family: var(--bodyFont);
  color: #414042; 
}

.contact_socio a img {
  width: 3.5rem;
}

.contact_socio {
  gap: 1rem;
  padding: 4.5rem 0 3rem;
}

.contact_btn {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 1.3rem 4.8rem;
  width: fit-content;
  margin: 0 auto;
  border: 0.4rem solid #414042;
  border-radius: 1rem;
  background: #d9d9d9;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_btn:hover {
  background: #414042;
  color: #fff;
}

.kontakt-podnadpis {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.kontakt-zoznam li a {
  font-size: 4rem; 
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin-top: 1rem;
}


/* =================== Owl-carousel ==================== */
/*
.owl-carousel .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}

.owl-carousel .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; 
}

.owl-carousel .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none; 
}

.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; 
}

.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 10px; 
}

.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline; 
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; 
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #869791; 
}
*/

/*
.owl-carousel img {
  height: 500px;
  width: auto;
  object-fit: cover; 
  display: block;
  margin-left: auto;
  margin-right: auto;
}
*/

.owl-carousel .owl-item {
    width: auto !important;
    white-space: nowrap;
}

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.owl-carousel {
  white-space: nowrap;
}

.owl-stage {
  display: flex !important;
  flex-wrap: nowrap !important;
}


.owl-carousel .item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.owl-carousel .item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
}