/* --------------------------
--- GENERAL CSS ---
----------------------------- */

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  /*line-height: 1.4;*/
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* fix for aos animation */
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:focus,
a:hover {
  color: #ee4123;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

p,
table {
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin-bottom: 20px;
}

table {
  width: 100%;
}
table tbody td {
  padding: 10px;
  background: #ececec;
}
table tr:nth-child(odd) td {
  background: #f7f7f7;
}

/* Ordered list default: 1., 2., 3., etc. */
.main-content .item-page ol {
  padding-left: 32px;
  margin-bottom: 20px;
}

/* Ordered list: bottom-spacing */
.main-content .item-page ol.bottom-spacing li {
  margin-bottom: 20px;
}

/* Bullets: default */
.main-content .item-page ul {
  list-style: none;
  margin: 0 0 20px 15px;
  padding: 0;
}
.main-content .item-page ul li {
  position: relative;
  padding-left: 20px;
}
.main-content .item-page ul li:before {
  content: "-";
  position: absolute;
  left: 0;
}
.logos-carousel ul li:before {
  display: none;
}

/* Bullets: bottom-spacing */
.main-content .item-page ul.bottom-spacing li {
  margin-bottom: 20px;
}

/* Bullets: red-squares */
.main-content .item-page ul.red-squares {
  padding-left: 15px;
  margin-bottom: 20px;
}
.main-content .item-page ul.red-squares li {
  line-height: 20px;
  margin-bottom: 2px;
}
.main-content .item-page ul.red-squares li:before {
  content: "";
  width: 10px;
  height: 20px;
  background: #ff505d;
}

/* --------------------------------------------
--- OVERRIDE over lity lightbox js library ---
----------------------------------------------- */
.lity {
  background: rgba(0, 0, 0, 0.8);
}

/* --------------------------
--- BG IMAGE responsive ---
----------------------------- */
.img-zoom {
  overflow: hidden;
  display: block;
}
.image-cover {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-bottom: 66.66666%;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
}
.img-zoom:hover .image-cover,
.img-zoom:focus .image-cover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* --------------------------
--- BUTTONS ---
----------------------------- */
.btn {
  position: relative;
  background: #ee4123;
  border: 1px solid #ee4123;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  padding: 13px 40px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn:hover,
.btn:focus {
  color: #000;
  background: rgb(238, 65, 35, 0.9);
  border-color: #ee4123;
}

.btn-red {
  color: #fff;
  background: #ff515c;
  border-color: transparent;
}
.btn-red:hover,
.btn-red:focus {
  color: #fff;
  background: #a8000b;
  border-color: transparent;
}

.btn-blue {
  color: #fff;
  background: #1f94e6;
  border-color: transparent;
}
.btn-blue:hover,
.btn-blue:focus {
  color: #fff;
  background: #1577bc;
  border-color: transparent;
}

/* --------------------------
--- HEADER ---
----------------------------- */
.header {
  position: absolute;
  width: 100%;
  z-index: 3;
  padding-top: 15px;
}
@media (min-width: 992px) {
  /* STICKY NAVIGATION */
  .sticky .header {
    position: fixed;
    top: -120px;
    width: 100%;
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    color: #000;

    transition: all 0.8s ease-in-out; /* Adjust the transition duration and timing function as needed */
  }
  .sticky .mainmenu ul li:not(:last-child) a {
    color: #000;
  }
  .sticky .logo-white {
    display: none;
  }
  .sticky .logo-d {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .sticky .header {
    height: 120px;
  }
}
/* header-main */
.header-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container img {
  height: 45px;
}
.logo-white {
  display: none;
}
@media (min-width: 992px) {
  .header {
    padding-top: 0;
  }
  .logo-container img {
    height: 70px;
  }
  .logo-white {
    display: none;
  }
}
@media (max-width: 991px) {
  .home .logo-d {
    display: none;
  }
  .home .logo-white {
    display: block;
  }
}

/* only on mobile <992 px if scrolled hide the logo */
.mobile .logo-container .scrolled {
  /*visibility: hidden;*/
}

/* -----------------
--- BREADCRUMBS ---
-------------------- */
.breadcrumbs {
  background: #ccc;
  font-size: 12px;
}
.breadcrumbs ol {
  margin: 0;
  padding: 8px 0 !important;
}
.mod-breadcrumbs__divider {
  display: none;
}
.breadcrumb-item a {
  color: #fff;
}
.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: #6ec2ab;
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item:before {
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item:before {
  float: none;
  font-size: 10px;
}

/* ------------------------------------------------
--- MAIN CONTENT - where main content comes ---
--------------------------------------------------- */
.main-content {
}

/* --------------------------
--- FOOTER ---
----------------------------- */
.footer {
  background: #000;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover,
.footer a:focus {
  color: #ee4123;
}
.footer h3 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-main {
  padding: 50px 0 30px;
  text-align: center;
}
.footer-columns > div {
  margin-top: 40px;
}
.footer-columns ul {
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-logo {
  display: inline-block;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 40px;
}
.footer-copy {
  background: #000;
  font-size: 12px;
  padding: 0;
}
.footer-copy-inner {
  border-top: 1px solid #424242;
  padding: 30px 0 60px;
  text-align: center;
}
.footer-copy .copyright {
  margin-bottom: 10px;
}
.footer-copy .copyright br {
  display: none;
}
.footer-copy .copyright .mod-custom {
  display: inline-block;
}
.footer-copy .copyright p,
.copyright-right p {
  margin: 0;
}
.copyright-right ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.copyright-right ul li {
  text-transform: uppercase;
  padding-right: 6px;
}
.copyright-right ul li:first-child:before {
  display: none;
}
.copyright-right ul li:before {
  content: "/";
  padding-right: 6px;
  font-size: 10px;
}
@media (max-width: 767px) {
  .footer-columns .footer-1 {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer-main {
    padding: 6vw 0 5vw;
    text-align: left;
  }
  .footer h3 {
    margin-bottom: 25px;
  }
  .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-columns .footer-1 {
    width: 60%;
  }
  .footer-columns .footer-2,
  .footer-columns .footer-3 {
    width: 20%;
  }
  .footer-copy-inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .footer-copy .copyright {
    margin-bottom: 0;
  }
  .footer-copy .copyright br {
    display: inline;
  }
  .copyright-right ul {
    justify-content: flex-start;
  }
  .copyright-right {
    padding-right: 25px;
  }
}
@media (min-width: 1200px) {
  .footer-columns {
    flex-wrap: nowrap;
  }
  .footer-columns > div {
    margin-top: 0;
  }
}

/* --------------------------
--- BACK TO TOP ---
----------------------------- */
#back-to-top {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #ee4123;
  border: 1px solid #ee4123;
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
#back-to-top:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin: -2px 0 0 -5px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#back-to-top.reveal {
  filter: alpha(opacity=100);
  opacity: 1;
}
#back-to-top.reachBottom {
  bottom: 15px;
}

/* ----------------
--- PAGINATION ---
------------------- */
.page-item {
  margin-right: 10px;
}
.page-item .page-link {
  color: #1b407a;
  border: 0 none;
  background-color: #e9ecef;
}
.page-item .page-link:hover {
  background-color: #1b407a;
  color: #fff;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.page-item.disabled .page-link {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.page-item.active .page-link {
  background-color: #1b407a;
  border-color: #1b407a;
}

/* ------------------------------
--- CONTAINER for the content ---
--------------------------------- */
.container-wrapper {
  padding: 0 20px;
}
@media (min-width: 576px) {
  .container-wrapper {
    padding: 0 5vw;
  }
}
@media (min-width: 1920px) {
  .container-wrapper {
    width: 1580px;
    padding: 0;
    margin: 0 auto;
  }
}

/* -------------------------------------------
--- ARTICLE - default.php (default styles) ---
---------------------------------------------- */

/* Page header */
.page-header {
  position: relative;
}
.page-header .bg-image-container,
.page-header .bg-image-container .img-overlay,
.page-header .bg-image-container .bg-image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-header .bg-image-container .bg-image-cover {
  background-size: cover;
  /*background-position: 50% 50%;*/
  background-position: 50% 0;
  background-attachment: fixed;
  background-color: #fff;
}
/* On mobile browsers disable attachment fixed */
@media (hover: none) {
  .page-header .bg-image-container .bg-image-cover {
    background-attachment: scroll;
  }
}
.page-header .bg-image-container .img-overlay {
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 106px 0 40px;
}
.page-header-content.cols-2 .head-2 {
  padding: 0 30px;
}
.page-header-content h1,
.page-header-content h2,
.page-header-content h3,
.page-header-content h4,
.page-header-content h5,
.page-header-content h6 {
  color: #fff;
  margin-bottom: 0;
}
.page-header-content h1 {
  font-size: calc(2rem + 4vw);
}
.page-header-content .image_intro img {
  width: 100%;
}
@media (min-width: 768px) {
  .page-header-content h1 {
    font-size: calc(2rem + 4vw);
  }
  .page-header-content {
    padding: calc(158px + 6vw) 0 6vw;
  }
  .page-header-content.cols-2 {
    display: flex;
    align-items: center;
  }
  .page-header-content.cols-2 .head-1 {
    width: 65%;
  }
  .page-header-content.cols-2 .head-2 {
    width: 30%;
    padding: 0 0 0 2vw;
  }
  .page-header-content.cols-2 .article-text {
    padding-right: 4vw;
  }
}
@media (min-width: 1200px) {
  .page-header-content {
    padding: calc(108px + 8vw) 0 8vw;
  }
  .page-header-content.cols-2 .head-1 {
    width: 60%;
  }
  .page-header-content.cols-2 .head-2 {
    width: 40%;
  }
}

/* Page body */
.page-body {
  position: relative;
  z-index: 2;
}
.com-content-article__body {
  padding: 40px 0;
}
.page-body h2 {
  font-size: calc(1rem + 2vw);
}
@media (min-width: 992px) {
  .com-content-article__body {
    padding: 4vw 0;
  }
}

/* -----------------------------------------
--- CATEGORY - blog.php (default styles) ---
-------------------------------------------- */

/* Page header */
.layout-labernaproducts-categories .item-product .page-header-content h1 {
  font-size: calc(1rem + 2vw);
}
.item-default .page-header-content h1,
.item-product .page-header-content h1 {
  color: #000;
}
.item-product .page-header-content.cols-2 {
  justify-content: space-between;
  flex-direction: row-reverse;
}
.item-product .page-header-content .image_intro {
  position: relative;
  padding-bottom: 67.25% !important;
}
.item-product .page-header-content .image_intro img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.item-product .page-header-content.cols-2 .head-2 {
  padding: 0;
}
@media (min-width: 768px) {
  .item-product .page-header-content {
    padding: calc(50px + 6vw) 0 6vw;
  }
}
@media (min-width: 1200px) {
  .item-product .page-header-content.cols-2 .head-2 {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .layout-labernaproducts-categories .item-product .page-header-content h1 {
    font-size: calc(1rem + 4vw);
  }
  .item-product .page-header-content.cols-2 {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .item-product .page-header-content.cols-2 .head-1 {
    width: 100%;
  }
  .item-product .page-header-content.cols-2 .head-2 {
    width: 100%;
  }
  .item-product .intro-laberna-sign {
    display: none;
  }
}
/* Page body */

/* ----------------------------------------------
--- CATEGORY - Category List (default styles) ---
------------------------------------------------- */

/* Page header */

/* Page body */
.com-content-category.category-list {
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .com-content-category.category-list {
    padding: 4vw 20px;
  }
}
@media (min-width: 1200px) {
  .com-content-category.category-list {
    padding: 4vw 50px;
  }
}
@media (min-width: 1600px) {
  .com-content-category.category-list {
    padding: 4vw 12vw;
  }
}

/* -----------------------
--- HOMEPAGE (Article) ---
-------------------------- */

/* Home Section intro */
.home-section-intro {
  position: relative;
}
.intro-white-bgd {
  position: absolute;
  object-fit: cover;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1;
}
.intro-laberna-sign {
  position: absolute;
  object-fit: contain;
  top: 0;
  bottom: 0;
  left: -10%;
  width: 30%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .intro-white-bgd,
  .home .intro-laberna-sign {
    display: none;
  }
}
@media (max-width: 1200px) {
  .intro-white-bgd {
    width: 100%;
  }
  .home .intro-laberna-sign {
    left: 0;
  }
}

/* #1a: Home intro-slider-widget = default has slide-content */
.home-intro-slider {
  position: relative;
}

.intro-slider-widget {
  background: rgb(27, 63, 122);
  color: #fff;
}
.intro-slider-widget .slide-item {
  position: relative;
}
.intro-slider-widget .slide-image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro-slider-widget .slide-image-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.intro-slider-widget .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 0%;
}
.intro-slider-widget .slide-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}
.intro-slider-widget .slide-content {
  position: relative;
  z-index: 1;
  /*padding-bottom: 60px;*/
}
.intro-slider-widget .slide-text h2 {
  font-weight: 800;
  color: #fff;
}
.intro-slider-widget .slide-text h2 + p {
  margin-bottom: 0;
}
.main-content .intro-slider-widget .slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
.main-content .intro-slider-widget .slick-dots li {
  padding: 0;
  margin: 0;
}
.main-content .intro-slider-widget .slick-dots li:before {
  display: none;
}
.main-content .intro-slider-widget .slick-dots li button {
  display: block;
  width: 60px;
  height: 60px;
  background: transparent;
  font-size: 0;
  line-height: 0;
  border: 0 none;
  margin: 0 5px;
  padding: 0;
}
.main-content .intro-slider-widget .slick-dots li button:after {
  content: "";
  display: block;
  width: 60px;
  height: 10px;
  background: #fff;
}
.main-content .intro-slider-widget .slick-dots li.slick-active button:after {
  background: #6ec2ab;
}
@media (min-width: 480px) {
  .intro-slider-widget .slide-text h2 {
    font-size: calc(1rem + 3vw);
  }
}
@media (min-width: 768px) {
  .intro-slider-widget .slide-content-inner {
    justify-content: flex-start;
    text-align: left;
  }
  .intro-slider-widget .slide-item.Right .slide-content-inner {
    justify-content: flex-end;
    text-align: right;
  }
  .intro-slider-widget .slide-item.Center .slide-content-inner {
    justify-content: center;
    text-align: center;
  }
  .main-content .intro-slider-widget .slick-dots {
    margin: 0 0 27px;
  }
  .main-content .intro-slider-widget .slick-dots li button:after {
    height: 5px;
  }
}
@media (min-width: 992px) {
  .intro-slider-widget .slide-content-inner {
    min-height: 500px;
  }
  .home-intro-slider h4 {
    position: absolute;
    bottom: 20px;
    left: 5vw;
    width: 22%;
    font-size: 18px;
    font-weight: 500;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .intro-slider-widget .slide-content-inner {
    min-height: 600px;
    height: 100vh;
  }
}
@media (min-width: 1500px) {
  .home-intro-slider h4 {
    width: 18%;
  }
}
@media (max-width: 991px) {
  .intro-side-text {
    position: absolute;
    display: flex;
    justify-content: center;
    text-align: center;
    background: #000;
    bottom: 0;
    left: 0;
    padding: 50px 0 65px;
    margin: 0;
    width: 100%;
    z-index: 1;
  }
  .home-intro-slider h4 {
    color: #fff;
    width: 80%;
    font-size: 18px;
    font-weight: 500;
  }
  .arrows {
    position: absolute;
    bottom: 40px;
    right: 50%;
    translate: 50% 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    position: relative;
    width: 10.5rem;
    height: 0.6rem;
    transform: scale(0.3);
  }

  .arrow:after,
  .arrow::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #ee4123;
  }
  .arrow:before {
    left: 0;
    transform: skewY(30deg);
  }

  .arrow:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
  }
}
@media (max-width: 676px) {
  .home-intro-slider h4 {
    font-size: 18px;
  }
}
/* #1b: Home intro-slider-widget = s fixnim Intro Slider Textom */
.has-intro-slider-text .intro-slider-widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  color: #fff;
}
.has-intro-slider-text .intro-slider-widget * {
  height: 100%;
}
.has-intro-slider-text .intro-slider-widget .slick-dots {
  height: auto;
}

/* #1b: Home intro-slider-widget = Intro Slider Text */
.intro-slider-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  /* min-height: 400px; */
  padding-top: 55px;
  padding-bottom: 60px;
}
.intro-slider-text-content {
  color: #fff;
}
.intro-slider-text-content h1 {
  font-size: calc(1rem + 4vw);
  color: #fff;
}
.intro-slider-text-content h1 + p {
  margin-bottom: 0;
}
.home-intro-btn {
  display: none;
}
@media (min-width: 768px) {
  .intro-slider-text-content h1 {
    font-size: calc(1rem + 4vw);
  }
}
@media (min-width: 992px) {
  .intro-slider-text-content {
    text-align: end;
  }
  .intro-slider-text {
    align-items: end;
    padding-top: 72px;
    min-height: 100vh;
  }
  .intro-slider-text-content h1 {
    font-size: calc(1rem + 4vw);
    margin-top: 10%;
  }
  .home-intro-btn {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .intro-slider-text {
    padding-top: 82px;
    min-height: 600px;
    height: 100vh;
  }
}
@media (max-width: 991px) {
  .orange-triangle {
    position: absolute;
    z-index: 1;
    bottom: 100px;
    width: 0;
    height: 0;
    border-left: 390px solid #ee4123;
    border-top: 270px solid transparent;
  }
  .intro-slider-text {
    padding-top: 55px;
    padding-bottom: 200px;
  }
}

/* #2: Home intro static - Intro Text s pozadinskom slikom */
.home-intro-static {
  position: relative;
  background: #000;
  padding-top: 55px;
  height: 400px;
}
.intro-static-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.home-intro-static .intro-background-image {
  opacity: 0.5;
}
.home-intro-static .intro-background-image,
.home-intro-static .intro-background-image .bg-image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
}
.home-intro-static .intro-text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.home-intro-static .intro-text h1 {
  font-size: calc(1rem + 8vw);
  line-height: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .home-intro-static .intro-text h1 {
    font-size: calc(1rem + 6vw);
  }
}
@media (min-width: 992px) {
  .home-intro-static {
    padding-top: 72px;
    min-height: 500px;
  }
  .home-intro-static .intro-text h1 {
    font-size: calc(1rem + 4vw);
  }
}
@media (min-width: 1200px) {
  .home-intro-static {
    padding-top: 82px;
    min-height: 600px;
    height: 100vh;
  }
}

/* Home - item text: samo za ispis glavnog teksta clanka */
.home-item-text {
  padding: 40px 0;
}
@media (min-width: 576px) {
  .home-item-text {
    padding: 3vw 0;
  }
}

/* home-section-1 */
.flexbox {
  display: flex;
}
.category-products {
  background: #000;
  color: #fff;
}
.category-products .flexbox {
  align-items: center;
  padding-left: 5vw;
  gap: 80px;
}
.category-products h2,
.category-products h3,
.category-products h4 {
  color: #fff;
}
.category-products .intro-cat-products {
  padding: 8vw 0;
}
.category-products .intro-cat-products h3 {
  font-size: 18px;
  width: 50%;
}
.category-products .intro-cat-products h2 {
  font-size: 30px;
  width: 30%;
}
.category-products h2 .w-2 {
  color: #ee4123;
}
.category-products .category-prod {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.category-products .category-prod .image-box {
  position: relative;
  padding-bottom: 159%;
  overflow: hidden;
}
.category-products .category-prod .image-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.75));
}
.category-products .category-prod .image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}
.category-products .category-prod .image-box:hover img {
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.category-products .category-prod .cat-title {
  position: absolute;
  z-index: 4;
  bottom: 2vw;
  left: 4vw;
}
.category-products .category-prod .cat-title h2 {
  font-size: 20px;
}
@media (max-width: 476px) {
  .category-products .intro-cat-products h3 {
    font-size: 18px;
    width: 100%;
  }
  .category-products .intro-cat-products h2 {
    font-size: 30px;
    width: 100%;
  }
  .category-products .flexbox {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .category-products .category-prod .image-box {
    padding-bottom: 139%;
  }
  .category-products .intro-cat-products h3 {
    font-size: calc(0.8rem + 1vw);
    width: 50%;
  }
  .category-products .intro-cat-products h2 {
    font-size: calc(1.5rem + 2vw);
    width: 30%;
  }
  .category-products .category-prod .cat-title h2 {
    font-size: calc(1rem + 1.8vw);
  }
}
@media (min-width: 992px) {
  .category-products .category-prod .image-box {
    padding-bottom: 109%;
  }
}

/* home-section-2 */
.brands {
  position: relative;
  padding: 10vw 0 4vw;
  background: linear-gradient(to right, #000 33.33%, #e6e6e6 33.33%);
}

.brands h2 {
  font-size: 20px;
  color: #fff;
  width: 40%;
  padding-top: 7vw;
}
.brands h4 {
  font-size: calc(0.6rem + 0.9vw);
  width: 70%;
}
/*CAROUSEL LOGOS*/
.logos-carousel {
  position: relative;
  padding: 6vw 0;
}
.splide__slide {
  position: relative;
  padding-bottom: 6.25%;
}
.splide__slide img {
  position: absolute;
  filter: grayscale(100%);
  width: 40%;
  height: 100%;
  object-fit: contain;
}
.splide__slide img:hover {
  filter: grayscale(0);
  transition: all 0.4s ease;
}
@media (max-width: 676px) {
  .splide__slide {
    padding-bottom: 12.25%;
  }
  .splide__slide img {
    width: 60%;
  }
}

/* HOME NEWS MOD */
.home-news-mod .newsflash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.home-news-mod .mod-articlesnews__item {
  position: relative;
}
.home-news-mod .newsflash-image {
  position: relative;
  padding-bottom: 159%;
  margin: 0;
  overflow: hidden;
}
.home-news-mod .newsflash-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.75));
}
.home-news-mod .newsflash-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.home-news-mod .newsflash-image:hover img {
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.home-news-mod .newsflash-title a {
  position: absolute;
  width: 80%;
  font-size: 20px;
  z-index: 5;
  bottom: 4vw;
  left: 2vw;
}
@media (min-width: 768px) {
  .home-news-mod .newsflash-title a {
    font-size: calc(1rem + 1.5vw);
  }
  .home-news-mod .newsflash-image {
    padding-bottom: 139%;
  }
  .brands h2 {
    font-size: calc(1rem + 1.8vw);
  }
}
@media (min-width: 992px) {
  .home-news-mod .newsflash-image {
    padding-bottom: 109%;
  }
}

/* end Homepage */

/* ---------------------------
--- CUSTOM PAGES (Article) ---
------------------------------*/

/* Page - O nama */
.item-about {
  position: static;
}
.item-about .page-header,
.item-contact .page-header {
  padding: 0 5vw;
}
.item-about .page-header .bg-image-container .bg-image-cover {
  background: transparent;
}
.item-about .intro-laberna-sign,
.item-contact .intro-laberna-sign {
  top: 8%;
  left: -10%;
  bottom: auto;
  width: 35%;
}
.item-about .page-header-content,
.item-contact .page-header-content {
  padding: calc(108px + 4vw) 0 4vw;
}
.item-about .page-header-content h1,
.item-contact .page-header-content h1 {
  font-size: calc(2rem + 4vw);
  color: #000;
}
.item-about .article-text {
  color: #000;
  font-size: calc(0.5rem + 0.8vw);
  letter-spacing: 0.5px;
  padding-left: 1vw;
}
.item-about .page-header-content .head-1::before,
.item-contact .page-header-content .head-1::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -5vw;
  translate: 0 -50%;
  width: 10px;
  height: 140%;
  background: #ee4123;
}
.item-about .page-header-content.cols-2 .head-1,
.item-contact .page-header-content.cols-2 .head-1 {
  width: 45%;
}
.item-about .page-header-content.cols-2 .head-2,
.item-contact .page-header-content.cols-2 .head-2 {
  width: 65%;
  padding-bottom: 37.25%;
  margin-right: -5vw;
  overflow: hidden;
}
.item-about .image_intro,
.item-contact .image_intro {
  position: relative;
}
.item-about .image_intro img,
.item-about .img-field img,
.item-contact .image_intro img,
.item-contact .img-field img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.item-about .section.row-2.hasImg .img-field {
  position: relative;
  width: 70%;
  padding-bottom: 37.25%;
}
.item-about .section.row-2 .img-field img {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.item-about .row-1 h2 {
  font-size: calc(1rem + 3vw);
}
.item-about h3 {
  font-size: calc(1rem + 2vw);
}
.item-about .section.noImg .text-width-50 {
  width: 60%;
}
@media (max-width: 767px) {
  .item-about .page-header,
  .item-contact .page-header {
    padding: 0 20px;
  }
  .item-about .intro-laberna-sign,
  .item-contact .intro-laberna-sign {
    top: -10%;
    left: -10%;
    bottom: auto;
    width: 65%;
  }
  .item-about .page-header-content .head-1::before,
  .item-contact .page-header-content .head-1::before {
    left: -20px;
    height: 160%;
    width: 7px;
  }
  .item-about .page-header-content.cols-2 .head-1,
  .item-contact .page-header-content.cols-2 .head-1 {
    width: 100%;
  }
  .item-about .article-text {
    font-size: 16px;
  }
  .item-about .page-header-content.cols-2 .head-2,
  .item-contact .page-header-content.cols-2 .head-2 {
    width: 100%;
    padding: 0;
    padding-bottom: 47.25%;
  }
  .item-about .section.row-2.hasImg .img-field {
    width: 100%;
    padding-bottom: 57.25%;
  }
  .item-about .section.noImg .text-width-50 {
    width: 100%;
  }
  .item-contact .page-header-content.cols-2 .head-2 {
    margin-top: 10vw;
  }
}

/* Page - Contact Us */
.item-contact .page-header-content .head-1::before {
  height: 200%;
}
.item-contact .contact-section-1 {
  padding: 40px 0;
}
#map {
  height: 500px;
}
.rsform-block-gdpr-consent .form-check-label {
  font-size: 14px;
}
.contact-form a {
  color: #ee4123;
}
@media (min-width: 576px) {
  .item-contact .contact-section-1 {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
  }
  .item-contact .contact-section-1 .item {
    width: 50%;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .item-contact .contact-section-1 {
    padding: 4vw 0;
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .item-contact .contact-section-1 .item {
    padding: 0 3vw;
  }
}

/* Page - Blog Article */
/* .item-blog */
.article-sidebar h3 {
  margin-bottom: 15px;
}
.article-sidebar .moduletable {
  margin-bottom: 40px;
}
.article-content .article-date {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  background: #6ec2ab;
  color: #fff;
  padding: 6px 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.article-header h1 {
  margin-bottom: 30px;
}
.article-body {
  line-height: 1.4;
}
.article-body .com-content-article__body h1,
.article-body .com-content-article__body h2,
.article-body .com-content-article__body h3,
.article-body .com-content-article__body h4,
.article-body .com-content-article__body h5,
.article-body .com-content-article__body h6 {
  margin-bottom: 20px;
}
.article-body .com-content-article__body * + h1,
.article-body .com-content-article__body * + h2,
.article-body .com-content-article__body * + h3,
.article-body .com-content-article__body * + h4,
.article-body .com-content-article__body * + h5,
.article-body .com-content-article__body * + h6 {
  margin-top: 30px;
}
.article-body figure {
  margin-bottom: 30px;
}
.article-body figure img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.author-block {
  background: #eee;
  padding: 20px 20px 5px;
  margin: 30px 0;
}
.author-block .written-by {
  margin-bottom: 15px;
}
.author-block .biography .avatar {
  margin-bottom: 15px;
}
.author-block .biography .avatar img {
  width: 80px;
}
.author-block .biography .short-bio {
  color: #666;
}
.article-content .article-tags {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .article-sides {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
  }
  .article-sides .article-side-1,
  .article-sides .article-side-2 {
    padding: 0 10px;
  }
  .article-sides .article-side-2 {
    width: calc(100% - 120px);
  }
  .article-content .article-date {
    width: 100px;
    text-align: center;
    padding: 10px 15px 16px;
    margin-bottom: 30px;
  }
  .article-content .article-date .day {
    display: block;
    font-size: 32px;
  }
  .article-content .article-date .month {
    display: block;
    font-size: 16px;
    font-weight: 500;
  }
  .author-block .biography .avatar {
    float: left;
    padding-right: 20px;
    margin-bottom: 0;
  }
  .author-block .biography .short-bio {
    margin-left: 100px;
  }
}
@media (min-width: 992px) {
}

/* Page - Author */
.page-layout-author {
  padding: 20px 0 30px;
}
.page-layout-author .author-info {
  background: #f1f1f1;
  padding: 20px;
}
@media (max-width: 575px) {
  .page-layout-author .author-columns .author-col-1,
  .page-layout-author .author-columns .author-col-2 {
    margin-bottom: 25px;
  }
  .page-layout-author .author-info {
    overflow: hidden;
  }
  .page-layout-author .author-info .author-image {
    float: left;
    margin-right: 15px;
  }
}
@media (min-width: 576px) {
  .page-layout-author .author-columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-layout-author .author-columns > div {
    padding: 0 15px;
  }
  .page-layout-author .author-columns .author-col-1 {
    width: 200px;
  }
  .page-layout-author .author-columns .author-col-2 {
    width: calc(100% - 200px);
  }
  .page-layout-author .author-columns .author-col-3 {
    width: 100%;
    border-left: 1px solid #eeeeee;
  }
  .page-layout-author .author-info {
    text-align: center;
  }
  .page-layout-author .author-info .author-image {
    margin-bottom: 10px;
  }
  .page-layout-author .author-info .author-image img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-layout-author {
    padding: 3vw 0;
  }
}
@media (min-width: 1200px) {
  .page-layout-author .author-columns {
    flex-wrap: nowrap;
    margin-left: -30px;
    margin-right: -30px;
  }
  .page-layout-author .author-columns > div {
    padding: 0 30px;
  }
  .page-layout-author .author-columns .author-col-1 {
    width: 20%;
  }
  .page-layout-author .author-columns .author-col-2 {
    width: 55%;
  }
  .page-layout-author .author-columns .author-col-3 {
    width: 25%;
  }
}
@media (min-width: 1600px) {
  .page-layout-author .author-columns .author-col-1 {
    width: 15%;
  }
  .page-layout-author .author-columns .author-col-2 {
    width: 60%;
  }
  .page-layout-author .author-columns .author-col-3 {
    width: 25%;
  }
}

/* page news (article) */
.news-page .page-header-content.cols-2 {
  flex-direction: column;
  align-items: start;
  gap: 30px;
}
.news-page .page-header-content.cols-2 .head-2 {
  position: relative;
  padding: 0;
  padding-bottom: 57%;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.news-page .page-header-content.cols-2 .head-2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-page .page-header-content h1 {
  line-height: 1;
  letter-spacing: -2px;
  color: #000;
  text-transform: uppercase;
  font-size: calc(1rem + 4vw);
}
.news-page .com-content-article__body {
  padding: 0 0 4vw;
}
.news-page .article-text {
  width: 100%;
  margin: 0 auto;
}
.news-cta-btn,
.products-cta-btn {
  margin-top: 5vw;
  background-color: #ee4123;
  color: #fff;
  padding: 7vw 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.newsbtn-contactus {
  display: inline-block;
  background-color: #fff;
  color: #ee4123;
  padding: 15px 60px;
  font-size: calc(0.8rem + 1vw);
  font-weight: 600;
  border-radius: 50px;
}
.newsbtn-contactus:hover {
  background-color: #fff;
}
.cta-text h2 {
  width: 60%;
  color: #fff;
}
.cta-text-products h2 {
  color: #fff;
}
/* mod-article-news newsflash */
.mod-artnews {
  padding: 4vw 0;
}
.mod-artnews h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}
.mod-artnews .mod-articlesnews__item {
  display: flex;
  flex-direction: column-reverse;
  border-top: 1px solid #000;
  padding: 4vw 0;
  gap: 10px;
}
.mod-artnews .mod-articlesnews__item .newsflash-title a {
  font-size: calc(0.8rem + 1.5vw);
  color: #000;
}
.mod-artnews .mod-articlesnews__item .newsflash-title {
  width: 50%;
}
.mod-artnews .newsflash-image {
  position: relative;
  padding-bottom: 54%;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.mod-artnews .newsflash-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 702px) {
  .news-page .article-text {
    width: 80%;
    max-width: 900px;
  }
  .mod-artnews .mod-articlesnews__item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #000;
    padding: 1vw 0;
  }
  .mod-artnews .newsflash-image {
    padding-bottom: 14%;
    width: 25%;
  }
}
@media (min-width: 991px) {
  .news-page .page-header-content h1 {
    padding-left: 75px;
  }
}
@media (max-width: 991px) {
  .news-page .page-header-content.cols-2 .head-1 {
    margin-bottom: 20px;
  }
  .news-page .page-header-content {
    padding: calc(105px + 6vw) 0 6vw;
  }
  .btn-more-news {
    display: inline-block;
    width: max-content;
  }
  .news-cta-btn,
  .products-cta-btn {
    flex-direction: column;
  }
  .cta-text h2 {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .news-page .page-header-content.cols-2 .head-1 {
    width: 70%;
  }
}
/* Page Brands */
.brands-page .page-header-content h1 {
  color: #000;
}
.brands-page .head-1 p {
  width: 100%;
}
.brands-page .brands-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}
.brand-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 155px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  border: 1px solid rgba(35, 31, 32, 0.06);
  font-size: 14px;
  text-align: center;
  box-shadow: 0 10px 30px 0 rgba(35, 31, 32, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.brand-image img {
  width: auto;
  height: auto;
  max-width: 135px;
  max-height: 80px;
  display: block;
}
@media (min-width: 676px) {
  .brands-page .brands-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-page .head-1 p {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .brands-page .head-1 p {
    width: 60%;
  }
  .brands-page .brands-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------------------------------
--- CUSTOM PAGES (Category Blog) ---
------------------------------------*/
/*Page Category - PRODUCTS */
.products-page .page-header-content h2 {
  color: #000;
  font-size: calc(2rem + 4vw);
}
.products-page .cat-children {
  padding: 0 0 10vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.products-page .child {
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.products-page .subcategory-image {
  position: relative;
  width: 100%;
  padding-bottom: 66.25%;
}
.products-page .subcategory-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-page .child-text {
  padding: 4vw;
}
.layout-labernaproducts .products-page .child-text .page-header {
  font-size: calc(1rem + 3vw);
}
.products-page .child-text .btn {
  margin-top: 20px;
}
/* Products-categories */
.products-page .category-header,
.blog-news .category-page-header {
  position: relative;
  z-index: 2;
}
.blog-news .category-desc {
  position: relative;
  z-index: 2;
}
.products-page .intro-laberna-sign,
.item-default .intro-laberna-sign,
.item-product .intro-laberna-sign {
  z-index: 1;
  object-fit: cover;
  width: 50%;
  left: 50%;
}
.item-product .intro-laberna-sign,
.blog-news .intro-laberna-sign {
  top: 0%;
  bottom: auto;
  left: auto;
  right: -15%;
  width: 50%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}
.prod-cat .subcategory-image {
  padding: 4vw;
}
.prod-cat .subcategory-image img {
  position: relative;
  object-fit: contain;
  width: 100%;
  max-width: 95px;
  -webkit-max-width: 95px;
  height: auto;
}

@media (min-width: 767px) {
  .products-page .cat-children {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-cat .subcategory-image {
    padding: 2vw 2vw 0;
  }
  .products-page .child-text {
    padding: 2vw 2vw 4vw;
  }
  .layout-labernaproducts .products-page .child-text .page-header {
    font-size: calc(1rem + 1.5vw);
  }
}
@media (min-width: 992px) {
  .products-page .cat-children {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Page Category - INDEX (default category articles list different from Blog) */
.page-category-index .page-header {
  background: rgba(27, 63, 122, 0.66);
  margin-bottom: 20px;
}
.page-category-index .page-header-inner {
  padding: 30px 0 20px;
}
.page-category-index .page-header * {
  color: #fff;
  margin-bottom: 0;
}
.page-category-index .page-header .category-desc {
  padding-top: 25px;
}
.page-category-index .page-body {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-category-index .page-header {
    margin-bottom: 4vw;
  }
  .page-category-index .page-header-inner {
    padding: 2vw 0;
  }
  .page-category-index .page-body {
    margin-bottom: 4vw;
  }
}

/* Page Category Blog (Novosti) */
.blog-news .page-header-content h1 {
  color: #000;
}
.blog-news .secondary-listing {
  position: relative;
  z-index: 2;
  padding: 2vw 0 8vw;
}
.blog-news .blog-item {
}
.blog-news .intro-image {
  position: relative;
  width: 100%;
  padding-bottom: 57.25%;
}
.blog-news .intro-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-news .item-content {
  width: 100%;
}
@media (min-width: 705px) {
  .blog-news .blog-item {
    display: flex;
    justify-content: space-between;
  }
  .blog-news .item-content {
    width: 55%;
  }
  .blog-news .intro-image {
    width: 40%;
    padding-bottom: 27.25%;
  }
}
/* .category-blog */
.layout-blog .blog,
.view-article.layout-blog .main-content {
  /* background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(239, 239, 239, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(239, 239, 239, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(239, 239, 239, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#efefef",GradientType=1); */
}

.blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
  font-size: 20px;
}
.leading-separator {
  display: none;
}
.blog-page-1st .items-leading + .leading-separator {
  display: block;
  height: 1px;
  background: #dedede;
  margin: -10px 0 30px;
}

.blog .items-leading .blog-item {
  margin-bottom: 40px;
}
.blog .blog-item figure {
  margin-bottom: 15px;
}
.blog .blog-item figure img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.blog .article-date {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  background: #6ec2ab;
  color: #fff;
  padding: 6px 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.blog .article-title h2 {
  margin-bottom: 15px;
}
.blog .article-title h2 a {
  color: #ee4123;
}
.blog .article-title h2 a:hover,
.blog .article-title h2 a:focus {
  color: #ff515c;
}
.blog .article-intro,
.blog .article-tags {
  margin-bottom: 20px;
}
.blog .com-content-category-blog__navigation ul.pagination {
  flex-wrap: wrap;
  margin-bottom: 40px !important;
}
.blog .com-content-category-blog__navigation ul.pagination li {
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .blog-page-1st .items-leading .items-column-2 .blog-item {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  .blog-page-1st .items-leading .items-column-2 .blog-item figure {
    width: 48%;
    padding: 0 10px;
  }
  .blog-page-1st .items-leading .items-column-2 .blog-item .item-content {
    width: 52%;
    padding: 0 10px;
  }
  .blog-page-1st
    .items-leading
    .items-column-2
    .blog-item
    .item-content
    .article-intro,
  .blog-page-1st
    .items-leading
    .items-column-2
    .blog-item
    .item-content
    .article-tags {
    display: none;
  }
  .blog .com-content-category-blog__navigation ul.pagination {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-page-1st .items-leading .items-column-2 figure,
  .blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .blog-page-1st .items-leading {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
  }
  .blog-page-1st .items-leading .items-column-1 {
    width: 55%;
    padding: 0 15px;
  }
  .blog-page-1st .items-leading .items-column-2 {
    width: 45%;
    padding: 0 15px;
  }
  .blog .items-leading .blog-item {
    margin-bottom: 30px;
  }
  .blog .blog-item figure {
    margin-bottom: 30px;
  }
  .blog-page-1st .items-leading + .leading-separator {
    margin: 2vw 0 3vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-page-1st .items-leading .items-column-2 .blog-item {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .blog-page-1st .items-leading .items-column-2 .blog-item figure {
    width: 100%;
    padding: 0;
  }
  .blog-page-1st .items-leading .items-column-2 .blog-item .item-content {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .blog-page-1st .items-leading .items-column-2 figure,
  .blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
    margin-bottom: 0;
  }
}

/* Page Category Blog - Article Tags - same style for category and item view */
.article-tags {
  display: flex;
}
.article-tags .tags-icon {
  position: relative;
  top: 1px;
  margin-right: 6px;
  color: #1b407a;
}
.article-tags ul {
  margin: 0;
}
.article-tags .list-inline-item {
  position: relative;
  margin-right: 5px;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
.article-tags .list-inline-item:before {
  display: none;
}
.article-tags .list-inline-item .btn {
  display: inline;
  border: 0 none;
  font-size: 16px;
  font-weight: normal;
  color: #1b407a;
  padding: 0;
}
.article-tags .list-inline-item .btn:hover,
.article-tags .list-inline-item .btn:focus {
  background: none;
  color: #ff515c;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.article-tags .list-inline-item:not(:last-child):after {
  position: absolute;
  content: ",";
  color: #1b407a;
  top: 1px;
  right: -4px;
}

/* -----------------------------------------------------
--- SPECIFIC PAGES - different Components (Plugins) ---
-------------------------------------------------------*/

/* Page TAGS */
.com_tags .article-container {
  padding: 20px 0 30px;
}
.com_tags .com-tags-tags__filter {
  margin-bottom: 30px;
}
.com_tags .com-tags-tags__filter input[type="text"] {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-width: 1px;
  padding: 5px 10px;
}
.com_tags .com-tags__items ul li h3 {
  margin-bottom: 0;
}
.com-tags__pagination {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .com_tags .article-container {
    padding: 3vw 0;
  }
}
@media (min-width: 1200px) {
  .tag-category .com-tags__items ul li h3 {
    font-size: 20px;
  }
}

/* Page SEARCH (com-finder) */
.com-finder {
  padding: 20px 15px;
}
.com-finder label.me-2 {
  font-weight: bold;
  margin-bottom: 10px;
}
.com-finder .awesomplete {
  flex-grow: 1;
}
.com-finder .awesomplete > input {
  line-height: 1.3;
  padding: 13px 15px;
}
.com-finder .result__title-url {
  font-weight: 300;
}
.com-finder .result__title-text {
  font-weight: bold;
}
.com-finder .result__description {
  font-weight: 400;
}
.com-finder .result__date {
  font-weight: 800;
}
@media (min-width: 768px) {
  .com-finder {
    padding: 4vw 20px;
  }
}
@media (min-width: 1200px) {
  .com-finder {
    padding: 3vw 50px;
  }
}
@media (min-width: 1600px) {
  .com-finder {
    padding: 3vw 12vw;
  }
}

/* ---------------------------
--- MODULES ---
------------------------------ */

/* mod_tags_popular */
.mod-tagspopular ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mod-tagspopular ul li {
  display: inline-block;
  margin-bottom: 6px;
}
.mod-tagspopular ul li a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #666;
}
.mod-tagspopular ul li a:hover,
.mod-tagspopular ul li a:focus {
  background: #6ec2ab;
  border-color: #6ec2ab;
  color: #fff;
}

/* mod_articles_news */
.mod-articlesnews__item {
  /* margin-bottom: 15px; */
}
.mod-articlesnews__item .newsflash-date {
  font-weight: bold;
  margin-bottom: 5px;
}
.mod-articlesnews__item .newsflash-title {
  font-size: 16px;
  margin-bottom: 0;
}
.mod-articlesnews__item .newsflash-title a {
  color: #fff;
}

/* mod__latest-posts */
.mod__latest-posts .mod-articlesnews__item {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.mod__latest-posts .mod-articlesnews__item > div {
  padding: 0 10px;
}
.mod__latest-posts .article-date {
  display: block;
  width: 86px;
  text-align: center;
  background: #6ec2ab;
  color: #fff;
  padding: 10px 15px 16px;
  margin-bottom: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.mod__latest-posts .article-date:hover,
.mod__latest-posts .article-date:focus {
  color: #fff;
  background: #b72416;
}
.mod__latest-posts .article-date .day {
  display: block;
  font-size: 26px;
  font-weight: bold;
}
.mod__latest-posts .article-date .month {
  display: block;
  font-size: 14px;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title {
  margin: 5px 0;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title a {
  color: #fff;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title a:hover,
.mod__latest-posts .mod-articlesnews__item .newsflash-title a:focus {
  color: #6ec2ab;
}

/* ---------------------------------------
--- CUSTOM FIELD - Repeatable Sections ---
------------------------------------------ */

/* Section - colors */
.section.white-bg .text-field-inner {
  background: #fff;
}
.section.green-bg .text-field-inner {
  background: #6ec2ab;
  color: #fff;
}
.section.gray-bg .text-field-inner {
  background: #e7e7e7;
  color: #333;
}
.section.not-white-bg h1,
.section.not-white-bg h2,
.section.not-white-bg h3,
.section.not-white-bg h4,
.section.not-white-bg h5,
.section.not-white-bg h6 {
  color: #fff;
}
.section.not-white-bg.gray-bg h1,
.section.not-white-bg.gray-bg h2,
.section.not-white-bg.gray-bg h3,
.section.not-white-bg.gray-bg h4,
.section.not-white-bg.gray-bg h5,
.section.not-white-bg.gray-bg h6 {
  color: #6ec2ab;
}

/* Section - has-Image */
.section.hasImg .text-field-inner {
  padding: 30px 20px 20px;
}
.section.hasImg.img-Left .text-field-inner {
  padding: 30px 20px 20px;
}
.section.hasImg .img-field {
  position: relative;
}
.section.hasImg .video-controls {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .section.hasImg .text-field {
    width: 100% !important;
  }
  .section.hasImg .img-field {
    width: 100% !important;
  }
  .section.hasImg .img-field .img-container {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .section .image-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
  .section.hasImg {
    display: flex;
  }
  .section.hasImg.img-Left {
    flex-direction: row-reverse;
  }
  .section.hasImg .text-field {
    position: relative;
    z-index: 1;
    width: 52%;
  }
  .section.hasImg .text-field-inner {
    padding: 6vw 20px 5vw 20px;
  }
  .section.hasImg.img-Left .text-field-inner {
    padding: 6vw 20px 5vw 20px;
  }
  .section.hasImg .img-field {
    width: 48%;
  }
}
@media (min-width: 1200px) {
  .section.hasImg .text-field-inner {
    padding: 6vw 50px 5vw 14vw;
  }
  .section.hasImg.img-Left .text-field-inner {
    padding: 6vw 50px 5vw 50px;
  }
}

/* Section = ROW-1 = No-Image = Blue Box */
@media (min-width: 576px) {
  .section.noImg.row-1 .blue-box {
    margin-top: -8vw;
  }
}

/* Section - No-Image */
.section.noImg .text-field-inner {
  padding: 30px 20px 20px;
}
@media (min-width: 768px) {
  .section.noImg .text-field-inner {
    /*padding: 6vw 12vw 5vw;*/ /* reduced by Doron wish */
    padding: 4vw 20px 3vw;
  }
}
@media (min-width: 992px) {
  .section.noImg .text-width-50 {
    width: 52%;
  }
}
@media (min-width: 1200px) {
  .section.noImg .text-field-inner {
    padding: 4vw 5vw 3vw;
  }
}

/* Section - Background-Image */
.section.hasImg.img-Background-image {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
}
.section.hasImg.img-Background-image .text-field,
.section.hasImg.img-Background-image .img-field {
  width: 100%;
}
.section.img-Background-image h1,
.section.img-Background-image h2,
.section.img-Background-image h3,
.section.img-Background-image h4,
.section.img-Background-image h5,
.section.img-Background-image h6 {
  color: #fff;
}
.section.img-Background-image .text-field {
  position: relative;
  z-index: 3;
}
.section.img-Background-image .img-field,
.section.img-Background-image .img-container,
.section.img-Background-image .image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section.img-Background-image .image-cover {
  padding-bottom: 0;
}
.section.img-Background-image .text-field-inner {
  background: transparent;
  padding: 30px 30px 20px;
}
.section.img-Background-image .img-container {
  background: rgba(27, 63, 122, 1);
}
.section.img-Background-image .img-container .image-cover {
  opacity: 0.2;
}
@media (min-width: 576px) {
  .section.img-Background-image .text-field-inner {
    padding: 6vw 12vw 5vw;
  }
}

/* ---------------------------------------------
--- EDITOR CUSTOM TEMPLATES - (columns etc.) ---
------------------------------------------------ */
.section hr {
  /*display: none;*/
  background: transparent;
  margin: 10px 0 20px;
}
.custom-block.cols-2_blue-box .blue-box {
  background: #132b5b;
  color: #fff;
  padding: 22px 22px 1px;
}
.custom-block.cols-2_blue-box + hr {
  display: none;
}
.custom-block.cols-2_blue-box .blue-box h1,
.custom-block.cols-2_blue-box .blue-box h2,
.custom-block.cols-2_blue-box .blue-box h3,
.custom-block.cols-2_blue-box .blue-box h4,
.custom-block.cols-2_blue-box .blue-box h5,
.custom-block.cols-2_blue-box .blue-box h6 {
  color: #fff;
}
.custom-block.cols-3.style-lines .b-row .b-col > * {
  padding-left: 25px;
}
.custom-block.cols-3.style-lines h1,
.custom-block.cols-3.style-lines h2,
.custom-block.cols-3.style-lines h3,
.custom-block.cols-3.style-lines h4,
.custom-block.cols-3.style-lines h5,
.custom-block.cols-3.style-lines h6 {
  margin-bottom: 5px;
}
.custom-block.cols-3.style-lines .b-row .b-col {
  position: relative;
}
.custom-block.cols-3.style-lines .b-row .b-col:before {
  content: "";
  width: 4px;
  height: 50px;
  background: #ff515c;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 576px) {
  .custom-block .b-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .custom-block .b-row .b-col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .custom-block.cols-3.style-lines .b-row .b-col:before {
    left: 15px;
  }
  .custom-block.cols-2 .b-row .b-col {
    width: 50%;
  }
  .custom-block.cols-2_blue-box .column1 {
    width: 60%;
  }
  .custom-block.cols-2_blue-box .column2 {
    width: 40%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .custom-block.cols-2_blue-box .blue-box * {
    font-size: 20px;
  }
  .custom-block.cols-2_blue-box .blue-box p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .custom-block.cols-3.style-lines + hr {
    display: none;
  }
}
@media (min-width: 768px) {
  .custom-block .b-row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .custom-block .b-row .b-col {
    padding-left: 30px;
    padding-right: 30px;
  }
  .custom-block.cols-3.style-lines .b-row .b-col:before {
    left: 30px;
  }
  .custom-block.cols-3 .b-row .b-col {
    width: 50%;
  }
  .custom-block.cols-4 .b-row .b-col {
    width: 50%;
  }
  .custom-block.cols-2_blue-box .blue-box {
    padding: 4vw 4vw calc(4vw - 29px);
  }
}
@media (min-width: 992px) {
  .custom-block.cols-3 .b-row .b-col {
    width: 33.3333333333%;
  }
  .custom-block.cols-4 .b-row .b-col {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .custom-block.cols-3.style-lines h1,
  .custom-block.cols-3.style-lines h2,
  .custom-block.cols-3.style-lines h3,
  .custom-block.cols-3.style-lines h4,
  .custom-block.cols-3.style-lines h5,
  .custom-block.cols-3.style-lines h6 {
    margin-bottom: 20px;
  }
}

/* -------------------------------
--- CUSTOM ANIMATIONS ---
---------------------------------- */

/* Logo, Hamburger */
.focus-in-expand {
  -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    0.8s both;
  animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}
@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/*  main-menu */
.fade-in-top-1 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s both;
}
.fade-in-top-2 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s
    both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* Intro slider text */
.fade-in-bottom-1 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s both;
}
.fade-in-bottom-2 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s both;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 767px) {
  .layout-labernaproducts-categories .blog .category-desc {
    width: 70%;
  }
  .layout-labernaproducts-categories .blog-news .intro-image {
    width: 30%;
  }
  .layout-labernaproducts-categories .blog-news .item-content {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .layout-labernaproducts-categories .blog-news .intro-image img {
    object-fit: contain;
  }
}

/* //////////////////////////////////////////////////////////////////////// */
/* PRODUCT CAROUSEL GALLERY*/

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  z-index: 10; /* Ensure they're above images */
  width: 40px; /* Optional, to reduce control size */
  height: 40px;
  top: 50%;
  translate: 0 -50%;
  background-color: #333;
}
.carousel-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images maintain aspect ratio */
  border: 2px solid #fff; /* Adds a default border */
}
.img-thumbnail {
  cursor: pointer;
  padding: 1px;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 70px;
}

.img-thumbnail img.active {
  border-color: #000; /* Highlight the active thumbnail */
}
.carousel {
  width: 100%; /* or set a fixed width like 800px */
  margin: 0 auto; /* center carousel */
}
.carousel-item img {
  height: 350px; /* Set based on your preference */
  object-fit: contain;
  width: 100%;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  width: 100%;
  padding: 5vw;
}
.item-product .page-header-content.cols-2 .head-2 div {
  padding: 15px 5px 5px;
}
.carousel-indicators {
  display: none;
  top: 0;
  bottom: auto;
}
.thumbnails {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 1200px) {
  .thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
  .carousel-item img {
    height: 250px; /* Set based on your preference */
  }
}
@media (max-width: 991px) {
  .thumbnails {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 767px) {
  .thumbnails {
    grid-template-columns: repeat(6, 1fr);
  }
}
