/* ===========================================
 ANIMATIONS
============================================== */
/* Up Down */
@-webkit-keyframes updown {
    50% {
        -webkit-transform: translate(0, 10px);
        transform: translate(0, 10px);
    }
}
@keyframes updown {
    50% {
        -webkit-transform: translate(0, 10px);
        transform: translate(0, 10px);
    }
}

/* Left Animate */
@keyframes leftAnimate{
	.0% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(1.5deg);
	}
	50% {
		transform: rotate(0.5deg);
	}
	75% {
		transform: rotate(1.5deg);
	}
	100% {
		transform: rotate(0);
	}
}

/* Glow Effect */
@-webkit-keyframes glow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(46,168,201, 0.9);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(46,168,201, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(46,168,201, 0);
  }
}
@keyframes glow {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(46,168,201, 0.9);
    box-shadow: 0 0 0 0 rgba(46,168,201, 0.9);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(46,168,201, 0);
      box-shadow: 0 0 0 10px rgba(46,168,201, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(46,168,201, 0);
      box-shadow: 0 0 0 0 rgba(46,168,201, 0);
  }
}

/* Glow Effect Muted */
@-webkit-keyframes glow-muted {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(94,104,112, 0.2);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(94,104,112, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(94,104,112, 0);
  }
}
@keyframes glow-muted {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(94,104,112, 0.2);
    box-shadow: 0 0 0 0 rgba(94,104,112, 0.2);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(94,104,112, 0);
      box-shadow: 0 0 0 10px rgba(94,104,112, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(94,104,112, 0);
      box-shadow: 0 0 0 0 rgba(94,104,112, 0);
  }
}


/* Fadein Down */
@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

/* ===========================================
 GENERAL
============================================== */
/*
@media (prefers-reduced-motion: reduce) {html * {
		-webkit-transition: all 0.5s !important;
		-moz-transition: all 0.5s !important;
		-ms-transition: all 0.5s !important;
		-o-transition: all 0.5s !important;
		transition: all 0.5s !important;
	}
}
*/

.brand_color{
	color: var(--e-global-color-secondary);
	fill: var(--e-global-color-secondary);
}
.no_margin,
.no_margin p{
	margin-block-end: 0px;
}
.no_margin a{
	font-weight: 400;
}

.box_contact .elementor-icon-box-title{
	margin: -3px 0 0 0;
}

.updown_images img{
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}

.user_benefits_one,
.user_benefits_two,
.user_benefits_three,
.user_benefits_four{
	position: relative;
	overflow: hidden;
}

.user_benefits_one::before,
.user_benefits_two::before,
.user_benefits_three::before,
.user_benefits_four::before{
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
}
.user_benefits_one::before{
    background: #3dbff0;
}
.user_benefits_two::before{
    background: #ec6054;
}
.user_benefits_three::before{
    background: #6b72d6;
}
.user_benefits_four::before{
    background: #2a9b75;
}

.user_benefits_one::after,
.user_benefits_two::after,
.user_benefits_three::after,
.user_benefits_four::after{
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -72px;
    bottom: -82px;
    pointer-events: none;		
}

.user_benefits_one::after{
	background: rgba(61,191,240,.07);
}
.user_benefits_two::after{
    background: rgba(236,96,84,.07);
}
.user_benefits_three::after{
    background: rgba(107,114,214,.08);	
}
.user_benefits_four::after{
    background: rgba(42,155,117,.08);
}

.small-label {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--e-global-color-294b0eb);
    color: var(--e-global-color-fd04697);
}

/* ===========================================
 CONTAINER
============================================== */
.global_container {
    padding: clamp(4rem, 3.429rem + 2.857vw, 6rem) 3.125rem;
}
.global_inner_container {
    padding: 0 3.125rem;
}
.global_footer_container {
    padding: 72px 3.125rem 25px 3.125rem;
}

.global_bottom_container {
    padding: 0 3.125rem 3.125rem 3.125rem;
}

/* ===========================================
 BUTTONS
============================================== */
a.elementor-button{
	background:
        linear-gradient(
            100deg,
            #3dbff0 0%,
            #1599c8 52%,
            #ec6054 100%
        ) padding-box;
	border: 1px solid transparent;
}
a.elementor-button:hover{
	filter: brightness(.94);
}
.solid_btn_bg a.elementor-button{
	background: transparent;
	border: 1px solid #bec8d6;
}
.solid_btn a.elementor-button{
	background: transparent;
	border: none;
}

/* ===========================================
 HEADER
============================================== */
.header_area {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    background-size: 100%;
	border-bottom: 1px solid rgba(0,0,0,.05);
    z-index: 10;
}
.header_area.affix{
    position: fixed !important;
    top: 0 !important;
    left: 0;
	right: 0;
    z-index: 100;
    width: 100%;
	background: #fff;
	/*
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
	*/
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    border-bottom: 1px solid var(--e-global-color-1608f69);
}
.header_area .ekit_navsearch-button :is(i, svg) {
    font-size: 14px !important;
}


/* ===========================================
 BANNER - HOME
============================================== */
.banner_area{
    position: relative;
    overflow: hidden;	
}
.banner_area:before, .banner_area:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.banner_area:before {
    width: 360px;
    height: 360px;
    left: -180px;
    top: -160px;
    background: rgba(46,168,201,.12);
		-webkit-animation: leftAnimate infinite 5s linear;	
	animation: leftAnimate infinite 5s linear;	
	transform-origin: 0% 0;
}
.banner_area:after {
    width: 300px;
    height: 300px;
	right: -120px;
    bottom: -150px;
    background: rgba(232,96,79,.10);
		-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}

.badge_area{
    background: #fff;
	padding: 25px;
	border: 1px solid #dbeaf1;
    border-radius: 18px;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}

.banner_area_btn {
    position: absolute;
    top: 47%;
    left: auto;
    right: 20px;
    width: auto;
    z-index: 10;
    transform: translate(-20px, -47%);
}

.icon_gredient .elementor-icon{

}


/* ===========================================
 FOOTER
============================================== */
.global_footer_container {
    position: relative;
    overflow: hidden;
	background: radial-gradient(circle at 84% 18%,rgba(45,63,82,.22),transparent 28%),linear-gradient(135deg,#3d4a5c,#354254) !important;
}
.global_footer_container::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: -20px;
    width: 210px;
    height: 165px;
    background: linear-gradient(135deg,rgba(236,96,84,.35),rgba(61,191,240,.45));
    clip-path: polygon(0 0,100% 0,48% 49%,0 100%);
    opacity: .55;
	-webkit-animation: leftAnimate infinite 5s linear;	
	animation: leftAnimate infinite 5s linear;	
	transform-origin: 0% 0;
}
.global_footer_container::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -75px;
    bottom: -105px;
    width: 245px;
    height: 205px;
    border-radius: 58% 42% 0 0;
    background: linear-gradient(145deg,rgba(61,191,240,.55),rgba(61,191,240,.08));
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}

.go-top {
    position: fixed;
    top: auto;
    bottom: 30px;
    left: auto;
    right: 20px;
    width: auto;
	z-index: 10;
}
.go-top a.elementor-button {
	background:
		linear-gradient(
			100deg,
			#3dbff0 0%,
			#1599c8 52%,
			#ec6054 100%
		) padding-box;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}
.go-top a.elementor-button:hover{
	filter: brightness(.94);
}
/*
.go-top a.elementor-button span.elementor-button-text{
	color: var(--e-global-color-8b09aac) !important;
	font-weight: 900;
}
*/
.go-top a.elementor-button .elementor-button-icon svg {
	width: 1.5em;
}

.google_partner a{
    font-size: 0px;
    display: flex;
}



/* ===========================================
GRAVITY FORM
============================================== */
.gform_layout ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--e-global-color-text) !important;
}
.gform_layout ::-moz-placeholder { /* Firefox 19+ */
	color: var(--e-global-color-text) !important;
}
.gform_layout :-ms-input-placeholder { /* IE 10+ */
	color: var(--e-global-color-text) !important;
}
.gform_layout :-moz-placeholder { /* Firefox 18- */
	color: var(--e-global-color-text) !important;
}
.gform_layout .gform-theme--api, 
.gform_layout .gform-theme--foundation {
    --gf-form-gap-y: 10px;
}
.gform_layout input,
.gform_layout select,
.gform_layout textarea{
    background: transparent !important;
    border: 1px solid var(--e-global-color-1608f69) !important;
    padding: 13px 14px;
    min-height: 44px !important;
	border-radius: 10px !important;	
	box-shadow: none !important;
}
.gform_layout input {

}
.gform_layout select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	line-height: 1;
	cursor: pointer;
	color: var(--e-global-color-text);
}
.gform_layout textarea {
    max-height: 90px !important;
}

/*
.gform_layout input[type="button"], 
.gform_layout input[type="submit"] {
	background: linear-gradient(100deg, #3dbff0 0%, #1599c8 52%, #ec6054 100%) !important;
}
.gform_layout input[type="button"]:hover, 
.gform_layout input[type="submit"]:hover {
	filter: brightness(.94);
}
*/

.gform_layout button.gform_button {
	background:
        linear-gradient(
            100deg,
            #3dbff0 0%,
            #1599c8 52%,
            #ec6054 100%
        ) padding-box !important;
    border-radius: 30px !important;
    padding: 10px 18px 10px 18px !important;
    /* height: 46px; */
    line-height: 24px !important;
}
.gform_layout button.gform_button:hover,
.gform_layout button.gform_button:focus{
	filter: brightness(.94);
}

/* Fix Gravity Forms consent checkbox */
.gform_wrapper .gfield--type-consent .ginput_container_consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.gform_wrapper .gfield--type-consent input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	min-width: 18px;
	margin: -6px 0 0 !important;
	padding: 0 !important;
	flex: 0 0 18px;
	appearance: auto;
	-webkit-appearance: checkbox;
}

.gform_wrapper .gfield--type-consent .gfield_consent_label {
	margin: 0;
	line-height: 1.5;
}
.gform_wrapper input:not([type="checkbox"]):not([type="radio"]) {
	height: 44px;
}

/* ===========================================
 GUIDE - HOME
============================================== */
.boxed_grid .e-loop-item{
	position: relative;
	background: #fff;
	border: 1px solid #dbeaf1;
	border-radius: 18px;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}
@media (prefers-reduced-motion: reduce) {
	.boxed_grid .e-loop-item{
		-webkit-transition: all 0.5s !important;
		-moz-transition: all 0.5s !important;
		-ms-transition: all 0.5s !important;
		-o-transition: all 0.5s !important;
		transition: all 0.5s !important;
	}
}
.boxed_grid .e-loop-item:hover{
	transform: translateY(-8px);
}

/* ===========================================
 PREV & NEXT BUTTON
============================================== */
.e-widget-swiper div.elementor-swiper-button {
	background:
		linear-gradient(
			100deg,
			#3dbff0 0%,
			#1599c8 52%,
			#ec6054 100%
		) padding-box;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.e-widget-swiper div.elementor-swiper-button:hover{
	filter: brightness(.94);
}


/* ===========================================
 GREY BG
============================================== */
.greybg {
    position: relative;
    overflow: hidden;
	background: radial-gradient(circle at 84% 18%,rgba(45,63,82,.22),transparent 28%),linear-gradient(135deg,#3d4a5c,#354254) !important;
}
.greybg::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: -20px;
    width: 210px;
    height: 165px;
    background: linear-gradient(135deg,rgba(236,96,84,.35),rgba(61,191,240,.45));
    clip-path: polygon(0 0,100% 0,48% 49%,0 100%);
    opacity: .55;
	-webkit-animation: leftAnimate infinite 5s linear;	
	animation: leftAnimate infinite 5s linear;	
	transform-origin: 0% 0;
}
.greybg::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -75px;
    bottom: -105px;
    width: 245px;
    height: 205px;
    border-radius: 58% 42% 0 0;
    background: linear-gradient(145deg,rgba(61,191,240,.55),rgba(61,191,240,.08));
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}
/* ===========================================
 KUNDCASE
============================================== */
.kundcase-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.kundcase-features .features-item {
    background: var(--e-global-color-294b0eb);
    padding: 10px;
    border-radius: 10px;
    width: 50%;
}
.kundcase-features .features-item .features-title{
	font-family: var( --e-global-typography-3a2fd5e-font-family ), Sans-serif;
	font-size: var( --e-global-typography-3a2fd5e-font-size );
	font-weight: var( --e-global-typography-3a2fd5e-font-weight );
	line-height: var( --e-global-typography-3a2fd5e-line-height );
	color: var( --e-global-color-primary );
	margin: 0;
}

.kundcase-features .features-item .features-text {
    font-family: var( --e-global-typography-210c264-font-family ), Sans-serif;
    font-size: 11px;
    font-weight: var( --e-global-typography-210c264-font-weight );
    line-height: var( --e-global-typography-210c264-line-height );
}

.final_cta{
    background: linear-gradient(135deg,#eef8fc 0%,#f7fbfd 56%,#fff5f3 100%);
}

/* ===========================================
 PROCESS
============================================== */
.process_number {
	position: relative;
	/* overflow: hidden; */
	z-index: 1;
}
.process_number::after {
    content: "";
    position: absolute;
    top: 0;
    left: 78px;
    bottom: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    background: rgba(89,201,231,.3);
    will-change: transform, width;
    animation: line_animation 3s cubic-bezier(0.25, 0.1, 0.1, 1) infinite;
    transform-origin: left;
    z-index: -1;
}
@keyframes line_animation {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    45% {
        transform: scaleX(1);
        transform-origin: left;
    }
    55% {
        transform: scaleX(1);
        transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.process_number.last::after{
	display: none;
}
.process_number .elementor-heading-title{
    width: 78px;
    height: 78px;
    /* margin: 0 auto; */
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 8px solid rgba(46,168,201,.22);
	animation: glow 2s infinite;
}


/* ===========================================
 NYHETER / BLOG
============================================== */
.blog_meta.elementor-widget-post-info .elementor-icon-list-item {
    background: #fff;
    border: 1px solid #dbeaf1;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    padding: 10px 18px;
}

.post-template-default .elementor-widget-theme-post-content h2{
	font-size: clamp(1.125rem, 1.010rem + 0.575vw, 1.625rem);
	margin-top: 50px;
}
.post-template-default .elementor-widget-theme-post-content h3{
	font-size: clamp(0.9375rem, 0.865rem + 0.36vw, 1.125rem)
}

.post-template-default .elementor-widget-theme-post-content h4{
	font-size: clamp(0.9375rem, 0.865rem + 0.36vw, 1rem);
}

.post-template-default blockquote{
    background: #f6fcfe;
    border-left: 4px solid #3dbff0;
    border-radius: 0 18px 18px 0;
    padding: 22px;
    margin: 28px 0;
}

.post-template-default .elementor-widget-theme-post-content img {
    border: 1px solid #dbeaf1;
    border-radius: 18px;
    max-width: 80%;
}

.post-template-default .elementor-widget-theme-post-content ul {
	margin: 18px 0 32px;
	/* padding: 0; */
	list-style: none;
}

.post-template-default .elementor-widget-theme-post-content ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	line-height: 1.62;
}

.post-template-default .elementor-widget-theme-post-content ul li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 0.59em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--e-global-color-text);
	animation: glow-muted 2s infinite;
}

.post-template-default .elementor-widget-theme-post-content ul li:last-child {
	margin-bottom: 0;
}

.post-template-default .elementor-widget-theme-post-content ul li strong {
	font-weight: 700;
}

/* Table of content */
.post-table-of-contents {
	background: #fff;
    border: 1px solid #dbeaf1;
    border-radius: 18px;
    padding: 22px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}

/*
.post-toc-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 18px;
}
*/

.post-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-toc-item {
	border-bottom: 1px solid #dbeaf1;
	padding: 8px 0;
	/* margin-bottom: 10px; */
}

.post-toc-item:last-child {
	margin-bottom: 0;
	border: none;
}

.post-toc-item a {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.62;
	color: inherit;
	text-decoration: none;
	/* transition: opacity 0.2s ease; */
}

.post-toc-item a:hover {
	opacity: 0.65;
}

/*
.elementor-widget-theme-post-content h2[id] {
	scroll-margin-top: 120px;
}
*/

.sidebar_elements{
	background: #fff;
    border: 1px solid #dbeaf1;
    border-radius: 18px;
    padding: 22px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);	
}

/* Nyheter FAQ Accordion */
.nyheter-faq {
    width: 100%;
}

.nyheter-faq-item {
    margin-top: 10px;
}
/* Question */
.nyheter-faq-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    margin: 0;
    border: 0;
    background: linear-gradient(100deg, #3dbff0 0%, #1599c8 52%, #ec6054 100%);
	color: #fff;
	fill: #fff;
    cursor: pointer;
    text-align: left;
    border-radius: 999px;
}
.nyheter-faq-title:hover{
	filter: brightness(.94);
}
/* Question text */
.nyheter-faq-title > span:first-child {
    flex: 1;
}

/* Plus / Minus icon */
.nyheter-faq-icon {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}
/* Answer */
.nyheter-faq-text {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.nyheter-faq-text-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.35s ease;
}

/* Active accordion */
.nyheter-faq-item.is-active .nyheter-faq-text {
    grid-template-rows: 1fr;
}

.nyheter-faq-item.is-active .nyheter-faq-text-inner {
    padding: 15px;
}

.nyheter-faq-item.is-active .nyheter-faq-icon {
    transform: rotate(45deg);
}







/* ===========================================
 ABOUT / OM OSS
============================================== */
.about_services{
	position: relative;
	overflow: hidden;
}
.about_services::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(61,191,240,.08);
	left: auto;
    right: -90px;
    top: -110px;
    pointer-events: none;
			-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}

.about_mission,
.about_vision{
	position: relative;
	overflow: hidden;	
}
.about_mission::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
	left: auto;
    right: -86px;
    top: -96px;
    background: rgba(61,191,240,.11);
}
.about_vision::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
	left: auto;
    right: -86px;
    top: -96px;
    background: rgba(255,255,255,.9);
}
@media (prefers-reduced-motion: reduce) {
	.about_mission,
	.about_vision{
		-webkit-transition: all 0.5s !important;
		-moz-transition: all 0.5s !important;
		-ms-transition: all 0.5s !important;
		-o-transition: all 0.5s !important;
		transition: all 0.5s !important;
	}
}
.about_mission:hover,
.about_vision:hover{
	transform: translateY(-8px);
}


/* ===========================================
 TABLE OF CONTENTS
============================================== */
.elementor-widget-table-of-contents{
	border: none !important;
}
.elementor-toc__header{
	border: none;
	padding: 0;
}
.elementor-toc__body{
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
.elementor-toc__list-item-text-wrapper {
    align-items: baseline;
}
.elementor-toc__list-item-text-wrapper a{
	font-weight: 400 !important;
}
.elementor-toc__list-item-text-wrapper a:hover{
	opacity: 0.65;
}

/* ===========================================
 CARRIER
============================================== */
.carrier_number {
    width: 42px;
    background: var(--e-global-color-secondary);
    border-radius: 50%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================================
 FAQ
============================================== */
.e-n-accordion .e-n-accordion-item:hover .e-n-accordion-item-title-text{
	color: var(--e-global-color-secondary);
	fill: var(--e-global-color-secondary);
}


/* ===========================================
 SERVICES
============================================== */


/* ===========================================
 AUTHORS
============================================== */
.author_area {
    background: #fff;
    border: 1px solid #dbeaf1;
    border-radius: 18px;
    padding: 22px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}


/* ===========================================
 NYHETER
============================================== */
.banner_area_alternative{
    position: relative;
    overflow: hidden;	
}
.banner_area_alternative:before, .banner_area_alternative:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.banner_area_alternative:before {
    width: 360px;
    height: 360px;
	left: auto;
    right: -180px;
    top: -160px;
    background: rgba(46,168,201,.12);
		-webkit-animation: leftAnimate infinite 5s linear;	
	animation: leftAnimate infinite 5s linear;	
	transform-origin: 0% 0;
}
.banner_area_alternative:after {
    width: 300px;
    height: 300px;
	left: -120px;
    bottom: -150px;
    background: rgba(232,96,79,.10);
		-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}
.nyheter_category_block{
	position: relative;
	overflow: hidden;
}
.nyheter_category_block:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
	left: auto;
    right: -48px;
    top: -48px;
    background: #e8eff8;
    transition: .2s;
}

/* ===========================================
 SEARCH - NYHETER
============================================== */
.elementor-widget-search .e-search .e-search-submit {
    position: relative;
    top: 8px;
    left: auto;
    right: 78.64px;
    background: linear-gradient(
			100deg,
			#3dbff0 0%,
			#1599c8 52%,
			#ec6054 100%
		) padding-box;
    padding: 0 20px;
    margin: 0;
    border-radius: 999px;
    height: 40px;
}
.elementor-widget-search .e-search .e-search-submit:hover{
	filter: brightness(.94);
}
.elementor-widget-search .e-search-input {
    border-radius: 999px;
    border: 1px solid var(--e-global-color-1608f69);
}

/* CTA Bottom */
.cta_bottom .elementor-widget-search .e-search .e-search-submit{
	right: 145.64px;
}

/* ===========================================
 KUNDCASE
============================================== */
.seo-case-hero {
    position: relative;
    overflow: hidden;
	background: radial-gradient(circle at 84% 18%,rgba(45,63,82,.22),transparent 28%),linear-gradient(135deg,#3d4a5c,#354254) !important;
}
.seo-case-hero::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	right: -150px;
	top: -210px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(46,168,201,.18);
	clip-path: polygon(0 0,100% 0,48% 49%,0 100%);
	opacity: .55;
	-webkit-animation: leftAnimate infinite 5s linear;	
	animation: leftAnimate infinite 5s linear;	
	transform-origin: 0% 0;
}


.seo-case-hero::after {
	content: "";
	position: absolute;
	z-index: 0;
	right: -150px;
	bottom: -170px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(232,96,79,.10);
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: 0.4s all ease-in-out;
	-webkit-transition: 0.4s all ease-in-out;
	-moz-transition: 0.4s all ease-in-out;
	-ms-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
}









