/* Colors & Fonts */

:root {
    --clr-white: #ffffff;
    --clr-black: #252525;
    --font-regular: 400;
    --font-medium: 600;
    --font-bold: 800;
    --clr-heading: #231F20;
    --clr-paragraf: #666666;
}

.font-regular {
    font-weight: var(--font-regular);
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-bold {
    font-weight: var(--font-bold);
}


/* Box sizing rules */


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
}

/* figure.wp-block-image.eplus-wrapper {
    margin: 0 0 20px;
} */


/* Remove default margin */


/* body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
} */


/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
    list-style: none;
}


/* Set core root defaults */

html:focus-within {
    scroll-behavior: smooth;
}


/* Set core body defaults */

body {
    font-family: 'Pancetta Pro Regular';
    font-weight: var(--font-regular);
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-size: 1.6rem;
}


/* A elements that don't have a class get default styles */

a:not([class]) {
    text-decoration: none;
}


/* Make images easier to work with */

img,
picture {
    max-width: 100%;
    display: block;
}


/* fix to make sizes attribute workable */


/* img {width: auto;}  */

svg {
    fill: currentColor;
    font-size: inherit;
    pointer-events: none;
}

.logo {
    width: 100%;
    max-width: 120px;
    height: auto;
}


/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}

span.uppercase {
    text-transform: uppercase;
}

span,
strong,
mark {
    font-size: inherit;
    line-height: inherit;
}


/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */


/* @media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} */


/* BT container padding */
.container-fluid {
  --bs-gutter-x: 0rem;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 4rem;
}


/* BT container padding */


/* BT container width */

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1290px !important;
    }
}


/* BT container width */


/* Deafult svg icon size */

svg[class^='icon-'] {
    width: 2.5rem;
    height: 2.5rem;
}


/* Trigger animation */

.section {
    transition: transform 800ms, opacity 1s;
}

.section--hidden {
    opacity: 0;
    transform: translateY(8rem);
}


/* block editor spacing responsive */

@media(max-width:991px) {
    .wp-block-spacer.is-style-responsive-large {
        height: 100px !important;
    }
    .wp-block-spacer.is-style-responsive-medium {
        height: 60px !important;
    }
    .wp-block-spacer.is-style-responsive-small {
        height: 30px !important;
    }
}

@media(max-width:76px) {
    .wp-block-spacer.is-style-responsive-large {
        height: 60px !important;
    }
    .wp-block-spacer.is-style-responsive-medium {
        height: 40px !important;
    }
    .wp-block-spacer.is-style-responsive-small {
        height: 20px !important;
    }
}


/* block editor spacing responsive */


/* Global font sizes */

h1 {
    font-size: 56px;
    font-family: 'Pancetta Pro Regular';
    font-weight: 700;
    color: var(--clr-heading);
}

h2 {
    font-size: 47px;
    font-family: 'Pancetta Pro Regular';
    font-weight: 700;
    color: var(--clr-heading);
}

h3 {
    font-size: 32px;
    font-family: 'Pancetta Pro Regular';
    font-weight: 700;
    color: var(--clr-heading);
}

h4 {
    font-size: 16px;
    font-family: 'Pancetta Pro Regular';
    font-weight: 700;
    color: var(--clr-heading);
}

p {
    font-size: 16px !important;
    font-family: 'Calibri Regular';
    color: var(--clr-paragraf);
    line-height: 24px; 
}

ul li{
    font-size: 16px;
    font-family: 'Calibri Regular';
    color: var(--clr-paragraf);
    line-height: 24px; 
}

a {
  text-decoration: none !important;
}


/* has-XX-font-size need to be synced with theme.json*/

@media (max-width:767px) {
    .has-56-font-size {
        font-size: 32px !important;
    }
    .has-40-font-size {
        font-size: 28px !important;
    }
    .has-32-font-size {
        font-size: 18px !important;
    }
    .has-16-font-size {
        font-size: 14px !important;
    }
    .has-14-font-size {
        font-size: 14px !important;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 14px;
    }
    p {
        font-size: 12px;
    }
}


/* Global font sizes */

.has-inline-color{
    background: inherit !important;
    color: inherit !important;
}

.btn-primary{

}
/* .btn-secondary{
    background-color: #C1A050 !important;
    border: 4px solid #fff;
    color: #fff !important;
} */

.btn-secondary .btnButton:hover{
    background-color: #C1A050 !important;
     border: 4px solid #fff !important;
     color: #fff !important;
 }

.btnButton{
    display: inline-flex !important;
    flex-direction: row-reverse;
    position: relative;
    min-width: 230px;
    padding: 15px 15px !important;
    justify-content: center !important;
}
.btnButton .fa-angle-right{
    /* position: absolute;
    right: 20px; */
    margin-left: 5px;
}

.wrap-absolute{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.storitve .gird_wsp .grid_item{background:#fff;padding:20px;border-radius: 6px; padding: 44px 50px 31px;}
.storitve .gird_wsp .grid_item{
    background-image: url('https://deseo.si/wp-content/uploads/2023/06/storitve-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.storitve .sp_grid.gird_wsp{
    grid-gap: 20px;
}
@media (min-width: 992px) {
    .storitve .sp_grid.gird_wsp{
        padding: 0px 11%;
    }
}


.storitve .gird_wsp img{margin:0 auto 10px}

.storitve2-title{
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-family: 'Pancetta Pro Bold';
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase; 
    padding-bottom: 27px !important;
    display: block;
    height: 30px;
  }
  .storitve2-text{
    color: #FFF;
  text-align: center;
  font-size: 16px;
  font-family: Pancetta Pro Regular;
  line-height: 24px;
  }

  .storitve2 .grid_item{
    padding: 44px 35px 10px;
  }
  .storitve2 .grid_item:hover{
    background-color: #C1A050;
    background-image: url('https://deseo.si/wp-content/uploads/2023/06/div.elementor-widget-wrap.png');
    background-size: 80%;
    background-position: 100% 0%;
    background-repeat: no-repeat
  }

  .storitve2 .gird_wsp img{margin:0 auto 20px}

  #bts2 .owl-item .item .pic{
    display: none !important;
  }

  #bts2 .owl-item .item {
    box-shadow: none !important;
    border: none !important;
    margin: 0px !important;
    padding: 40px 40px 40px 40px;
    margin-right: 60px !important;
  }

  .mnjenja{
    position: relative !important;
    overflow: hidden;
  }
  .mnjenja .bg-photo .wp-block-cover{
    position: absolute !important;
       top: 0;
       bottom: 0;
       left: 50%;
       right: 0;
 }

 .input_wrap.email_input p {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
  }
  @media (max-width: 768px) {
  .input_wrap.email_input p {
    flex-direction: column !important;
  }
}

  .submit_input{

  }

  .under-hero-block figure{
    position: relative;
  }
  
  .under-hero-block figure:hover:after{
    background-color: rgba(0,0,0,0.25) !important;
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .under-hero-last{
    position: relative
  }
  .under-hero-last:hover:after{
   background: rgb(193,160,80);
  background: radial-gradient(circle, rgba(193,160,80,1) 0%, rgba(0,0,0,0.1516807406556373) 100%); 
      content:"";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
     
  }
  
  .under-hero-last h3{
    z-index: 999;
  }

  .under-hero-last:hover h3{
    transform: scale(1.1);
    transition: all .2s ease-in-out; 
  }

  .storitve .grid_item{
      transition: transform .3s ease-in-out; 
  }

  .storitve .grid_item:hover{
    transform: scale(1.03);
      transition: transform .3s ease-in-out; 
    filter: drop-shadow(0px 2px 13px rgba(65, 65, 65, 0.25));
  }

  @media (max-width: 768px) {
    .under-hero-last{
      width: 100%;
      min-height: 150px !important;
    }
    .under-hero-block{
      gap:0px !important;
    }
    .under-hero-block .wp-block-image{
      height: 150px !important;
      overflow: hidden;
    }
      .under-hero-block .wp-block-image img {
          width: 100% !important;
          object-fit: cover;
          object-position: center;
          height: 170px;
        }
  
        .hero-slider .carousel-cell .inner {
          position: relative !important;
          top: 15% !important;
          color: white !important;
          text-align: center !important;
          left: 0 !important;
          right: 0 !important;
          transform: inherit !important;
          padding: 10px;
        }
        
        .hero-slider .carousel-cell .inner h1{
          font-size: 47px !important;
          line-height: 50px;
          margin-bottom: 50px;
        }

        .hero-slider p {
          line-height: 30px !important;
        }
        .storitve{
          padding-top: 100px;
        }
  
  
        .storitve{
          padding-top: 100px;
        }
        .storitve .grid_item{
          flex-direction: row !important;
          align-items: center;
        }
        .storitve .im_holder{
          margin-right: 30px;
          width: 58px;
          margin-bottom: auto;
          margin-top: auto;
        }
        .storitve .storitve-link{
          display: none !important;
        }
        .storitve .gird_wsp .grid_item{
          padding: 20px 20px 20px;
        }
        .storitve .content_holder br{
          display: none !important;
        }
        .storitve .storitve-title, .storitve .storitve-subtitle{
          font-size: 20px; 
        }
        .storitve .content_holder p{
          line-height: 1px !important;
          margin-bottom: 0px;
        }
        .storitve .storitve-subtitle {
          min-height: 0px;
          text-align: left;
          margin-bottom: 0px !important;
        }

        .storitve .content_holder p span {
          line-height: 1.4 !important;
        }
        .storitve .content_holder {
          text-align: left;
        }
  }


  /*Single Page*/
  .deseo-hero{
    padding: 20px;
    min-height: 367px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .deseo-hero .page-title{
    text-align: center;
    color: #fff;
    font-family: 'Pancetta Pro Bold'; 
  }
  .deseo-sidebar .list-icon img{
    margin-right: 23px !important;
  }
  .deseo-sidebar .deseo-info{
    border-radius: 6px;
  background: rgba(193, 160, 80, 0.10);
  box-shadow: 0px 0px 6px 0px rgba(73, 73, 73, 0.25);
    padding: 28px 22px;
  }
  .deseo-sidebar p{
    color: #C1A050 !important;
    font-family: 'Calibri Regular';
  }
  .deseo-sidebar .wp-block-heading{
    text-align: center;
    color: #C1A050 !important;
    font-size: 25px;
    font-family: 'Calibri Regular';
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase; 
  }
  .deseo-sidebar .deseo-phone{
    color: #C1A050;
    font-size: 30px;
    font-family: 'Calibri Regular';
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase; 
  }
  .deseo-sidebar .deseo-email{
    color: #C1A050;
    font-family: 'Calibri Regular';
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }

  .deseo-sidebar .deseo-info .wp-block-heading{
    margin-bottom: 32px;
  }
  .deseo-sidebar .deseo-info .list-icon{
    margin-bottom: 32px;
  }

  #single_sidebar_menu{
    border-radius: 6px 6px 0px 0px;
  background: #F9F9F9;
  box-shadow: 0px 0px 6px 0px rgba(73, 73, 73, 0.25);
    margin-bottom: 26px;
  }
  .single_sidebar_header{
    border-radius: 6px 6px 0px 0px;
  background: #C1A050;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    color: #fff !important;
  }
  .single_sidebar_header p{
    color: #fff !important;
    text-align: center;
    font-size: 22px;
  font-family: 'Pancetta Pro Regular';
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.21px;
  text-transform: uppercase; 
    padding: 17px;
    display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
  }
  .single_sidebar_body{
    padding-left: 18px;
  }
  .sb_menu_item{
    color: #231F20;
  text-align: left;
  font-size: 16px;
  font-family: 'Calibri Regular';
  line-height: 20px;
  text-transform: uppercase; 
    padding: 15px;
    position: relative;
  }
  .sb_menu_item a{
    text-decoration: none !important;
    left: 8px;
    position: relative;
  }

  .single_sidebar_header img{
    margin-right: 15px;
  }

  .single_sidebar_body > .sb_menu_item:before{
    position: absolute;
    content:"";
    background-image: url('https://deseo.si/wp-content/uploads/2023/06/material-symbols_line-start-arrow-notch-rounded.svg');
    top: 16px;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    width: 20px;
  }

  .page-template-default .bTestimonial .pic,   .page-template-default .bTestimonial .testimonial-rating{
    display: none;
  }
  .page-template-default .owl-carousel .owl-dots button{
    width: 10px !important;
    height: 10px !important;
    border-radius: 10px;
  }
  .page-template-default .testimonial.item{
    display: flex;
    flex-direction: column;
    font-style: italic !important;
    font-family: 'Calibri Regular'; 
    line-height: 28px !important; 

    border-radius: 6px;
    border: 4px solid #C1A050;
  }
  .owl-carousel .owl-dots button.active {
    background: #C1A050 !important;
  }
  .page-template-default .testimonial.item .description{
    order: 0 !important;
  }
  .page-template-default .testimonial.item span{
    order: 1 !important;
  }
  .page-template-default .testimonial .description{
    position: relative;
    padding-top:50px !important;
  }
   .page-template-default .testimonial .description:before{
    content:'';
    background-image: url('https://deseo.si/wp-content/uploads/2023/06/‘‘.png');
    position: absolute;
    top:0;
    bottom: 0;
    left: 46%;
    height: 37px;
    background-repeat: no-repeat;
    width: 38px;
  }
  .page-template-default.bTestimonial{
    border-radius: 6px;
  border: 4px solid #C1A050; 
    padding-bottom:35px;
  }
   .page-template-default .testimonial.item{
    padding: 20px 10% 0px !important;
  }

  @media only screen and (min-width: 768px) {
    .block-under-hero-single .wp-block-column:not(.block-under-hero-single .wp-block-column:last-of-type){
      border-right: 1px solid #C1A050;
    }
  }

  .block-under-hero-single .wp-block-columns{
    gap:0px !important;
  }

.page-template-default li::before{
  content: url('https://deseo.si/wp-content/uploads/2023/06/arrow-list.svg');
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 15px;
  left: -20px;
}
.page-template-default .deseo-main li{
  list-style: none;
  position: relative;
  padding-left: 30px !important;
}

.block-under-hero-single .wp-block-column .item-wrap-benefits{
  transition: all .2s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .block-under-hero-single .wp-block-column .item-wrap-benefits:hover{
    transform: scale(1.1);
    transition: all .2s ease-in-out;
  }

  .block-under-hero-single .wp-block-column .item-wrap-benefits:hover h3{
    color: #231F20 !important;
    transition: all .2s ease-in-out;
  }
}

 .photo-gradient  .wp-block-cover__background.has-background-dim.has-background-dim-0{
  opacity: 0.1 !important;
  background-color: none !important;
    background: radial-gradient(112.63% 50.70% at 49.32% 53.91%, rgba(255, 255, 255, 0.30) 68.47%, rgba(0, 0, 0, 0.30) 100%), lightgray 50% / cover no-repeat;
} 

.sb_link:hover{
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .under-hero-last{
    max-width: 242px;
  }
}
@media only screen and (max-width: 768px) {
  .mnjenja .bg-photo{
    display: none;
  }
  #bts2 .owl-item .item {
    margin-right: 0px !important;
  }

  .hp_form .wp-block-cover__image-background{
    background-position: 0% 100% !important;
  }

  .block-under-hero-single .wp-block-column .item-wrap-benefits{
    margin-bottom: 25px;
  }

  .block-under-hero-single .wp-block-columns{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .deseo-galery .container{
    --bs-gutter-x: 0rem !important;
  }
  .deseo-galery .sp_gallery .sp_grid_wrapper{
    grid-template-columns: repeat(2, 1fr) !important;
    display: grid !important;
  }

  /**/
  .storitve2 .grid_item {
    padding: 20px;
    margin-top:10px
  }
  .storitve2-title{
    text-align: left;
  }
  .storitve2  .content_holder p{
    text-align: left;
  }
  .storitve2-text{
    text-align: left !important;
  }
  .storitve2  .grid_item{
    position: relative;
  }
  .storitve2  .im_holder{
    position: absolute;
    right: 10px;
    top: -1px;
  }
  .storitve2 .container{
    --bs-gutter-x: 0rem !important;
  }
  .storitve2 .grid_item:not(.storitve2 .grid_item:last-of-type) {
    border-bottom: 1px solid #C1A050;
  }
}

.block-under-hero-single{
  display: grid;
}
.block-under-hero-single .wp-block-column{
  display: flex;
justify-content: center;
align-items: center;
  height: 100%;
  min-height: 100%;
}

@media only screen and (max-width: 768px) {
  .deseo-main{
   width: 100%;
  }

  .floater-img {
    left: -19px !important;
    padding-top: 12px !important;
    padding-right: 20px !important;
    padding-bottom: 6px !important;
    padding-left: 20px !important;
     width: 120px;
    display: none !important;
  }

  .deseo-main .photo-gradient {
    display: none !important;
  }

  .deseo-sidebar{
    display: none !important;
  }

  .deseo-main .wp-block-spacer:nth-child(2){
    display: none !important;
  }
  
  .floater-text{
    font-size: 16px !important; 
    margin-bottom: 0;
  }
  .floater-icon img{
    margin-bottom: 10px !important;
    width: 40px;
  }
  }


  @media only screen and (max-width: 768px) {
    .order-0{
      order: 0;
    }
    .order-1{
      order: 1;
    }
    .order-2{
      order: 2;
    }
    .order-3{
      order: 3;
    }

    .under-hero-blk{
      padding: 36px 12px 0px !important;
    }
    .under-hero-blk h3{
      font-size: 14px !important; 
      text-transform:   initial !important;
    }
    .under-hero-blk img{
      max-width: 38px !important;
    }
  }

  .under-hero-blk{
    border-radius: 6px;
    background: #FFF;
    filter: drop-shadow(0px 2px 13px rgba(65, 65, 65, 0.25));
  }



  .sb_menu_child_wrapper{
    margin-top: 12px;
  }

  .parent-menu > .sb_link{
    cursor: pointer;
  }

  .parent-menu > .sb_link:after{
    content: '';
    background-image: url('https://deseo.si/wp-content/uploads/2023/07/Vector.svg');
    position: absolute;
    right: 10px;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
  }

  .parent-menu.active-menu > .sb_link:after{
    transform: rotate(-180deg);
  }

  .sb_menu_item a {
    width: 100%;
    display: block;
  }

  .sb_menu_child_wrapper{
    display: none;
  }

  .under-hero-block{
    z-index: 0;
    position: absolute !important;
    right: 0px;
    bottom: -128px;
    left: 0px;
    gap: 0px;
  }

  /*PROJEKTI*/
  .wp-block-pfb-portfolio .filter button{
    border-radius: 0px !important;
  }

  .wp-block-pfb-portfolio .filter{
    margin-bottom: 64px;
  }
  
  .wp-block-pfb-portfolio .filter button{
    padding: 14px 30px;
  }
  
  .wp-block-pfb-portfolio .filter button:hover{
    background: rgba(193, 160, 80, 0.50) !important;
  }
  .wp-block-pfb-portfolio .filter{
    gap: 0px !important;
    border-radius: 6px;
    flex-grow: 1 !important;
    display: flex;
    overflow: hidden;
    padding: 0;
  background: #FFF;
  box-shadow: 0px 1px 6px 0px rgba(113, 113, 113, 0.25);
  }
  
  .wp-block-pfb-portfolio .filter button{
    display: flex;
    flex-grow: 1 !important;
    justify-content: center;
  }

  .wp-block-pfb-portfolio .galleryFigure figcaption.overlayCenter p{
    display: none !important;
  }

  @media only screen and (max-width: 768px) {
    .wp-block-pfb-portfolio .filter button{
      width: 50%;
    }
  }

  /*Contact form*/
  .wpcf7-text ,  .wpcf7-email ,  .wpcf7-textarea, .wpcf7-select {
    width: 100% !important;
    border-radius: 5px !important;
    border: 1px solid #F3F3F3 !important;
    background: #FBFBFB !important;
    color: var(--clr-heading) !important;
    font-size: 18px !important;
    font-family: 'Calibri Regular' !important;
    line-height: 27px !important; 
    margin-bottom: 11px !important;
    padding: 13px 15px !important;
}
 .wpcf7-form-control::placeholder {
    color: #C3C3C3 !important;
    font-size: 18px !important;
    font-family: 'Calibri Regular' !important;
    line-height: 27px !important; 
}
.wpcf7-acceptance  .wpcf7-list-item{
  margin: 0 !important;
}

.wpcf7-form label{
  display: block;  
}
.wpcf7-form textarea{
  max-height: 200px;
}

.wpcf7-submit{
    background-color: #fff !important;
    border: 4px solid #C1A050 !important;
    color: #C1A050 !important;
    min-width: 230px;
    padding: 15px 15px !important;
    font-size: 16px;
    font-family: Pancetta Pro Regular;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase; 
    position:relative;
  }
  
  .wpcf7-submit:hover{
    background-color: #C1A050 !important;
    border: 4px solid #fff !important;
    color: #fff !important;
  }

  @media only screen and (max-width: 768px) {
  .dela .container{
    flex-direction: column !important;
    flex-wrap: wrap !important;
    align-items: flex-start;
  }

  .dela-right{
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .storitve2 .grid_item:hover {
    background-color: inherit !important;
    background-image: inherit;
  }
  .under-hero-block figure:hover::after {
    display: none !important;
  }
  .under-hero-last:hover h3 {
    transform: inherit !important;
  }
  .under-hero-last:hover::after {
    background: inherit !important;
  }
}
@media only screen and (min-width: 768px) {
  .storitve2 .content_holder{
    position: relative;
    /* height: 250px !important; */
  }
  .storitve2 .content_holder .storitve2-text{
    position: relative;
    left: 0;
    right: 0;
    /* top: 70px; */
  }
}

@media only screen and (min-width: 768px) {
  .under-hero-last{
    transition: all .3s ease-in-out;
  }
  .under-hero-last:after{
  transition: all .3s ease-in-out;
  }
  .under-hero-last h3 {
    transition: all .3s ease-in-out;
  }
  .under-hero-last:hover h3 {
    transition: all .3s ease-in-out;
  }

  .mos img{
    transition: all .2s ease-in-out;
  }
  .mos img:hover{
    box-shadow: 2px 2px 15px 0px rgba(70, 70, 70, 0.25); 
    transition: all .2s ease-in-out;
  }
}

.storitve2 .grid_item {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .space-after-gallery{
    height: 40px !important;
  }
}