@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Figtree:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	scroll-behavior: inherit;
    --white-color: #fff;

    --black-color: #1D1D1B;
    --red-color: #A71F1E;
}


body{
  scroll-behavior: inherit;
  overflow-x: hidden;
}
header + section {
  margin-top: 70px;
}
section{
  padding: 30px 0;
  overflow-x: hidden;
}
.container {
  max-width: 1400px;
  width: 100%;
}
h1,h2,h3,h4,h5{
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-weight: 800;
}

p, ul{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.padding_zero {
  padding: 0;
}
.margin_zero{
  margin: 0;
} 

.flex{
  display: flex;
}

.row.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row.flex::before, .row.flex::after {
  display: none
}
.flex.center { 
  -webkit-box-align: center; 
  -ms-flex-align: center; 
  align-items: center;
}

.box {
  margin-bottom: -30px;
}
.box > div{
  margin-bottom: 30px;
}

a{
  outline: none;
  text-decoration: none;
  color: var(--black-color);
}
a:hover{
  text-decoration: none;
  color: var(--black-color);
}
a:focus {
  outline: none;
}


.button_red{
  background-color: var(--red-color);
  color: var(--white-color);
  font-size: 20px;
  border-radius: 5px;
  border: none;
  padding: 7px 16px;
}
.button_red:hover {
  background-color: var(--white-color);
  color: var(--red-color);
  border: 1px solid var(--red-color);
  transition: 0.3s;
}



/*
***                                     INDEX HEADER
*/
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  width: 100%;
}

.whrapper_header {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 100px;
  justify-content: space-between;
}

.wrapper_header_logo a{
  width: 200px;
}
.wrapper_header_logo{
  max-width: 250px;
  min-width: 10%;
}
.logo{
  width: 210px;
}

.navmenu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 75px;
}
.navmenu li{
  position: relative;
}
.navmenu li a{
  display: flex;
  font-size: 18px;
  color: #16163F;
  align-items: center;
  text-decoration: none;
  width: fit-content;
}
.navmenu li a:hover{
  color: var(--red-color);
}
.navmenu li a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px; /* posunutí o 3px pod link */
  left: 30;
  height: 5px;
  width: 0;
  background: var(--red-color);
  transition: 0.3s ease;
}
.navmenu li a:hover::after {
  width: 100%; /* na hover se zobrazí celá čára */
}

.navmenu li a span{
  transform: rotate(90deg);
  margin-left: 5px;
}
.navmenu li:hover > ul{
  opacity: 1;
  visibility: visible;
}

.navmenu > li > ul{
  list-style: none;
  padding: 17px 20px 8px 20px;
  opacity: 0;
  margin: 0;
  visibility: hidden;
  position: absolute;
  top: 39px;
  z-index: 1;
  background-color: var(--red-color);
  transition: all .3s ease-in-out;
  white-space: nowrap;
}
.navmenu > li > ul li {
  margin-bottom: 11px;
}
.navmenu > li > ul li a{
  display: flex;
  font-size: 18px;
  color: #FFFFFF;
  height: auto;
  align-items: center;
  margin: 0;
}
.navmenu > li > ul li a::after {
  background: #FFFFFF;
}
.open_menu{
  display: none;
}



/*
***                                     section_text
*/
.wrapper_text h1{
  font-size: 70px;
}
.wrapper_text h2{
  font-size: 32px;
  font-weight: bold;
}
.wrapper_text h3{
  font-size: 20px;
  font-weight: bold;
}
/*
***                                     section_text_img
*/
.wrapper_text_img_all{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: center;
}

.wrapper_text_img{
  position: relative;
}
.wrapper_text_img::before{
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  width: 5px;
  background-color: var(--red-color);
}
.wrapper_text_img img{
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.wrapper_text_img.mala img{
  max-height: 250px;
}
.wrapper_text_img.stredni img{
  max-height: 350px;
}
.wrapper_text_img.velka img{
  max-height: 500px;
}

/*
***                                     section_intro_home_page
*/

.section_intro_home_page .wrapper_text h1{
  margin: 0 0 20px 0;
}
.section_intro_home_page {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.section_intro_home_page::before{
  top: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(29, 29, 27, 0.0) 0%, rgba(29, 29, 27, 1) 100%);
  z-index: 0;
}
.wrapper_intro_home_page_all {
  position: relative;
  z-index: 1;
  margin-top: 500px;
  margin-bottom: 200px;
}

.section_intro_home_page .wrapper_text h1,
.section_intro_home_page .wrapper_text h2,
.section_intro_home_page .wrapper_text h3,
.section_intro_home_page .wrapper_text p{
  color: var(--white-color);
}


/*
***                                     section_service
*/


.section_service + .section_service {
  margin-top: -20px; 
}

.section_service .wrapper_text h2{
  margin-bottom: 40px;
}
.wrapper_text_service_line{
  position: relative;
  padding-left: 15px;
}
.wrapper_text_service_line::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--red-color);
  left: 0;
  top: 0;
}

.wrapper_service_img_all{
  row-gap: 20px;
}

/*
***                                     section_gallery
*/

.wrapper_gallery_swiper_all {
  position: relative;
}

.item_gallery {
  display: flex;
  height: 170px;
}
.item_gallery img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.item_gallery_video{
  width: 330px;
  height: 285px;
}
.item_gallery_video iframe{
  height: 100%;
  border-radius: 5px;
}

.section_gallery .swiper_gallery .item_gallery img{
  filter: grayscale(0%);
}
.swiper_gallery{
  padding-bottom: 36px;
}
.wrapper_swiper_gallery_slide{
  display: flex;
  justify-content: center;
}
.wrapper_swiper_gallery_slide .item_gallery{
  width: 100%;
  height: 222px;
}

.wrapper_gallery_swiper_all .controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 43px);
  pointer-events: none;
  width: calc(100% - 30px);
}
.wrapper_gallery_swiper_all .controls div {
  cursor: pointer;
  pointer-events: all;
}
.wrapper_gallery_swiper_all .prev {
  position: relative;
  left: -125px;
}
.wrapper_gallery_swiper_all .next {
  position: relative;
  right: -125px;
}
.wrapper_gallery_swiper_all .prev img {
  width: 40px;
  height: 40px;
}
.wrapper_gallery_swiper_all .next img {
  width: 40px;
  height: 40px;
}

.swiper_gallery .swiper-pagination {
  height: 16px;
  padding: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper_gallery .swiper-pagination-bullet{
  background: var(--red-color);
  width: 16px;
  height: 16px;
}



/*
***                                     BLOG
*/
.blog_introduction h1{
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--purple-color);
}
.blog_introduction p{
  text-align: center;
  font-size: 22px;
}
.section_blog{
  padding-top: 100px;
}

.blog_card_wrapper {
  padding: 15px;
}
.blog_card_item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 285px;
  padding: 20px;
  position: relative;
  background-position: center;
  background-size: cover;
}
.blog_card_item::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0pc;
  width: 100%;
  height: 100%;
  background: #030303;
  opacity: 0.5;
}

.blog_card_item_top{
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog_card_wrapper a{
  text-decoration: none;
}
.blog_card_item_top p{
  color: #FFFFFF;
  position: relative;
font-size: 14px;
}
.blog_card_title{
  position: relative;
  color: #FFFFFF;
  font-size: 23px;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
  transition: .3s;
}
.blog_card_item:hover .blog_card_title{
  color: var(--purple-color-400);
}




/*
***                                     BLOG SINGLE
*/
.wrapper_navmenu_filtr{
  padding-top: 100px;
}
.wrapper_three_nejnovejsi_prispevky_swiper{
  display: none;
}
.ul_navmenu_filtr{
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 20px 20px 20px 60px;
  row-gap: 10px;
  width: fit-content;
  margin: 0;
}
.navmenu_filtr_text{
  color: var(--purple-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0px 20px 0px 20px ;
  text-decoration: none;
}
.navmenu_filtr_text:hover, .active .navmenu_filtr_text{
  color: var(--purple-color-400);
  transition: 0.4s;
}
.item_prispevek {
  padding: 80px;
}
.item_prispevek h2{
  font-size: 40px;
  line-height: 47px;
  font-weight: 400;
  margin-bottom: 50px;
}
.item_prispevek h3{
  font-size: 36px;
  line-height: 43px;
  font-weight: 700;
}
.item_prispevek button{
  font-size: 16px;
  line-height: 22px;
  background-color: #BDDE00;
  border-radius: 20px;
  min-width: 240px;
  height: 45px;
}
.item_prispevek p, .item_prispevek ul, .item_prispevek ol{
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 40px;
}
.item_prispevek img {
  max-width: 100%;
}
.single_card_item_top{
  display: flex;
}
.single_dot{
  margin-left: 10px;
  margin-right: 10px;
}





.wrapper_line_socmedia{
  padding: 0 60px 60px 60px;
  display: flex;
  flex-direction: column;
}
.wrapper_rubtiky ul{
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 25px;
  padding: 0;
  margin: 0;
  padding-bottom: 25px;

}
.wrapper_rubtiky ul li{
  list-style: none;
}
.wrapper_rubtiky ul li a{
  border: 1px solid rgba(38, 32, 39, 0.20);
  background: #FFF;
  padding: 10px 15px;
  color: #262027;
  font-style: italic;
}
.item_line_socmedia{
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(26, 36, 39, 0.3);
}
.item_socmedia_autor{
  display: flex;
  align-items: flex-end;
}
.aligncenter {
  display: flex;
  position: relative;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
img.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}
img.alignright {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
}
.post_button{
  border: 0px solid rgb(168, 158, 145);
  color: rgb(255, 255, 255)!important;
  text-decoration: none!important;
  background: rgb(11, 143, 18);
  border-radius: 20px;
  min-width: 230px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex!important;
  width: auto;
  padding: 0 30px;
}
.item_prispevek .post_button{
  display: flex;
  align-items: center;
}

.wrapper_nejnovejsi_prispvevky_text {
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
  font-size: 16px;
}




/*
***                                     footer
*/
.wrapper_footer_title{
  margin-bottom: 20px;
}

.wrapper_footer_title { order: 1; }
.wrapper_footer_map { order: 2; }
.wrapper_footer_content_all { order: 3; }

.footer{
  padding-top: 40px;
  background-color: var(--red-color);
}
.wrapper_footer_content_row{
  padding-bottom: 60px;
}
.footer .wrapper_text h2 {
  color: var(--white-color);
  margin: 0;
}
.footer .wrapper_text p {
  color: var(--white-color);
  font-size: 20px;
  margin: 0
}
.wrapper_footer_content_label p{
  font-weight: bold;
}

.wrapper_footer_map iframe{
  width: 100%;
  border-radius: 5px;
}

.wrapper_footer_content_all{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-left: 68px;
}
.wrapper_footer_link{
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.wrapper_footer_link_icon{
  width: 24px;
  height: 24px;
}
.wrapper_footer_link_icon img{
  width: 100%;
  filter: brightness(0) invert(1);
}
.wrapper_footer_link a{
  font-size: 20px;
  color: var(--white-color);
}
.footer .wrapper_text p.item_ico_dic{
  margin: 0 0 0 50px;
}



.wrapper_footer_container_gdpr_cookies{
  background: var(--white-color);
  padding-top: 40px;
}
.wrapper_gdpr_cookies {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 25px;
  margin-bottom: 15px;
}
.wrapper_gdpr_cookies a{
  font-size: 16px;
}



/* 
***                                     COOKIES 
*/

.cookies_wrp {
  position: fixed;
  z-index: 10000;
  bottom: -250px;
  left: 0;
  width: 100%;
  pointer-events: none;
  padding: 20px;
  z-index: 1000;
  transition: 0.7s ease;
}

.cookies_inner {
  display: flex;
  border-radius: 12px;
  border: 1px solid #dee2ea;
  background: #fff;
  box-shadow: 0px 15px 35px -5px rgba(9, 17, 29, 0.15);
  margin: 0 auto;
  max-width: 940px;
  padding: 28px;
  gap: 20px 40px;
}
  
.cookies_right {
  flex: none;
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
  
.cookies_right button {
  padding: 0;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 6px;
  background: var(--red-color);
  height: 40px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13.886px;
  color: #fff;
  border: 1px solid var(--red-color);
}
  
.cookies_right button.cookies_secondary {
  background-color: transparent;
  border: 1px solid var(--red-color);
  color: var(--red-color);
}

.cookies_right button.cookies_secondary:hover {
  background-color: var(--red-color);
  color: #fff;
  opacity: 1;
}

.cookies_right button:hover {
  opacity: 0.7;
}

.cookies_left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cookies_label {
  margin: 0;
  margin-bottom: 12px;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.199px;
}

.cookies_desc p {
  color: #414b63;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.346px;
  margin-bottom: 0;
  letter-spacing: -0.14px;
}

.cookis_list {
  display: flex;
  gap: 10px 30px;
  margin-bottom: 24px;
  align-items: center;
  padding: 0;
  list-style-type: none;
}

.cookis_list li {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 12.719px;
  letter-spacing: -0.28px;
  min-height: 20px;
  display: flex;
  align-items: center;
}

.cookis_list li.active::before {
  border-width: 6px;
}

.cookis_list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transition: 0.3s;
  border: 2px solid var(--red-color);
}

.cookies_more {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12.719px; /* 105.475% */
  letter-spacing: -0.241px;
  text-decoration-line: underline;
}

.cookies_more:hover {
  text-decoration: none;
}

.cookies_select_wrp {
  display: none;
  flex: 1;
  align-items: flex-end;
}

.cookies_desc {
  flex: 1;
  padding-top: 10px;
}
.selecting_cookies .cookies_button {
  border: 1px solid var(--red-color);
  background: var(--white-color);
  color: var(--red-color);
}

.selecting_cookies .cookies_button.cookies_secondary {
  background: var(--red-color);
  color: #fff;
}
.show_flex {
  display: flex;
}
.cookies_wrp.opened {
  bottom: 0px;
}

.opened .cookies_inner {
  pointer-events: all;
}

.open_cookies{
  cursor: pointer;
  color: var(--red-color);
  font-weight: bold;
}