@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700;800;900&family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.cdnfonts.com/css/kepler-std-3");

:root {
  --primary-color: #cc2027;
  --secondary-color: rgba(27, 18, 19, 0.8);
  --black: #1b1213;
  --bg-three: #f8e9d7;
  --text-gray: #5b5b5b;
  --bg-hero-banner-height: 100vh;
  --bg-gray: rgba(27, 18, 19, 0.05);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "kepler-3-variable",sans-serif;
  font-variation-settings: 'opsz' 10, 'wdth' 102, 'wght' 340;
}

p {
  font-family: 'poppins', sans-serif;
  line-height: 27px;
}

body {
  font-family: "Poppins" sans-serif;
}
a {
  text-decoration: none;
  color: var(--secondary-color);
}

a:hover {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
}
ul li {
  /* list-style: none; */
}
.cus-ul li {
  list-style: none;
}
.container {
  max-width: 1216px;
}

.technologie-page ul li {
  list-style: disc;
}

.offcanvas-body .cus-ul li {
}

/* ====== Reuseable classes  ====== */
.section {
  padding: 45px 0;
}
.image-overlay {
  position: relative;
  display: block;
  overflow: hidden;
  background: radial-gradient(#111 50%, #000 100%);
}

.image-overlay:hover:after {
  background-color: rgba(0, 0, 0, 0.5);
}

.image-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.image-overlay:hover img {
  transform: scale(1.1);
	opacity: 0.3;
}

.image-overlay img {
  display: block;
  max-width: 100%;
  height: 300px;
  transition: 0.3s ease-out;
}

.image-overlay div,
.image-overlay a{
  z-index: 1;
}
.image-overlay a:hover{
  color: #FFF !important;
}

.cus-ul-li li {
  list-style: disc;
}


/* ====== custom color ====== */

.cus-text-gray {
  color: rgba(27, 18, 19, 0.4) !important;
}
.cus-text-danger {
  color: var(--primary-color) !important;
}
.cus-bg-danger {
  background-color: var(--primary-color) !important;
}
.cus-bg-secondary {
  background-color: var(--secondary-color) !important;
}

.cus-b-danger {
  border: 1px solid #cc2027;
}
.cus-bg-gray {
  background-color: var(--bg-gray);
}

.kitchen-item-box {
  height: 640px; 
  width: auto;
}
/* ====== custom  button ====== */

.cus-animated-btn {
  padding: 12px;
  /* height: 45px; */
  position: relative;
  display: block;
  color: white;
  overflow: hidden;
  transition: 1s all ease;
}
/* .cus-animated-btn::after {
  content: "AC";
} */
.cus-animated-btn::before {
  background: var(--primary-color);
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-100%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}

.cus-animated-btn::before {
  width: 25%;
  height: 100%;
}

.cus-animated-btn:hover::before {
  width: 100%;
}

.cus-btn-lg {
  padding: 24px 32px !important;
}
.cus-btn-lg-white {
  padding: 24px 32px;
  background-color: #fff;
}
.cus-btn-lg:hover,
.cus-btn-lg-white:hover {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #cc2027;
  color: #fff !important;
}

.mega-menu-item .image-overlay {
  background: #cc2027 !important;
  color: #fff !important;
}
.mega-menu-item .image-overlay:hover:after {
  background: #cc2027 !important;
}

.mega-menu-item:hover .image-overlay::before {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #cc2027 !important;
  color: #fff !important;
}
.cus-btn-lg-white:hover span {
  color: #fff !important;
}
/* ======= Typography   ====== */

.heading-1 {
  color: #1b1213;
  font-family: "kepler-3-variable",sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.heading-1__1 {
  color: #1b1213;
  font-family: "kepler-3-variable",sans-serif;
  font-size: 104px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.heading-2 {
  color: #1b1213;
  font-family: "kepler-3-variable",sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.heading-2__1 {
  color: #1b1213;
  font-family: "kepler-3-variable",sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.heading-3 {
  color: #1b1213;
  font-family: 'Poppins';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.heading-4 {
  color: #1b1213;
  font-family: 'Poppins';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.cus-text-xs {
  color: #1b1213;
  font-family: 'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}
.cus-text-sm {
  color: #1b1213;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.cus-text-md {
  color: #1b1213;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.page-title-section {
  font-size: 18px;
}

/* ==== style for navbar section ==== */
nav {
  padding: 23px 0 !important;
}

.transparent-header {
  /* background: linear-gradient(to bottom, #ff9900, #ff3366); */
  background: linear-gradient(180deg, #1b1213 0%, rgba(27, 18, 19, 0) 100%) !important;
  /* position: absolute !important; */
}
.transparent-header path {
  stroke: #fff;
}

.nav-link {
  transition: unset;
}

.transparent-header .nav-item,
.transparent-header .nav-link,
.transparent-header .e-shop {
  background: none;
  color: #fff !important;
}
.transparent-header .e-shop,
.transparent-header .cus-divider-lg,
.transparent-header .cus-divider-xs {
  border: 1px solid var(--white-40, rgba(255, 255, 255, 0.4));
}
.navbar {
  background: #ffffff;
}
.navbar-nav li a {
  color: #1b1213;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.e-shop {
  border: 1px solid rgba(27, 18, 19, 0.40);
  padding: 16px 24px;
}

.cus-divider-lg {
  width: 1px;
  height: 48px;
  background: rgba(27, 18, 19, 0.4);
}
.cus-divider-xs {
  width: 1px;
  height: 16px;
  background: rgba(27, 18, 19, 0.4);
}

.mega-menu-cont {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: 120px !important;
  display: none;
  transition: display 0.3s ease;
}
.mega-menu-arrow-icon svg {
  transition: transform 0.3s ease;
}

.mega-menu-arrow-icon-phone {
  transform: rotate(270deg);
}
.mega-menu-cont-phone,
.offcanvas-lis {
  transition: opacity 0.3s ease;
}
/* CSS for smooth transition */

.close-phone-mega-menu {
  cursor: pointer;
}
/*----- Mobile menu ---- */
.offcanvas-body .cus-ul li a {
  font-size: 35px !important;
}
.offcanvas-body .cus-ul li:hover a {
  color: var(--primary-color);
}

/* ==== style for navbar section ==== */
/* .hero-section {
  position: relative;
  background-image: url("/public/images/banner/hero-banner.png");
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-color: rgba(0, 0, 0, 0.5);
}


*/
.hero-content {
  padding-top: 200px;
  position: absolute;
  /* margin: 0 10%; */
  inset: 0;
  color: white;
  text-align: center;
}

.arrow-cont {
  width: 126px;
  height: 126px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  margin: 0 auto;
  position: relative;
  transform: rotate(45deg);
}
.arrow {
  /* animation: bounceArrow 1s infinite ease-in-out; */
  top: 45% !important;
  left: 43%;
}
.animated-arrow {
  animation: bounceArrow 1s infinite ease-in-out;
  cursor: pointer;
}
@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}
/* ==== style for service section ==== */

.service-section .box-img {
  position: absolute;
  top: 10%;
  right: 0;
}

.cursor-pointer {
  cursor: pointer;
}

/* ==== style for product section ==== */

.brand-name {
  position: relative;
  width: 100%;
}
.arrow-root {
  padding-top: 50px;
}
.brand-name::after {
  position: absolute;
  content: "AC";

  width: 32px;
  height: 45px;
  background-color: var(--primary-color);
  text-align: center;
  top: -12px;
  padding-top: 11px;
  transition: width 0.3s ease;
}
.brand-name:hover::after {
  width: 100%;
}

/* ==== style for znamená section ==== */
.means {
}
/* ==== style for footer section ==== */

footer li a {
  text-align: left !important;
}

/* ======================= */
/* =====  Other pages ===== */
/* ======================= */

.kitchen-hero,
.sedakey-page .sedakey-hero,
.postele-hero,
.realizacie-hero,
.technologie-hero,
.o-nas-hero,
.custom-interior-hero,
.pre-firmy-hero {
  position: relative;
  background-image: url("/public/images/banner/hero-banner-kitchen.png");
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 664px;
  height: var(--bg-hero-banner-height);
}

.hero-section::before,
.kitchen-hero::before,
.sedakey-page .sedakey-hero::before,
.postele-hero::before,
.realizacie-hero::before,
.technologie-hero::before,
.o-nas-hero::before,
.custom-interior-hero::before,
.pre-firmy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    rgba(0, 0, 0, 0.5);
  /* background-color: rgba(0, 0, 0, 0.5); */
}

.cus-ul,
.offcanvas-body {
  padding: 0;
}
.offcanvas {
  width: 600px !important;
}
.offcanvas-lis {
  padding: 70px !important;
}

.offcanvas a {
  color: #1b1213;
}

/* ======= slider CSS  =================== */
.sedakey-page .swiper-slide {
  width: 100%;
  height: 664px;
}
.sedakey-page .swiper-slide img {
  height: 664px;
  object-fit: cover;
}
.swiper-button-next,
.swiper-button-prev {
  /* width: 100%; */

  position: absolute;
  top: 50%;
  /* width: calc(var(--swiper-navigation-size) / 44 * 27);  */
  width: 100px;

  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.tabs {
  display: flex;
  border-bottom: 1px solid rgba(27, 18, 19, 0.15);
  /* justify-content: space-between; */
}
.tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease, opacity 0.3s ease;
}
.tab.active {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  /* font-weight: bold; */
}
.tab:hover {
  border-bottom-color: var(--primary-color);
}
.content {
  padding: 20px;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

/* larger slider */
.common-large-slider img {
  height: 900px !important;
  object-fit: cover;
}

.common-large-slider {
  height: 900px !important;
}

.large-slider-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 30px !important;
  z-index: 1;
}
.large-slider-pagination span {
  width: 24px;
  height: 3px;
  border-radius: 0;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.40);
}
.large-slider-pagination .swiper-pagination-bullet-active {
  width: 40px;
height: 3px;
  background: #ffffff;
}

/* =====  blog page slider  ====== */
.custom-slider-blog .swiper-button-next:after,
.swiper-button-prev:after {
  display: block;
}
.custom-slider-blog .swiper-button-next,
.custom-slider-blog .swiper-button-prev {
  position: relative;
  width: 100px;

  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.custom-slider-blog .swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.custom-slider-blog .custom-slider-arrows {
  display: flex;
  gap: 40px;
}

/* =====  blog page pagination  ====== */
.pagination-links {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-numbers {
  padding: 10px 20px;
  color: var(--black);
  font-weight: bold;
  cursor: pointer;
  /* border: 1px solid transparent; */
  transition: border 0.3s ease, opacity 0.3s ease;
}

.page-numbers.current {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: bold;
  border-bottom: 1px solid var(--red-100, #cc2027);
}

/* =====  background image css  ====== */
.hero-section {
  position: relative;
  width: 100%;
  height: var(--bg-hero-banner-height);
  min-height: 664px;
  overflow: hidden;
}

.hero-section .slide {
  display: none;
  width: 100%;
  height: 100%;
  animation-duration: 5s;
}

.hero-section .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  animation-name: fade;
}

@keyframes fade {
  0% {
    opacity: 0.9;
    transform: scale(1.1);
  }

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

/* =======   vertical  tabs  css for index page    =============== */

.v-tab-container {
  display: flex;
  flex-direction: column;
}
.v-tab {
  padding: 20px 30px;
  border-left: 1px solid rgba(27, 18, 19, 0.15);
  cursor: pointer;
}
.v-tab.active {
  border-left-color: var(--primary-color);
}
.v-tab.active .heading-3,
.v-tab.active .cus-text-sm {
  color: #000 !important ;
}
.v-tab-content {
  display: none;
}
.v-tab-content.active {
  display: block;
}

.v-tab-content img {
  animation: fadeIn 1s forwards;
  transform: translateY(30px); 
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =======  map style   =============== */
.custom-map-control {
  position: absolute;
  right: 0;
  top: 40%;
  margin: 20px;
}
.leaflet-control {
    background-color: #fff;
    border-radius: 8px  !important;
    border: 1px solid #fff0  !important;
    box-shadow: 10px 24px 54px 0px rgb(0 0 0 / 13%)  !important;
}
.leaflet-touch .leaflet-bar, .leaflet-touch .leaflet-control-layers {
    border: 1px solid #fff0  !important;
}
.leaflet-control-zoom-in {
    background-position: 6px 6px !important;
    background-size: 30px !important;
}
.leaflet-control-zoom-out {
    background-position: 6px -24px !important;
    background-size: 30px !important;
}
.leaflet-bar a {
    height: 40px !important;
    width: 40px !important;
}
.map {
  width: 100%;
  height: 900px;
  top: 0;
  bottom: 0;
}
.leaflet-control-attribution {
  display: none;
}
.map-gradient {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.00) 90.00%);
  height: 100px;
  position: relative;
  margin-bottom: -100px;
  z-index: 1;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-left: 0;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0;
}

/* Marker tweaks */
.leaflet-popup-close-button {
  display: block;
  position: absolute;
  right: -70px;
  top: 20px;
  padding: 10px;
  background-color: #c2bebe;
  border-radius: 50%;
}

.leaflet-popup-content {
  font: 400 15px/22px 'Source Sans Pro', 'Helvetica Neue', sans-serif;
  padding: 0;
  width: auto !important;
}

.leaflet-popup-content-wrapper {
  background: #fff0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.leaflet-popup-tip {
  border-top: 10px solid #c53a3a00 !important;
}

.leaflet-popup-content div {
  padding: 10px;
}

.leaflet-container .leaflet-marker-icon {
  cursor: pointer;
}

.map .card {
  background: var(--white-100, #FFF);
box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-close-button, .map-tooltip.closable .close {
  background-position: 3px -49px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50px !important;
}
.leaflet-popup-close-button {
  top: 30px !important;
  right: 30px !important;
  -webkit-filter: invert(100%);
}
.lang-selector {
  color: rgba(27, 18, 19, 0.40);
}
.lang-selector.active{
  color: #000;
}

.transparent-header .lang-selector {
  color: #FFFFFF66;
}

.transparent-header .lang-selector.active {
  color: #ffffff;
}



/* custom animations */

.tab-content.active {
  transform: translateY(-30px); /* starting slightly above */
  animation: slideDown .3s forwards;
}

.animated-slideDown {
  transform: translateY(-30px); /* starting slightly above */
  animation: slideDown .3s forwards;
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animated-exitUp {
  animation: exitUp 0.3s forwards;
}

@keyframes exitUp {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-30px);
  }
}



/* Video Player */
  /* The outer-div to move the elements */
  .box-video{
    position: relative;
    width: 100%;
    margin:0 auto 20px auto;
    cursor: pointer;
    overflow: hidden;
  }
  
   /* Set Cover aka Background-Image */
  .box-video .bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
  }
  
   /* Add light shade to make play button visible*/
  .bg-video::after{ 
    content:'';
    position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.1);
      z-index: 3;
      }

  
  /* When Class added the Cover gets hidden... */
  .box-video.open .bg-video{
    visibility: hidden;
    opacity: 0;
  
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;  
  }
  
  /* and iframe shows up */
  .box-video.open .video-container{
    opacity: 1;
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
  }
  
  /* Giving the div ratio of 16:9 with padding */
  .video-container {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    z-index: 1;
    padding-bottom: 56.27198%;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

   /* =====   contact  css  ====== */

   .contact-input-field {
    padding: 16px;
    border: 1px solid rgba(27, 18, 19, 0.15);
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #1b1213;

    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .contact-form .form-select {
    border-radius: 0 !important;
  }
  .contact-form .form-select:focus,
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    outline: none;
  }

  .upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
  }
  .upload-btn-wrapper input[type="file"] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }

  .mega-menu-item .cus-text-md {
    font-size: 24px;
  }
  
  .kitchen-landing-cards {
    height: 640px; 
    width: auto;
  }

  .lh-150 {
    line-height: 150%;
  }

  .info-box p {
    font-size: 18px;
  }

.com-map-button-section {
  margin-top: -150px; 
  z-index:1; 
  position: relative;
}

.font-w-600 {
  font-weight: 600;
}



.contact-tab-button:hover {
  background-color: var(--red-100, #CC2027);
  color: var(--white-100, #fff);
}

.contact-tab-button {
  position: relative;
  padding: 16px 35px;
}

.contact-tab-button::before,
.contact-tab-button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  padding: 0 25px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.contact-tab-button::before {
  left: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15 19L8 12L15 5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.contact-tab-button::after {
  right: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M9 5L16 12L9 19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}