/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Menu item with no link - show default cursor */
.hs-item-has-children > a[href="javascript:;"] {
    cursor: default; /* Changes the cursor to default (arrow) */
    pointer-events: none; /* Prevents click interaction */
}

@font-face {
  font-family: 'Effra';  
  src: url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraHeavy.eot') format('eot'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraHeavy.woff') format('woff'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraHeavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Effra';  
  src: url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraMedium.eot') format('eot'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraMedium.woff') format('woff'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Effra';  
  src: url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraLight.eot') format('eot'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraLight.woff') format('woff'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/EffraLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Effra';  
  src: url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/Effra_Std_Rg.eot') format('eot'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/Effra_Std_Rg.woff') format('woff'), 
    url('https://26579189.fs1.hubspotusercontent-eu1.net/hubfs/26579189/Fonter/Effra_Std_Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/** replacing Effra font as accent font and updated theme settings - JN maka Agency 15.5.2023**/
:root {
    --ff-accent: Effra, sans-serif !important;
}
/* moved to theme settings
h1 {
  font-family: var(--ff-brand);
  font-weight: 900;
}

h2, h3, h4, h5, h6 {
  font-family: var(--ff-brand);
  font-weight: 500; 
} 

p {
  font-family: var(--ff-accent);
  font-weight: 400;
}*/

  /** font change for blog post description text - JN maka Agency 15.5.2023 */
.pwr-post-item__desc {
    font-family: var(--ff-accent) !important;
    font-weight: 400 !important;
} 

/** removing the hover effect for blog posts - JN maka Agency 15.5.2023 **/
  .pwr-post-item:not(.pwr-post-item--1col):hover .pwr-post-item__img {   
    height: 240px;
}

/** moved from pwr-image.css - JN maka Agency 15.5.2023 **/
  .pwr-image-box__overlay--front {
    opacity: .6; /*Charlotte endret fra 0.3 til 0.6*/
}

/** Changes to author bio blog posts 14.06.2023 **/
  .pwr-author-profile__bio {
    font-size: 14px;
}

@media (min-width: 767px) {
  .pwr-author-profile {
    max-width: 795px;
  }
  .pwr-author-profile__info {
    width: 80%;
  }
  .pwr-avatar {
    display: table-cell;
    vertical-align: middle;
}
/*****************************************/
/* Knowladge base   */
/*****************************************/
  
  .kb-theme--tiles.kb-page--index .kb-header{
    margin: 20px 0 !important;
}
.kb-header__nav {
    border-top: none !important;
}
  
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Non-prefixed version, currently supported by most modern browsers */
}