.elementor-kit-1054{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-5512ce2:#5A7355;--e-global-color-f6e0bac:#FF4040;--e-global-color-46ebc35:#252B39;--e-global-color-998b62a:#F19AF3;--e-global-color-9b251d5:#CCFD53;--e-global-color-e01a8c4:#CCFD53;--e-global-color-8e7357c:#F19AF3;--e-global-color-4db3974:#5347F6;--e-global-color-1b2caa2:#CCFD53;--e-global-color-627cbd1:#BFFF12;--e-global-color-a90c936:#CCFD43;--e-global-color-b74754b:#CCFD43;--e-global-color-c08bce7:#5546FF;--e-global-color-6658674:#F19AF3;--e-global-color-d608383:#F19AF3;--e-global-color-94bacdb:#CCFD43;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-b0428ba-font-family:"Rufina";--e-global-typography-b0428ba-font-size:2.5em;--e-global-typography-b0428ba-font-weight:400;--e-global-typography-b0428ba-line-height:1.1em;--e-global-typography-b0428ba-letter-spacing:-2.5px;--e-global-typography-1a1e141-font-family:"Rufina";--e-global-typography-1a1e141-font-size:35px;--e-global-typography-1a1e141-font-weight:400;--e-global-typography-1a1e141-line-height:1.3em;--e-global-typography-1a1e141-letter-spacing:-0.8px;--e-global-typography-4493401-font-family:"Palanquin";--e-global-typography-4493401-font-size:23px;--e-global-typography-4493401-font-weight:300;--e-global-typography-4493401-line-height:1.7em;--e-global-typography-944d1e5-font-family:"Palanquin";--e-global-typography-944d1e5-font-size:22px;--e-global-typography-944d1e5-font-weight:500;--e-global-typography-6926caa-font-family:"Oswald";--e-global-typography-6926caa-font-size:30px;--e-global-typography-6926caa-font-weight:400;--e-global-typography-6926caa-line-height:1em;}.elementor-kit-1054 e-page-transition{background-color:#FFBC7D;}.elementor-kit-1054 p{margin-block-end:60px;}.elementor-kit-1054 a{color:var( --e-global-color-f6e0bac );font-weight:400;text-decoration:none;}.elementor-kit-1054 h2{font-size:40px;font-weight:800;}.elementor-kit-1054 h3{font-weight:800;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-1054{--e-global-typography-b0428ba-font-size:2em;--e-global-typography-b0428ba-line-height:1.3em;--e-global-typography-b0428ba-letter-spacing:-0.8px;--e-global-typography-1a1e141-font-size:2em;--e-global-typography-4493401-font-size:23px;--e-global-typography-6926caa-font-size:23px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-1054{--e-global-typography-b0428ba-font-size:30px;--e-global-typography-b0428ba-line-height:1.3em;--e-global-typography-b0428ba-letter-spacing:-0.8px;--e-global-typography-1a1e141-font-size:30px;--e-global-typography-4493401-font-size:16px;--e-global-typography-4493401-line-height:1.6em;--e-global-typography-4493401-letter-spacing:0.1px;--e-global-typography-944d1e5-font-size:18px;--e-global-typography-6926caa-font-size:16px;--e-global-typography-6926caa-line-height:1.6em;--e-global-typography-6926caa-letter-spacing:0.1px;}.elementor-kit-1054 p{margin-block-end:40px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//*------------------------------------------------*\
    Improve Elementor Animations
\*------------------------------------------------*/

/*------ Fades: Directional ------*/

/* FadeInDown */
@keyframes kgFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -12px, 0); /* Less movement than default */
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.elementor-element .animated.fadeInDown {
    animation-name: kgFadeInDown !important; /* Ensure this takes precedence */
}

/* FadeInLeft */
@keyframes kgFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-12px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.elementor-element .animated.fadeInLeft {
    animation-name: kgFadeInLeft !important;
}

/* FadeInRight */
@keyframes kgFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(12px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.elementor-element .animated.fadeInRight {
    animation-name: kgFadeInRight !important;
}

/* FadeInUp */
@keyframes kgFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.elementor-element .animated.fadeInUp {
    animation-name: kgFadeInUp !important;
}

.videosnutt{
        border-radius: 22px !important;
        overflow:hidden;
            margin-bottom:4em;
}

.bilde{
                margin-bottom:4em;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important
    }/* End custom CSS */