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

html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* fix for aos animation */
}

body.bg-init,
body .animsition-overlay-slide {
  background-color: #fff;
}
body .animsition-overlay-slide {
  z-index: 3001;
}

/* neki fix za component u modalu */
body.contentpane.modal {
  background: none;
  height: auto;
}

p {
  margin: 0 0 25px;
}

ul,
ol {
  padding-left: 60px;
  margin-bottom: 25px;
}

p + ul,
p + ol {
  margin: 0px 0 25px;
}

.content ul {
  list-style: none;
  padding-left: 30px;
}
.content ul li {
  position: relative;
  padding-left: 40px;
  line-height: 24px;
  margin-bottom: 20px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #99d06f;
}
.content ul li ul {
  margin-top: 10px;
  padding-left: 15px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 25px;
}

a {
  text-decoration: none;
  color: #99d06f;
  -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: #000;
  text-decoration: none;
}

/* fix iPhone Safari changing colour of phone numbers */
a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

table {
  width: 100%;
  background: #fff;
}
table tbody td {
  font-size: 16px;
}
table tbody td {
  padding: 15px;
  border: 0 none;
}
table tr:nth-child(even) td {
  background: #f7f7f7;
}
.table-responsive {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  border: 0 none;
}
@media (min-width: 1200px) {
  table tbody td:first-child {
    padding-left: 30px;
  }
  table tbody td:last-child {
    padding-right: 30px;
  }
}

/* --------------------------
--- CLASSES ---
----------------------------- */
.center {
  text-align: center;
}

/* Buttons */
.btn {
  position: relative;
  background: #99d06f;
  border: 0 none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  padding: 13px 29px;
  text-transform: uppercase;
  -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: #fff;
  background: #7eba50;
}
.btn:active {
  color: inherit;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  background: #99d06f;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: #7eba50;
}

.btn-plus {
  display: inline-block;
  vertical-align: middle;
  width: 4vw;
  height: 4vw;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #aae27f;
}
.btn-plus:before {
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
  width: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.btn-plus:after {
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
  height: 50%;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: block;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.btn-plus:hover,
.btn-plus:focus {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* Responsive BG image - image-cover */
.img-container {
  overflow: hidden;
  display: block;
}
.image-cover {
  background-size: cover;
  background-position: 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-container:hover .image-cover,
.img-container: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);
}

/* --------------------------
--- MAIN BLOCKS ---
----------------------------- */

/* Module title */
.module-title h3 {
  font-size: 32px;
  padding: 0 0 50px;
  margin: 0;
}
@media (min-width: 768px) {
  .module-title h3 {
    font-size: 48px;
  }
}

/* modal popup */
.modal-content {
}
.modal-header {
  padding: 20px 15px 0 15px;
  border: 0 none;
}
.modal-header .close {
  font-size: 36px;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
.modal .close-button {
  height: 36px;
}
.modal .close-button .close {
  opacity: 0.8;
  color: #fff;
  font-size: 30px;
}
.modal .close-button .close:hover,
.modal .close-button .close:focus {
  opacity: 0.5;
}
.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4 {
  color: #fff;
}

/* Header */
header {
  position: relative;
  z-index: 20;
  font-weight: 400;
}
.home header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.header-top {
  position: relative;
  z-index: 1;
  font-size: 14px;
  background: #99d06f;
  color: #fff;
  margin-bottom: 20px;
  min-height: 30px;
}
.header-top a {
  display: inline-block;
  color: #fff;
}
.header-support {
  display: none;
  float: left;
}
.header-support ul {
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.header-support ul li {
  float: left;
  line-height: 28px;
  position: relative;
}
.header-support ul li:first-child {
  margin-right: 15px;
  padding-right: 15px;
}
.header-support .btn {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  padding: 4px 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.header-top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-2 {
  margin-right: 30px;
}
.header-top-2 {
  margin-right: 0; /* only when lang switcher is off */
  margin-top: 4px;
}
.header-top-2 .mod--social-networks .fa {
  font-size: 20px;
}
.header-top-2 .mod--social-networks ul li {
  margin-right: 0;
  margin-left: 10px;
}
.lang-switcher {
  text-transform: uppercase;
  margin-top: 4px;
}
.lang-switcher div.mod-languages .btn-group .btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 28px;
  background: none;
  border: 0 none;
  padding: 0;
}
.lang-switcher a .flag {
  margin-right: 5px;
}
.lang-switcher a svg {
  /*position: relative;
	top: -2px;*/
  vertical-align: middle;
}
.lang-switcher a .sef {
  vertical-align: middle;
}
.lang-switcher div.mod-languages .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.lang-switcher div.mod-languages ul.lang-inline {
  display: flex;
}
.lang-switcher div.mod-languages ul.lang-inline li {
  display: block;
}
.lang-switcher div.mod-languages .dropdown-menu {
  min-width: 80px;
}
.lang-switcher div.mod-languages .dropdown-menu > li > a {
  padding: 5px 10px;
}
/* override module CSS fix for J5x */
div.mod-languages a {
	padding: 0;
}
div.mod-languages ul li.lang-active {
	background: none;
}
div.mod-languages li {
	margin: 0 5px;
}
.header-top,
.header-bottom .flex-container {
  padding: 0 20px;
}
.header-bottom .flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bottom .top-menu {
  display: none;
}
.top-menu p {
  margin: 0;
}
.navbar-brand {
  float: none;
  display: block;
  height: auto;
  padding: 0;
}
.navbar-brand > img {
  display: inline-block;
  height: 28px;
}
@media (max-width: 767px) {
  .lang-switcher div.mod-languages ul.lang-inline li {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .header-top,
  .header-bottom .flex-container {
    padding: 0 30px;
  }
  .header-support {
    display: block;
  }
  .header-top-right {
    float: right;
    justify-content: flex-start;
  }
  .header-top-2 {
    display: block;
  }
}
@media (min-width: 992px) {
  .header-top,
  .header-bottom .flex-container {
    padding: 0 3%;
  }
  .header-bottom .flex-container {
    height: 72px;
  }
  .navbar-brand > img {
    height: 44px;
  }
}
@media (min-width: 1280px) {
  .header-bottom .top-menu {
    display: block;
  }
}

/* Main Menu - navbar - navbar-collapse */
.mainmenu {
  display: none;
}
.mainmenu ul li a {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
}
.mainmenu ul li a:hover,
.mainmenu ul li a:hover {
  color: #99d06f;
}
.nav > li > a:focus,
.nav > li > a:hover {
  background: none;
}
nav.navbar {
  display: none;
  margin-top: 0;
  margin-bottom: 0;
  border: 0 none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#navbar-default {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.navbar .navbar-nav {
  display: inline-block;
  float: none;
}
.navbar .navbar-nav > li {
  float: none;
  display: inline-block;
}
.navbar .navbar-nav li {
  padding: 0 20px;
}
.navbar .navbar-nav a,
.navbar .navbar-nav .nav-header {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar .navbar-nav a,
.navbar .navbar-nav .nav-header {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #273e55;
  padding: 20px 0;
  background: transparent;
  position: relative;
}
.navbar .navbar-nav a:hover,
.navbar .navbar-nav .nav-header:hover {
  background: none;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
.navbar .navbar-nav a:after,
.navbar .navbar-nav .nav-header:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #99d06f;
  position: absolute;
  z-index: -1;
  bottom: 10px;
  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;
}
.navbar .navbar-nav a:hover:after,
.navbar .navbar-nav .nav-header:hover:after {
  opacity: 1;
  bottom: 16px;
}
.navbar .navbar-nav .dropdown a {
  padding-right: 0;
}

/* J5x fix */
.navbar-nav {
	flex-direction: row;
}
.navbar-nav li a {
	padding: 15px 15px;
}
@media (min-width: 992px) {
  nav.navbar {
    display: inline-block;
  }
  .mainmenu {
    display: block;
  }
}

/* Padajuci menu */
.navbar .navbar-nav .dropdown-menu {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 0 none;
  padding: 10px 0 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  display: block;
  float: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -5%, 0);
  -moz-transform: translate3d(0, -5%, 0);
  -o-transform: translate3d(0, -5%, 0);
  -ms-transform: translate3d(0, -5%, 0);
  transform: translate3d(0, -5%, 0);
  -webkit-transition: all 0.6s cubic-bezier(0.56, 0.04, 0.2, 1.01);
  -moz-transition: all 0.6s cubic-bezier(0.56, 0.04, 0.2, 1.01);
  -o-transition: all 0.6s cubic-bezier(0.56, 0.04, 0.2, 1.01);
  transition: all 0.6s cubic-bezier(0.56, 0.04, 0.2, 1.01);
}
.navbar .navbar-nav .dropdown-menu li {
  float: none;
  padding: 0 30px;
  margin: 15px 0;
}
.navbar .navbar-nav .dropdown-menu a {
  display: inline-block;
  color: #808080;
  padding: 0;
}
.navbar .navbar-nav .dropdown-menu a:after {
  bottom: 0;
  background: #e2e2e2;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background: none;
}
.chevron {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/droparrow.svg");
  margin: 0 0 0 10px;
  position: absolute;
  z-index: 10;
  top: 32px;
  right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.navbar .navbar-nav .dropdown .chevron {
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar .navbar-nav li.dropdown:hover .chevron,
.navbar .navbar-nav li.dropdown:focus .chevron {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navbar .navbar-nav li.dropdown:hover .dropdown-menu,
.navbar .navbar-nav li.dropdown:focus .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@media (min-width: 992px) {
  .chevron {
    right: 20px;
  }
}

/* Hamburger toggle */
.hamburger-container {
  position: absolute;
  z-index: 2008;
  top: 52px;
  right: 20px;
}
.hamburger {
  width: 32px;
  height: 22px;
  outline: none;
  padding: 0;
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.5;
}
.hamburger-box {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 22px;
  display: inline-block;
  vertical-align: top;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  width: 32px;
  height: 4px;
  background-color: #99d06f;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:before,
.hamburger.is-active .hamburger-inner:after {
  background-color: #fff;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}
@media (min-width: 768px) {
  .hamburger-container {
    right: 30px;
  }
}
@media (min-width: 992px) {
  .hamburger-container {
    display: none;
  }
  .hamburger {
    padding: 40px;
  }
  .hamburger-box {
    top: 30px;
    left: 26px;
  }
}

/*
   * Squeeze - Hamburger
*/
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Menu overlay #navigation */
#navigation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #99d06f;
  z-index: 200 !important;
  overflow-y: scroll;
  /*overflow-y: auto;*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav-black-bg {
  display: none;
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  background: #99d06f;
  z-index: 1;
}
.fixedBG {
  position: fixed;
}
.nav-container {
  position: relative;
  margin: 0 auto;
  display: table;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 30px;
  padding-right: 50px;
}
.nav-container .nav-cell {
  display: table-cell;
}
.nav-container .cell-1 {
  display: none;
}
.nav-container .cell-2 {
  text-align: right;
}
.nav-container .contact-area {
  position: relative;
  filter: alpha(opacity=0);
  opacity: 0;
  right: -30%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.nav-container .contact-area .fa {
  margin-right: 5px;
}
.nav-logo {
  position: relative;
  margin: 0 0 20px;
}
.nav-logo a {
  display: inline-block;
}
.nav-logo img {
  height: 100px;
}
.nav-animation .navbar-nav {
  margin: 0;
}
.nav-animation .navbar-nav,
.nav-animation ul li {
  float: none;
  margin: 0;
}
.nav-animation ul li a,
.nav-animation ul li .nav-header {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0;
  position: relative;
  display: inline-block;
}
.nav-animation ul li a:hover,
.nav-animation ul li a:focus {
  color: rgba(256, 256, 256, 0.5);
}
.nav-animation ul li .chevron {
  background: url("../images/droparrow-white.svg");
  top: 17px;
  right: 5px;
  cursor: pointer;
}
#navigation .dropdown-menu,
.mob-foot-menu .navbar-nav .dropdown-menu {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  background: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  padding: 10px 0 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 0 none;
}
#navigation .dropdown-menu li,
.mob-foot-menu .dropdown-menu li {
  margin: 15px 0;
  padding: 0;
  border: 0 none;
}
.mob-foot-menu .dropdown.subopen .chevron {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#navigation .dropdown-menu li a {
  display: inline-block;
  text-transform: none;
  white-space: normal;
  padding: 0;
  background: none;
}
#navigation .dropdown-menu li a:after {
  bottom: 3px;
}
#navigation .dropdown.subopen .chevron {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu-overlay-open {
  /*overflow-x: hidden;*/
  overflow: hidden;
  /*padding-right: 15px;*/
}
.menu-overlay-open .body-overlay {
  opacity: 1;
  visibility: visible;
}
.menu-overlay-open .animsition {
  /*overflow-x: hidden;*/
  overflow: hidden;
  /*transform: scale3d(0.9, 0.9, 0.9);*/
}
#navigation .hamburger {
  margin-top: 30px;
}
#navigation .hamburger-inner,
#navigation .hamburger-inner:before,
#navigation .hamburger-inner:after {
  background-color: #fff;
}
#navigation::-webkit-scrollbar {
  background: none;
  width: 8px;
}
#navigation::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#navigation::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media (max-width: 1199px) {
  .nav-container .cell-1 {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (min-width: 480px) {
  .nav-animation ul li a,
  .nav-animation ul li .nav-header {
    font-size: 30px;
    padding: 15px 0;
  }
}
@media (min-width: 768px) {
  .nav-container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .nav-animation ul li .chevron {
    top: 36px;
  }
  #navigation .dropdown-menu li a {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .nav-container {
    padding-left: 90px;
    padding-right: 90px;
  }
  .nav-container .cell-1 {
    display: table-cell;
  }
  .nav-animation .navbar-nav,
  .nav-animation ul li {
    margin: 10px 0;
  }
}
@media (min-width: 1200px) {
  .nav-container {
    width: 80%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1600px) {
  .nav-animation ul li a,
  .nav-animation ul li .nav-header {
    font-size: 48px;
    line-height: 1.25;
    padding: 20px 0;
  }
}
@media (orientation: portrait) {
  .nav-container {
    padding-bottom: 50px;
  }
  .nav-container .nav-cell {
    vertical-align: top;
  }
}
@media (orientation: landscape) {
  .nav-container .nav-cell {
    vertical-align: middle;
  }
}

/* Breadcrumbs block */
.breadcrumbs-block {
  position: relative;
  z-index: 1;
  background: #f5f5fa;
  padding: 0 10vw;
  margin-top: 20px;
}
.breadcrumbs-block .bread-inner {
  padding: 30px 0;
}
.breadcrumbs-block h1 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.breadcrumb {
  font-size: 14px;
  padding: 0 !important;
  margin: 0;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.breadcrumb span.divider {
  display: none;
}
.breadcrumb > li + li:before {
  color: #808080;
}
.breadcrumb li.item-1:before {
  display: none;
}
.breadcrumb li > a,
.breadcrumb li > span {
  color: #808080;
}
.breadcrumb li.item-last span {
  color: #808080;
}
.breadcrumb li > a:hover,
.breadcrumb li > a:focus {
  color: #99d06f;
}

/* Google Map */
#map {
  width: auto;
  height: 600px;
  margin: 0;
  color: #333;
}

/* main Content */
.content {
  position: relative;
  padding: 0;
}
.home .content {
  padding: 0;
}

/* Footer */
.footer {
  position: relative;
  line-height: 1.4;
  letter-spacing: 1px;
  background: #fff;
  padding: 40px 0;
  -webkit-box-shadow: 10px -20px 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px -20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 10px -20px 40px rgba(0, 0, 0, 0.1);
}
.footer-bg-map {
  display: none;
  background: url("../images/karta.jpg") no-repeat center;
  background-size: cover;
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
}
.footer .container {
  position: relative;
}
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  font-weight: 300;
}
.footer h2 {
  font-size: 30px;
}
.footer h3 {
  font-size: 24px;
  margin-bottom: 25px;
}
.footer0 .btn {
  font-size: 16px;
  padding: 18px 40px;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .nav > li > a {
  padding: 0;
}
.footer-main {
  margin-bottom: 10px;
}
.footer-logo {
  margin-bottom: 35px;
}
.footer-logo img {
  height: 34px;
}
.footer-kontakt {
  margin-bottom: 40px;
}
.footer-main .foot-menu ul li {
  margin-bottom: 18px;
}
.foot-menu ul li a {
  position: relative;
  padding-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 15px 0 0;
  margin: 0 auto;
}
.footer-social {
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 14px;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .footer-logo {
    margin-bottom: 0;
  }
  .footer-bg-map {
    display: block;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 100px 0 60px;
  }
  .footer h2 {
    font-size: 40px;
  }
}

/* mod--social-networks */
.mod--social-networks ul {
  display: flex;
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mod--social-networks ul li {
  margin-right: 15px;
}
.mod--social-networks .fa {
  font-size: 36px;
}
.social-footer {
  display: flex;
  align-items: center;
}
.social-footer h3 {
  font-size: 16px;
  margin-bottom: 0;
  margin-right: 15px;
}

/* Back to top */
#back-to-top {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #99d06f;
  border: 0 none;
  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;
}
#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;
}

/* System message */
#system-message-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px;
}
#system-message .alert {
  background: #8ebf5f;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#system-message h4 {
  margin: 5px 0;
  color: #fff;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
  cursor: pointer;
}

/* bottom module */
.bottom {
}

/* --------------------------
--- HOMEPAGE ---
----------------------------- */

/* Home - intro-section */
.mod-intro .mod-content {
  /*min-height: 480px;*/
}

@media (min-width: 768px) {
  html,
  body,
  .animsition,
  .animsition-overlay,
  .intro-section,
  .intro-content,
  .mod-intro {
    height: 100%;
  }
}

.intro-section {
  position: relative;
  z-index: 10;
  background: #fff;
  color: #fff;
}
.intro-section .container {
  position: relative;
}
.mod-intro {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
}
.mod-intro:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.mod-intro:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.mod-intro .mod-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 50px 0;
}
.mod-intro .mod-content h1 {
  font-size: calc(1.4rem + 1.8vw);
  font-weight: 300;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}
.mod-intro .mod-content h1 .line-1 {
  font-size: calc(1.4rem + 0.9vw);
}
.mod-intro .mod-content h1 span {
  display: block;
}
.mod-intro .mod-content h2 {
  font-size: calc(1.4rem + 1.4vw);
  color: #fff;
  margin: 0 0 2vw;
}
.mod-intro .mod-content h2 span {
  font-weight: 400;
}
.mod-intro .mod-content .intro-text {
  font-size: calc(1rem + 0.8vw);
  line-height: 1.4;
  margin-bottom: 8vw;
}
.intro-buttons {
  text-align: center;
  margin-top: 20px;
}
.btn-play-video {
  display: inline-block;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
.btn-play-video:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  background: url("../images/icon-play.png") no-repeat center center;
  background-size: 100%;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-play-video span {
  display: block;
  font-size: 14px;
}
.btn-play-video:hover:before,
.btn-play-video:focus:before {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.btn-play-video:focus {
  outline: 0;
}
.mod-intro .intro-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mod-intro .intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 60%;
}
/* Zoom animation for intro-bg */
.mod-intro .intro-bg {
  -webkit-animation: zoom-animation 15s ease infinite alternate both;
  animation: zoom-animation 15s ease infinite alternate both;
}
@-webkit-keyframes zoom-animation {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes zoom-animation {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@media (min-width: 768px) {
  .mod-intro {
    padding-top: 0;
  }
  .mod-intro .mod-content {
    min-height: 0;
    padding: 0;
  }
  .mod-intro .mod-content h1 {
    font-size: calc(1.4rem + 3vw);
  }
  .mod-intro .mod-content h1 .line-1 {
    font-size: calc(1.4rem + 0.6vw);
  }
  .intro-buttons {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    margin-top: 5vw;
  }
  .btn-play-video:before {
    width: 100px;
    height: 100px;
  }
  .btn-play-video span {
    font-size: calc(0.5rem + 1vw);
  }
  .mod-intro:before {
    height: 200px;
  }
  .mod-intro:after {
    height: 200px;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
  .btn-play-video:before {
    width: 7vw;
    height: 7vw;
  }
  .btn-play-video span {
    font-size: calc(0.5rem + 0.6vw);
  }
}

/* home-0 */
.home-0 {
  position: relative;
  padding: 30px 10px;
  overflow-x: hidden;
}

/* mod--home-usluge */
.mod--home-usluge ul {
  list-style: none;
  padding: 0;
  margin: 0 -5px;
}
.mod--home-usluge ul li {
  float: left;
  width: 50%;
  padding: 0 5px;
  text-align: center;
  margin-bottom: 10px;
}
.mod--home-usluge ul li a {
  display: block;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.mod--home-usluge ul li a:hover,
.mod--home-usluge ul li a:focus {
  background: #99d06f;
}
.mod--home-usluge ul li a:hover img,
.mod--home-usluge ul li a:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.mod--home-usluge ul li .item-icon,
.mod--home-usluge ul li img {
  margin: 20px 0;
  height: 20vw;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.mod--home-usluge ul li .item-title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  height: 46px;
  overflow: hidden;
  margin: 0;
  padding: 0 10px;
}
.de-de .mod--home-usluge ul li .item-title {
  font-size: 12px;
}
@media (min-width: 480px) {
  .mod--home-usluge ul li .item-title,
  .de-de .mod--home-usluge ul li .item-title {
    font-size: 16px;
  }
}
@media (min-width: 580px) {
  .mod--home-usluge ul li {
    width: 33.33333333%;
  }
  .mod--home-usluge ul li .item-icon,
  .mod--home-usluge ul li img {
    height: 90px;
  }
}
@media (min-width: 768px) {
  .home-0 {
    padding: 50px 30px;
  }
  .mod--home-usluge ul {
    margin: 0 -15px;
  }
  .mod--home-usluge ul li {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .mod--home-usluge ul li .item-icon,
  .mod--home-usluge ul li img {
    margin: 5vw 0;
  }
}
@media (min-width: 992px) {
  .mod--home-usluge ul li {
    width: 20%;
  }
  .de-de .mod--home-usluge ul li .item-title {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .home-0 {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
  .de-de .mod--home-usluge ul li .item-title {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .home-0 {
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* wwd block (nas-tim) */
.wwd {
  position: relative;
  z-index: 21;
  overflow: hidden;
}
.mod-wwd {
  margin-bottom: 0;
}
.mod-wwd .wwd-left {
  position: relative;
  text-align: center;
}
.mod-wwd .wwd-left:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  left: 0;
  bottom: 0;
  background: #f5f5fa;
}
.mod-wwd .wwd-left .person {
  position: relative;
}
.mod-wwd .wwd-left .btn-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20vw;
  height: 20vw;
}
.mod-wwd .wwd-right .inner {
  background: #99d06f;
  color: #fff;
  padding: 10% 10% 5% 10%;
}
.mod-wwd .wwd-right .inner h2,
.mod-wwd .wwd-right .inner h3,
.mod-wwd .wwd-right .inner h4 {
  color: #fff;
  text-transform: uppercase;
}
.mod-wwd .wwd-right .inner h2 {
  display: inline-block;
  position: relative;
  font-size: calc(1.4rem + 2vw);
  font-weight: 300;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.mod-wwd .wwd-right .inner h2:after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mod-wwd .wwd-desc-1 {
  line-height: 1.4;
}
.wwd-bottom-image {
  position: relative;
}
.wwd-bottom-image .image-cover {
  padding-bottom: 50%;
}
.dentist {
  display: none;
  position: absolute;
}
.dentist-1 {
  bottom: 10%;
  left: 18%;
}
.dentist-2 {
  bottom: 18%;
  left: 28%;
}
.dentist-3 {
  bottom: 24%;
  left: 44%;
}
.dentist-4 {
  bottom: 18%;
  right: 40%;
}
.dentist-5 {
  bottom: 14%;
  right: 28%;
}
.dentist-6 {
  bottom: 10%;
  right: 18%;
}
@media (min-width: 480px) {
  .dentist {
    display: block;
  }
}
@media (min-width: 768px) {
  .mod-wwd .wwd-row {
    display: flex;
    align-items: flex-end;
  }
  .mod-wwd .wwd-left,
  .mod-wwd .wwd-right {
    width: 50%;
  }
  .mod-wwd .image-cover {
    padding-bottom: 80%;
  }
  .mod-wwd .wwd-left .btn-plus {
    width: 60px;
    height: 60px;
  }
  .mod-wwd .wwd-right .inner {
    padding: 10% 10% 5% 10%;
  }
  .mod-wwd .wwd-right .inner h2 {
    font-size: calc(1.4rem + 1vw);
  }
  .mod-wwd .wwd-desc-1 {
    font-size: 14px;
  }
  .wwd-bottom-image .image-cover {
    padding-bottom: 44%;
  }
}
@media (min-width: 992px) {
  .mod-wwd .wwd-right .inner {
    padding: 10%;
  }
  .mod-wwd .wwd-right .inner h2 {
    font-size: calc(1.4rem + 2vw);
  }
  .mod-wwd .wwd-desc-1 {
    font-size: 16px;
  }
  .mod-wwd .wwd-left .btn-plus {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .mod-wwd .image-cover {
    padding-bottom: 70%;
  }
  .mod-wwd .wwd-right .inner {
    padding: 10% 10% 15% 10%;
  }
  .mod-wwd .wwd-desc-1 {
    width: 70%;
  }
}
@media (min-width: 1600px) {
  .mod-wwd .image-cover {
    padding-bottom: 66.66666%;
  }
  .mod-wwd .wwd-right .inner {
    padding: 10% 10% 20% 10%;
  }
  .mod-wwd .wwd-desc-1 {
    width: 55%;
  }
}

/* slick slider default */
.slick-arrow {
  background: none;
  border: 0 none;
  position: absolute;
  z-index: 1;
  text-indent: -9999px;
  padding: 0;
  font-size: 0;
}
.slick-arrow:after {
  content: "";
  display: block;
  background: url("../images/icon-arrow-right.png") no-repeat center;
  background-size: cover;
  width: 26px;
  padding-bottom: 329%;
}
.slick-prev:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}

/* .mod--home-tim-slider */
.mod--home-tim-slider {
  margin-bottom: 50px;
}
.mod--home-tim-slider .module-title {
  text-align: center;
}
.mod--home-tim-slider .module-title h2 {
  font-size: calc(1.4rem + 6vw);
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mod--home-tim-slider .slick-slider {
  /*margin: 0 -15px;*/
  padding: 0 31px;
}
.mod--home-tim-slider .mod-article-item {
  padding: 0 15px;
}
.mod--home-tim-slider .mod-article-item:focus {
  outline: 0;
}
.mod--home-tim-slider .mod-article-item h3 {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin: 25px 0 0;
}
.mod--home-tim-slider .image-cover {
  padding-bottom: 120%;
}
.mod--home-tim-slider .slick-arrow {
  top: 0;
  padding: 13px;
  background: #fff;
  height: 100%;
}
.mod--home-tim-slider .slick-arrow:after {
  width: 20px;
}
.mod--home-tim-slider .slick-prev:after {
  -webkit-transform: rotate(180deg) translateY(50%);
  -moz-transform: rotate(180deg) translateY(50%);
  -o-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}
.mod--home-tim-slider .slick-next:after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mod--home-tim-slider .slick-prev {
  left: 0;
}
.mod--home-tim-slider .slick-next {
  right: 0;
}
@media (min-width: 768px) {
  .mod--home-tim-slider {
    margin-bottom: 8vw;
  }
  .mod--home-tim-slider .module-title h2 {
    font-size: calc(1.4rem + 2vw);
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .mod--home-tim-slider .container {
    width: auto;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .mod--home-tim-slider .slick-arrow {
    padding: 20px;
  }
  .mod--home-tim-slider .slick-arrow:after {
    width: 26px;
  }
  .mod--home-tim-slider .slick-prev {
    left: -20px;
  }
  .mod--home-tim-slider .slick-next {
    right: -20px;
  }
  .mod--home-tim-slider .slick-prev:after {
    -webkit-transform: rotate(180deg) translateY(15%);
    -moz-transform: rotate(180deg) translateY(15%);
    -o-transform: rotate(180deg) translateY(15%);
    -ms-transform: rotate(180deg) translateY(15%);
    transform: rotate(180deg) translateY(15%);
  }
  .mod--home-tim-slider .slick-next:after {
    -webkit-transform: translateY(-15%);
    -moz-transform: translateY(-15%);
    -o-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
@media (min-width: 1292px) {
  .mod--home-tim-slider .slick-slider {
    margin: 0 -15px;
    padding: 0;
  }
  .mod--home-tim-slider .slick-arrow {
    padding: 25px;
  }
  .mod--home-tim-slider .slick-prev {
    left: -61px;
  }
  .mod--home-tim-slider .slick-next {
    right: -61px;
  }
}

/* home-1 */
.home-1 {
  position: relative;
  z-index: 1;
}
/* mod--home-news */
.mod--home-news {
  margin-bottom: 20px;
}
.mod--home-news .module-title {
  text-align: center;
}
.mod--home-news .module-title h2 {
  font-size: calc(1.4rem + 6vw);
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mod--home-news .module-title h2 span:first-child {
  font-size: 20px;
}
.mod--home-news .module-title h2 span {
  display: block;
}
.mod--home-news ul {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}
.mod--home-news ul li {
  padding: 0 15px;
  margin-bottom: 30px;
}
.mod--home-news ul li:before {
  display: none;
}
.mod--home-news ul li .inner {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}
.mod--home-news ul li .newsflash-image {
  display: block;
  margin-bottom: 40px;
}
.mod--home-news ul li .newsflash-image .image-cover {
  padding-bottom: 66.66666%;
}
.mod--home-news ul li .item-content {
  padding: 0 10% 5px 10%;
}
.mod--home-news ul li .newsflash-title {
  font-size: 18px;
  font-weight: 300;
}
.mod--home-news ul li .newsflash-title a {
  color: #000;
}
.mod--home-news ul li .newsflash-title a:hover,
.mod--home-news ul li .newsflash-title a:focus {
  color: #99d06f;
}
@media (min-width: 768px) {
  .mod--home-news {
    margin-bottom: 8vw;
  }
  .mod--home-news ul {
    display: flex;
  }
  .mod--home-news ul li {
    float: left;
    width: 33.33333333%;
    margin-bottom: 0;
  }
  .mod--home-news .module-title h2 {
    font-size: calc(1.4rem + 2vw);
    margin-bottom: 40px;
  }
  .mod--home-news .module-title h2 span:first-child {
    font-size: 16px;
  }
}

/* home-2 */
.home-2 {
  position: relative;
  z-index: 1;
}

/* mod--home-testimonials */
.mod--home-testimonials {
  background: #f5f5fa;
  text-align: center;
  padding: 50px 0 70px;
  margin-bottom: 50px;
}
.apostrophe-icon {
  display: block;
  height: 100px;
  font-size: 200px;
  line-height: 1;
  color: #aae27f;
}
.mod--home-testimonials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mod--home-testimonials .carousel .carousel-item {
  text-transform: uppercase;
}
.mod--home-testimonials .statement {
  font-size: calc(1.4rem + 1.2vw);
  line-height: 1;
  height: 3em;
  overflow: hidden;
  margin-bottom: 10px;
}
.mod--home-testimonials .statement p {
  margin: 0;
}
.mod--home-testimonials .author {
  color: #aae27f;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mod--home-testimonials {
    margin-bottom: 6vw;
  }
  .apostrophe-icon {
    height: 10vw;
    font-size: 20vw;
  }
  .mod--home-testimonials .statement {
    height: 2em;
  }
}

/* mod-gallery */
.home .mod-gallery {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .home .mod-gallery {
    margin-bottom: 6vw;
  }
}

/* Home - content - featured items */
.lead-item {
  margin-bottom: 14vw;
}

/* --------------------------
--- CATEGORY PAGE ---
----------------------------- */

/* Category Blog */
.blog {
  margin-top: 20px;
}
.blog-breadcrumb {
  padding: 30px 0;
  background: #f5f5fa;
  margin-top: 20px;
}
.category-main-content .blog-breadcrumb {
  background: none;
  margin-top: 0;
}
.blog-breadcrumb ul.breadcrumb {
  padding: 0 10px !important;
}
.blog-breadcrumb ul.breadcrumb li {
  padding: 0;
  line-height: inherit;
  margin: 0;
}
.blog-breadcrumb ul.breadcrumb li:first-child {
  display: none;
}
.blog-breadcrumb ul.breadcrumb > li + li:before {
  position: static;
  width: auto;
  height: auto;
  content: "/\00a0";
  color: #808080;
  background: none;
}
@media (max-width: 767px) {
  .article.blog-breadcrumb .item-last {
    display: none;
  }
}
.category-main-content {
  padding: 0;
}
.category-header {
  position: relative;
  margin-bottom: 0;
}
.category-header-inner {
  position: relative;
  padding: 60px 0;
}
.category-header h2 {
  font-size: 36px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.category-header .category-desc {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 6px;
}
.category-header .blog-breadcrumb ul.breadcrumb,
.category-header .blog-breadcrumb ol.breadcrumb {
  padding: 0 !important;
}
.cat-image {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  padding-bottom: 0;
}
.cat-image.image-cover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.cat-image + .category-header-inner h2 {
  color: #fff;
}
.category-body {
  position: relative;
  margin: 0;
}
.items-leading {
  position: relative;
  margin-bottom: 0;
}
.catitem {
  position: relative;
  margin-bottom: 25px;
}
.blog-list-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 15px 0 25px;
}
.blog-list-content a:not(.btn) {
  color: #000;
}
.blog-list-content .introtext {
  font-size: 14px;
  margin-bottom: 30px;
}
.blog-list-content .date-published {
  display: inline-block;
  color: #808080;
  font-size: 12px;
  text-transform: lowercase;
  padding-top: 10px;
}
.blog-list-thumb {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
}
@media (min-width: 480px) {
  .category-header h2 {
    font-size: calc(1.4rem + 3vw);
  }
}
@media (min-width: 768px) {
  .category-header {
    margin-bottom: 0;
    padding: 0;
    background-position: 50% 50%;
  }
  .category-header .category-desc {
    font-size: 28px;
    width: 60%;
  }
  .category-body {
    padding: 0;
  }
  .catitem {
    margin-bottom: 50px;
  }
  .blog-list-thumb {
    float: left;
    width: 55%;
    margin: 0;
  }
  .blog-list-thumb .image-cover {
    padding-bottom: 80%;
  }
  .blog-list-content.withThumb {
    padding-left: 60%;
  }
}
@media (min-width: 992px) {
  .category-header-inner {
    padding: 10vw 0;
  }
  .category-header .category-desc {
    font-size: 38px;
  }
  .blog-list-content h2 {
    font-size: 28px;
  }
  .blog-list-content .date-published {
    font-size: 14px;
  }
  .blog-list-content .introtext {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .category-header h2 {
    font-size: calc(1rem + 3vw);
  }
  .catitem {
    margin-bottom: 70px;
  }
  .blog-list-thumb .image-cover {
    padding-bottom: 70%;
  }
}

/* --------------------------
--- ARTICLE PAGE ---
item-page (default-item)
news-item
----------------------------- */
.item-page strong {
  color: #99d06f;
}
.tpl-basic.item-page {
  padding-top: 20px;
}
.page-header {
  border: 0 none;
  margin: 0 0 50px;
  padding: 0;
}

/* article header */
.article-header {
  position: relative;
  margin-bottom: 40px;
}
.article-header-inner {
  position: relative;
  padding: 0;
}
.article-title h1,
.article-title h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
.article-image-intro {
  padding-bottom: 0;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
}
.img-container:hover .article-image-intro,
.img-container:focus .article-image-intro {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.article-header .uvod {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
}
.tpl-basic .row {
  margin-bottom: 80px;
}
.tpl-basic .row .col-sm-9 {
  column-count: 2;
  column-gap: 50px;
}
.tpl-basic .article-image-intro {
  padding-bottom: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article-header .date-published {
  display: inline-block;
  color: #808080;
  font-size: 12px;
  text-transform: lowercase;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .tpl-basic .article-image-intro {
    padding-bottom: 45%;
  }
  .article-header .uvod {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .article-header {
    margin-bottom: 80px;
  }
  .article-header .date-published {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .tpl-basic.item-page {
    padding-top: 40px;
  }
  .article-title h1,
  .article-title h2 {
    font-size: 48px;
    text-transform: uppercase;
  }
}

/* article body */
.item-page .article-body {
  position: relative;
  z-index: 1;
}
.item-page .article-body-inner {
  padding: 0;
}
.tpl-basic .article-body {
  margin-bottom: 50px;
}
.tpl-basic img,
.tpl-basic .djembed-video {
  margin: 0;
}
@media (min-width: 768px) {
  .item-page .article-body {
    padding: 0;
  }
  .tpl-basic .article-body {
    margin-bottom: 100px;
  }
  .tpl-basic img {
    margin: 25px 0;
  }
  .tpl-basic .djembed-video {
    margin: 50px 0;
  }
  .tpl-basic .item-text {
    padding: 0 10vw 0 5vw;
  }
}

/* Simple Image Gallery */
ul.sigProResponsive li.sigProThumb a.sigProLink {
  color: #e9eaeb;
  background-color: #e9eaeb;
  border: 6px solid #e9eaeb;
}
ul.sigProResponsive span.sigProPseudoCaption {
  background: #e9eaeb;
}
ul.sigProResponsive span.sigProCaption {
  color: #000;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover {
  color: #27303a;
  background-color: #27303a;
  border: 6px solid #27303a;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover span.sigProPseudoCaption {
  background: #27303a;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover span.sigProCaption {
  color: #fff;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: rgba(17, 17, 17, 0.99);
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
  background-position: 0 0;
}

/* Simple Image Gallery - natural-photos */
.article-gallery.sigProContainer {
  padding-bottom: 15px;
}
.natural-photos-container {
  margin-left: -10px;
  margin-right: -10px;
}
.natural-photos .photo-item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.natural-photos .photo-item,
.natural-photos .photo-item .image-cover {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.natural-photos .photo-item .image-cover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.natural-photos .photo-item:hover .image-cover:after {
  opacity: 0.7;
}
.sign-plus {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  width: 4vw;
  height: 4vw;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.natural-photos .photo-item:hover .sign-plus {
  opacity: 1;
}
.sign-plus:before {
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
  left: 10px;
  right: 10px;
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.sign-plus:after {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  margin-left: -0.5px;
  content: "";
  display: block;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .natural-photos .photo-item {
    float: left;
    width: 50%;
  }
}

/* Simple Image Gallery - Slickslider */
.slickslider-gallery .slick-arrow {
  top: 0;
  height: 100%;
  padding: 0 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slickslider-gallery .slick-arrow:after {
  background-image: url("../images/icon-arrow-right-black.png");
}
.slickslider-gallery .slick-prev {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.slickslider-gallery .slick-prev:hover {
  padding-right: 50px;
}
.slickslider-gallery .slick-next {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.slickslider-gallery .slick-next:hover {
  padding-left: 50px;
}
@media (min-width: 1200px) {
  .slickslider-gallery .slick-arrow {
    padding: 0 50px;
  }
  .slickslider-gallery .slick-prev:hover {
    padding-right: 100px;
  }
  .slickslider-gallery .slick-next:hover {
    padding-left: 100px;
  }
}

/* social share */
div.s2s_supra_contenedor {
  clear: none;
  margin-top: 20px;
  margin-left: -6px;
}
.s2s_contenedor.s2s-btn-group > div.s2s_btn {
  border-left: 0 none;
  margin-bottom: 0;
}
.blog div.s2s_supra_contenedor {
  display: none;
}
@media (min-width: 768px) {
  .s2s_contenedor.s2s-btn-group > div.s2s_btn {
    margin-right: 10px;
  }
}

/* navigacija */
.pagenav {
  margin: 30px 0;
  padding-left: 0 !important;
}
.pager li {
  padding-left: 0 !important;
}
.pager li:before {
  display: none;
}
.pager li > a,
.pager li > span {
  font-size: 14px;
  background: none;
  border: 0 none;
  padding: 0;
  color: #999;
}
.pager li > a:hover,
.pager li > a:focus {
  background: none;
  color: #000;
}
.pager li > a:hover .dir-label svg,
.pager li > a:focus .dir-label svg {
  fill: #000;
}
/*.pager .previous > a,
.pager .previous > span {
  width: 50%;
  text-align: left;
}
.pager .next > a,
.pager .next > span {
  width: 49%;
  text-align: right;
}*/
.dir-label {
  display: flex;
  justify-content: end;
  text-transform: uppercase;
  position: relative;
  padding: 0;
}
.dir-label svg {
  width: 16px;
  fill: #999;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.previous .chevron,
.previous .dir-label svg {
  left: 0;
  top: 3px;
  margin: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.next .chevron,
.next .dir-label svg {
  right: 0;
  top: 3px;
  margin: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.prev-next-title {
	display: block;
}
.pager .pagination-x {
	display: flex;
	gap: 15px;
}
.pager .anchor {
    display: flex;
    flex-flow: column;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}
.pager .anchor:hover,
.pager .anchor:focus {
	color: #000;
}
.pager .previous {
    text-align: left;
}
.pager .previous .dir-label {
  justify-content: start;
}
.pager .next {
    text-align: right;
	margin-left: auto;
}
.pager .next .dir-label {
  justify-content: end;
}

/* article-bottom */
.article-bottom {
  overflow-x: hidden;
}

/* --------------------------
--- SUB SPECIFIC PAGES ---
----------------------------- */

/* O nama */
.tpl-onama .article-title {
  display: none;
}
.tpl-onama h2 {
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 300;
}
.tpl-onama .article-intro {
  padding: 40px 20px 15px;
}
.tpl-onama .main-text {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 6px;
}
.tpl-onama .row-right-1 {
  margin-bottom: 25px;
}
.tpl-onama .row-right-1 p {
  margin: 0;
  letter-spacing: 3px;
}
.tpl-onama .row-right-1 p:first-child {
  font-size: 80px;
  line-height: 1;
  color: #99d06f;
  letter-spacing: 0;
}
.tpl-onama .row-right-1 div {
  float: left;
}
.tpl-onama .row-right-1 .experience {
  margin-right: 15%;
}
.tpl-onama .item-full-image .image-cover {
  padding-bottom: 49%;
}
.tpl-onama .item-full-image {
  margin-bottom: 50px;
}
.text-2-video .video-item {
  position: relative;
  margin-bottom: 50px;
}
.text-2-video .btn-play-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.text-2-video .btn-play-video:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-2-video .video .image-cover {
  padding-bottom: 85%;
}
.text-3-section {
  margin-bottom: 50px;
}
.text-4-section {
  margin-bottom: 0;
}
.text-2-video .txt,
.text-3-section .txt,
.text-4-section .txt {
  padding: 0 20px;
}
.text-full-width {
  background: #f5f5fa;
  font-size: 24px;
  text-align: center;
}
.text-full-width .inner {
  padding: 10vw 10% 8vw;
}
@media (min-width: 768px) {
  .tpl-onama .article-intro {
    padding: 0;
  }
  .tpl-onama .article-intro .intro-row {
    display: flex;
    align-items: center;
  }
  .tpl-onama .article-intro .intro-row .col-left,
  .tpl-onama .article-intro .intro-row .col-right {
    width: 50%;
    padding: 5vw;
  }
  .tpl-onama .main-text {
    font-size: 38px;
  }
  .tpl-onama .row-right-1 {
    margin-bottom: 50px;
  }
  .tpl-onama .item-full-image {
    padding-left: 4vw;
    margin-bottom: 0;
  }
  .text-row {
    display: flex;
  }
  .text-2-video .txt {
    width: 72%;
    padding: 5vw 10vw 5vw 5vw;
  }
  .text-2-video .video {
    width: 28%;
  }
  .text-2-video .video-item {
    margin-top: -25%;
    margin-bottom: 0;
  }
  .text-3-section {
    margin-bottom: 5vw;
  }
  .text-3-section .text-row {
    flex-direction: row-reverse;
  }
  .text-3-section .txt {
    width: 40%;
    padding: 5vw;
  }
  .text-3-section .img {
    width: 60%;
  }
  .text-4-section {
    margin-bottom: 3vw;
  }
  .text-4-section .txt {
    width: 60%;
    padding: 5vw;
  }
  .text-4-section .img {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .tpl-onama .main-text {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .tpl-onama h2 {
    font-size: 32px;
  }
}

/* page Dentalni laboratorij */
.tpl-labos .article-title {
  display: none;
}
.tpl-labos .article-intro {
  padding: 40px 20px 15px;
}
.tpl-labos .main-text {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 6px;
}
.page.dent-laboratorij .tpl-labos .text-1 {
  font-size: 32px;
  line-height: 1;
  color: #99d06f;
}
.page.dent-laboratorij .tpl-labos .video-item {
  margin-bottom: 40px;
}
.page.dent-laboratorij .tpl-labos .video-item .img-container {
  position: relative;
}
.page.dent-laboratorij .btn-play-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.page.dent-laboratorij .btn-play-video:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page.dent-laboratorij .item-page div + h2,
.page.dent-laboratorij .item-page ul + h2,
.page.dent-laboratorij .item-page p + h2 {
  margin-top: 40px;
}
.page.dent-laboratorij .text-2 {
  margin-bottom: 40px;
}
@media (min-width: 480px) {
  .tpl-labos .video-item .image-cover {
    padding-bottom: 49%;
  }
}
@media (min-width: 768px) {
  .tpl-labos .article-intro {
    padding: 40px 0 30px;
  }
  .tpl-labos .article-intro .intro-row {
    width: 748px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .tpl-labos .article-intro .intro-row {
    width: 932px;
    padding: 0;
  }
  .tpl-labos .main-text {
    font-size: 30px;
  }
  .page.dent-laboratorij .tpl-labos .text-1 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .tpl-labos .article-intro .intro-row {
    width: auto;
  }
  .tpl-labos .main-text {
    font-size: 38px;
  }
  .tpl-labos .article-intro .intro-row {
    display: flex;
    align-items: center;
  }
  .tpl-labos .article-intro .intro-row .col-left,
  .tpl-labos .article-intro .intro-row .col-right {
    width: 50%;
    padding: 5vw;
  }
  .page.dent-laboratorij .tpl-labos .text-1 {
    font-size: 80px;
  }
  .page.dent-laboratorij .tpl-labos .video-item {
    padding-left: 5vw;
    padding-right: 5vw;
    margin-bottom: 80px;
  }
  .page.dent-laboratorij .item-page div + h2,
  .page.dent-laboratorij .item-page ul + h2,
  .page.dent-laboratorij .item-page p + h2 {
    margin-top: 80px;
  }
  .page.dent-laboratorij .text-2 {
    margin-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .page.dent-laboratorij .tpl-labos .video-item {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}

/* page Usluge (main category) */
.blog.usluge {
  margin-top: 20px;
}
.page.usluge .category-header {
  margin: 0;
}
.page.usluge .category-header-inner {
  padding: 10px 0 60px;
}
.page.usluge .cat-image.image-cover:after {
  display: none;
}
.category-body.usluge {
  margin-top: -50px;
}
.category-body.usluge .items-leading {
  display: none;
}
/* mod--category-usluge: tmpl mod_custom */
.mod--category-usluge {
  padding-bottom: 50px;
}
.mod--category-usluge > ul {
  margin: 0;
}
.mod--category-usluge ul,
.mod--category-usluge ul li ul {
  padding: 0;
}
.mod--category-usluge ul li {
  margin: 0;
  padding: 0;
}
.mod--category-usluge ul li a {
  color: #000;
}
.mod--category-usluge ul li a:hover,
.mod--category-usluge ul li a:focus {
  color: #99d06f;
}
.mod--category-usluge ul li:before {
  display: none;
}
.mod--category-usluge > ul > li {
  padding: 0 5px;
  text-align: center;
  margin-bottom: 10px;
}
.mod--category-usluge ul li .item-icon {
  margin: 20px 0;
  height: 20vw;
}
.mod--category-usluge ul li .item {
  background: #fff;
  height: 100%;
  padding-bottom: 50px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.mod--category-usluge ul li .item-title {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  margin: 0;
}
.cat-children {
  margin-bottom: 50px;
}
.cat-children-modules .subcategory-item {
  padding: 0 5px;
  text-align: center;
  margin-bottom: 10px;
}
.cat-children-modules .subcategory-item .inner-container {
  background: #fff;
  height: 100%;
  padding-bottom: 25px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.cat-children-modules .subcategory-item .item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  margin: 0;
}
.cat-children-modules .subcategory-item .item-icon {
  margin: 20px 0;
  height: 20vw;
}
.mod--category-list ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.mod--category-list ul li {
  margin: 0;
  padding: 0;
}
.mod--category-list ul li:before {
  display: none;
}
.cat-children a {
  color: #000;
}
.cat-children a:hover,
.cat-children a:focus {
  color: #99d06f;
}
@media (min-width: 480px) {
  .page.usluge .category-header-inner {
    padding: 40px 0 100px;
  }
  .mod--category-usluge > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .mod--category-usluge > ul > li {
    width: 50%;
  }
  .mod--category-usluge ul li .item-title {
    font-size: 16px;
    padding: 0 15px;
  }
  .cat-children-modules {
    display: flex;
    flex-wrap: wrap;
  }
  .cat-children-modules .subcategory-item {
    width: 50%;
  }
  .cat-children-modules .subcategory-item .item-title {
    font-size: 16px;
    padding: 0 15px;
  }
  .cat-children-modules .subcategory-item .item-icon {
    margin: 30px 0;
  }
}
@media (min-width: 580px) {
  .cat-children-modules .subcategory-item .item-icon {
    height: 90px;
  }
}
@media (min-width: 768px) {
  .page.usluge .cat-image {
    width: 60%;
  }
  .category-body.usluge {
    margin-top: -5%;
  }
  .mod--category-usluge > ul > li {
    width: 33.33333333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .mod--category-usluge ul li .item-icon {
    margin: 50px 0 30px;
    height: 90px;
  }
  .mod--category-usluge ul li .item-title {
    margin-bottom: 20px;
  }
  .cat-children-modules .subcategory-item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .cat-children-modules .subcategory-item .inner-container {
    padding-bottom: 50px;
  }
  .cat-children-modules .subcategory-item .item-title {
    margin-bottom: 20px;
  }
  .cat-children-modules .subcategory-item .item-icon {
    margin: 50px 0 30px;
  }
}
@media (min-width: 992px) {
  .page.usluge .cat-image {
    width: 56%;
  }
  .cat-children {
    margin-bottom: 100px;
  }
  .cat-children-modules .subcategory-item {
    width: 33.33333333%;
  }
}
@media (min-width: 1200px) {
  .page.usluge .category-header-inner {
    padding: 100px 0 200px;
  }
}
@media (min-width: 1600px) {
  .page.usluge .cat-image {
    width: 54%;
  }
}

/* page Usluge (single category) */
.usluge-single-category .category-header {
  margin-bottom: 0;
}
.usluge-single-category .not-root .category-header-inner {
  padding: 25px 0 20px;
}
.usluge-single-category .not-root .category-header h2 {
  font-size: 28px;
  font-weight: 400;
}
.usluge-single-category .not-root .category-body {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 75px;
}
.usluge-single-category .items-leading {
  text-align: center;
  background: #fff;
  padding: 40px 15px 25px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.usluge-single-category .title-container h2 a {
  color: #000;
}
.usluge-single-category .title-container h2 a:hover,
.usluge-single-category .title-container h2 a:focus {
  color: #99d06f;
}
.usluge-single-category .ikona-usluge {
  margin-bottom: 40px;
}
.usluge-single-category .ikona-usluge img {
  height: 20vw;
}
.usluge-single-category .not-root .title-container h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .usluge-single-category .not-root .category-body {
    margin-bottom: 50px;
  }
  .usluge-single-category .category-body {
    margin-top: -5%;
  }
  .usluge-single-category .items-leading {
    width: 50%;
  }
  .usluge-single-category .ikona-usluge img {
    height: 90px;
  }
}
@media (min-width: 992px) {
  .usluge-single-category .not-root .category-body {
    margin-bottom: 100px;
  }
  .usluge-single-category .not-root .category-header h2 {
    font-size: 46px;
  }
  .usluge-single-category .items-leading {
    padding: 50px 50px 25px;
  }
  .usluge-single-category .not-root .title-container h2 {
    /*font-size: 24px;*/
    /*margin-bottom: 25px;*/
  }
}

/* Usluge - article */
.tpl-usluga .article-header {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 50px 0 25px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.tpl-usluga .article-header:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tpl-usluga .article-header-inner {
  padding: 30px;
}
.tpl-usluga .article-title h1,
.tpl-usluga .article-title h2 {
  margin: 0 0 25px;
  color: #fff;
}
.tpl-usluga .article-header .uvod {
  font-size: 20px;
  color: #fff;
}
.tpl-usluga .article-image-intro {
  position: static;
  width: 100%;
  padding-bottom: 45%;
}
.tpl-usluga .blog-breadcrumb {
  background: none;
  padding: 0;
  margin: 0 0 25px;
}
.tpl-usluga .blog-breadcrumb ul.breadcrumb {
  padding: 0 !important;
}
.tpl-usluga h3 {
  font-size: 24px;
  text-transform: uppercase;
}
.tpl-usluga .item-text div + h3,
.tpl-usluga .item-text ul + h3,
.tpl-usluga .item-text p + h3 {
  margin-top: 40px;
}
.page.usluge h4 {
  font-size: 26px;
  font-weight: 400;
}
.page.usluge .item-text {
  margin-bottom: 40px;
}
.price-list-container {
  background: #f5f5fa;
  text-align: center;
  padding: 75px 0 50px;
}
.faq-widget {
  margin-top: 40px;
  margin-bottom: 50px;
}
.faq-widget h3 {
  text-align: center;
  margin-bottom: 50px;
}
.faq-widget .faq-items {
  -webkit-box-shadow: 0px 5px 45px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 5px 45px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 45px 0px rgba(0, 0, 0, 0.15);
  margin: 0;
  padding: 30px 20px 20px;
}
.faq-widget .faq-item h4 {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
.faq-widget .faq-item h4 a {
  position: relative;
  color: inherit;
  display: block;
  padding-right: 24px;
}
.faq-widget .faq-item .answer p {
  margin-bottom: 15px;
}
.icon-plus {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.icon-plus:before {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  width: 100%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  content: "";
  display: block;
  height: 4px;
  background: #aae27f;
}
.icon-plus:after {
  position: absolute;
  left: 50%;
  margin-left: -2px;
  height: 100%;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: block;
  width: 4px;
  background: #aae27f;
}
.faq-item.expanded .icon-plus:after {
  opacity: 0;
}
.container-content {
  padding: 0 20px;
}
p.wide-row img {
  max-width: calc(100% + 40px);
}
.djembed-video,
p.wide-row img {
  margin: 0 -20px;
}
.wide-row-full {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .tpl-usluga .article-header {
    padding: 100px 0 75px;
  }
  .tpl-usluga .article-header .uvod {
    width: 80%;
  }
  .container-content {
    width: 748px;
    margin: 0 auto;
    padding: 0 20px;
  }
  p.wide-row img {
    max-width: calc(100% + 60px);
  }
  .djembed-video,
  p.wide-row img {
    margin: 0 -30px;
  }
  .wide-row-full {
    margin: 0 -30px;
  }
}
@media (min-width: 992px) {
  .tpl-usluga .article-header .uvod {
    width: 50%;
  }
  .container-content {
    width: 932px;
    padding: 0;
  }
  .faq-widget {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  .faq-widget .faq-items {
    margin: 0 15%;
    padding: 30px 40px 20px;
  }
}
@media (min-width: 1200px) {
  .tpl-usluga .article-header {
    padding: 170px 0 155px;
    margin-bottom: 60px;
  }
  .tpl-usluga .article-header-inner {
    padding: 0 10vw;
  }
  .tpl-usluga .blog-breadcrumb {
    margin: 0 0 45px;
  }
  .tpl-usluga .item-text div + h3,
  .tpl-usluga .item-text ul + h3,
  .tpl-usluga .item-text p + h3 {
    margin-top: 80px;
  }
  .tpl-usluga h3 {
    font-size: 32px;
  }
  .page.usluge .item-text {
    margin-bottom: 80px;
  }
  p.wide-row img {
    max-width: 120%;
  }
  .djembed-video,
  p.wide-row img {
    margin: 15px -10%;
  }
  .wide-row-full {
    margin: 0 calc(-10% - 15px);
  }
}

/* tpl Kontakt */
.tpl-kontakt .article-header {
  margin-top: 20px;
}
.tpl-kontakt .header-left {
  padding: 20px 30px 15px;
}
.tpl-kontakt .article-title h1,
.tpl-kontakt .article-title h2 {
  font-size: 32px;
  margin-bottom: 25px;
}
.tpl-kontakt .article-image-intro {
  background-size: cover;
  padding-bottom: 60%;
}
.tpl-kontakt .main-text {
  padding: 0 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .container-contact {
    padding: 0 5vw;
  }
  .tpl-kontakt .header-row {
    display: flex;
    align-items: center;
  }
  .tpl-kontakt .header-left {
    width: 45%;
    padding: 20px 5vw 0 5vw;
  }
  .tpl-kontakt .header-right {
    width: 55%;
  }
  .tpl-kontakt .article-image-intro {
    padding-bottom: 70%;
  }
  .tpl-kontakt .main-text {
    padding: 0 5vw;
  }
}
@media (min-width: 992px) {
  #bookingForm {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .tpl-kontakt .header-left {
    padding: 20px 5vw 0 5vw;
  }
  .tpl-kontakt .article-title h1,
  .tpl-kontakt .article-title h2 {
    font-size: 48px;
    margin-bottom: 50px;
  }
  .tpl-kontakt .article-image-intro {
    padding-bottom: 60%;
  }
  .tpl-kontakt .main-text {
    margin-bottom: 100px;
  }
}
@media (min-width: 1600px) {
  .container-contact {
    padding: 0 20vw;
  }
  .tpl-kontakt .header-row {
    align-items: stretch;
  }
  .tpl-kontakt .header-left {
    padding: 80px 5vw 0 20vw;
  }
  .tpl-kontakt .main-text {
    padding: 0 20vw;
    margin-bottom: 150px;
  }
  #bookingForm {
    width: 80%;
  }
}

/* Page Kontakt */
.page.kontakt .article-header .uvod {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: inherit;
}
.page.kontakt .footer-bg-map {
  display: none;
}
#contactForm .row {
  margin-bottom: 0;
}
#contactForm {
  margin-bottom: 50px;
}
.page.kontakt .tpl-kontakt .main-text {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #contactForm {
    padding-right: 10%;
    margin-bottom: 0;
  }
  .page.kontakt .tpl-kontakt .main-text {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .page.kontakt .tpl-kontakt .main-text {
    margin-bottom: 80px;
  }
}

/* Page Rezerviraj termin */
input[type="button"].rsform-calendar-button {
  font-size: 14px;
  line-height: 28px;
  padding: 10px 14px;
  text-transform: none;
  min-width: 0;
}
@media (min-width: 768px) {
  input[type="button"].rsform-calendar-button {
    padding: 10px 28px;
  }
}

/* Page - Cjenik */
.page.cjenik .blog-breadcrumb {
  display: none;
}
.page.cjenik .tpl-basic.item-page {
  padding-top: 20px;
}
.page.cjenik .article-header-inner {
  background: #f5f5fa;
  padding: 30px 0;
}
.page.cjenik .article-title h1,
.page.cjenik .article-title h2 {
  margin-bottom: 0;
}
.page.cjenik .tpl-basic .item-text {
  padding: 0;
}
.page.cjenik .item-page h1,
.page.cjenik .item-page h2 {
  font-size: 24px;
  text-transform: uppercase;
}
.page.cjenik .item-page h3 {
  font-size: 20px;
}
.page.cjenik tr td {
  text-align: right;
  min-width: 150px;
  width: 27.5%;
}
.page.cjenik tr td:first-child {
  width: 45%;
  text-align: left;
}
@media (min-width: 768px) {
  .page.cjenik .article-body {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .page.cjenik .item-page h1,
  .page.cjenik .item-page h2 {
    font-size: 36px;
  }
  .page.cjenik .item-page h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .page.cjenik .article-header-inner {
    padding: 75px 0;
  }
  .page.cjenik .item-page h1,
  .page.cjenik .item-page h2 {
    font-size: 48px;
  }
  .page.cjenik .article-body {
    margin-bottom: 100px;
  }
}

/* Prijava - page */
.form-horizontal .control-label {
  text-align: left;
}

/* Contact page and Form */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
.form-control {
  border: 1px solid #f5f5fa;
  background-color: #f5f5fa;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  width: 100%;
  height: 50px;
  padding: 10px 15px;
}
.form-control[readonly] {
  background-color: #f5f5fa;
}
textarea.form-control {
  padding: 10px;
}
.rsform-block label {
  font-weight: 300;
}
label strong.formRequired {
  font-weight: 400;
}
button:focus,
button:active,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.btn:active:focus {
  outline: none;
}
.form-control:focus {
  border-color: #99d06f;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.has-error .form-control:focus {
  border-color: #de350b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.formRed {
  color: #de350b;
}
p.formRed {
  margin-bottom: 10px;
  color: #de350b;
}
.formValidation .formError {
  color: #de350b;
  font-size: 12px;
  font-weight: 600;
}
.has-error .form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #de350b;
}
.has-error .control-label {
  color: #102a43;
}
.has-error .help-block {
  font-weight: 600;
  line-height: 1.2;
}

/* RSform - continue button */
input[type="button"] {
  font-size: 18px;
  padding: 15px 25px;
  background: #99d06f;
  color: #fff;
  text-transform: uppercase;
  min-width: 200px;
}
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active {
  color: #fff;
  background: #7eba50;
}

/* RSform - popup thank you */
.rsfp_thankyou_popup_inner {
  border-bottom: 3px solid #99d06f;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.rsfp_thankyou_popup_inner .rsfp_thankou_popup_close_btn {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  filter: alpha(opacity=80);
  opacity: 0.8;
  text-shadow: 0 1px 0 #fff;
  top: -48px;
  right: 0;
}
.rsfp_thankyou_popup_inner .rsfp_thankou_popup_close_btn:hover,
.rsfp_thankyou_popup_inner .rsfp_thankou_popup_close_btn:focus {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* --------------------------
--- SEARCH RESULTS ---
----------------------------- */

/* search module */
.search-module.moduletable {
  margin: 50px 0 15px;
}
.search-module form {
  position: relative;
}
.search-module form label {
  display: none;
}
.search-module form input {
  padding: 10px 30px;
  font-weight: normal;
}
.search-module input:focus {
  outline: none;
}
.search-icon {
  font-size: 18px;
  position: absolute;
  left: 0;
  bottom: 10px;
}

/* search form */
#searchForm .btn-group {
  float: none;
}
#searchForm .btn-toolbar label {
  display: none;
}
#searchForm .btn-toolbar .btn-group:first-child {
  width: 100%;
}
#searchForm input {
  font-weight: normal;
  padding: 10px 30px;
}
#searchForm input:focus {
  outline: none;
}
#searchForm .form-limit {
  margin-bottom: 25px;
}

/* search results */
.com-search-body {
  margin-top: 50px;
}
.search-results .result-wrapper {
  border: 1px solid #ddd;
  padding: 30px 40px;
  margin-bottom: 20px;
}
.search-results .content,
.search-results .page-title {
  text-align: left;
  margin: 0 0 30px;
}
.search-results .input-group {
  display: table;
  position: relative;
  border-collapse: separate;
}
.search-results .search-input {
  margin-bottom: 25px;
}
.search-results .input-group .form-control {
  display: table-cell;
}
#search-searchword {
  height: 50px;
  padding: 10px 20px;
  font-size: 18px;
}
#searchForm .input-group-btn .btn {
  height: 50px;
  background: #eee;
  border: 1px solid #eee;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 6px 22px;
}
.searchintro {
  margin: 50px 0 60px;
}
.searchintro p {
  margin: 0;
}
.searchintro .badge {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 18px;
  background: #eee;
  color: #a22631;
  padding: 2px 8px;
}
#searchForm legend {
  border: 0 none;
  text-transform: uppercase;
  margin-bottom: 0;
}
.phrases-box label {
  display: inline-block;
  padding-left: 20px;
  margin-right: 15px;
}
.phrases .ordering-box {
  margin-bottom: 10px;
}
dl.search-results a {
  color: #a22631;
}
.result-text {
  word-break: break-all;
}
.result-category,
.result-created {
  color: #999;
  font-size: 85%;
}
span.highlight {
  background: #ffffcc;
  font-weight: bold;
}

/* --------------------------
--- PAGINATION ---
----------------------------- */

.pagination {
  display: block;
  margin: 0 0 50px;
  font-size: 14px;
}
.pagination .counter.pull-right {
  display: none;
}
.pagination ul {
  display: inline-block;
  padding-left: 0;
  margin: 0;
  border-radius: 0;
}
.pagination ul > li {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}
.pagination ul > li:before {
  display: none;
}
.pagination ul > li > a,
.pagination ul > li > span {
  display: inline-block;
  position: relative;
  padding: 12px 20px;
  line-height: 20px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin-left: -1px;
  color: #999;
}
.pagination ul > li > a {
  background-color: #f5f5fa;
  color: #999;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus {
  color: #fff;
  background-color: #99d06f;
  border-top-color: #99d06f;
  border-bottom-color: #99d06f;
}
.pagination ul > li > span:hover,
.pagination ul > li > span:focus {
}
.pagination ul > .page-item.active > a,
.pagination ul > .page-item.active > span,
.pagination ul > .page-item.active > a:hover,
.pagination ul > .page-item.active > span:hover,
.pagination ul > .page-item.active > a:focus,
.pagination ul > .page-item.active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #99d06f;
  border-color: #99d06f;
  cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > span:hover,
.pagination ul > .disabled > span:focus,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999;
  background-color: #f5f5fa;
  /*border-color:#dddddd;
 cursor:not-allowed*/
}
.pagination ul-lg > li > a,
.pagination ul-lg > li > span {
  padding: 13px 40px;
  font-size: 18px;
}
.pagination ul-lg > li:first-child > a,
.pagination ul-lg > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination ul-lg > li:last-child > a,
.pagination ul-lg > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination ul-sm > li > a,
.pagination ul-sm > li > span {
  padding: 6px 12px;
  font-size: 12px;
}
.pagination ul-sm > li:first-child > a,
.pagination ul-sm > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination ul-sm > li:last-child > a,
.pagination ul-sm > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* --------------------------
--- 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;
  }
}

/* header-top, main-menu, top-menu btn rezerviraj */
.fade-in-top-1 {
  -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;
}
.fade-in-top-2 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s
    both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}
.fade-in-top-3 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s
    both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s 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;
  }
}

/* mod-intro: intro-bg-container */
.fade-in {
  -webkit-animation: fade-in 3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s both;
  animation: fade-in 3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* mod-intro: title */
.titleReveal {
  display: block;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  transform: translateY(-50px);
  opacity: 0;
  animation-name: titleReveal;
  animation-timing-function: ease;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
}
.timing-1 {
  animation-delay: 1.9s;
}
.timing-2 {
  animation-delay: 1.7s;
}
.timing-3 {
  animation-delay: 1.5s;
}
.timing-4 {
  animation-duration: 1s;
  animation-delay: 1.9s;
}
.timing-5 {
  animation-duration: 1s;
  animation-delay: 2.1s;
}
.timing-6 {
  animation-duration: 1s;
  animation-delay: 2.2s;
}
@keyframes titleReveal {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}

/* mod-intro: btn-play-video */
.scale-in-center {
  -webkit-animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    2.5s both;
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.5s both;
}
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* Podstranice: about us */
.fade-in-up-1 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
}
.fade-in-up-2 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
}
.fade-in-up-3 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 2s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 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;
  }
}

/* Animsition - custom loading class */
.custom-animsition-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.custom-animsition-loading img {
  max-width: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.custom-animsition-loading img {
  -webkit-animation: pulsate-bck 0.5s ease-in-out infinite both;
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}
@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/******************************************************************************************
* responsive MAX-width 
******************************************************************************************/
@media (max-width: 479px) {
  .xdsoft_datetimepicker {
    left: 5px !important;
  }
}
@media (max-width: 767px) {
  textarea,
  input {
    width: 100%;
  }
}

.btn-appointment {
  display: none;
}
@media (max-width: 767px) {
  .btn-appointment {
    display: block;
    margin: 20px 0;
    text-align: center;
  }
}

/* Landing page */
.tpl-landing .article-header {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 30px 0;
  margin-top: 20px;
  overflow: hidden;
}
.tpl-landing .article-header .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tpl-landing .article-header .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
.tpl-landing .article-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}
.tpl-landing .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
/* LEFT SIDE */
.tpl-landing .header-left {
  flex: 1;
}
.tpl-landing .article-title h1,
.tpl-landing .article-title h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}
.tpl-landing .hero-services {
  color: #000;
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
/* RIGHT SIDE (FORM) */
.tpl-landing .header-right {
  width: 420px;
}
.tpl-landing .header-right form {
  background: #fff;
  padding: 30px 25px;
  color: #333;
}
.tpl-landing .header-right h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}
.tpl-landing .header-right .form-group {
  margin-bottom: 15px;
}
.tpl-landing .header-right button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
}
@media (max-width: 992px) {
  .tpl-landing .header-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .tpl-landing .article-header .item-image {
    height: 50%;
  }
  .tpl-landing .header-right {
    width: 100%;
    max-width: 450px;
    margin-top: 40px;
  }
  .tpl-landing .article-title h1,
  .tpl-landing .article-title h2 {
    font-size: 34px;
  }
  .tpl-landing .hero-services {
	font-size: 20px;
  }
}
@media (max-width: 600px) {
  .tpl-landing .article-header {
    padding: 60px 0 0;
  }
  .tpl-landing .article-header-inner {
    padding: 0 20px;
  }
  .tpl-landing .article-title h1,
  .tpl-landing .article-title h2 {
    font-size: 28px;
  }
  .tpl-landing .hero-services p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .tpl-landing .article-header {
    min-height: 85vh;
  }
}

/* Landing services */
.services-section {
  padding: 30px 0 60px;
  text-align: center;
}
.services-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.service-item {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.service-image {
  position: relative;
  padding-bottom: 56%;
  margin-bottom: 20px;
}
.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.service-item p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .services-section h2 {
    font-size: 28px;
  }
}

/* advantages */
.advantages-section {
  padding: 60px 0 30px;
}
.advantages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.advantage-item {
  flex: 0 1 calc(25% - 30px);
  text-align: center;
}
.advantage-image img {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
}
.advantage-item p {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .advantage-item {
    flex: 0 1 calc(50% - 30px);
  }
}

/* google widget */
.widget-section {
  padding: 60px 0 30px;
  text-align: center;
}
.widget-intro {
  margin-bottom: 30px;
}
/* video */
.tpl-landing .landing-video {
  margin-bottom: 20px;
}
.tpl-landing .mod-intro {
  height: 300px;
}
.tpl-landing .mod-intro .mod-content {
  padding: 50px 0;
}
.tpl-landing .intro-buttons {
  margin: 0;
  top: 0;
}
.tpl-landing .mod-intro:before, .tpl-landing .mod-intro:after {
  display: none;
}

/* about Ivana */
.about-section {
  padding: 0;
}
.about-flex {
  display: flex;
}
.about-left,
.about-right {
  width: 50%;
}
.about-right {
  background: #7eba50;
}
.about-left {
  position: relative;
  padding-bottom: 40%;
}
.about-left img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-right .text-right {
  font-size: 18px;
  font-weight: 400;
  padding: 60px 40px;
  color: #fff;
}
.about-right .text-right h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .about-section {
    padding: 0;
  }
  .about-flex {
    flex-direction: column;
  }
  .about-left,
  .about-right {
    display: block;
    width: 100%;
    padding: 0;
  }
  .about-left img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }
  .about-right .text-right {
    text-align: left;
    padding: 60px 30px;
    font-size: 16px;
  }
}
.landing-gallery {
    padding: 20px 0;
}
/* article text */
.article-text {
  padding: 80px 0;
  background: #7eba50;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.landing-page .footer-bg-map {
  display: none;
}

/* landing footer */
.landing-footer h2 {
  margin: 0;
}
.landing-footer .row-landing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.landing-footer .social-footer {
  margin-bottom: 15px;
}

/***********************************
*** Adding missing CSS parts ***
***********************************/

.text-right {
    text-align: right;
}
b, strong {
    font-weight: 700;
}

/* Override za JO Image Gallery - Elegant theme */
.joimagegallery.elegant .gallery-item {
	padding: 0;
	box-shadow: 0 none;
}
.joimagegallery.elegant .gallery-item img {
	aspect-ratio: 1/0.7;
}
.joimagegallery.elegant .gallery-overlay i {
	font-size: 50px;
}

/* JO Image Gallery - theme Minimal with slick slider */
.photo-grid .photo-item {
	float: left;
	width: 50%;
	position: relative;
}
.photo-grid .photo-item .image-caption {
	position: absolute;
	top: 55%;
	width: 100%;
	text-align: center;
	opacity: 0;
	transform: translate(0, -55%);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}
.photo-grid .photo-item .image-caption .fa-solid {
	font-size: 50px;
	color: #fff;
}
.photo-grid .photo-item:hover .image-caption {
	opacity: 1;
	top: 50%;
	transform: translate(0, -50%);
}
.photo-grid .photo-item img {
	object-fit: cover;
	aspect-ratio: 1 / 0.7;
}
.photo-grid .photo-item .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.photo-grid .photo-item:hover .image-overlay {
	opacity: 1;
}
@media (min-width: 480px) {
	.photo-grid .photo-item {
		width: 33.33333333%;
	}
}

/* Naknadno za RSFormu */
.form-group {
    margin-bottom: 15px;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}
textarea.form-control {
	height: auto;
}
.rsform-calendar-button {
	height: 50px;
}

/* Fix for mobile menu */
#navigation .navbar-nav {
	display: block;
}