@charset "UTF-8";


/* Fonts */

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-regular/roboto-regular.woff2?#iefix') format('woff2'),
    url('../fonts/roboto-regular/roboto-regular.woff') format('woff'),
    url('../fonts/roboto-regular/roboto-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-light/roboto-light.woff2?#iefix') format('woff2'),
    url('../fonts/roboto-light/roboto-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-italic/roboto-italic.woff2?#iefix') format('woff2'),
    url('../fonts/roboto-italic/roboto-italic.woff') format('woff'),
    url('../fonts/roboto-italic/roboto-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-bold/roboto-bold.woff2?#iefix') format('woff2'),
    url('../fonts/roboto-bold/roboto-bold.woff') format('woff'),
    url('../fonts/roboto-bold/roboto-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/lato-regular/lato-regular.woff2?#iefix') format('woff2'),
    url('../fonts/lato-regular/lato-regular.woff') format('woff'),
    url('../fonts/lato-regular/lato-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/lato-italic/lato-italic.woff2?#iefix') format('woff2'),
    url('../fonts/lato-italic/lato-italic.woff') format('woff'),
    url('../fonts/lato-italic/lato-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/lato-bold/lato-bold.woff2?#iefix') format('woff2'),
    url('../fonts/lato-bold/lato-bold.woff') format('woff'),
    url('../fonts/lato-bold/lato-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/* Reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
	padding: 0;
    border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
}


html, body {
    height: 100%;
}

body {
    background-color: #111;
    color: #333;
}


body, input, select, textarea {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: 1.0em;
    font-weight: 300;
    line-height: 1.3em;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}



/*
 *  Standard Grid Layout.
 *
 ********************************************************************************/

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}


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

.gridItemFixRatio:before {
    content: "";
    height: 0;
    display: inline-block;
    width: 1px;
    position: relative;
}

.gridItemFixRatio .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: grid;
    justify-items: start;
    align-items: start;
}

.gridItemFixRatio .centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gridItemFixRatio .contentInside {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    width: 100%;
}

.gridItemFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gridItemFooter {
    display: flex;
/*  justify-content: center; */
/*  align-items: center; */
    padding: 8px 0px;
    margin: 0 20px;
}
/*
.gridItemFooter:first-child {
    margin-left: 0;
    background-color: #0f0;
}
*/

.grid .full {
    grid-column: span 4;
    padding: 3em;
}

.title {
    text-align: center;
    border-top: 1px dotted #ccc;
    padding-bottom: 10px;
}

.grid .big {
    grid-column: span 2;
}

.grid .big::before {
    padding-top: 50%;
}


.grid .mosaic {
    grid-column: span 1;
}


.grid .mosaic::before {
    padding-top: 100%;  /* Quadratisch */
}

.grid .course {
}


.grid .courseCategory {
    grid-column: span 1;
}

.grid .courseCategory::before {
    padding-top: 50%;
}


/*

*/


.contentArea {
    display: block;
    margin: 12px 0;
    padding: 0 20px;
}

.flexCentered {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
}



strong {
    font-weight: 700;
}


h1 {
    display: block;
    width: 100%;
    font-size: 1.8em;
    font-weight: 300;
    line-height:  1.2em;
    margin-bottom: 0.4em;
}

h1:not(:first-child) {
    margin-top: 0.6em;
}

h1.boxHeading {
    font-size: 1.8em;
    font-weight: 300;
}

h1.big {
    font-size: 3em;
}

h1.emphasized {
    display: inline-block;
    width: auto;
    padding: 0.2em;
    color: #fff;
    background-color: #000;
}

h3 {
    font-size: 1.4em;
    line-height: 1.2em;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
}


p {
    font-weight: 300;
    font-size: 1.0em;
    line-height: 1.5em;
}

p:not(:first-child) {
    margin-top: 0.6em;
}

p.small {
    font-size: 0.9em;
}

p.big {
    font-size: 1.3em;
}


a {
    text-decoration: none;
    color: inherit;
}


.gridItemFooter a {
    transition: color .3s;
}

.gridItemFooter a:hover {
    color: #fff;
}

span.b {
    font-weight: 700;
}

span.i {
    font-style: italic;
}

span.bi {
    font-weight: 700;
    font-style: italic;
}

span.c {
    font-weight: 500;
    color: white;
    background-color: #396;
    border-radius: 3px;
    padding-left: 4px;
    padding-right: 4px;
}

span.h1 {
    font-weight: 500;
    font-size: 1.6em;
    line-height: 1.2em;
}


.blog {
    color:#000;
    transition: background-color .5s, color .5s;
}

.blog:hover {
    color:#999;
}


.videoFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/*
    Course Columns
*/

.courseColumns {
    -webkit-column-count: 4;    /* Chrome, Safari, Opera */
    -moz-column-count: 4;       /* Firefox */
    column-count: 4;
    column-gap: 40px;
    margin: 0 20px 16px 20px;
}


/*
*/

.container {
    display: flex;
}

.container .left {
    width: auto;
}

.container .centered {
    text-align: center;
    width: auto;
}

.container .right {
    padding: 20px 14px 0 0;
    min-width: 120px;
    text-align: right;
    flex-grow: 1;
}



div.contentContainer {
    height: 100%;
    width: 100%;
    padding-bottom: 20px;
}



table.form {
    width: 100%;
    padding: 0;
    margin: 0;
    border-spacing: 0px;
    table-layout: fixed;
}


table.form td {
    padding: 0px 0px 4px 0px;
}



input[type="text"], input[type="password"] {
	font-size: 1.2em;
    padding: 4px 8px;
    border-width: 0;
/*    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
*/
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ccc;
}

input[type="submit"], input[type="button"], button {
    margin: 0 auto;
    color: #fff;
    background-color: #666;
/*
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
*/
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    border: none;
    padding: 6px 20px;
    display: inline-block;
    cursor: pointer;
    transition: background-color .3s, color .3s, border .3s;
}


input[type="submit"]:hover, input[type="button"]:hover, button:hover {
    background: #000;
}


input[type="checkbox"] {
    margin-right: 6px;
    margin-left: 12px;
}


input[type="text"], textarea {
    width: 100%;
    margin: 0;
}


input.big {
    font-size: 1.6em;
}

input.right {
    text-align: right;
}

input.bigDisabled {
    font-size: 1.6em;
    background-color: transparent;
}



.pageTitle { order: 1; }
.pageImage { order: 2; }

.pageContent { order: 3; }


ul.listInBox {
    font-size: 1em;
    font-weight: 400;
    list-style: none;
}

ul.listInBox li {
}


ul.listInBox li a {
    display: inline-block;
    padding: 2px 4px;
    color: #fff;
    background-color: rgba(0, 0, 0, .0);
    margin-bottom: 2px;
    transition: background-color .3s, color .3s, border .3s;
    cursor: pointer;
}


ul.listInBox li a:hover {
    background-color: #000;
}


.listInBox {
    margin-bottom: 10px;
}

ul.onWhite li a {
    color: #333;
    background-color: #eee;
}

ul.onWhite li a:hover {
    color: #fff;
    background-color: #000;
}

a:hover {
    color: #1166bb;
}


a.button1 {
    color: #fff;
    background-color: rgba(0, 0, 0, .1); /* Todo */
    font-size: 1em;
    font-weight: 400;
    margin: 2px 0px;
    padding: 2px 12px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 40px;
    cursor: pointer;
    transition: background-color .3s, color .3s, border .3s;
    border-radius: 50px;
}

a.button1:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 1);
}

a.buttonForLightBG {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

a.buttonForLightBG:hover {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
}

a.linkButton {
    margin-top: 8px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0);
}

a.linkButton:hover {
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 1);
}


a.button2, a.button2selected {
    color: #000;
    background-color: #eee;
    font-size: 1em;
    font-weight: 400;
    margin: 2px 0px;
    padding: 4px 12px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: background-color .3s, color .3s, border .3s;
}

a.button2:hover {
    color: #000;
    background-color: #ccc;
}

a.button2selected {
    color: #fff;
    background-color: #000;
}

a.button3 {
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 1em;
    font-weight: 400;
    margin: 2px 0px;
    padding: 2px 12px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 40px;
    cursor: pointer;
    transition: background-color .3s, color .3s, border .3s;
}

a.button3:hover {
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
}


a.button4 {
    font-weight: 600;
    display: inline-block;
    margin-top: 0px;
    padding: 2px 8px;
    transition: background-color .3s, color .3s;
}

a.button4:hover {
    color: #fff;
    background-color: #000;
}


a.button5 {
    color: #333;
    border: 1px solid #ccc;
    font-size: 0.8em;
    font-weight: 400;
    margin: 0px 12px;
    padding: 0px 8px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 40px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color .3s, color .3s, border .3s;
}

a.button5:hover {
    color: #000;
    background-color: #ccc;
}

.logo {
    display: inline-block;
    margin: 20px 30px 12px 30px;
    width: 120px;
    height: 56px;
    background-color: #333;
    -webkit-mask: url(../img/ci/akti_logo.svg) no-repeat center;
    mask: url(../img/ci/akti_logo.svg) no-repeat center;
    -webkit-mask-size: 100%;
    -mask-size: 100%;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

.logo:hover {
    background-color: #1166bb;  /* Akti Color */
    cursor: pointer;
}


.icon {
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

.icon:hover {
    background-color: rgba(255,255,255,1.0);
    cursor: pointer;
}


.facebookIcon {
    -webkit-mask: url(../img/icon/facebook.svg) no-repeat center;
    mask: url(../img/icon/facebook.svg) no-repeat center;
    -webkit-mask-size: 100%;
    -mask-size: 100%;
}

.instagramIcon {
    -webkit-mask: url(../img/icon/instagram.svg) no-repeat center;
    mask: url(../img/icon/instagram.svg) no-repeat center;
    -webkit-mask-size: 100%;
    -mask-size: 100%;
}

.youtubeIcon {
    -webkit-mask: url(../img/icon/youtube.svg) no-repeat center;
    mask: url(../img/icon/youtube.svg) no-repeat center;
    -webkit-mask-size: 100%;
    -mask-size: 100%;
}



.navIcon {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-bottom: 3px;
    width: 32px;
    height: 32px;
    background-color: #000;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

.navIcon:hover {
    background-color: #1166bb;
    cursor: pointer;
}

.navIconNext {
    -webkit-mask: url(../img/icon/next_arrow.svg) no-repeat center;
    mask: url(../img/icon/next_arrow.svg) no-repeat center;
    -webkit-mask-size: 50%;
    -mask-size: 50%;
}

.navIconPrev {
    -webkit-mask: url(../img/icon/prev_arrow.svg) no-repeat center;
    mask: url(../img/icon/prev_arrow.svg) no-repeat center;
    -webkit-mask-size: 50%;
    -mask-size: 50%;
}



.prevArrow {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.8);
    -webkit-mask: url(../img/icon/prev_arrow.svg) no-repeat center;
    mask: url(../img/icon/prev_arrow.svg) no-repeat center;
    -webkit-mask-size: 50%;
    -mask-size: 50%;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

.prevArrow:hover {
    background-color: rgba(255,255,255,1);
}

.nextArrow {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    width: 30px;
    height: 60px;
    background-color: rgba(255,255,255,0.8);
    -webkit-mask: url(../img/icon/next_arrow.svg) no-repeat center;
    mask: url(../img/icon/next_arrow.svg) no-repeat center;
    -webkit-mask-size: 100%;
    -mask-size: 100%;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

.nextArrow:hover {
    background-color: rgba(255,255,255,1);
}




a.nav {
    font-size: 1em;
    font-weight: 500;
    display: inline-block;
    color: #666;
    padding: 6px 10px;
    margin: 0;
    text-decoration: none;
    transition: color .2s, border-bottom .2s;
}

a.nav:hover {
    color: #1166bb;  /* Akti Color */
}

a.navActive, a.navActive:hover {
    color: #ddd;
    background-color: #000;
    cursor: pointer;
}


.pageWrap {
    background-color: #fff;
    min-height: 100%;
    max-width: 1280px;
    margin-bottom: -100px;   /* equal to footer height */
    margin: auto;
}

.pageWrap:after {
    content: "";
    display: block;
}

.footer, .pageWrap:after {
    display: block;
    min-height: 100px;
    max-width: 1280px;
    margin: auto;
}

.footer {
    padding: 20px 0;
    font-size: 0.9em;
    width: 100%;
    color: #999;
    background-color: #333;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.blockHover {
    display: inline-block;
    width: 100%;
    padding: 8px;
    cursor: pointer;
    transition: background-color .2s, color .2s;
    color: #333;
}

.blockHover:hover {
    background-color: #eee;
    color: #000;
}


.blockHover2 {
    display: block;
    padding: 6px;
    cursor: pointer;
    transition: background-color .4s, color .4s;
    color: rgba(170, 0, 221, 0);
    background-color: rgba(255, 255, 255, 0);
}

.blockHover2:hover {
    background-color: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 1);
}


.blockHover3 {
    font-size: 1.2em;
    display: block;
    padding: 6px;
    cursor: pointer;
    transition: background-color .4s, color .4s;
    color: rgba(80, 150, 100, 0);
    background-color: rgba(255, 255, 255, 0.0);
}

.blockHover3:hover {
    background-color: rgba(240, 240, 240, 1); /* Akti Color */
/*    background-color: rgba(177, 82, 88, 0.8); /* Akti Color */
    color: rgba(90, 90, 90, 1);
}


.blogHover {
    width: 100%;
    cursor: pointer;
    transition: background-color .4s, color .4s;
}

.blogHover:hover {
    background-color: #eee;
    color: #333;
}


.imgHover1 {
/*    display: block; */
    padding: 12px;
    cursor: pointer;
    transition: background-color .4s, color .4s;
    color: rgba(170, 0, 221, 0);
    background-color: rgba(255, 255, 255, 0);
}

.imgHover1:hover {
    background-color: rgba(170, 0, 221, 0.8);
    color: rgba(255, 255, 255, 1);
}


.courseName {
    font-weight: 500;
    font-size: 1.4em;
    line-height: 1.2em;
}


.splittedName {
    display: inline-block;
    color: #fff;
    background-color:rgba(0,0,0,0.9);    /* #000; */
    font-size: 1.6em;
    line-height: 1.3em;
    font-weight: 400;
    padding: 0.1em 0.2em;
    width: auto;
}

.splittedName.big {
    font-size: 2.6em;
    line-height: 1.3em;
}


.courseDate {
    font-size: 1em;
    line-height: 1.2em;
}



.smallNumber {
    font-size: 0.75em;
    margin-left: 6px;
    vertical-align: middle;
}


.personName {
    font-weight: 500;
    font-size: 1.2em;
}


img.staffImageInContent {
    width: 120px;
    border-radius: 50%;
}


/* Course slides */

#slides {
}

.slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: block;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}


.showing {
    opacity: 1;
    z-index: 2;
}



.circular {
	width: 65%;
    border-radius: 50%;
    background-blend-mode: multiply;
    background-color: rgba(177, 82, 88, 0);
    transition: background-color .5s;
}

.circular:hover {
	width: 65%;
    border-radius: 50%;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.3);
}

.circular:before {
    content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1 */
}


.gridItem1 { order: 1; }
.gridItem2 { order: 3; }
.gridItem3 { order: 2; }
.gridItem4 { order: 4; }
.gridItem5 { order: 5; }
.gridItem6 { order: 6; }

/*
 *  Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 *
 *  [1] IE9
 *  [2] IE10+
 *
 *  https://gist.github.com/larrybotha/7881691
 */

/* 1 */
.ie9 img[src$=".svg"] {
    width: 100%;
}
/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
        width: 100%;
    }
}



@media (max-width: 1000px) {

    .grid { grid-template-columns: 1fr 1fr; }
    .grid .full { grid-column: span 2; }
    .grid .big { grid-column: span 2; }

    /*
    .grid .course:nth-child(3) { display: none; }
    .grid .course:nth-child(4) { display: none; }
*/
    .grid5 { grid-template-columns: 1fr 1fr 1fr; }


    /* Reorder items for smaller screens */
    .gridItem1 { order: 1; }
    .gridItem2 { order: 3; }
    .gridItem3 { order: 2; }
    .gridItem4 { order: 4; }
    .gridItem5 { order: 5; }
    .gridItem6 { order: 6; }

    .contentArea {
        margin: 40px 0;
    }


    .courseColumns {
        -webkit-column-count: 2;  /* Chrome, Safari, Opera */
        -moz-column-count: 2;     /* Firefox */
        column-count: 2;
    }


    .pageTitle { order: 2; }
    .pageImage { order: 1; }

    .splittedName {
        font-size: 1.8em;
        line-height: 1.2em;
    }

}


@media (max-width: 600px) {

    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1.1em;
        line-height: 1.4em;
    }

    .grid { grid-template-columns: 1fr; }
    .grid .full { grid-column: span 1; }
    .grid .big { grid-column: span 1; }
/*
    .grid .course:nth-child(2) { display: none; }
*/

    .grid5 { grid-template-columns: 1fr 1fr; }


    .courseColumns {
        -webkit-column-count: 1;  /* Chrome, Safari, Opera */
        -moz-column-count: 1;     /* Firefox */
        column-count: 1;
    }

    .courseName {
        font-size: 1.6em;
        line-height: 1.4em;
    }

    .courseDate {
        font-size: 1.2em;
        line-height: 1.4em;
    }

    .personName {
        font-size: 1.6em;
    }

    h1.boxHeading {
        font-size: 2em;
    }

    a.nav {
        font-size: 1.2em;
    }

    img.staffImageInContent {
        width: 180px;
        border-radius: 50%;
    }

}
