/* Glacial Under Construction Template */
/* CosmicLabs http://themeforest.net/user/CosmicLabs */



/* === GENERAL === */

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #5F6061;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.backstretch:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*background-color: rgba(255,255,255,0.6);*/
    z-index: 100;
}

.mbYTP_wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(95,96,97,0.6);
    z-index: 100;
}

.videoMuteButton {
    display: none;
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: absolute;
    right: 15px;
    bottom: 15px;
    background-color: rgba(236,240,241,0.1);
    border-radius: 3px;
}

    .videoMuteButton:hover i.fa {
        color: rgba(236,240,241,1);
    }

.videoButton {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    color: rgba(236,240,241,0.6);
    cursor: pointer;
}

    .videoButton i.fa {
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .videoButton.notmuted.mute {
        display: none;
    }

h2.section-title {
    margin: 0px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5em;
}

.noscript-error {
    position: relative;
    padding: 20px;
    background-color: rgba(233,233,233,0.2);
    margin: 0 auto;
    text-align: center;
    color: rgba(233,233,233,0.8);
}

.page-loading {
    width: 100%;
    height: 100%;
    background-color: #5F6061;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    overlflow: hidden;
}

.loading {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-bottom: 6px solid rgba(233,233,233,1);
    border-left: 6px solid rgba(233,233,233,1);
    border-right: 6px solid rgba(233,233,233,0.5);
    border-top: 6px solid rgba(233,233,233,0.5);
    border-radius: 100%;
    height: 60px;
    width: 60px;
    -webkit-animation: loading-spin 1s infinite linear;
    -moz-animation: loading-spin 1s infinite linear;
    -ms-animation: loading-spin 1s infinite linear;
    -o-animation: loading-spin 1s infinite linear;
    animation: loading-spin 1s infinite linear;
}

@keyframes loading-spin {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-moz-keyframes loading-spin {
    from {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes loading-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-ms-keyframes loading-spin {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-o-keyframes loading-spin {
    from {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.mini-container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* === WELCOME === */

.section-main {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: transparent;
    display: block;
    position: relative;
    z-index: 2000;
    text-align: center;
}

    .section-main .title {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        color: #000000;
    }

        .section-main .title a.title-img {
            display: block;
            margin-bottom: 15px;
        }

            .section-main .title a.title-img img {
                outline: none;
                border: none;
            }

        .section-main .title h1 {
            display: inline-block;
            color: #ecf0f1;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 52px;
            margin: 0px;
        }

    .section-main h1.text-logo {
        font-family: 'Grand Hotel', cursive;
        text-transform: none;
        font-weight: 400;
        font-size: 36px;
        color: rgba(236,240,241,0.8);
    }

    .section-main .title p {
        line-height: 24px;
        padding: 20px;
        margin: 0px;
    }

    .section-main .arrow-down {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 40px;
        animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
        -webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
        -moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
        -o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    }

        .section-main .arrow-down i.fa {
            font-size: 36px;
            color: #8E52A0;
            cursor: pointer;
            transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

    .section-main i.fa:hover {
        color: #542960;
    }

@-webkit-keyframes wobbleArrow {
    from {
        bottom: 40px;
    }

    to {
        bottom: 50px;
    }
}


/* === COUNTDOWN === */

.section-countdown {
    width: 100%;
    height: auto;
    background-color: #ecf0f1;
    position: relative;
    z-index: 2000;
    color: #5F6061;
    padding-top: 80px;
    padding-bottom: 80px;
}

    .section-countdown p {
        text-align: center;
    }

#countdown {
    width: 100%;
    height: auto;
    text-align: center;
    z-index: 200;
    margin: 0 auto;
}

    #countdown .countdown-elem {
        display: inline-block;
        position: relative;
        background-color: rgba(95,96,97,0.08);
        height: 180px;
        width: 22%;
        overflow: hidden;
        vertical-align: top;
    }

        #countdown .countdown-elem h2 {
            margin: 0px;
            padding: 0px;
            font-size: 48px;
            font-weight: 300;
            font-family: 'Lato', sans-serif;
            color: #5F6061;
            display: inline-block;
            position: relative;
        }

        #countdown .countdown-elem span {
            color: rgba(95,96,97,0.7);
            display: block;
            margin-top: 0px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            line-height: 24px;
            margin-top: -30px;
        }

    #countdown .countdown-spacer {
        display: inline-block;
        width: 4%;
    }


/* === EMAIL-SUBSCRIBE === */

.section-subscribe {
    width: 100%;
    height: auto;
    background-color: transparent;
    display: block;
    position: relative;
    z-index: 2000;
    color: #ecf0f1;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

    .section-subscribe:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(95,96,97,0.6);
        z-index: 100;
    }

.mini-container.overlay-container {
    position: relative;
    z-index: 2000;
}

.subscribe {
    width: 100%;
    height: 50px;
    background-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 22px;
    margin: 0 auto;
    transition: color 0.5s ease, background-color 0.5s ease;
    -webkit-transition: color 0.5s ease, background-color 0.5s ease;
    -moz-transition: color 0.5s ease, background-color 0.5s ease;
    -o-transition: color 0.5s ease, background-color 0.5s ease;
}

.signup {
    width: 100%;
    height: 50px;
    float: right;
    border-radius: 0px;
    display: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    line-height: 50px;
    font-weight: 400;
    transition: width 2s ease;
    -webkit-transition: width 2s ease;
    -moz-transition: width 2s ease;
    -o-transition: width 2s ease;
    -webkit-background-clip: padding-box;
}

.signup-waiting {
    width: 100%;
    height: auto;
}

.signup-error {
    color: #ecf0f1;
}

.signup-success {
    width: 100%;
    background-color: rgba(26,188,156,1.0);
    border: none;
    margin-top: -50px;
    border-radius: 0px;
    color: #ecf0f1;
    position: relative;
    z-index: 2000;
}

#signup-response .loading {
    width: 18px;
    height: 18px;
    position: relative;
    margin-top: 15px;
    border-bottom: 3px solid rgba(233,233,233,1);
    border-left: 3px solid rgba(233,233,233,1);
    border-right: 3px solid rgba(233,233,233,0.5);
    border-top: 3px solid rgba(233,233,233,0.5);
}

.enteremail {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    width: 89%;
    font-family: 'Lato', sans-serif;
    outline: none;
    border-radius: 0px;
    border: none;
    background-color: rgba(236,240,241,0.8);
    color: rgba(95,96,97,0.8);
    font-size: 16px;
    font-weight: 400;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: padding-box;
    transition: color 0.5s ease, background-color 0.5s ease;
    -webkit-transition: color 0.5s ease, background-color 0.5s ease;
    -moz-transition: color 0.5s ease, background-color 0.5s ease;
    -o-transition: color 0.5s ease, background-color 0.5s ease;
}

    .enteremail:focus {
        color: rgba(95,96,97,1);
        background-color: rgba(236,240,241,1);
    }


::-webkit-input-placeholder {
    color: rgba(95,96,97,0.8);
}

:-moz-placeholder {
    color: rgba(95,96,97,0.8);
}

::-moz-placeholder {
    color: rgba(95,96,97,0.8);
}

:-ms-input-placeholder {
    color: rgba(95,96,97,0.8);
}

.subscribe .signup-button {
    width: 11%;
    height: 50px;
    background-color: rgba(236,240,241,0.7);
    border: none;
    outline: none;
    position: relative;
    float: left;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    border-radius: 0px;
    font-weight: 400;
    color: rgba(95,96,97,0.8);
    border: none;
    cursor: pointer;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-background-clip: padding-box;
    transition: color 0.5s ease, background-color 0.5s ease;
    -webkit-transition: color 0.5s ease, background-color 0.5s ease;
    -moz-transition: color 0.5s ease, background-color 0.5s ease;
    -o-transition: color 0.5s ease, background-color 0.5s ease;
}

    .subscribe .signup-button:hover {
        background-color: rgba(52,152,219,0.6);
        color: #ecf0f1;
    }

.signup-button.signup-button-error {
    background-color: rgba(231, 76, 60,0.6);
    color: #ecf0f1;
}

    .signup-button.signup-button-error:hover {
        background-color: rgba(231, 76, 60,0.6);
        color: #ecf0f1;
    }

.signup-button.signup-button-success {
    background-color: rgba(26,188,156,0.8);
    color: transparent;
}


/* === ABOUT === */

.section-about {
    width: 100%;
    height: auto;
    /*background-color: #ecf0f1;*/
    background-color: #8E52A0;
    background: #8e52a0; /* Old browsers */
    background: -moz-linear-gradient(top, #8e52a0 0%, #542960 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8e52a0), color-stop(100%,#542960)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #8e52a0 0%,#542960 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #8e52a0 0%,#542960 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #8e52a0 0%,#542960 100%); /* IE10+ */
    background: linear-gradient(to bottom, #8e52a0 0%,#542960 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8e52a0', endColorstr='#542960',GradientType=0 ); /* IE6-9 */
    display: block;
    position: relative;
    /*color: #5F6061;*/
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    /*line-height: 24px;*/
}

.about-container {
    width: 100%;
    margin-top: 40px;
    display: table;
}

.section-about a {
    color: rgba(41,128,185,0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(41,128,185,0);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

    .section-about a:hover {
        border-bottom: 1px solid rgba(41,128,185,0.8);
    }

.section-about .about-container .about-box {
    display: table-cell;
    padding: 20px;
    background-color: rgba(95,96,97,0.08);
    width: 30%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: justify;
}

.section-about .about-container .about-box-spacer {
    display: table-cell;
    width: 5%;
}

.section-about .about-container .about-box span {
    display: block;
    width: 100%;
    text-align: center;
    height: 50px;
    font-size: 64px;
    margin-top: 50px;
    margin-bottom: 70px;
    color: rgba(41,128,185,0.6);
}

.section-about .about-container .about-box h3 {
    margin: 0px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.section-about .about-container .about-box p {
    margin-bottom: 0px;
    margin-top: 20px;
    color: rgba(95,96,97,0.7);
}

/* === ABOUT 2 === */

.section-about-2 {
    width: 100%;
    height: auto;
    background: url('../images/doktorer.jpg') no-repeat #ffffff;
    background-position: left bottom;
    background-size: contain;
    display: block;
    position: relative;
    color: #000000;
    padding-top: 80px;
    padding-bottom: 80px;
    /*line-height: 24px;*/
    text-align: center;
}

    .section-about-2:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(255,255,255,0.5);
        z-index: 100;
    }

/* === ABOUT 3 === */

.section-about-3 {
    width: 100%;
    height: auto;
    /*background-color: #000000;*/
    background: url('../images/konferens.jpg') repeat-x;
    -webkit-background-size: cover; /* For WebKit*/
    -moz-background-size: cover; /* Mozilla*/
    -o-background-size: cover; /* Opera*/
    background-size: cover; /* Generic*/
    display: block;
    position: relative;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    /*line-height: 24px;*/
    text-align: center;
}

    .section-about-3 ul {
        padding: 0;
        list-style: none;
        text-align: left;
        margin-top: 50px;
    }

        .section-about-3 ul > li {
            display: inline-block;
            width: 40%;
            margin-bottom: 40px;
            margin-right: 40px;
            margin-left: 40px;
            vertical-align: top;
        }

            .section-about-3 ul > li a {
                text-decoration: none;
            }

.section-about-3-register {
    margin-top: 50px;
}

    .section-about-3-register a {
        border: 1px solid #ffffff;
        padding: 10px 20px;
        font-size: 1.5em;
        font-weight: 300;
        text-decoration: none;
    }

.conference-table-row {
    display: table;
    opacity: 0.8;
    width: 100%;
    height: 110px;
}

.conference-table-cell {
    display: table-cell;
}

.conference-date {
    text-align: center;
    background-color: #8E52A0;
    color: #ffffff;
    vertical-align: middle;
    padding: 10px;
    width: 65px;
    white-space: nowrap;
}

    .conference-date span {
        font-size: 1.5em;
    }

.conference-info {
    background-color: #ffffff;
    color: #000000;
    vertical-align: middle;
    padding: 10px;
    padding-left: 20px;
}

/* === CONTACT === */

.contact-box-container {
    width: 100%;
    display: table;
}

.section-contact {
    width: 100%;
    height: auto;
    background-color: transparent;
    display: block;
    position: relative;
    z-index: 2000;
    color: #ecf0f1;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    /*line-height: 24px;*/
}

    .section-contact:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(70,70,70,0.8);
        z-index: 100;
    }

.contact-box {
    display: table-cell;
    width: 47.5%;
    text-align: left;
    overflow: hidden;
}

.contact-box-spacer {
    display: table-cell;
    width: 5%;
}

.contact-box.left {
    vertical-align: top;
}

.contact-box.right {
    position: relative;
    margin-bottom: 0px;
}

.contact-box.left ul {
    list-style: none;
    font-size: 22px;
    line-height: 32px;
    margin-top: 40px;
    padding: 0px;
    text-align: left;
    position: relative;
}

    .contact-box.left ul li {
        margin-bottom: 20px;
        padding-left: 48px;
        margin-top: 0px;
    }

        .contact-box.left ul li i.fa {
            margin-left: -48px;
            margin-right: 25px;
            color: rgba(236, 240, 241,0.5);
        }

    .contact-box.left ul a {
        position: absolute;
        max-width: 100%;
    }

.antispam {
    display: none !important;
}

.contact-box.right input[type='text'], .contact-box.right input[type='email'] {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    outline: none;
    border-radius: 0px;
    border: none;
    background-color: rgba(236,240,241,0.8);
    color: rgba(95,96,97,0.8);
    font-size: 16px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: padding-box;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-bottom: 20px;
}

    .contact-box.right input[type='text']:focus, .contact-box.right input[type='email']:focus {
        color: rgba(95,96,97,1);
        background-color: rgba(236,240,241,1);
    }

.contact-box.right .message-box {
    width: 100%;
    max-width: 100%;
    min-height: 200px;
    padding: 20px;
    font-family: 'Lato', sans-serif;
    outline: none;
    border-radius: 0px;
    border: none;
    background-color: rgba(236,240,241,0.8);
    color: rgba(95,96,97,0.8);
    font-size: 16px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: padding-box;
    transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
    -moz-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
    margin-bottom: 20px;
    resize: vertical;
}

    .contact-box.right .message-box:focus {
        color: rgba(95,96,97,1);
        background-color: rgba(236,240,241,1);
    }

.contact-box.right input[type='submit'] {
    width: auto;
    height: 50px;
    background-color: rgba(236,240,241,0.8);
    border: none;
    outline: none;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    border-radius: 0px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    color: rgba(95,96,97,0.8);
    border: none;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-background-clip: padding-box;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .contact-box.right input[type='submit']:hover {
        background-color: rgba(52,152,219,0.6);
        color: #ecf0f1;
    }

.contact-box a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .contact-box a:hover {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }


.contact-button-error {
    background-color: rgba(231, 76, 60,0.8) !important;
    color: #ecf0f1 !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.contact-response {
    display: inline-block;
    opacity: 0;
    float: right;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .contact-response.contact-error {
        opacity: 1;
        color: #ecf0f1;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.contact-form-input {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border: 2px solid rgba(231, 76, 60, 0) !important;
}

    .contact-form-input.contact-form-error {
        border: 2px solid rgba(231, 76, 60, 1.0) !important;
        background-color: rgba(236,240,241,1) !important;
    }

#contact-success {
    display: none;
    width: 100%;
    height: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(26,188,156,0.8);
    color: #ecf0f1;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    text-align: left;
}

    #contact-success i.fa {
        margin-right: 20px;
    }

.contact-loading {
    display: none;
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 500;
    margin-top: -50px;
}

    .contact-loading .loading {
        width: 18px;
        height: 18px;
        position: relative;
        float: right;
        margin-top: 13px;
        border-bottom: 3px solid rgba(233,233,233,1);
        border-left: 3px solid rgba(233,233,233,1);
        border-right: 3px solid rgba(233,233,233,0.5);
        border-top: 3px solid rgba(233,233,233,0.5);
    }


/* === FOOTER === */

.section-footer {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: block;
    position: relative;
    z-index: 2000;
    color: rgba(236,240,241,0.4);
    padding-top: 60px;
    padding-bottom: 60px;
    line-height: 24px;
    font-weight: 300;
}

.footer-container {
    width: 100%;
    display: table;
}

.footer-block {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
}

    .footer-block:last-child {
        text-align: right;
    }

.footer-block-middle a.footer-img {
    display: inline-block;
    padding: 0px;
    line-height: normal;
    margin-right: 50px;
    vertical-align: middle;
}

    .footer-block-middle a.footer-img img {
        max-height: 100px;
        outline: none;
        border: none;
    }

.footer-block-middle {
    display: table-cell;
    width: 100%;
    text-align: center;
}

.footer-spacer {
    display: table-cell;
    width: 2.5%;
}

.section-footer a {
    color: rgba(236,240,241,0.4);
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .section-footer a:hover {
        color: rgba(236,240,241,1);
    }

.section-footer i.fa {
    color: rgba(236,240,241,0.4);
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.section-footer a.footer-social {
    display: inline-block;
    margin-right: 15px;
}

    .section-footer a.footer-social:hover i.fa {
        color: rgba(236,240,241,1);
    }


/* === RESPONSIVE CSS === */

@media all and (max-width: 1109px) {
    .contact-box-container {
        display: block;
        width: 100%;
    }

    .contact-box {
        width: 100%;
        display: block;
        margin-bottom: 10%;
    }

    .contact-box-spacer {
        width: 0%;
        height: 0%;
    }

    .footer-container {
        display: block;
        width: 100%;
    }

    .footer-block, .footer-block-middle {
        width: 100%;
        display: block;
        margin-bottom: 40px;
        text-align: center !important;
    }

        .footer-block:last-child {
            margin-bottom: 0px;
        }

    .footer-spacer {
        width: 0%;
        height: 0%;
    }

    .section-about-3 ul > li {
        width: 100%;
        margin-left: 0;
    }
}

@media all and (max-width: 989px) {
    #countdown .countdown-elem h2 {
        font-size: 32px;
    }

    #countdown .countdown-elem span {
        margin-top: -20px;
    }
}

@media all and (max-width: 599px) {
    .subscribe {
        height: 130px;
    }

        .subscribe .signup-button {
            width: 100%;
            margin-top: 20px;
            margin-bottom: 10px;
        }

    .enteremail {
        width: 100%;
    }

    #signup-response {
        height: auto;
        min-height: 50px;
    }

    .signup-button.signup-button-success {
        display: none;
    }

    #countdown .countdown-elem {
        width: 46%;
    }

        #countdown .countdown-elem.elem-days, #countdown .countdown-elem.elem-hours {
            margin-bottom: 8%;
        }

    #countdown .countdown-spacer {
        width: 8%;
    }

        #countdown .countdown-spacer.central-spacer {
            display: none;
        }

    #countdown .countdown-elem h2 {
        font-size: 30px;
    }

    .section-about .about-container {
        display: block;
    }

        .section-about .about-container .about-box {
            width: 100%;
            display: block;
            margin-bottom: 10%;
        }

            .section-about .about-container .about-box:last-child {
                margin-bottom: 0px;
            }

        .section-about .about-container .about-box-spacer {
            width: 0%;
        }

    .contact-box.left ul {
        font-size: 16px;
        max-width: 100%;
    }

    .contact-box.right input[type='submit'] {
        width: 100%;
    }

    .contact-response {
        width: 100%;
        float: none;
        height: auto;
        text-align: center;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 10px;
        padding: 0px;
        line-height: 24px;
    }

    .contact-loading {
        margin-top: 0px;
    }

        .contact-loading .loading {
            position: absolute;
            float: none;
            margin-top: 30px;
        }

    .section-contact {
        padding-bottom: 40px;
    }

    #contact-success {
        height: auto;
        line-height: 24px;
        padding: 20px;
    }

    h2.section-title {
        font-size: 1.5em;
    }

    .footer-block-middle a.footer-img {
        margin-right: 0;
        margin-bottom: 50px;
    }

    .section-about-3-register a {
        font-size: 1em;
    }
}
