
        /* COLOR SCHEME https://coolors.co/540d6e-EE4266-FFD23F-3BCEAC-0EAD69 */


@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap');

:root {
    --color1: #540D6E;
    --color2: #EE4266;
    --color3: #FFD23F;
    --color4: #3BCEAC;
    --color5: #0EAD69;
}


body {
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    line-height: 25px;
    padding: 0;
    margin: 0;
    background-color: rgb(249, 249, 249);
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.center {
    text-align: center;
}

.light {
    /*opacity: .5;*/
    font-weight: 100 !important;
}

.smalllight {
    opacity: .5;
    font-weight: 100 !important;
    font-size: 12px;
}

.topmargin {
    margin-top: 60px;
}

#mainbody {
}

content {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 0px;
    position: relative;
    z-index: 2;
}

    content.hidden {
        display: none;
    }

    content.empty {
        min-height: 150px;
    }

        content.empty #featuresearch::after {
            content: 'Vi fandt ikke lige det du ledte efter...';
            display: block;
            text-align: center;
            color: #000;
            opacity: .5;
            font-size: 21px;
            margin: 30px;
        }

    content .content {
        position: relative;
        display: block;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 30px;
    }

        content .content.nopadding {
            padding: 0;
        }

        content .content.toppadding {
            padding-top: 60px;
            padding-bottom: 60px;
        }

    content.top {
        z-index: 4;
        padding: 20px 30px;
        position: absolute;
        background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 100%);
    }

        content.top .content::before {
            /*content: ' ';
            width: 100%;
            height: 200px;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgb(255,255,255);
            background: radial-gradient(at top, rgba(255,255,255,1) 0%, rgba(0,0,0,0) 50%);
            z-index: 1;*/
        }

    content.header {
        padding: 150px 0px 200px 0px;
        /*background-image: url(/css/images/bg1.png);*/
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
        margin-bottom: -10px;
    }

        content.header.halfpage {
            padding: 50vh 0px 200px 0px;
        }

        content.header .graphic {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1;
        }

    content.bottom {
        padding: 60px 30px 60px 30px;
        position: relative;
        z-index: 3;
        background: #333;
        color: #fff;
    }

        content.bottom .graphic {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 3;
        }

            content.bottom .graphic svg {
                height: 130px;
                width: 100% !important;
            }

        content.bottom a {
            font-weight: normal;
            color: #fff;
            opacity: 1;
        }

            content.bottom a:hover {
                opacity: .8;
            }

            content.bottom a.img {
                margin-right: 5px;
                margin-top: 2px;
            }

                content.bottom a.img img {
                    max-width: 20px;
                    opacity: .7;
                    cursor: pointer;
                    filter: invert(1);
                }

                content.bottom a.img:hover img {
                    opacity: 1;
                }

    content.dark {
        background: rgba(247,247,247,1);
        color: #fff;
    }

    content.grey {
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%);
    }

    content.greyline {
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%);
        border-bottom: 1px solid #eaeaea;
    }

    content.purple {
        background-color: rgba(84, 13, 110, .75);
        color: #fff;
        padding: 60px 0;
    }

    content.lightgrey {
        border-top: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
        background-color: #fafafa;
        z-index: 3;
    }

    content.overflow {
        overflow: hidden;
    }

    content.slider {
        padding: 60px 0px 60px 0;
        background-color: #fff;
        /*border-top: 1px solid #eaeaea;*/
        border-bottom: 1px solid #eaeaea;
    }

.logo {
    position: relative;
    z-index: 2;
    border: none;
    text-decoration: none;
}

    .logo img {
        max-width: 204px;
        max-height: 34px;
        border: none;
        text-decoration: none;
        cursor: pointer;
    }

    .logo:hover {
        opacity: .6;
    }

.mainmenu {
    position: relative;
    z-index: 2;
    float: right;
}

.burger {
    display: none;
    position: relative;
    z-index: 2;
}

.mainmenu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
}

    .mainmenu ul li {
        padding: 5px 15px;
        margin: 0;
        list-style: none;
        float: left;
    }

        .mainmenu ul li a {
            display: block;
            padding: 5px 0;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
        }

            .mainmenu ul li a:hover {
                opacity: .6;
            }

        .mainmenu ul li.selected a {
            opacity: .6;
            border-bottom: 3px solid #808080;
        }

        .mainmenu ul li.button {
            padding: 8px 0 0 0;
        }

            .mainmenu ul li.button a {
                color: #fff;
                background-color: var(--color5);
                padding: 2px 15px;
                border-radius: 5px;
                font-size: 16px;
                display: inline-block;
                vertical-align: top;
            }

/*****************************************************************************************************/
#laptop {
    width: 100%;
    max-height: 450px;
}

/*****************************************************************************************************/

content.mobiletop {
    user-select: none;
    position: fixed;
    top: -100px;
    left: 50%;
    width: calc(100% - 10px);
    background-color: #fff;
    padding: 18px 0px 12px 0px;
    border: 1px solid #eaeaea;
    margin: 5px auto;
    border-radius: 5px;
    max-width: 1200px;
    transform: translateX(-50%);
    z-index: 99;
    box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
    cursor: pointer;
}

    content.mobiletop.show {
        top: 0px;
        transition: all 1000ms ease;
    }

    content.mobiletop.hide {
        top: -100px;
        transition: all 200ms ease;
    }

    content.mobiletop .logo img {
        max-width: 102px;
        max-height: 17px;
        border: none;
        text-decoration: none;
        cursor: pointer;
    }

    content.mobiletop .mainmenu {
        height: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        transition: all 200ms ease;
    }

    content.mobiletop .burger {
        display: block;
        position: absolute;
        top: 3px;
        right: 20px;
        cursor: pointer;
    }

        content.mobiletop .burger:hover {
            opacity: .6;
        }

        content.mobiletop .burger .close {
            display: none;
        }

        content.mobiletop .burger.open {
            right: 30px;
        }

            content.mobiletop .burger.open svg {
                display: none;
            }

                content.mobiletop .burger.open svg.close {
                    display: block;
                }

    content.mobiletop .mainmenu.open {
        display: none;
        width: calc(100% + 60px);
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        margin: 0 -30px;
        background-color: #fff;
    }

    content.mobiletop.show .mainmenu.open {
        height: auto;
        display: block;
    }

    content.mobiletop .mainmenu ul {
        display: inline-block;
    }

        content.mobiletop .mainmenu ul li {
            text-align: center;
            padding: 10px 10px;
            float: none;
            box-sizing: border-box;
            width: auto;
        }

            content.mobiletop .mainmenu ul li.selected a {
                border-bottom: none;
                color: var(--color1);
            }

/*****************************************************************************************************/

.columns {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-end;
}

    .columns.top {
        align-items: flex-start;
    }

    .columns.stretch {
        align-items: stretch;
    }

    .columns.boxpadding {
        width: calc(100% + 15px);
    }

    .columns .column {
        box-sizing: border-box;
        position: relative;
        margin-top: 0;
        transition: all 200ms ease;
    }

    .columns .animatestopped {
        margin-top: 30px !important;
        margin-bottom: -30px !important;
        opacity: 0;
    }

        .columns .column.hidden {
            opacity: .2;
        }

        .columns .column.topindex {
            z-index: 10;
        }

    .columns.toppadding .column {
        padding-top: 60px;
    }

    .columns .column.toppadding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .columns .column.rightpadding {
        padding-right: 30px;
    }

    .columns .column.leftpadding {
        padding-left: 30px;
    }

    .columns .column.full {
        width: 100%;
    }

    .columns .column.half {
        width: 50%;
    }

    .columns .column.third {
        width: 33%;
    }

    .columns .column.twothird {
        width: 66%;
    }

    .columns .column.fourth {
        width: 25%;
        padding-right: 60px;
    }

    .columns .column.fifth {
        width: 20%;
        padding-right: 60px;
    }

    .columns .column.box {
        background-color: #fff;
        border: 1px solid #eaeaea;
        box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
        box-sizing: border-box;
        padding: 30px !important;
        border-radius: 5px;
    }

    .columns .column.fourth.box.margin {
        width: calc(25% - 15px);
        margin: 0 15px 15px 0;
    }

    .columns .column.half.animate {
        margin-right: 0;
        transition: all 500ms ease;
    }

        .columns .column.half.animate.animatestopped {
            margin-right: -50%;
            opacity: 1;
        }


.reverseshadow {
    box-shadow: -10px 10px 25px -16px rgba(0,0,0,.1) !important;
}

.left .caseimage.one {
    left: auto;
    right: -30px;
}

.left .caseimage.two {
    left: auto;
    right: 140px;
}

.left .caseimage.three {
    left: auto;
    right: 280px;
}

.left .caseimage.one.animatestopped {
    right: 0%;
}

.left .caseimage.two.animatestopped {
    right: 0%;
}

.left .caseimage.three.animatestopped {
    right: 0%;
}

.columns .column.half.animate.animatestopped.reverseshadow {
    margin-right: 0;
    margin-left: -50%;
}

/*****************************************************************************************************/
.caseimage {
    border: 1px solid #eaeaea;
    box-shadow: 10px 10px 25px -16px rgba(0,0,0,.1);
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    border-radius: 5px;
    border: 5px solid #808080;
    box-sizing: border-box;
}

    .caseimage.one {
        height: 90%;
        width: 50%;
        left: -30px;
        right: auto;
        top: 5%;
        z-index: 4;
        transition: all 500ms ease;
    }

    .caseimage.two {
        height: 80%;
        width: 50%;
        left: 140px;
        right: auto;
        top: 10%;
        z-index: 3;
        transition: all 600ms ease;
    }

    .caseimage.three {
        height: 70%;
        width: 50%;
        left: 280px;
        right: auto;
        top: 15%;
        z-index: 2;
        transition: all 700ms ease;
    }

    .caseimage.animatestopped {
        height: 100%;
        top: 0%;
        left: 0%;
    }

    .caseimage.two.animatestopped {
        left: 0%;
    }

    .caseimage.three.animatestopped {
        left: 0%;
    }

/*****************************************************************************************************/
b {
    font-weight: 600;
}

p {
    padding: 0;
    margin: 0;
}

    p.bottompadding {
        padding-bottom: 30px;
    }

h1 {
    position: relative;
    z-index: 2;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 60px;
    background-color: #333;
    color: #FFFFFF;
    /* display: inline; */
    /* white-space: pre-wrap; */
    line-height: 70px;
    padding: 15px 30px;
    margin: 0 auto;
    width: calc(100% - 120px);
    /* padding-left: 0px; */
    /* box-shadow: -15px 0 0 #333; */
    border-radius: 5px;
    box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.5);
}

    h1.color1 {
        background-color: var(--color1);
    }

    h1.color2 {
        background-color: var(--color2);
    }

    h1.color3 {
        background-color: var(--color3);
    }

    h1.color4 {
        background-color: var(--color4);
    }

    h1.color5 {
        background-color: var(--color5);
    }

    h1 .topindex {
        position: relative;
        z-index: 10;
        margin-top: 30px;
    }

h2 {
    color: var(--color1);
    font-family: 'Barlow', sans-serif;
    font-weight: normal;
    font-size: 40px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 50px;
    width: calc(100% - 60px);
    /*text-transform: uppercase;*/
}

.purple h2 {
    color: #fff;
}

/*h2::after {
        content: ' ';
        height: 2px;
        border-bottom: 2px dotted #808080;
        width: 50px;
        position: absolute;
        bottom: 25px;
        left: 0;
    }*/

h2.full {
    width: 100%;
}

h2.verticalcenter {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

h2.center {
    margin: 0 auto;
    display: block;
}

    h2.center::after {
        left: calc(50% - 25px);
    }

h2.noline::after {
    display: none;
}

h3 {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
    width: calc(100% - 60px);
    max-width: 500px;
    padding-bottom: 20px;
    /*text-transform: uppercase;*/
}

    h3::after {
        content: ' ';
        height: 2px;
        border-bottom: 2px dotted #ccc;
        width: 25px;
        position: absolute;
        bottom: 10px;
        left: 0;
    }

    h3.center {
        margin: 0 auto;
        display: block;
    }

        h3.center::after {
            left: calc(50% - 25px);
        }

a,
a:active,
a:hover,
a:visited {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

    a.button,
    input[type=submit] {
        display: inline-block;
        padding: 5px 20px;
        border-radius: 5px;
        white-space: nowrap;
        background-color: var(--color5) !important;
        border: 2px solid var(--color5) !important;
        color: #fff;
        cursor: pointer;
        margin: 30px 0;
        transition: all 200ms ease;
        position: relative;
        padding-right: 40px;
    }

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    line-height: 25px;
    padding-right: 20px;
}


    a.button:hover,
    input[type=submit]:hover {
        color: #333 !important;
        background-color: #fff !important;
    }

a.button.nomargin {
    margin: 0;
}

a.button::after,
input[type=submit]::after {
    content: ' ';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 37px;
    background-image: url(/css/images/right.svg);
    background-size: 15px auto;
    background-repeat: no-repeat;
    background-position: right 10px center;
    filter: invert(1);
}

a.button.newwindow::after {
    content: ' ';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 37px;
    background-image: url(/css/images/newwindow.svg);
    background-size: 15px auto;
    background-repeat: no-repeat;
    background-position: right 10px center;
    filter: invert(1);
}

a.button:hover::after,
input[type=submit]:hover::after {
    filter: invert(0);
}

/*****************************************************************************************************/
.imageboxes {
}

    .imageboxes .imagebox {
        padding: 60px 60px 30px 60px;
        box-sizing: border-box;
    }

        .imageboxes .imagebox .image {
            display: inline-block;
            width: calc(40% - 5px);
            box-sizing: border-box;
            padding: 50px;
            margin: 0;
            background-color: #fff;
            border-radius: 3px;
            box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
        }

            .imageboxes .imagebox .image img {
                width: 100%;
            }

        .imageboxes .imagebox .column {
            display: inline-block;
            width: 60%;
            box-sizing: border-box;
            padding: 30px 60px 60px 60px;
            vertical-align: top;
        }

.boxes {
    width: calc(100% + 30px);
    /*margin: 0px -15px 0 -15px;*/
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
}

    .boxes .box {
        width: calc(25% - 30px);
        /*background: #808080;*/
        padding: 0px;
        box-sizing: border-box;
        margin: 0 15px;
    }
/*****************************************************************************************************/

img.website {
    width: 100%;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/*****************************************************************************************************/
content .timeline {
    padding: 0 0 60px 0;
}

.timeline {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .timeline .line {
        width: 100%;
        height: 5px;
        /*background-color: rgba(0,0,0, .1);*/
        background: linear-gradient(90deg, rgba(0,0,0, .1) 50%, transparent 50%), linear-gradient(90deg, transparent 50%, transparent 50%), linear-gradient(0deg, transparent 50%, transparent 50%), linear-gradient(0deg, transparent 50%, transparent 50%);
        background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
        background-size: 15px 5px, 15px 5px, 5px 15px, 5px 15px;
        background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
        animation: border-dance 5s infinite linear;
    }

@keyframes border-dance {
    0% {
        background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
    }

    100% {
        background-position: -100px 0px, 0px 116px, 0px 0px, 216px 150px;
    }
}

.timeline .timelineevents {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    margin-top: 60px;
}

    .timeline .timelineevents.bottom {
        align-items: flex-start;
        align-content: flex-start;
    }

    .timeline .timelineevents .blank {
        position: relative;
        box-sizing: border-box;
        padding: 20px;
        width: 40px;
        height: 10px;
    }

    .timeline .timelineevents .timelineevent {
        position: relative;
        box-sizing: border-box;
        /*padding: 20px;*/
        width: 200px;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
        margin: 0 15px;
        z-index: 3;
        transition: all 100ms ease;
        opacity: 1;
    }

        .timeline .timelineevents .timelineevent .label {
            position: absolute;
            background-color: #333;
            color: #fff;
            border-radius: 100px;
            padding: 0px 15px;
            text-align: center;
            font-size: 12px;
            top: 100%;
            margin-top: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            white-space: nowrap;
            line-height: 20px;
        }

        .timeline .timelineevents .timelineevent.color1 .header {
            background-color: var(--color1);
            color: #fff;
        }

        .timeline .timelineevents .timelineevent.color2 .header {
            background-color: var(--color2);
            color: #fff;
        }

        .timeline .timelineevents .timelineevent.color3 .header {
            background-color: var(--color3);
            color: #fff;
        }

        .timeline .timelineevents .timelineevent.color4 .header {
            background-color: var(--color4);
            color: #fff;
        }

        .timeline .timelineevents .timelineevent.color5 .header {
            background-color: var(--color5);
            color: #fff;
        }

    .timeline .timelineevents.top .timelineevent.focus {
        margin: 0 30px -30px 30px;
    }

    .timeline .timelineevents.top .timelineevent {
        margin-bottom: 60px;
    }

    .timeline .timelineevents .timelineevent:not(.focus)::after {
        content: ' ';
        position: absolute;
        top: calc(100% + 5px);
        left: calc(50% - 2px);
        width: 1px;
        height: calc(60px - 10px);
        border-right: 2px dashed #333;
        z-index: 1;
        opacity: 1;
    }

    .timeline .timelineevents.bottom .timelineevent::after {
        top: auto;
        bottom: calc(100% + 5px);
    }

    .timeline .timelineevents.bottom .timelineevent .label {
        top: auto;
        bottom: 100%;
        margin-top: 0;
        margin-bottom: 10px;
    }


    .timeline .timelineevents .timelineevent:not(.focus)::before {
        content: ' ';
        position: absolute;
        left: calc(50% - 8px);
        top: calc(100% + 55px);
        height: 10px;
        width: 10px;
        border-radius: 20px;
        border: 3px solid #eaeaea;
        background-color: var(--color2);
        z-index: 2;
        opacity: 1;
    }

    .timeline .timelineevents.bottom .timelineevent::before {
        top: auto;
        bottom: calc(100% + 56px);
    }

    .timeline .timelineevents .timelineevent.animatestopped {
        opacity: 0;
    }

    .timeline .timelineevents.top .timelineevent.animatestopped {
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .timeline .timelineevents.bottom .timelineevent.animatestopped {
        margin-top: -10px;
    }

    .timeline .timelineevents.bottom .timelineevent {
    }

    .timeline .timelineevents .timelineevent .icon {
    }

    .timeline .timelineevents .timelineevent .header {
        font-weight: 600;
        display: block;
        padding: 10px 20px;
    }

    .timeline .timelineevents .timelineevent .text {
        display: block;
        padding: 10px 20px;
    }

/*****************************************************************************************************/

#circlegraphic {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

#circle svg {
    height: 600px;
    position: relative;
    z-index: 2;
}

#circle line {
    fill: transparent;
    stroke: #333;
    stroke-width: 0.3;
    stroke-dasharray: 4, 2;
    /*animation: spin 30s linear infinite;*/
}

@keyframes spin {
    100% {
        /*-webkit-transform: rotate(360deg);
        transform: rotate(360deg);*/
    }
}

.circlegraphic {
    display: block;
    width: auto;
    /*height: 50px;*/
    box-sizing: border-box;
    padding: 10px 20px;
    margin: 0;
    background-color: #fff;
    border-radius: 1000px;
    box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.5);
    position: absolute;
    opacity: 1;
    text-align: center;
    background-position: top 50px center;
    background-size: auto auto;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    transition: all 200ms ease;
    z-index: 2;
}

    .circlegraphic.animatestopped {
        opacity: 0;
        top: 50% !important;
        left: 50% !important;
    }

    .circlegraphic span {
        font-weight: 600;
        /*position: absolute;
        top: 50%;
        line-height: 20px;
        margin-top: -10px;*/
        /**/
        white-space: nowrap;
        color: #fff;
    }

    .circlegraphic.planorama {
        border: 1px solid #eaeaea;
        box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
        padding: 50px;
        width: 150px;
        height: 150px;
        background-position: center center;
        background-size: 60% auto;
        background-image: url(/css/images/planorama_logo.png);
        top: 50%;
        left: 50%;
        z-index: 3;
    }

    .circlegraphic.web {
        top: 20%;
        left: 55%;
        background-color: var(--color1);
    }

    .circlegraphic.erp {
        top: 35%;
        left: 75%;
        background-color: var(--color2);
    }

    .circlegraphic.crm {
        top: 65%;
        left: 85%;
        background-color: var(--color3);
    }

    .circlegraphic.mail {
        top: 90%;
        left: 70%;
        background-color: var(--color4);
    }

    .circlegraphic.exchange {
        top: 30%;
        left: 25%;
        background-color: var(--color5);
    }

    .circlegraphic.bi {
        top: 75%;
        left: 20%;
        background-color: var(--color1);
    }

.animcircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: -1;
    transition: all 500ms ease;
    border: 1px solid rgba(234,234,234, .8);
}

    .animcircle.one {
        background-color: rgba(0,0,0, .05);
        width: calc(100vh / 2);
        height: calc(100vh / 2);
    }

    .animcircle.two {
        background-color: rgba(0,0,0, .04);
        width: calc(100vh * 1);
        height: calc(100vh * 1);
    }

    .animcircle.three {
        background-color: rgba(0,0,0, .03);
        width: calc(100vh * 1.5);
        height: calc(100vh * 1.5);
    }

    .animcircle.four {
        background-color: rgba(0,0,0, .02);
        width: calc(100vh * 2);
        height: calc(100vh * 2);
    }

    .animcircle.five {
        background-color: rgba(0,0,0, .01);
        width: calc(100vh * 2.5);
        height: calc(100vh * 2.5);
    }

    .animcircle.animatestopped {
        width: 1px;
        height: 1px;
    }
/*****************************************************************************************************/
.frame {
    width: 100%;
    margin: 0;
    /*height: 160px;*/
    padding: 0;
}

    .frame .slidee {
        margin: 0;
        padding: 0;
        height: 100%;
        list-style: none;
        white-space: nowrap;
    }

        .frame .slidee li {
            display: inline-block;
            margin: 0 0 0 0;
            padding: 0;
            width: calc(15vw);
            min-width: 200px;
            height: 100%;
            text-align: center;
        }

            .frame .slidee li img {
                width: 80%;
                max-width: 150px;
                height: auto;
            }

/*****************************************************************************************************/

.columns .column .iconheader {
    font-size: 21px;
    font-weight: 600;
    display: block;
    position: relative;
    padding: 75px 0 0 0;
    margin: 0 0 30px 0;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 50px;
}

    .columns .column .iconheader::after {
        content: ' ';
        height: 2px;
        border-bottom: 2px dotted #808080;
        width: 25px;
        position: absolute;
        bottom: -15px;
        left: 0;
    }

    .columns .column .iconheader.web {
        background-image: url(/css/images/icons/icons8-cloud-connection-96.png);
    }

    .columns .column .iconheader.secure {
        background-image: url(/css/images/icons/icons8-protect-96.png);
    }

    .columns .column .iconheader.sso {
        background-image: url(/css/images/icons/icons8-grand-master-key-96.png);
    }

    .columns .column .iconheader.api {
        background-image: url(/css/images/icons/icons8-rest-api-96.png);
    }

    .columns .column .iconheader.calendar {
        background-image: url(/css/images/icons/icons8-event-96.png);
    }

    .columns .column .iconheader.resource {
        background-image: url(/css/images/icons/icons8-timeline-week-96.png);
    }

    .columns .column .iconheader.list {
        background-image: url(/css/images/icons/icons8-tasklist-96.png);
    }

    .columns .column .iconheader.signup {
        background-image: url(/css/images/icons/icons8-what-i-do-96.png);
    }

    .columns .column .iconheader.teacher {
        background-image: url(/css/images/icons/icons8-student-male-96.png);
    }

    .columns .column .iconheader.timeline {
        background-image: url(/css/images/icons/icons8-timeline-96.png);
    }

    .columns .column .iconheader.files {
        background-image: url(/css/images/icons/icons8-attach-96.png);
    }

    .columns .column .iconheader.debate {
        background-image: url(/css/images/icons/icons8-environment-96.png);
    }

    .columns .column .iconheader.elearning {
        background-image: url(/css/images/icons/icons8-e-learning-96.png);
    }

    .columns .column .iconheader.scorm {
        background-image: url(/css/images/icons/icons8-engineering-96.png);
    }

    .columns .column .iconheader.platforms {
        background-image: url(/css/images/icons/icons8-read-online-96.png);
    }

    .columns .column .iconheader.time {
        background-image: url(/css/images/icons/icons8-time-96.png);
    }

    .columns .column .iconheader.types {
        background-image: url(/css/images/icons/icons8-get-help-96.png);
    }

    .columns .column .iconheader.guide {
        background-image: url(/css/images/icons/icons8-signpost-96.png);
    }

    .columns .column .iconheader.pools {
        background-image: url(/css/images/icons/icons8-stacking-96.png);
    }

    .columns .column .iconheader.examn {
        background-image: url(/css/images/icons/icons8-alarm-clock-96.png);
    }

    .columns .column .iconheader.targetgroup {
        background-image: url(/css/images/icons/icons8-target-96.png);
    }

    .columns .column .iconheader.blended {
        background-image: url(/css/images/icons/icons8-mixer-96.png);
    }

    .columns .column .iconheader.autotimeline {
        background-image: url(/css/images/icons/icons8-timeline-96.png);
    }

    .columns .column .iconheader.diploma {
        background-image: url(/css/images/icons/icons8-certificate-96.png);
    }

    .columns .column .iconheader.visual {
        background-image: url(/css/images/icons/icons8-combo-chart-96.png);
    }

    .columns .column .iconheader.overview {
        background-image: url(/css/images/icons/icons8-personal-growth-96.png);
    }

    .columns .column .iconheader.export {
        background-image: url(/css/images/icons/icons8-venn-diagram-96.png);
    }

    .columns .column .iconheader.budget {
        background-image: url(/css/images/icons/icons8-stocks-growth-96.png);
    }

    .columns .column .iconheader.o365 {
        background-image: url(/css/images/icons/icons8-microsoft-office-2019.svg);
    }

    .columns .column .iconheader.nav {
        background-image: url(/css/images/icons/icons8-microsoft-dynamics-365.svg);
    }

    .columns .column .iconheader.sharepoint {
        background-image: url(/css/images/icons/sharepoint.svg);
    }
    
    .columns .column .iconheader.onedrive {
        background-image: url(/css/images/icons/onedrive.svg);
    }

    .columns .column .iconheader.crm {
        background-image: url(/css/images/icons/icons8-office-365-admin.svg);
    }

    .columns .column .iconheader.teams {
        background-image: url(/css/images/icons/icons8-microsoft-teams-2019.svg);
    }

    .columns .column .iconheader.economic {
        background-image: url(/css/images/icons/economic.png);
    }

    .columns .column .iconheader.gototraining {
        background-image: url(/css/images/icons/gototraining.png);
    }

    .columns .column .iconheader.mailchimp {
        background-image: url(/css/images/icons/mailchimp.png);
    }

    .columns .column .iconheader.apsis {
        background-image: url(/css/images/icons/apsis-apsis-one.png);
    }
    
    .columns .column .iconheader.colibo {
        background-image: url(/css/images/icons/colibo.png);
    }
    
    .columns .column .iconheader.activecampaign {
        background-image: url(/css/images/icons/activecampaign.png);
    }
    
    .columns .column .iconheader.superoffice {
        background-image: url(/css/images/icons/superoffice.png);
    }
    
    .columns .column .iconheader.actimo {
        background-image: url(/css/images/icons/actimo.png);
    }

/*****************************************************************************************************/

.umbraco-forms-fieldset {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
}

.umbraco-forms-label {
    font-weight: 600;
}

.umbraco-forms-fieldset input[type=text],
.umbraco-forms-fieldset textarea {
    box-sizing: border-box;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    background-color: #fff;
    width: 100%;
    outline: none;
    margin: 5px 0 15px 0;
    border-radius: 5px;
    box-shadow: 10px 10px 25px -16px rgba(0, 0, 0, .1);
}

.umbraco-forms-fieldset textarea {
    min-height: 100px;
}

.validation-summary-errors {
    padding: 10px 10px;
    margin: 0 0 20px 0;
    border: 1px solid #FFA500;
    background-color: rgba(255, 165, 0, .1);
    border-radius: 5px;
    box-sizing: border-box;
}

    .validation-summary-errors ul {
        padding: 0;
        margin: 0;
    }

        .validation-summary-errors ul li {
            list-style: none;
            font-size: 12px;
            padding: 0;
            margin: 0;
            line-height: 15px;
        }

/*****************************************************************************************************/

.videos {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    box-sizing: border-box;
    /*filter: brightness(1.5);*/
}

    .videos video {
        max-width: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

        .videos video.tall {
            max-width: initial;
            width: auto;
            height: 100vh;
            max-height: 100vh;
        }

/*****************************************************************************************************/

#featuresearch {
    /*position: absolute;
    top: 0;
    right: 30px;*/
    text-align: right;
}

    #featuresearch input {
        box-sizing: border-box;
        outline: none;
        padding: 8px 16px 8px 30px;
        border: 1px solid #eaeaea;
        background-color: #fff;
        border-radius: 100px;
        width: 200px;
        font-family: 'Asap', sans-serif;
        font-size: 16px;
        color: #808080;
        background-image: url(/css/images/search.svg);
        background-repeat: no-repeat;
        background-size: 15px auto;
        background-position: left 10px center;
    }

        #featuresearch input:focus {
            border: 1px solid #ccc;
            color: #000;
        }

            #featuresearch input:focus::placeholder {
                opacity: .5;
            }

/*****************************************************************************************************/

button#ihavecookiesBtn {
    margin-left: 0px !important;
}
/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 10px 10px 25px -16px rgba(0,0,0,0.1);
    margin-left: 30px;
    font-family: system-ui;
    z-index: 99;
}

    #gdpr-cookie-message h4 {
        color: var(--color2);
        font-size: 18px;
        font-weight: 500;
        margin: 0 0 10px 0;
        padding: 0;
    }

    #gdpr-cookie-message > p {
        
    }

    #gdpr-cookie-message h5 {
        color: var(--color2);
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        color: white;
    }

        #gdpr-cookie-message p:last-child {
            margin-bottom: 0;
            text-align: right;
        }

    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }

    #gdpr-cookie-message a {
        color: var(--color2);
        text-decoration: none;
        font-size: 15px;
        padding-bottom: 2px;
        border-bottom: 1px dotted rgba(255,255,255,0.75);
    }

        #gdpr-cookie-message a:hover {
            color: white;
            border-bottom-color: var(--color2);
        }

    #gdpr-cookie-message button,
    button#ihavecookiesBtn {
        border: none;
        background: var(--color2);
        color: white;
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        padding: 7px 14px;
        border-radius: 3px;
        margin-left: 15px;
        margin-top: 30px;
        cursor: pointer;
    }

        #gdpr-cookie-message button:hover {
            background: white;
            color: var(--color2);
        }

button#gdpr-cookie-advanced {
    background: white;
    color: var(--color2);
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}


/*****************************************************************************************************/

img.ebook {
    margin-left: -124px;
    margin-bottom: -157px;
    vertical-align: bottom;
    transform: rotate(18deg);
    z-index: 3;
    position: relative;
}

.langs {
    position: absolute;
    right: 00;
    top: -16px;
}
.langs .lang {
    display: inline-block;
    margin-left: 5px;
}
.langs .lang img {
    height: 20px;
}
.langs .lang.notselected img {
    filter: grayscale(1);
    opacity: .8;
}
.langs .lang:hover img {
    filter: grayscale(0);
    opacity: 1;
}