
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');


/******************** HTML ********************/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    background-color: white;
}

:root {
    --primary-color: #4D90B5;
    --primary-color: black;
    --secondary-color: #6CB476;
    --footer-color: #858383;
    --headings-font-family: 'Montserrat', sans-serif;
    --paragraph-font-family: 'Philosopher', sans-serif;
    --paragraph-font-family: 'Open Sans', sans-serif;
    --mobile-menu: #26263c;
}

h1, h2, h3, h4, h5 {
    display: block;
    width: 100%;
    font-family: var(--headings-font-family);
    font-family: 'Orbitron', sans-serif;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

/******************** BOOTSTRAP********************/
.row {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
}

.alert-success{
    padding: 10px;
    color: #fff !important;
    background-color: #0fd54a !important;
}

/******************** GLOBAL CLASS ********************/

.title {
    margin: 20px 0px 6px;
    font-size: 1.8em;
    color: var(--secondary-color);
    color: #7C7C7C;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1em;
    text-align: center;
}

.cta {
    padding: 10px 15px;
    color: white;
    background-color: var(--primary-color);
}

.cta:hover {
    color: white;
}

.cta2 {
    padding: 10px 15px;
    color: black;
    background-color: #eaeaea;
}

.top-banner-icon1{
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-left: -2em;
    width: 40px;
    height: 40px;
    font-size: 17px;
    text-align: center;
}

.mobile_only {
    display: none;
}

/**************************************** HEADER ****************************************/

/******************** ADMIN BAR ********************/
.admin_bar {
    background-color: #535353;
    padding: 3px;
}

.admin_bar a {
    padding: 5px 10px;
    color: white;
    background-color: #3490dc;
    text-decoration: none;
}

.admin_bar .edit_link {
    background-color: #ffc107;
    background-color: #e5ac00;
}

.admin_bar a:hover {
    background-color: limegreen;
}

.info-contact {
    display: flex;
}

/******************** TOP BAR ********************/
a.profil{
    color: #fff;
}

.top-ribbon{
    position: relative;
    font: normal 400 14px var(--headings-font-family);
    background-color: #292b33;
    color: #bbbbbb;
    padding: 0.7em;
    z-index: 10;
}

.top-ribbon .container {
    max-width: 100%;
}

.top-ribbon .dropdown {
    padding: 0px 1.5rem;
}

a.connected{
    color: #fff;
}

.contact_icons{
    display: inline-flex;
}

.shop-cart{
    text-align: end;
}

.top-banner-icon {
    position: relative;
    color: #fff;
    font-size: 1rem !important;
}

.top-banner-icon span {
    font-size: 1rem;
    color: #fff;
    position: absolute;
    top: -5px;
    right: -10px;
    background: #021230;
    border-radius: 50%;
    width: 17px;
    padding-right: 4px;
}

.shop-cart a{
    color: #fff !important;
}

/******************** MINI CART ********************/
.cart-items{
    display: flex;
    flex-direction: row;
    width: 100%;
    color: #000;
    text-align: left;
}

.cart-content {
    z-index: 999;
    position: absolute;
    width: 200px;
    right: 100px;
    margin-top: 1em;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.cart-body{
    background-color: #fff;
    padding: 1em;
}

.cart-item-text p{
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 0;
}

.cart-line{
    width: 50%;
    color: red;
}

.cart-item {
    display: flex;
    padding: 15px;
}

.cart-item:hover {
    opacity: .65;
}

.cart-item-text {
    margin-left: 10px;
    padding-top: 10px;
}

.image-search {
    width: 50px !important;
    margin-bottom: 10px;
}

/******************** SEARCH AND SEARCHED ********************/
.menu-search{
    display: inline-block;
    position: relative;
    margin-left: 2em;
  }

  .menu-search:hover input{
    width: 200px;
    padding: 0 36px 0 8px;
  }

  .menu-search:hover .search-button{
      color: #000;
  }

  .menu-search input {
    width: 0px;
    height: 35px;
    border: 0;
    transition: all 0.3s;
  }

  .search-button {
    width: 35px;
    height: 35px;
    background-color: transparent;
    color: #000;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-content {
    position: absolute;
    right: -20px;
    top: 90px;
    width: 350px;
    height: 500px;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 5px;
    overflow: auto;
    display: none;
}

.search-item {
    display: flex;
    padding: 15px;
}

.search-item:hover {
    opacity: .65;
}

.search-item-text {
    margin-left: 30px;
    padding-top: 30px;
}

.image-search {
    width: 140px;
}

.underline-price {
    text-decoration: line-through;
}

.search-item-text span {
    margin-right: 10px;
}

/******************** NAVIGATION 1 ********************/
.navbar-brand{
    margin-right: 0 !important;
}

a.nav-link{
    color: #000;
}

a.nav-link:hover{
    color: #00AEEF;
}

.logo{
    width: 40%;
}

.navbar{
    border-bottom: 1px solid var(--primary-color);
}

.nav-item{
    font-family: var(--headings-font-family)
}

a.nav-link:hover{
    color: var(--primary-color);
    font-weight: 700;
}

.notification {
    width: 50%;
    position: absolute;
    z-index: 100;

    padding: 10px;
    background-color: #0fa82b;
    color: white;
}

.notification {
    -webkit-animation: seconds 1.0s forwards;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 5s;
    animation: seconds 1.0s forwards;
    animation-iteration-count: 1;
    animation-delay: 5s;
  }
  @-webkit-keyframes seconds {
    0% {
      opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes seconds {
    0% {
      opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
      opacity: 0;
    }
  }

/******************** NAVIGATION 2 - To be edited ********************/
.header-menu{
    display: flex;
    flex-direction: column;
}

.logo1{
    display: flex;
    justify-content: center;
}

.logo1 img{
    width: 20%;
}

.navbar1{
    background-color: var(--primary-color);
    margin-top: 0.5em;
}

ul.navbar-nav {
    display: flex;
    height: 100%;
    justify-content: center !important;
    align-items: center;
    cursor: pointer;
}

ul.navbar-nav li {
    height: 100%;
    padding-top: 10px;
}

#shop_link {
    color: #d9a134;
    background-color: black;
}

#shop_link a {
    color: #d9a134;
}

.navbar1 .navbar-brand {
    font-size: 30px;
 }

.navbar1 .nav-item {
    padding: 10px 20px;
}

.navbar1 .nav-link {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    margin-left: 10px;
    color: #fff;
}


.fa-bars {
    color: #fff;
    font-size: 30px;
}

/******************** NAVIGATION 3 - To be edited ********************/
.navbar3{
    background: transparent;
    border-bottom: 1px solid var(--primary-color);
}

ul.navbar-nav {
    display: flex;
    justify-content: center !important;
    align-items: center;
    cursor: pointer;
}


.navbar3 .nav-item {
    padding: 10px 10px;
}

.navbar3 .nav-link {
    font: normal 700 15px var(--paragraph-font-family);
    text-transform: uppercase;
    color: var(--primary-color);
}

.nav-logo{
    width: 70%;
    height: auto;
}

a.nav-link{
    text-align: center;
}

.fa-bars {
    color: #fff;
    font-size: 30px;
}

.navbar-toggler{
    background: var(--primary-color) !important;
    outline: none !important;
}


/******************** NAVIGATION 4 ********************/
.header_four_homepage,
.header_four_homepage .top-ribbon {
    background-color: transparent !important;
}

.header_four .shop-cart {
    text-align: left;
}

.header_four .info-contact {
    display: initial;
    text-align: right;
}

.header_four .info-contact img {
    width: 20px;
    margin-left: 6px;
}

.header_four .info-contact .phone_icon {
    width: 16px;
}

.header_four_homepage .navbar {
    border: none !important;
}


/******************** NAVIGATION 5 ********************/

.header_five {
    max-width: 100%;
    position: relative;
    z-index: 10000000000000000;
}

.navbar:has(> .header_five){
    border-bottom: none !important;
}

.header_five .navbar-brand {
    padding: 0px;
}

.header_five .logo {
    width: 100%;
}

.navbar {
    padding: 0px;
    background-color: #262516bd;
    z-index: 2;
}

.header_five_cta {
    margin-bottom: 0px;
    padding: 10px 15px 0px 15px;
    color: black;
}

.header_five .connected {
    color: var(--secondary-color);
}

.header_five .top-banner-icon {
    color: var(--primary-color);
}

.header_five_social {
    padding: 10px 20px 0px 10px;
}

.header_five .social {
    max-width: 22px;
}

.header_five a.nav-link {
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
}

.header_five_homepage a.nav-link {
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #605f5f;
}

.header_five ul {
    margin-right: 0px;
    margin-left: 0px;
}

.header_five ul > li {
    margin-top: 0px !important;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.dropdown-menu {
    padding: 10px;
    background-color: #292b33;
}

.navbar-expand-lg .navbar-nav .nav-link img,
.dropdown-menu .language img {
    max-width: 25px;
    margin: 3px;
}

.dropdown-menu .language:hover {
    background-color: #292b33;
}

.language_switcher {
    margin-bottom: 0px;
}

.lang_desktop {
    display: inline-block;
    width: 30%;
    padding: 0px;
}

.lang_desktop:hover,
.lang_desktop:focus {
    background-color: inherit;
}

.lang_desktop img {
    width: 25px;
}

/*********************************** NEW MENU MOBILE **************************************/
#hidden-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  height: 100%;
  position: fixed;
  background-color: #222831;
  background-color: var(--mobile-menu);
  background-color: var(--secondary-color);
  background-color: var(--primary-color);
  overflow-x: hidden;
  width: 0;
}

#hidden-nav .navbar-nav {
    margin-top: 40%;
}

#hidden-nav a {
  font-size: 18px;
  color: #eeeeee;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: none;
}

#hidden-nav select {
  background-color: transparent;
  outline: none;
  border: none;
  color: #eeeeee;
}

#hidden-nav .close-menu img {
    width: 25px;
}

#hidden-nav .dropdown-menu {
    background-color: var(--mobile-menu);
}

#hidden-nav .dropdown-menu .dropdown-item {
    padding: 0px;
    font-size: 14px;
}

#hidden-nav .profilesmob {
    margin-top: 25px;
}

#hidden-nav .profilesmob .profil,
#hidden-nav .profilesmob .connected {
    display: block;
    margin-left: 0px !important;
    font-size: 14px;
    font-weight: normal;
}

#hidden-nav .profilesmob i {
    margin-top: 6px;
    font-size: 18px;
    color: white;
}

.open-menu {
  -webkit-animation: slideInRight .6s forwards;
          animation: slideInRight .6s forwards;
}

.close-menu {
    position: absolute;
    right: 20px;
  cursor: pointer;
  -webkit-animation: slideBack .6s forwards;
          animation: slideBack .6s forwards;
}

@-webkit-keyframes slideInRight {
  from {
    width: 0;
  }
  to {
    width: 60vw;
  }
}

@keyframes slideInRight {
  from {
    width: 0;
  }
  to {
    width: 60vw;
  }
}

@-webkit-keyframes slideBack {
  from {
    width: 60vw;
  }
  to {
    width: 0px;
  }
}

@keyframes slideBack {
  from {
    width: 60vw;
  }
  to {
    width: 0px;
  }
}
/******************************** END OF NEW MENU MOBILE **********************************/

/**************************************** HOMEPAGE ****************************************/

/******************** MAIN SLIDER ********************/
.sliderslide {
    margin-top: -76px;
}

.sliderslide .item {
    position: relative;
}
.sliderslide .item img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.sliderslide .item .cover {
position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
/*/ padding: 75px 0; /*/
    display: flex;
    align-items: center;
}
.sliderslide .container {
    max-width: 100%;
}
.sliderslide .owl-nav {
    display: none;
}
.sliderslide .item .cover .header-content {
    position: relative;
    padding: 25px;
    overflow: hidden;
    width: 50%;
}
.internal_slider .item .cover .header-content {
    width: 100%;
}
.sliderslide .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 3px solid #ffffff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.sliderslide .item .cover .header-content h2 {
    font-weight:300;
    font-size: 42px;
    color: white;
}
.internal_slider .item .cover .header-content h2 {
    font-size: 4em;
}
.sliderslide .item .cover .header-content p {
    font-size: 22px;
    color: white;
}
.sliderslide .hero_cta a {
    width: 44%;
    font-weight: bold;
    text-decoration: none;
}
.sliderslide hr {
    width: 10%;
    border-color: white;
}
.slider_star {
    max-width: 40px;
    height: auto !important;
}
.sliderslide .hero_cta .cta2 {
    display: block;
    width: 20%;
    margin-top: 30px;
    background-color: white;
    text-align: center;
}
.sliderslide .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
.sliderslide .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
.sliderslide .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}
.sliderslideader .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}
.sliderslide .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}
.sliderslide .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}
.sliderslide .owl-nav .owl-prev:focus {
    outline: 0;
}
.sliderslide .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}
.sliderslide .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}
.owl-prev i, .owl-next i {
    width: 23px;
    padding-left: 3px;
    font-size: 25px;
    color: white !important;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
}
.sliderslide .owl-nav .owl-next:focus {
    outline: 0;
}
.sliderslide:hover .owl-prev {
    left: 0px;
    opacity: 1;
}
.sliderslide:hover .owl-next {
    right: 0px;
    opacity: 1;
}
/*########## END OF MAIN SLIDER ##########*/
/******************** HERO IMAGE ********************/
.baner{
    background: transparent url("/images/slajder-slika.png") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 550px;
}

.hero_image {
    margin-top: -154px;
    background: transparent url("/images/slider1.jpg") no-repeat center;
    background: transparent url("/images/slider1.png") no-repeat center;
    background-size: cover;
}

.hero_content_wrapper {
    padding: 14% 0px 0px;
}

.hero_content {
    width: 45%;
    margin:  0 auto;
    padding: 2%;
}

.hero_content h1 {
    margin-bottom: 25px;
    font-size: 2em;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.hero_content h3 {
    font-size: 1.4em;
    color: white;
    text-align: center;
}

.hero_img {
    margin-bottom: -20%;
    text-align: center;
}

.hero_img img {
    max-width: 270px;
}

/*########## END OF HERO IMAGE ##########*/
/******************** HOME SHORTCUTS ********************/
.home_shortcuts {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.home_shortcut {
    position: relative;
}

.home_shortcut img {
    opacity: .8;
}

.home_shortcut img:hover {
    opacity: 1;
}

.home_shortcut h3 {
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: auto;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary-color);
    letter-spacing: 1px;
}
/*########## END OF HERO SHORTCUTS ##########*/
/******************** HOME HIGHLIGHTS ********************/
.highlights_one {
    padding: 2% 0px 4%;
    background-color: var(--primary-color);
}

.highlights_one p {
    margin-bottom: 0px;
    font-size: 2em;
    color: white;
    font-weight: 500;
    text-align: center;
}

.highlight_first,
.highlight_second,
.highlight_third {
    max-width: 315px;
    text-align: center;
}

.highlights i {
    font-size: 4em;
    color: white;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight_first i {
     padding: 21px 37px;
}

.highlight_second i,
.highlight_third i {
    padding: 23px 28px;
    font-size: 3.5em;
}

.highlights h4 {
    margin-top: 20px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
}

.highlights p {
    font-size: 16px;
    color: #a5a5a5;
    line-height: 20px;
    padding: 7px 3px;
    background-color: #efefef;
    border: 1px solid #9d9d9d;
}
/*########## END OF HOME HIGHLIGHTS ##########*/
/******************** HOME SERVICES ********************/
.service_cta .hero_cta {
    text-align: center;
}

.service_cta .hero_cta a {
    width: 45%;
    padding: 10px;
    margin: 0px 2%;
    font-size: 1.2em;
}

.service_cta .cta2 {
    color: white;
    background-color: var(--secondary-color);
}
/*########## END OF HOME HIGHLIGHTS ##########*/
/******************** HOME ABOUT ********************/
.home_about {
    padding: 3% 0px;
}

.home_about_title {
    width: 60%;
    margin: 1% auto 0px;
    padding-left: 15px;
    text-transform: capitalize;
}

.home_about1_wrapper {
    padding: 6% 11%;
}

.home_about2_wrapper {
    padding: 6% 11%;
    text-align: right;
}

.home_about img {
    width: 100%;
}

.home_about_subtitle {
    width: 60%;
    margin: 35px auto 0px;
}

.home_about p {

}

.icon_circle {
    display: block;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border: 1px solid rebeccapurple;
    padding: 10%;
    border-style: double;
    border-radius: 50%;
}

.icon_circle i {
    font-size: 2em;
    color: #C6363C;
}

.home_about .cta {
    display: block;
    width: 50%;
    margin-top: 30px;
    background-color: inherit;
    font-weight: bold;
    text-align: center;
    border: 1px solid white;
    letter-spacing: 1px;
}

.home_about2_wrapper .cta {
    margin-left: auto;
}

.home_about .cta:hover {
    background-color: white;
    color: var(--primary-color);
}

.home_about2_wrapper .cta:hover {
    color: var(--secondary-color);
}

.home_training_list {
    padding: 20% 6%;
}

.home_about2 .cta2 {
    display: block;
    width: 80%;
    margin: 0 auto;
    color: white;
    background-color: var(--primary-color);
    text-align: center;
}

.home_about2 .col-md-7 {
    border-right: 1px solid black;
}

/******************** HOME SPECIFICATIONS ********************/
.specifications {
    padding: 4% 0px;
    background: transparent url("/storage/assets/specifications-background.png") no-repeat center;
}

.specifications p {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.specification img {
    height: 80px;
}

.specification h3 {
    font-size: 1.4em;
    font-weight: normal;
}

.specification p {
    width: 100%;
}

/******************** HOME CTA ********************/
.home_cta {
    padding: 10% 0px;
    background-image: url(/storage/assets/home-cta-background.png);
    text-align: center;
}

.home_cta .title {
    margin-bottom: 5%;
}

.home_cta p {
    width: 70%;
    margin: 25px auto;
    text-shadow: 1px 1px 3px black;
}

/******************** HOME CONTACT ********************/
.home_contact {
    padding: 3% 0px;
    background-image: url(/images/home-contact.png);
    background-color: #E6E8E7;
}

.home_contact .contact_info {
    padding: 6%;
}

.home_contact h3 {
    color: var(--secondary-color);
}

.home_contact .contact_list li {
    margin: 10px;
}

.home_contact .contact_list li img {
    margin-right: 15px;
}

.home_contact .contact_list li a {
    color: black;
}

.home_contact .indent {
    margin-left: 37px;
}
/******************** HOME BLOG ********************/
.home_blog {
    padding: 4% 0px 0px;
}

.home_blog_posts {
    margin-top: 1em;
    margin-bottom: 4em;
}

.home-blog-name {
    color: black;
}

.home_blog_img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home_blog h4 {
    margin-top: 15px;
    color: var(--primary-color);
}

.home_gallery img {
    max-width: 100%;
}

/**************************************** ABOUT US ****************************************/

/******************** ABOUT US 1 ********************/

.about_text {
    padding: 17% 4% 10%;
}

.about_text .title,
.about_text .subtitle {
    font-size: 2em;
    text-align: left;
}

.about_text .title {
    margin: 20px 0px 30px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: unset;
}

.about_text .subtitle {
    font-size: 1.5em;
}

.about_section2 .about_text {
    padding: 4%
}

.about_section2 .about_text img {
    max-width: 300px;
    margin-bottom: 25px;
}

.about_section3 {
    background-color: var(--primary-color);
}

.about_section3 .about_text {
    padding: 5% 1% 0px;
    color: white;
}

.about_section3 img {
    padding-top: 1%;
}

.selena_wrapper .about_text .title {
    color: var(--secondary-color);
}

.selena_wrapper .about_section3 {
    background-color: var(--secondary-color);
}

.internal_page h2 {
    font-weight: bold;
}

.internal_page ul {
    padding-left: 30px;
}

.internal_page .form-check {
    border: 1px solid #eeeeee;
    padding: 10px 20px;
}

.internal_page .form-check .form-check {
    border: none;
}

.internal_page .form-check label {
    width: 100%;
    cursor: pointer;
}




/*########## END OF ABOUT US 1 ##########*/

/**************************************** BLOG ****************************************/

/******************** ALL POST PAGE ********************/
.all_posts_one .post p {
    font-family: "Roboto";
    font-size: 18px;
}

.blog_sidebar,
.service_sidebar {
    padding: 3% 2%;
}

.service_sidebar {
    padding: 5% 10%;
}

.blog_sidebar h3,
.service_sidebar h3 {
    font-size: 1em;
    color: gray;
    text-transform: uppercase;
}

.blog_sidebar ul,
.service_sidebar ul {
    list-style: none;
}

.blog_sidebar_categories li {
    display: inline-block;
    margin: 6px 4px;
    padding: 4px 10px;
    color: white;
    font-weight: bold;
    background-color: black;
    border-radius: 10px;
}

.blog_sidebar_categories li:hover {
    background-color: gray;
}

.blog_sidebar_categories li a {
    width: 100%;
    display: block;
    color: white;
}

.blog_sidebar_blogs {
    padding-left: 10px;
}

.blog_sidebar_blogs li a {
    color: black;
}

.sticky-top {
    top: 20px;
}
/*########## END OF ALL POST PAGE ##########*/
/******************** SINGLE POST PAGE ********************/
.post_background {
    height: 600px;
    background-color: #5c5c51;
}

.single_post_image {
    width: 100%;
    border: 4px solid white;
}

.post_content {
    margin-top: -550px;
}

.single_post_title {
    font-size: 2.3em;
    color: white;
    text-transform: uppercase;
}

.single_post_excerpt {
    margin: 3% 0px;
    padding: 10px;
    color: white;
    font-weight: bold;
    background-color: black;
    text-align: center;
}

.single_post_excerpt p {
    margin-bottom: 0px;
}

.single_blog_body img {
    width: 100%;
}

.firstCon{
    border-radius: 10px;
    box-shadow: 1px 1px 20px 0px #f8f9fa, 0 6px 20px 0 rgb(0 0 0 / 19%);
    padding: 1em 0 1em 0;
}

.icons-blog{
    color: white;
    text-align: right;
}

.icons-blog span {
    font-family: var(--paragraph-font-family);
}

.firstCon a{
    color: var(--primary-color);
}

.firstCon {
    color: var(--primary-color);
}

.firstCon a:hover{
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
}
/*########## END OF SINGLE POST PAGE ##########*/

/****************************** CONTACT ******************************/

/******************** CONTACT 1 - WITH MAP ********************/
.contact-us{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.contact-form, .contact-form{
    width: 60%;
}

.contact-form {
    padding: 3em;
}

.contact-form-field{
    margin-top: 1em;
}

.button-contact-form{
    background: transparent;
    font-family: var(--headings-font-family);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 200px;
    height: 50px;
    margin-top: 2em;
}

.button-contact-form:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-field input,
.contact-form-field textarea {
    color: var(--primary-color);
}

.vl {
    height: 250px;
    margin-top: 4em;
    padding-left: 7%;
    border-left: 2px solid #e8e8e8;
  }

.contact-info{
    padding: 2em;
}

.contact_us_title {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-number, .contact-email{
    color: #000;
    margin-left: 1em;
}
/*########## END OF CONTACT 1 ##########*/
/******************** CONTACT 2 ********************/
.contact-us2{
    margin-bottom: 4em;
    font-family: var(--paragraph-font-family);
}

.contact-us2 h1{
    font-family: var(--headings-font-family);
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1em !important;
}

.contact2{
    margin-top: 2em !important;
}


.contact-form-field2{
    margin-top: 1em !important;
}

.contact-left2 img{
    width: 100%;
}

.button-contact-form2{
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    width: 200px;
    height: 50px;
    margin-top: 2em;
}

.button-contact-form2:hover{
    background-color: var(--primary-color);
}

.contact-infos2{
    margin-top: 2em !important;
}

.contact-infos2 h5{
    color: #fff;
}

.contact-fields-info2, .contact-fields-info32{
    background-color: var(--secondary-color);
    color: #fff;
    height: 150px;
    text-align: center;
    font-weight: 400;
    padding-top: 2em;
}

.contact-fields-info22{
    background-color: var(--primary-color);
    color: #fff;
    height: 150px;
    text-align: center;
    font-weight: 400;
    padding-top: 2em;
}

.contact2icons{
    margin-top: 0 !important;
    margin-left: 0 !important;
    color: #fff !important;
}
/*########## END OF CONTACT 2 ##########*/

/******************** PRIVACY POLICY ********************/
.politika{
    margin-top: 2em;
}

.politika-dots{
    margin-left: 7em;
}

.politika-second-dots{
    margin-left: 3em;
}

.red-policy{
    color: rgb(239, 5, 5);
}
/*########## END OF PRIVACY POLICY ##########*/
/******************** FAQ ********************/
.faq{
    margin-bottom: 4em;
}

h1.faqtitle{
    font-size: 22px !important;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 3rem;
    font-weight: 600;
}

.card{
    margin-bottom: 15px;
}

.card-header{
    padding: .10rem 0.75rem !important;
    background: var(--primary-color) !important;
    color: #fff;
}

.card-header p{
    margin-top: 1rem;
    font-weight: 500;
}


.faqopen{
    float: right;
    cursor: pointer;
}
/*########## END OF FAQ ##########*/

/****************************** SHOP PAGES ******************************/

/******************** SHOP ********************/
.products_sidebar {
    padding: 10px;
    border: 1px solid lightgray;
}

.products_sidebar h4 {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.category_list {
    list-style: none;
}

.category_list a {
    width: 100%;
    display: block;
    padding: 3px;
}

#order_title {
    margin-bottom: 0px;
}

.current_order a {
    color: #929292;
    background-color: wheat;
    border: 1px dotted var(--primary-color);
}

.parent_category a {
    padding-left: 0px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid lightgray;
}

.middle_category a {
    color: var(--primary-color);
    font-weight: bold;
}

.category {
    padding-left: 10px;
    text-transform: uppercase;
}

.current_category {
    padding-left: 10px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid lightgray;
}

.show_top_categories {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    color: #1b1b1b;
    border-bottom: 1px solid lightgray;
}

.sidebar_ .product-image {
    max-width: 150px;
    margin: 0 auto;
}

.sidebar_top_product .product-name,
.sidebar_top_product .product-price {
    text-align: center;
}

.pagination_wrapper {
    margin: 0 auto;
    width: 50%;
    overflow: auto;
    overflow-y: hidden;
}

.pagination_wrapper .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pagination_wrapper .page-link {
    color: var(--primary-color);
}





.baner-single-page{
    background: transparent url("/images/slajder-slika.png") no-repeat center;
    background-size: cover;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 350px;
    padding-top: 9em;
}

.baner-single-page-short-title{
    font: normal 500 14px var(--headings-font-family);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.baner-single-page-title{
    font-family: var(--paragraph-font-family);
    text-transform: uppercase;
}

.baner-single-page-description{
    font: normal 400 12px var(--headings-font-family);
}

.baner-all-text{
    margin-top: 3em;
}

.shop-slider-text{
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1em;
}

.slider-shop-price{
    color: #000;
    font-weight: 400;
}

/*################################################################################################## PRODUCT #####################################################################################*/

.products{
    margin-top: 2em;
}

.products_presentational {
    margin-top: 0px;
}

.products_presentational .product-grid {
    padding: 0px;
}

.products_presentational .product-image {
    padding: 10px;
}

.product-sidebar-title1{
    font: normal 700 16px var(--headings-font-family);
    text-transform: uppercase;
    margin-top: 2em;
}

.product-sidebar-categories{
    list-style: none;
    line-height: 25px;
    margin-top: 2em;
}

.product-sidebar-categories a{
    font: normal 400 14px var(--headings-font-family);
    color: #000;

}

.follow-us{
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 2em;
}

.product-sidebar-categories a:hover{
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-color);
}
.bread a{
    color: var(--primary-color) !important;

}


.product-bread-cramp {
    font: normal 400 12px var(--paragraph-font-family);
}


.price_range_button {
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    padding: 2% 0;
    margin-top: 25px;
}

/*################################################################################################ SINGLE PAGE ################################################################################################*/

.product-bread-cramp{
    font-size: 1em;
    margin-top: 2em;
}

.selected-product{
    color: var(--primary-color);
}
.selected-product a{
    color: var(--primary-color);
}

.single-product-image {
    width: 100%;
    height: auto;
}

.category{
    color: #000;
}
.category:hover{
    text-decoration: none;
    font-weight: bold;
    color: var(--primary-color);
}

.single-product-title{
    font-family: var(--headings-font-family);
    font-weight: 700;
    text-transform: uppercase;
}

img.light-images {
    width: 150px;
    height: 150px;
    margin-top: 0.5em;
}

.short-product-title{
    font: normal 700 14px var(--headings-font-family);
    margin-top: 1em;
    padding-bottom: 2rem;
}

.single-product-new-price{
    font: normal 700 18px var(--headings-font-family);
    display: inline-block;
}

.single-product-old-price{
    font: normal 700 18px var(--headings-font-family);
    display: inline-block;
    text-decoration: line-through;
    color: #c4c4c4;
    margin-left: 1em;
}

.button-add-to-cart{
    font: normal 600 14px var(--headings-font-family);
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    width: 200px;
    height: 50px;
    border: none;
}

.button-add-to-cart:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.add-in-cart {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.single_page_quantity {
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 5px 6px 0 6px;
    border: none;
    background: transparent;
}

.pad{
    padding-left: 2em;
}

.comment-name {
    color: #000 !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.comment-detail-info{
    margin-top: 1em;
    display: flex;
    align-items: center;
}

.com-date{
    font-weight: 700;
    margin-left: 2em;
    font-size: 12px;
}

.comment-text{
    margin-top: .5rem;
    margin-left: 2em;
    margin-bottom: 1em;
    width: 80%;
}
.map {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.map .nav-item {
    padding: 0 !important;
}
/*################################################################################################ THANK YOU ################################################################################################*/

.thank-you-baner{
    background: transparent url("/images/slajder-slika.png") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 550px;
}

.thank-you{
    margin: 10% 0px;
    text-align: center;
}

.thank-you-title{
    font-family: var(--headings-font-family);
    margin-top: 1em;
}

.thank-you-info{
    font-family: var(--headings-font-family);
    margin-top: 0.5em;
}

.thanks-img{
    width: 5%;
    height: auto;
}

/*##################################################################################################### PROFILE PAGE ###################################################################################*/

.profile_orders img {
    width: 16px;
    margin-left: 16%;
}

.call{
    display: none;
}

/*#####################################################################################################  SINGLE PRODUCT ##################################################################################################### */

.product-info-table{
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.left-table-field{
    width: 30%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.carousel_single_product {
    margin-top: 0px;
}

.carousel_single_product img.light-images {
    height: 100px;
    object-fit: cover;
}

.review{
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review p{
    margin-bottom: 0;
    font-weight: 700;
}

.review-button{
    position: absolute;
    font: normal 600 14px var(--headings-font-family);
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    width: 200px;
    height: 50px;
    border: transparent;
    top: 10px;
    right: 10px;
    outline: none !important;
}

.review-button:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-comment-send{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border: 1px solid transparent;
    top: 10px;
    right: 10px;
    outline: none !important;
}

.btn-comment-send:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.leave-comment{
    margin-bottom: 2em !important;
}

.com-date{
    margin-left: 1em;
}

.comments-all{
    display: flex;
    flex-direction: column;
}

.comment-date-name{
    display: flex;
}

.comment-fields{
    padding-left: 10px;
}

.top-banner-icon1, .profilesmob {
    display: none;
}

.on_scroll {
  display: none;
  position: fixed;
  bottom: 20px;
  right: -3%;
  transform: translateX(-50%);
  background-color: #f1f1f1;
  padding: 10px 5px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  z-index: 1000000000000000000000000000000000000000;
}

.on_scroll img {
    max-width: 110px;
}

.on_scroll h4 {
    max-width: 140px;
    font-size: 1.1em;
    color: black;
    text-transform: capitalize;
}

.on_scroll button {
    width: 100%;
    height: auto;
    margin-top: 6px;
    padding: 5px;
    font-size: 11px;
    border: 1px solid var(--primary-color);
}

/*####################################################################################################### FOOTER 1 ####################################################################################*/
footer {
    padding-top: 1%;
    color: var(--text-footer);
    background-color: black;
    border-top: 1px solid var(--primary-color);
}

footer h3 {
    font-size: 1.3em;
}

footer ul {
    list-style: none;
}

footer ul li {
    color: #a6a6a6;
}

footer a {
    color: var(--text-footer);
}

footer a:hover,
.footer_map li a:hover {
    color: var(--primary-color);
}

.contact_list {
    list-style: none;
    padding-left: 10px;
}

.contact_list li {
    margin: 3px 0px;
}

.contact_list i {
    margin: 0px;
    color: var(--primary-color);
}

.contact_list li a {
    color: #858383;
}


.logo_footer {
    width: 100%;
    max-width: 200px;
}

.contact_social img {
    max-width: 25px;
}

.crta{
    width: 60%;
    margin-left: unset;
}

.socicon{
    margin-top: 1em;
    margin-left: 0.5em;
}

.copyright{
    margin-top: 20px;
    padding-top: 1em;
    color: white;
    background-color: black;
    border-top: 1px solid rgba(255,255,255,.1);
}

.privacy_policy a:hover {
    color: white;
}

#linklion{
    color: white;
}
/*####################################################################################################### FOOTER SIMPLE ####################################################################################*/
.simple_footer {
    padding-top: 1%;
    color: var(--text-footer);
    background-color: var(--primary-color);
    border-top: 1px solid var(--primary-color);
    border-bottom: 10px solid #D9D9D9;
}

.simple_footer .col-md-5 {
    padding: 3% 0px;
}

.simple_footer .footer_map li {
    margin: 0px 10px;
    display: inline-block;
    color: white;
}

.simple_footer .footer_map li a {
    text-transform: uppercase;
    font-size: .9em;
}

.simple_footer .footer_map li a:hover {
    color: white;
}

.simple_footer .logo_footer {
    margin-top: 30px;
}

.simple_footer .copyright {
    margin: 0px;
    padding-top: 0px;
}
/*############################################################################################################ FOOTER 2 #################################################################################*/

.page-footer{
    color: white;
}

.crta{
    width: 60%;
    margin-left: unset;
}

.socicon{
    margin-top: 1em;
    margin-left: 0.5em;
}

.copyright1{
    background-color: var(--primary-color);
    color: white;
    padding-top: 1em;
}

#linklion{
    color: white;
}

.datum{
    font-size: 9px;
}

/*############################################################################################################ FOOTER 3 #################################################################################*/

.footer-copyright{
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.tekst{
    padding-top: 1em;
    padding-bottom: 1em;
}

.socicon1{

    width: 10%;
}

.socicon{
    margin-left: 1em;
    width: 5%;
}

/* Checkout */

#first_checkout {
    padding: 33px;
}

.login_message {
    font-size: .7em;
    color: var(--secondary-color);
}

.login_message a {
    color: var(--primary-color);
}

#first_checkout input {
    color: var(--primary-color);
}

.submit_order {
    display: block;
    width: 100%;
    margin-top: .5rem;
}

.uslov {
    margin-top: 1.5rem;
}

.uslov1 {
    margin-top: 0px;
}

#first_checkout {
    padding: 33px;
    background-color: white;
    border: 1px dotted lightgray;
}

.cart_product {
    position: relative;
    padding: 10px;
    border-bottom: 1px dotted;
}

.cart_product_img {
    max-width: 100%;
}

.cart_product_name {
    color: var(--primary-color);
    text-transform: uppercase;
}

.cart_product_price {
    margin: 0px;
}

.cart_product_total {
    color: var(--primary-color);
}

.delete_cart {
    position: absolute;
    top: 40%;
    right: 0px;
    width: 11px;
}

.cart_total {
    padding: 6px;
    background-color: var(--primary-color);
    color: white;
}

.cart_total p {
    margin: 0px;
    font-weight: bold;
    text-align: center;
}

.none_registred_user_first {
    display: block;
}


.quantity button[class*=btn], .add-in-cart button[class*=btn] {
    width: 20px;
    height: 20px;
    color: #000;
    background-color: transparent;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.quantity input {
    border: none;
    text-align: center;
    width: 45px;
    font-size: 16px;
    color: #43484d;
    font-weight: 300;
}

.plus-btn, .minus-btn {
    outline: none !important;
}

.quantity_button{
    border: 1px solid #000;
    border-radius: 5px;
    text-align: center;
    width: 10px;
    margin-left: 1em;
    margin-bottom: 2em;
}

.prd-info-table{
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2em;
    margin-bottom: 4em;
}

.left-table{
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.comment-produc{

}

.comment-product a{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: #000;
    border: 1px solid #dee2e6 !important;
    border-radius: 5px;
    padding: 1em;
    position: relative;
}

.comment-product p{
    margin-bottom: 0;
}

.comment-product a:hover{
    text-decoration: none;
}

.comm-collapse{
    margin-top: 1em;
}

.add-comm-button{
    position: absolute;
    right: 20px;
    top: 20px;
    font: normal 600 14px var(--headings-font-family);
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 1em;
    outline: none !important;
}

.modal-footer{
    border-top: none !important;
}

.add-comm-button:hover{
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.bnt-send-comm{
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 0.5em;
    font-weight: 700;
}

.bnt-send-comm:hover{
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.loyality {
    display: block;
    margin: 0px;
}

.loyality_info {
    position: absolute;
    bottom: 10px;
    width: 90%;
    font-style: italic;
}

.dodaj_kupon {
    padding: 3px;
    background-color: var(--primary-color);
}

.dodaj_kupon span {
    display: block;
    padding-top: 7px;
    color: var(--primary-color);
    font-weight: bold;
}

#kuponMessage {
    display: block;
    width: 100%;
}

/* Kategorije mali menu */

.small-screen{
    display: none;
    width: 100%;
  }

  .show-blog{
      display: none;
  }

  .sidebar-nav-rec {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 65%;
      width: 90%;
      top: 0;
      background-color: #fff;
      z-index: 1500;
      padding-left: 2em;
      padding-left: 0px;
      display: none;
      transition: all 0.3s ease-in-out;
  }

  .overlay-blur{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    filter: alpha(opacity = 50);
  }

  .katmeni{
      background-color: #fff;
  }

  .katmeni a{
      color: #000;
  }

  .pricemenu{
      margin-left: 0.5em;
  }

/*###################################################################################################### RESPONSIVE  ###################################################################################*/
@media (min-width: 576px){ 
.modal-dialog {
    margin: 10% auto;
}

.modal-body {
    padding: 0px;
    background-color: black;
}

}

@media only screen and (min-width: 1500px){

    .home_gallery_wrapper {
        padding: 15px;
        background-color: var(--secondary-color);
    }
    .home_gallery {
        max-width: 1200px;
        margin: 0 auto;
    }
    .home_gallery img {
        height: 250px !important;
    }
    .about_text {
        padding: 17% 4% 10%;
    }
    .about_section2 .about_text {
        padding: 7% 8% 9%;
    }
    .about_section2 .about_text img {
        max-width: 300px;
        margin-bottom: 25px;
    }
    .about_section3 img {
        padding-top: 6%;
    }
}

@media only screen and (min-width: 1800px){
    .home_about {
        background-size: cover;
    }
    .about_section2 img {
        max-height: 700px;
        object-fit: cover;
    }
    .about_section2 .about_text {
        padding: 7% 8% 7%;
    }
}


@media only screen and (max-width: 992px){
    
    /* Global */
    section {
        padding-top: 3%;
    }
    .navbar {
        padding: 1rem;
        background-color: var(--primary-color);
    }
    .header_five_homepage a.nav-link {
        padding-top: 15px;
    }
    .navbar-brand {
        display: block;
        width: 100% !important;
    }
    .dropdown {
        position: absolute;
        right: 25%;
        top: -5px;
        margin-top: 0px !important;
    }
    .dropdown-menu {
        min-width: 3rem;
    }
    .lang_desktop {
        width: auto;
    }
    .dropdown img {
        max-width: 25px;
    }
    .navbar-toggler {
        position: absolute;
        top: 8px;
        right: 0px;
        padding: 0.1rem 0.5rem;
    }
    .fa-bars {
        font-size: 25px;
    }
    .top-banner-icon {
        color: var(--primary-color);
    }
    .sliderslide .hero_cta .cta2 {
        width: 80%;
        padding: 6px;
    }
    .sliderslide {
        margin-top: 0px;
    }
    .sliderslide .item .cover .header-content h2 {
        font-size: 30px;
    }

    .title {
        font-size: 1.3em;
    }
    .subtitle {
        font-size: 1em;
    }
    .privacy_policy {
        text-align: center;
    }
    .mobile_only {
        display: inherit;
    }
    .desktop_only {
        display: none;
    }

    /* Homepage */
    .sliderslide {
        padding-top: 0px;
    }
    .sliderslide .item {
        height: 400px;
        margin-bottom: 0px
    }
    .sliderslide .item .cover {
        padding-bottom: 10px;
        align-items: end;
    }
    .sliderslide .item .cover .header-content .line {
        border: 2px solid var(--primary-color);
    }
    .sliderslide .item .cover .header-content {
        width: 100%;
        padding: 10px;
    }
    .sliderslide .item .cover .header-content h1 {
        margin: 0px;
    }
    .sliderslide .item .cover .header-content p  {
        font-size: 19px;
    }
    .header-content button {
        padding: 3px 10px !important;
        border-radius: 10px !important;
        font-size: 20px !important;
        font-weight: 400;
        height: auto;
    }
    .icon_circle {
        width: 45px;
        height: 45px;
    }

    .icon_circle i {
        padding-left: 3px;
        padding-top: 3px;
        font-size: 1.8em;
    }

    .header-content .mobile_only {
        text-align: left !important;
    }

    .header-content .mobile_only h2 {
        font-size: 2.5em !important;
    }


    .home_about_title {
        font-size: 1.5em;
    }
    .home_about_text p {
        text-align: justify;
    }
    .home_about .cta,
    .home_about .cta2 {
        width: 100%;
        display: block;
        text-align: center;
    }
    .baner-text{
        top: 12em;
    }
    #statistic-div{
        width: 100%!important;
    }
    #users-div{
        width: 100%!important;
    }
    .hero_image {
        margin-top: 0px;
    }
    .hero_content {
        width: 100%;
    }
    .hero_content h3 {
        font-size: 1.2em;
    }
    .hero_content h1 {
        font-size: 1.5em;
    }
    .hero_img img {
        max-width: 180px;
    }
    .home_about {
        padding: 3% 0px 0px;
        background-image: none;
    }
    .home_about_title {
        width: 90%;
        margin-top: 9%;
    }
    .home_about_subtitle {
        width: 90%;
    }
    .home_about1_wrapper {
        background-color: var(--primary-color);
    }
    .home_about2 {
        padding: 0px;
    }
    .home_about2_wrapper {
        background-color: var(--secondary-color);
        text-align: left;
    }
    .home_about2_wrapper .home_about_subtitle {
        margin-left: 0px;
    }
    .specifications {
        background-image: none;
    }
    .specifications p {
        width: 100%;
    }
    .specification {
        margin-bottom: 15px;
    }
    .specification p {
        width: 80%;
    }
    .home_cta .home_about_title {
        margin-top: 10%;
    }
    .home_cta {
        background-position: center;
    }
    .home_cta p {
        width: 90%;
        text-align: left;
    }
    .gallery_image img {
        height: 100px !important;
    }
    .home_contact iframe {
        height: 120px;
    }
    .simple_footer .logo_footer {
        margin-top: 0px;
    }
    .single_post {
        padding-top: 0px;
    }




    .about_text {
        padding: 10% 0px 0px;
    }
    .about_text .title {
        margin: 15px 0px 25px;
        font-size: 1.5em;
    }
    .about_text .subtitle {
        font-size: 1.2em;
    }
    .about_section1 img {
        max-height: 400px;
        object-fit: contain;
    }
    .about_section2 .about_text img {
        max-width: 250px;
    }
    .about_section2 .about_text {
        padding: 2% 3%;
    }
    .about_section3 img {
        padding-top: 0px;
    }

}

@media only screen and (max-width: 768px){

    .top-banner-icon1, .profilesmob,
    .mobile_only {
        display: block;
    }

    .top-ribbon{
        display: none;
    }

    .navbar-nav{
        text-align: center;
    }

    a.nav-link,
    a.profil {
        color: black;
    }
    .profilesmob {
        margin-bottom: 0px !important;
    }
    .dropdown-toggle {
        text-align: center !important
    }

    .sticky-top{
        margin-left: 0;
    }

    /* Shop and Single page*/

    .kategorije{
        display: none;
    }

    .small-screen{
        display: block;
      }

    .show-blog {
        display: block;
    }

    .filter-button-rec {
        border: 1px solid #000;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        display: inherit;
        text-align: center;
    }

    .irs--flat{
        width: 80% !important;
    }

    /* Single page */
    .single-product-title{
        margin-top: 2em;
    }

    /* Single Blog */
    .single-blog-images{
        flex-direction: column;
    }

    .first-blog-image, .second-blog-image{
        width: 100%;
        margin-left: 0;
    }

    /* Contact us */
    .contact-us{
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .contact-form, .contact-info{
        width: 100%;
    }

    .contact-info{
        text-align: center;
    }

    /* Politika */
    .politika-dots{
        margin-left: 4em;
    }
}

@media only screen and (max-width: 600px){

    a.logosize{
        width: 56%;
    }

    .info-contact, .shop-cart{
        text-align: center;
    }

    .menu-search{
        display: none;
    }

    /* About page */
    .counter-about {
        height: fit-content;
        padding-top: 3em;
        padding-bottom: 3em;
    }

    .about-sec{
        width: 100%;
        margin: auto;
    }

    .first-blog-image, .second-blog-image{
        margin-bottom: 0;
    }

    .add-in-cart{
        width: 50%;
    }

    /* Comment */
    .add-comm-button{
        padding: 6px;
        top: 10px;
        right: 10px;
    }

    .input-comment-label{
        padding-left: 0 !important;
    }

    .review-button{
        font-size: 10px;
        width: 150px;
        height: 40px;
        padding: 5px;
    }

    .padding-labels{
        padding-left: 0;
    }

    /* Politika */
    .politika-dots{
        margin-left: 2em;
    }

    .copyright-info, .created-by{
        text-align: center;
    }

    /* Shop and Single page*/

    .baner-single-page-title{
        font-size: 25px;
    }

    #secondphoto{
        margin-left: 2em;
    }

    /* Element 1 */
    .owl-item.active{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .call{
        display: block;
        background-color: limegreen;
        bottom: 0;
        position: fixed;
        z-index: 999;
        width: 100%;
        padding: .4em;
        color: #fff !important;
        text-align: center;
    }

    .call_style_second {
        width: 60px;
        height: 60px;
        right: 10px;
        bottom: 10px;
        border-radius: 50%;
    }

    .phoneicons{
        margin-top: 0 !important;
        color: #fff !important;
    }

    .call a{
        font-size: 22px;
        color: #fff !important;
    }

}

@media only screen and (max-width: 500px){

    /* Single page */
    .single-product-image{
        width: 100%;
    }

    /* Contact us */
    .contact-form {
        padding: 1em;
    }

    .contact_icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1em;
    }

    .info-contact {
        flex-direction: column;
    }

    .fa.fa-envelope,
    .fa.fa-phone {
        margin-left: 0;
    }

    .phone-number,
    .contact-email {
        font-size: 17px;
    }

    .price_range_button {
        width: 75%;
    }
}

@media only screen and (max-width: 410px) {
    .button-add-to-cart {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 361px){
    .button-add-to-cart {
        margin-left: 5px;
    }
}