/*-------------------------------------------------------------------------------------------------------------
COLORS
---------------------------------------------------------------------------------------------------------------
RED (485 C)
#da291c;
rgba(218,41,28,1);

PURPLE (2607 C)
#500778;
rgba(80,7,120,1);

PURPLE DARK (276 C)
#221c35;
rgba(34,28,53,1);

ORANGE (152 C)
#e57200;
rgba(229,114,0,1);

TEAL (3262 C)
#00bfb3;
rgba(0,191,179,1);


-------------------------------------------------------------------------------------------------------------

GREY
#555;

GREY MEDIUM
#999;

GREY LIGHT
#ccc;

GREY EXTRA LIGHT
#eee;

GREY EXTRA EXTRA LIGHT
#f5f5f5;

-------------------------------------------------------------------------------------------------------------*/
.color-swatch__container {
    display: flex;
    flex-direction: column;
}

.color-swatch {
    color: #fff;
    height: 5em;
    padding: 1em;
}


/*-------------------------------------------------------------------------------------------------------------
TYPOGRAPHY
-------------------------------------------------------------------------------------------------------------*/
html, body {
    height: 100%;
}

body {
    font-family: "Hind", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #555;
}


/*-------------------------
HEADINGS
-------------------------*/
.heading-example {
    color: inherit;
    padding: 1rem 0;
    border-bottom: 1px dashed #999;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h1 {
    color: #da291c;
    font-size: 3.25em;
    line-height: 1;
}

h2 {
    color: #da291c;
    font-size: 2em;
    line-height: 1.1;
    margin: 1em 0 0.15em 0;
}

h3 {
    color: #500778;
    font-size: 1.35em;
    line-height: 1.2;
    margin-top: 1em;
    margin-bottom: 0.25em;
}

h4 {
    font-size: 1.075em;
    margin-top: 1.25em;
    margin-bottom: 0.25em;
}

.page-heading {
    color: #da291c;
    margin-top: 1em;
}

abbr,
abbr[title],
abbr[data-original-title] {
    border-bottom: none;
    border-color: transparent;
    cursor: default;
    text-decoration: none;
}

/*-------------------------
PARAGRAPHS
-------------------------*/
p {
    margin-bottom: 1em;
}

.lead {
    font-size: 1.275em;
}

.lead--white {
    color: #fff;
}

/*-------------------------
LINKS
-------------------------*/
a {
    color: inherit;
}

    a:hover,
    a:focus,
    a.active {
        outline: 0;
        color: #da291c;
        text-decoration: underline;
        text-decoration-skip: ink;
    }

p a,
small a {
    text-decoration: underline;
    text-decoration-skip: ink;
    transition: all 0.25s;
    word-wrap: break-word;
}


/*-------------------------------------------------------------------------------------------------------------
LIST BULLETS
-------------------------------------------------------------------------------------------------------------*/
.list-bullets {
    padding-left: 0;
}

.list-bullets__item {
    background: url(../images/bullets/bullet.svg) no-repeat 1px 7px;
    background-size: 5px;
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0.25em;
    list-style: none;
}

.list-bullets .list-bullets__item:last-child {
    margin-bottom: 1em;
}

/*-------------------------
LIST -  BULLETS
-------------------------*/
.bullets-multicol {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}

@media screen and (min-width: 1000px) {
    .bullets-multicol {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
}

@media screen and (max-width: 480px) {
    .bullets-multicol {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}


/*-------------------------
LIST - NO BULLETS
-------------------------*/
.list__no-bullets {
    list-style: none;
    padding: 0;
}


/*-------------------------------------------------------------------------------------------------------------
LIST GRID
-------------------------------------------------------------------------------------------------------------*/
/*FLEXBOX FALLBACK FOR LIST-GRID*/
.list-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    height: calc(100vh - 70px);
}

.list-grid__item {
    overflow: hidden;
    flex-basis: calc(99.5% / 3);
    border: 1px solid #fff;
    flex-grow: 3;
}

@media screen and (max-width: 767px) {
    .list-grid__item {
        flex-basis: calc(100% / 1);
    }
}

@supports (grid-area: auto) {
    .list-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-grid__link {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5vw;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.25);
    transition: all 0.25s ease-in-out;
}

    .list-grid__link:hover,
    .list-grid__link:focus {
        color: #fff;
        background-color: rgba(34,28,53,0.65);
        text-decoration: none;
    }

.list-grid__subheading {
    color: #fff;
    font-size: calc(16px + .5vw);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.025em;
    margin-bottom: 0.15em;
    text-transform: uppercase;
    animation-delay: 0.5s;
}

.list-grid__heading {
    color: #fff;
    font-size: calc(46px + .5vw);
    margin: 0;
    animation-delay: 0.5s;
}

.list-grid .au {
    background-image: url(../images/navigation/au.jpg);
    background-position: center center, center center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-column: 1/2;
}

.list-grid .cn {
    background-image: url(../images/navigation/cn.jpg);
    background-position: center center, center center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-column: 2/3;
}

.list-grid .nz {
    background-image: url(../images/navigation/nz.jpg);
    background-position: center center, center center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-column: 3/4;
}

@media screen and (max-width: 767px) {
    .list-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .list-grid__heading {
        line-height: 1;
    }

    .list-grid__link {
        padding: 11vh 3vw;
    }

    .list-grid .au {
        grid-column: auto;
    }

    .list-grid .cn {
        grid-column: auto;
    }

    .list-grid .nz {
        grid-column: auto;
    }
}


/*-------------------------------------------------------------------------------------------------------------
SECTIONING ELEMENTS
-------------------------------------------------------------------------------------------------------------*/
.section {
    position: relative;
    padding: 8vh 0;
}

.section__page-header {
    padding-bottom: 0;
}

.section__institutions-list {
    margin-bottom: 3em;
}

.section h2:first-of-type {
    margin-top: 0;
}

.section-img {
    margin-bottom: 1em;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
}


/*-------------------------
SECTION COLORS
-------------------------*/
.bg-red {
    background-color: #da291c;
}

.bg-purple {
    background-color: #500778;
}

.bg-purple-dark {
    background-color: #221c35;
}

.bg-purple-light {
    background-color: rgba(80,7,120,0.10);
}

.bg-purple p,
.bg-purple h2,
.bg-purple h3,
.bg-purple-dark p,
.bg-purple-dark h2,
.bg-purple-dark .testimonial__quote,
.bg-purple-dark .testimonial__details {
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.bg-orange {
    background-color: #e57200;
}

.bg-teal {
    background-color: #00bfb3;
}

.bg-grey {
    background-color: #555;
}

.bg-grey-medium {
    background-color: #999;
}

.bg-grey-light {
    background-color: #f5f5f5;
}

.bg-gradient {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#da291c+0,500778+100 */
    background: rgb(218,41,28); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(218,41,28,1) 0%, rgba(80,7,120,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(218,41,28,1) 0%,rgba(80,7,120,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(218,41,28,1) 0%,rgba(80,7,120,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da291c', endColorstr='#500778',GradientType=1 ); /* IE6-9 */
}



/*-------------------------
HR
-------------------------*/
hr {
    margin-top: 1em;
    margin-bottom: 1em;
    border: 0;
    border-top: 1px solid #ccc;
}

/*-------------------------
ADDRESS
-------------------------*/
.address {
    margin-bottom: 1em;
}


/*-------------------------------------------------------------------------------------------------------------
TESTIMONIALS
-------------------------------------------------------------------------------------------------------------*/
.testimonial {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    margin: 1em;
    padding: 0;
}

.testimonial__flag {
    position: absolute;
    top: 2em;
    left: 2em;
    transform: rotate(-3deg);
    transform-origin: bottom left;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.35);
}

.testimonial__image {
    margin-right: 2em;
    max-width: 280px;
    flex: 0 0 auto;
}

.testimonial__text {
}

.testimonial__quote {
    font-family: "Kalam", Helvetica, Arial, sans-serif;
    font-size: 1.85em;
    line-height: 1.2;
    margin-bottom: 0.5em;
    word-spacing: -0.125em;
}

.testimonial__name {
    color: #e57200;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonial__details {
}

@media screen and (max-width: 991px) {
    .testimonial {
        flex-wrap: wrap;
        text-align: center;
    }

    .testimonial__flag {
        display: none;
    }

    .testimonial__image {
        margin: 0 auto 2em auto;
        max-width: 230px;
    }

    .testimonial__quote {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .testimonial__quote {
        font-size: 1.275em;
    }
}


/*-------------------------------------------------------------------------------------------------------------
BUTTONS
-------------------------------------------------------------------------------------------------------------*/
.btn {
    color: #fff;
    font-size: 0.9em;
    text-transform: uppercase;
    padding: 0.35em 0.75em 0.25em 0.75em;
    margin: 1em 0;
    background-color: #da291c;
    border-radius: 0;
    transition: 0.25s ease-in-out;
}

    .btn:hover,
    .btn:focus,
    .btn:active {
        color: #fff;
    }

.btn-skew:hover,
.btn-skew:focus {
    transform: rotate(-3deg);
    transform-origin: bottom left;
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.35);
}

.btn-ghost {
    background-color: transparent;
    color: #555;
    border: 1px solid #555;
}

    .btn-ghost:hover,
    .btn-ghost:focus {
        background-color: #da291c;
        border-color: #da291c;
    }

.btn--disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

    .btn--disabled.btn-skew:hover,
    .btn--disabled.btn-skew:focus {
        transform: none;
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }


/*-------------------------------------------------------------------------------------------------------------
SKIP LINK 
-------------------------------------------------------------------------------------------------------------*/
a.skip-link {
    color: #fff;
    position: absolute;
    top: -15em;
    left: 2em;
    padding: 1.65em 1em;
    background-color: #da291c;
    text-decoration: none;
    outline: 2px dotted #000;
    z-index: 9999;
    transform: rotate(-3deg);
}

.skip-link:focus {
    top: 1.5em;
}


/*-------------------------------------------------------------------------------------------------------------
GLOBAL NAV
-------------------------------------------------------------------------------------------------------------*/
.global-nav {
    position: relative;
    background-color: rgba(255,255,255,1);
    padding: 0 0 0 1vw;
    margin: 0;
    z-index: 1000;
}

    .global-nav .nav > li > a {
        color: #555;
        font-size: 1.025em;
        font-weight: 600;
        padding: 1.5em 1vw;
        margin-bottom: 0;
        transition: all 0.25s ease-in-out;
    }

        .global-nav .nav > li > a:hover,
        .global-nav .nav > li > a:focus {
            color: #da291c;
        }


/*changes cursor for dropdown level 1 items*/
.dropdown .dropdown-toggle {
    cursor: default;
    outline: inherit;
}

/*changes cursor for main nav items with a dropdown menu*/
.global-nav .nav > li.dropdown > a.dropdown-toggle {
    cursor: pointer;
}


/*-------------------------
GLOBAL NAV LOGO
-------------------------*/
.navbar-brand {
    padding-top: 10px;
}

.global-nav__logo-container {
    margin: 0;
}

.global-nav__logo {
    max-width: 160px;
    z-index: 2000;
}

.global-nav__tagline {
    max-width: 150px;
    z-index: 2000;
}

@media screen and (max-width: 1030px) {
    .global-nav__tagline {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .global-nav .nav > li > a {
        padding: 1em;
    }

    .global-nav__list-item:first-of-type {
        padding-top: 2.5em;
    }

    .global-nav__contact,
    .global-nav__register {
        margin-left: 0;
    }

    .global-nav__logo {
        max-width: 130px;
    }
}



/*-------------------------
DROPDOWN MENU - LEVEL 1
-------------------------*/
.dropdown-menu {
    font-family: "Open Sans", Helvetica, Arial, Sans-serif;
    text-transform: none;
    background: #ebebeb;
    padding: 0;
    border-radius: 0;
    border: none;
    min-width: 240px;
    box-shadow: none;
}

    .dropdown-menu li {
        font-size: 0.9em;
        padding: 0;
        vertical-align: middle;
        /*	border-left: 4px solid #ebebeb;*/
        transition: all 0.25s;
    }

        .dropdown-menu li:hover,
        .dropdown-menu li:focus,
        .dropdown-menu li:active {
            color: #fff;
        }


        .dropdown-menu li a {
            padding: 1em 0.75em;
        }

    .dropdown-menu > li > a:focus {
        background: #eee;
    }

.navbar-right .dropdown-menu {
    left: 0;
}




/*-------------------------------------------------------------------------------------------------------------
VERTICAL TABS (on destinations pages) taken from https://codepen.io/joshadamous/pen/wJKzv/
-------------------------------------------------------------------------------------------------------------*/
.tabs-left {
    margin-top: 3rem;
}

.nav-tabs {
    float: left;
    border-bottom: 0;
}

    .nav-tabs li {
        float: none;
        margin: 0;
    }

        .nav-tabs li a {
            margin-right: 0;
            border: 0;
            background-color: #eee;
        }

            .nav-tabs li a:hover {
                background-color: #ccc;
            }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        border: 0;
    }

.tab-content {
    margin-left: 45px;
}

    .tab-content .tab-pane {
        display: none;
        background-color: #fff;
        padding: 1.6rem;
        overflow-y: auto;
    }

    .tab-content .active {
        display: block;
    }

.list-group {
    width: 100%;
}

    .list-group .list-group-item {
        height: 50px;
    }

        .list-group .list-group-item h4,
        .list-group .list-group-item span {
            line-height: 11px;
        }



/*-------------------------------------------------------------------------------------------------------------
GLOBAL FOOTER
-------------------------------------------------------------------------------------------------------------*/
.global-footer {
    color: #fff;
    background-color: #555;
}

.global-footer__logo {
    margin-top: 0.65em;
    max-width: 120px;
}

.global-footer__list {
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 767px) {
    .global-footer__list-item {
        line-height: 1.2;
        margin-bottom: 0.5em;
    }
}

.global-footer__above {
    padding: 5vh 0;
}

.global-footer__below {
    color: #999;
    padding: 1.25em 0 0.5em 0;
    background-color: #eee;
}

    .global-footer__below a {
        color: inherit;
    }

        .global-footer__below a:hover,
        .global-footer__below a:focus {
            color: #da291c;
        }

/*-------------------------------------------------------------------------------------------------------------
ICONS
-------------------------------------------------------------------------------------------------------------*/
/*
.icon__external-link {
    max-width: 0.6em;
    margin-left: 0.25em;
}
*/

/*-------------------------------------------------------------------------------------------------------------
CAROUSELS
-------------------------------------------------------------------------------------------------------------*/
.carousel {
    margin: 0;
}

#testimonials .carousel-inner {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    #testimonials .carousel-inner {
        width: 90%;
    }
}



/*-------------------------
CAROUSEL CONTROL
-------------------------*/
.carousel-control {
    width: 10%;
    display: flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

.carousel__icon {
    background-repeat: no-repeat;
    height: 1.5em;
    width: 2.5em;
    opacity: 0.5;
}

.carousel-control.right .carousel__icon {
    background-image: url(../images/icons/icon-arrow-right.svg);
}

.carousel-control.left .carousel__icon {
    background-image: url(../images/icons/icon-arrow-left.svg);
}


.carousel-control.left,
.carousel-control.right {
    background-image: none;
    text-shadow: none;
    transition: all 0.25s ease-in-out;
}

    .carousel-control.right:hover .carousel__icon,
    .carousel-control.right:focus .carousel__icon,
    .carousel-control.left:hover .carousel__icon,
    .carousel-control.left:focus .carousel__icon {
        opacity: 1;
    }




/*-------------------------
CAROUSEL INDICATORS
-------------------------*/
.carousel-indicators {
    position: relative;
    text-align: center;
    padding: 0 1em;
    margin: 0;
    width: auto;
    left: auto;
    bottom: auto;
}

    .carousel-indicators li {
        background-color: #555;
        border-color: #555;
        opacity: 0.25;
    }

        .carousel-indicators li,
        .carousel-indicators li.active {
            width: 3em;
            height: 3px;
            border-radius: 0;
        }

            .carousel-indicators li.active {
                border-color: #da291c;
                background-color: #da291c;
                opacity: 1;
            }


/*-------------------------
CAROUSEL FADE
-------------------------*/
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.carousel-fade .carousel-control {
    z-index: 2;
}

.carousel-caption {
    color: #555;
}

/*Bootstrap Overide – Centers image in the carousel*/
.carousel-inner > .item > img {
    margin: 0 auto;
}


/*-------------------------------------------------------------------------------------------------------------
ACCORDIANS
-------------------------------------------------------------------------------------------------------------*/
.panel {
    box-shadow: none;
    background-color: transparent;
}

.panel-group {
    border-bottom: 1px solid #ccc;
}


    .panel-group .panel + .panel {
        margin: 0 0 0.025em 0;
    }

    .panel-group .panel {
        border-radius: 0; /*overides Bootrap styles*/
    }

.panel-default {
    border: none; /*overides Bootrap styles*/
    border-color: #ccc; /*overides Bootrap styles*/
    border-top: 1px solid #ccc;
}

.panel-heading {
    background-color: transparent !important;
}

.panel-default > .panel-heading {
    padding: 0; /*overides Bootrap styles*/
    background-color: transparent !important;
}


.panel-title a {
    color: #555;
    font-size: 1.25em;
    font-weight: 400;
    display: block;
    padding: 0.75em 0;
    transition: all 0.25s ease-in-out;
    background-color: transparent;
}

    .panel-title a:hover,
    .panel-title a:focus {
        color: #e57200;
        text-decoration: none;
    }


a .panel-title__icon {
    float: right;
    display: inline-block;
    width: 0.85em;
    height: 0.85em;
    background: url(../images/icons/icon-minus.svg) no-repeat;
}

a.collapsed .panel-title__icon {
    background: url(../images/icons/icon-plus.svg) no-repeat;
}


.panel-body {
    border: none !important;
    padding: 1em;
}





/*-------------------------------------------------------------------------------------------------------------
FORMS
-------------------------------------------------------------------------------------------------------------*/
label {
    font-weight: 400;
    margin-bottom: 0.5em;
}

.form {
}

.form-contact {
    margin-top: 4em;
}

.form-section {
    background-color: #fff;
    padding: 0.5em 1.5em 0.25em 1.5em;
    margin-bottom: 1.5em;
}

.form-group {
    margin-bottom: 1.25em;
}

.form-control {
    color: inherit;
    font-size: 1.35em;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    border: none; /*removes Bootstraps styling*/
    border-bottom: 1px solid #555;
    box-shadow: none;
    transition: border 0.25s ease-in-out;
    outline: 0;
}

    .form-control:hover {
        border-bottom: 2px solid #da291c;
    }

    .form-control:focus {
        border-bottom: 2px solid #da291c;
    }

textarea {
    font-size: 1.35em;
    font-weight: 700;
    width: 100%;
    padding: 0.5em;
    background-color: transparent;
}

    textarea::placeholder {
        color: #ccc;
        font-weight: 400;
    }

fieldset {
    margin-bottom: 1em;
}

select {
    padding-left: 0;
}

input::-webkit-input-placeholder {
    color: #ccc !important;
    font-weight: 400;
}

input::-moz-placeholder {
    color: #ccc !important;
    font-weight: 400;
}
/* Firefox 18- */
input::-moz-placeholder {
    color: #ccc !important;
    font-weight: 400;
}
/* Firefox 19+ */
input::-ms-input-placeholder {
    color: #ccc !important;
    font-weight: 400;
}
/* oldIE ;) */
input::placeholder {
    color: #ccc !important;
    font-weight: 400;
}

/*Forms - makes placeholder text transparent upon focus*/
input:focus::-webkit-input-placeholder {
    color: transparent !important;
}

input:focus:-moz-placeholder {
    color: transparent !important;
}
/* Firefox 18- */
input:focus::-moz-placeholder {
    color: transparent !important;
}
/* Firefox 19+ */
input:focus:-ms-input-placeholder {
    color: transparent !important;
}
/* oldIE ;) */


.bg-purple-dark label {
    color: #ccc;
}

.bg-purple-dark .form-control {
    color: #fff;
}

.bg-purple-dark input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #555;
}

.bg-purple-dark input::-moz-placeholder { /* Firefox 19+ */
    color: #555;
}

.bg-purple-dark input::-ms-input-placeholder { /* IE 10+ */
    color: #555;
}

.bg-purple-dark input::-moz-placeholder { /* Firefox 18- */
    color: #555;
}


input[type=checkbox] {
    transform: scale(1.15);
    margin-right: 0.25em;
}


/*-------------------------------------------------------------------------------------------------------------
HOME HERO
-------------------------------------------------------------------------------------------------------------*/
.home-hero {
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../images/home/hero-home.jpg);
    /*    background-image: url(../images/home/hero-home.svg);*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-hero__text {
    margin: 0 0 5vh 8vw;
    font-size: 1.5vmin;
}

.home-hero__heading {
    color: inherit;
    font-size: 5.15em;
    letter-spacing: -0.0275em;
    line-height: 1;
}

.home-hero__subheading {
    margin-bottom: 0.75em;
}

.home-hero__highlight {
    font-family: "Kalam", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #da291c;
}

.home-hero__options {
    font-size: 1.65em;
}

    .home-hero__options a {
        display: inline-block;
        margin-bottom: 0.35em;
        text-decoration: none;
    }

    .home-hero__options img {
        max-width: 1.75em;
        margin-right: 0.5em;
        transition: all 0.25s ease-in-out;
    }

    .home-hero__options a:hover,
    .home-hero__options a:focus {
        transition: all 0.25s ease-in-out;
    }

        .home-hero__options a:hover img,
        .home-hero__options a:focus img {
            transform: rotate(-3deg);
            transform-origin: bottom left;
            box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.35);
        }

.home-hero__image {
    display: none;
}

@media screen and (max-width: 767px) {
    .home-hero__options {
        font-size: 2em;
    }
}

@media screen and (max-width: 480px) {
    .home-hero {
        height: auto;
        background-image: none;
        background-color: #f5f5f5;
    }

    .home-hero__image {
        display: block;
        margin-top: 2em;
    }
    /*resets the text size so it's not based on device size*/
    .home-hero__text {
        font-size: inherit;
        margin: 1.25em;
    }

    .home-hero__heading {
        font-size: 2.65em;
    }

    .home-hero__options {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 370px) {
    .home-hero__heading {
        font-size: 2.5em;
    }

    .home-hero__options {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 350px) {
    .home-hero__heading {
        font-size: 2.25em;
    }

    .home-hero__options {
        font-size: 1.15em;
    }
}


/*-------------------------------------------------------------------------------------------------------------
HERO CAROUSEL
-------------------------------------------------------------------------------------------------------------*/
.hero__carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero__carousel-inner {
    height: calc(100vh - 115px);
}

    .hero__carousel-inner .item {
        height: 100%;
        width: 100%;
    }

.hero__carousel-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 115px);
    width: 100%;
}


/*-------------------------
HERO CAROUSEL IMAGE AU
-------------------------*/
.hero__carousel-image-au-1 {
    background-image: url(../images/study-destinations/hero-au-1.jpg);
}

.hero__carousel-image-au-2 {
    background-image: url(../images/study-destinations/hero-au-2.jpg);
}

.hero__carousel-image-au-3 {
    background-image: url(../images/study-destinations/hero-au-3.jpg);
}

.hero__carousel-image-au-4 {
    background-image: url(../images/study-destinations/hero-au-4.jpg);
}

.hero__carousel-image-au-5 {
    background-image: url(../images/study-destinations/hero-au-5.jpg);
}

.hero__carousel-image-au-6 {
    background-image: url(../images/study-destinations/hero-au-6.jpg);
}

.hero__carousel-image-au-7 {
    background-image: url(../images/study-destinations/hero-au-7.jpg);
}

@media screen and (max-width: 480px) {
    .hero__carousel-image-au-1 {
        background-image: url(../images/study-destinations/hero-au-1-sm.jpg);
    }

    .hero__carousel-image-au-2 {
        background-image: url(../images/study-destinations/hero-au-2-sm.jpg);
    }

    .hero__carousel-image-au-3 {
        background-image: url(../images/study-destinations/hero-au-3-sm.jpg);
    }

    .hero__carousel-image-au-4 {
        background-image: url(../images/study-destinations/hero-au-4-sm.jpg);
    }

    .hero__carousel-image-au-5 {
        background-image: url(../images/study-destinations/hero-au-5-sm.jpg);
    }

    .hero__carousel-image-au-6 {
        background-image: url(../images/study-destinations/hero-au-6-sm.jpg);
    }

    .hero__carousel-image-au-7 {
        background-image: url(../images/study-destinations/hero-au-7-sm.jpg);
    }
}


/*-------------------------
HERO CAROUSEL IMAGE CN
-------------------------*/
.hero__carousel-image-cn-1 {
    background-image: url(../images/study-destinations/hero-cn-1.jpg);
}

.hero__carousel-image-cn-2 {
    background-image: url(../images/study-destinations/hero-cn-2.jpg);
}

.hero__carousel-image-cn-3 {
    background-image: url(../images/study-destinations/hero-cn-3.jpg);
}

.hero__carousel-image-cn-4 {
    background-image: url(../images/study-destinations/hero-cn-4.jpg);
}

.hero__carousel-image-cn-5 {
    background-image: url(../images/study-destinations/hero-cn-5.jpg);
}

.hero__carousel-image-cn-6 {
    background-image: url(../images/study-destinations/hero-cn-6.jpg);
}

.hero__carousel-image-cn-7 {
    background-image: url(../images/study-destinations/hero-cn-7.jpg);
}

@media screen and (max-width: 480px) {
    .hero__carousel-image-cn-1 {
        background-image: url(../images/study-destinations/hero-cn-1-sm.jpg);
    }

    .hero__carousel-image-cn-2 {
        background-image: url(../images/study-destinations/hero-cn-2-sm.jpg);
    }

    .hero__carousel-image-cn-3 {
        background-image: url(../images/study-destinations/hero-cn-3-sm.jpg);
    }

    .hero__carousel-image-cn-4 {
        background-image: url(../images/study-destinations/hero-cn-4-sm.jpg);
    }

    .hero__carousel-image-cn-5 {
        background-image: url(../images/study-destinations/hero-cn-5-sm.jpg);
    }

    .hero__carousel-image-cn-6 {
        background-image: url(../images/study-destinations/hero-cn-6-sm.jpg);
    }

    .hero__carousel-image-cn-7 {
        background-image: url(../images/study-destinations/hero-cn-7-sm.jpg);
    }
}



/*-------------------------
HERO CAROUSEL IMAGE NZ
-------------------------*/
.hero__carousel-image-nz-1 {
    background-image: url(../images/study-destinations/hero-nz-1.jpg);
}

.hero__carousel-image-nz-2 {
    background-image: url(../images/study-destinations/hero-nz-2.jpg);
}

.hero__carousel-image-nz-3 {
    background-image: url(../images/study-destinations/hero-nz-3.jpg);
}

.hero__carousel-image-nz-4 {
    background-image: url(../images/study-destinations/hero-nz-4.jpg);
}

.hero__carousel-image-nz-5 {
    background-image: url(../images/study-destinations/hero-nz-5.jpg);
}

.hero__carousel-image-nz-6 {
    background-image: url(../images/study-destinations/hero-nz-6.jpg);
}

.hero__carousel-image-nz-7 {
    background-image: url(../images/study-destinations/hero-nz-7.jpg);
}

@media screen and (max-width: 480px) {
    .hero__carousel-image-nz-1 {
        background-image: url(../images/study-destinations/hero-nz-1-sm.jpg);
    }

    .hero__carousel-image-nz-2 {
        background-image: url(../images/study-destinations/hero-nz-2-sm.jpg);
    }

    .hero__carousel-image-nz-3 {
        background-image: url(../images/study-destinations/hero-nz-3-sm.jpg);
    }

    .hero__carousel-image-nz-4 {
        background-image: url(../images/study-destinations/hero-nz-4-sm.jpg);
    }

    .hero__carousel-image-nz-5 {
        background-image: url(../images/study-destinations/hero-nz-5-sm.jpg);
    }

    .hero__carousel-image-nz-6 {
        background-image: url(../images/study-destinations/hero-nz-6-sm.jpg);
    }

    .hero__carousel-image-nz-7 {
        background-image: url(../images/study-destinations/hero-nz-7-sm.jpg);
    }
}



/*-------------------------
HERO TEXT
-------------------------*/
.hero__text {
    position: absolute;
    text-align: center;
    font-size: 2vmin;
    z-index: 50;
    padding: 0 2vw;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

@media screen and (max-width: 480px) {
    .hero__text {
        font-size: 3vmin;
    }
}

.hero__heading,
.hero__subheading {
    color: #fff;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.25);
}

.hero__heading {
    font-size: 7em;
    margin-bottom: 0.5em;
    letter-spacing: -0.025em;
    animation-delay: 0.5s;
}

.hero__subheading {
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 0.025em;
    margin-bottom: -0.125em;
    text-transform: uppercase;
    animation-delay: 0.5s;
}

/*-------------------------
HERO OVERLAY
-------------------------*/
.hero__overlay {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    bottom: 0;
    height: 10vh;
    width: 100%;
    z-index: 2000;
    left:0;
}

.hero__overlay-link {
    color: #fff;
    font-size: 2.5em;
    animation-delay: 0.5s;
    background-image: url(../images/icons/icon-arrow-down-rev.svg);
    background-repeat: no-repeat;
    width: 0.85em;
    height: auto;
}

    .hero__overlay-link:hover,
    .hero__overlay-link:focus {
        text-decoration: none;
    }



/*-------------------------------------------------------------------------------------------------------------
PAGE NAV
-------------------------------------------------------------------------------------------------------------*/
.page-nav__container {
    text-align: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 75;
    color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.35);
    background: rgb(218,41,28);
    background: -moz-linear-gradient(left, rgba(218,41,28,1) 0%, rgba(80,7,120,1) 100%);
    background: -webkit-linear-gradient(left, rgba(218,41,28,1) 0%,rgba(80,7,120,1) 100%);
    background: linear-gradient(to right, rgba(218,41,28,1) 0%,rgba(80,7,120,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da291c', endColorstr='#500778',GradientType=1 );
}

.page-nav {
    list-style: none;
    font-size: 1.025em;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    transition: all 0.25s ease-in-out;
    animation-delay: 1.25s;
}

.page-nav__item {
    margin: 0;
    /*    padding: 0.65em 0.85em 0.5em 0.85em;*/
    padding: 1.5vh 0.85em;
}

    .page-nav__item:first-child {
        transition: all 0.25s ease-in-out;
    }

        /*this targets the flag in the page-nav 
and makes it skew on hover*/
        .page-nav__item:first-child:hover,
        .page-nav__item:first-child:focus {
            transform: rotate(-3deg);
            transform-origin: bottom left;
        }


.page-nav__link {
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

    .page-nav__link:hover,
    .page-nav__link:focus {
        color: #999;
        text-decoration: none;
    }

.page-nav__flag {
    max-width: 2em;
}


@media screen and (max-width: 480px) {
    .page-nav {
        justify-content: flex-start;
        overflow-x: scroll;
    }
}


/*-------------------------------------------------------------------------------------------------------------
PAGE INTRO
-------------------------------------------------------------------------------------------------------------*/
.page-intro {
    padding: 10vh 0 6vh 0;
}

.page-intro__text {
    font-size: 1.45em;
    text-align: center;
    max-width: 30em;
    margin: 0 auto;
    color: #da291c;
    /*
    background: linear-gradient(to right, #da291c 0%, #500778 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
*/
}

@media screen and (max-width: 767px) {
    .page-intro__text {
        font-size: 1.25em;
    }
}

.page-intro__map {
    margin: 0 auto;
}

@media screen and (min-width: 1400px) {
    .page-intro__map {
        max-width: 1400px;
    }
}

/*-------------------------------------------------------------------------------------------------------------
STUDY DESTINATIONS PAGE
-------------------------------------------------------------------------------------------------------------*/

/*-------------------------
FACTS
-------------------------*/

/*FLEXBOX FALLBACK FOR GRID*/
.fact-container {
    display: flex;
    flex-wrap: wrap;
    margin: 3em 0 1em 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.fact {
    flex-basis: calc(100% / 5);
    padding: 0 1em 1em 1em;
}

@media screen and (max-width: 767px) {
    .fact {
        flex-basis: calc(100% / 2);
    }
}

@supports (grid-area: auto) {
    .fact-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

    @media screen and (max-width: 767px) {
        .fact-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

.fact__heading {
    color: #e57200;
    color: #da291c;
    font-size: 0.85em;
    text-transform: uppercase;
}

.fact__text {
    color: #999;
    font-size: 1.5em;
    line-height: 1.1;
    margin: 0;
}

.fact__citation {
    color: #999;
}



/*-------------------------
VISA PROCESS
-------------------------*/
.visa-process__accordian {
    margin: 1.5em 0 3em 0;
}

.visa-process {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 1em 0;
}

.visa-process__image {
    position: relative;
    max-width: 100px;
    margin-right: 2em;
    margin-bottom: 1em;
}

.visa-process__text {
    margin-top: 0.5em;
}

@media screen and (max-width: 480px) {
    .visa-process {
        display: block;
    }
}


/*-------------------------
CALL TO ACTION (CTA)
-------------------------*/
.cta__heading {
    color: inherit;
    font-size: 3.25em;
}

.cta__text {
    font-size: 1.25em;
    max-width: 20em;
}

.cta__highlight {
    color: #da291c;
    font-family: "Kalam", Helvetica, Arial, sans-serif;
    font-size: 1.125em;
    font-weight: 700;
    letter-spacing: -0.0125em;
    word-spacing: -0.125em;
    margin-top: 0.025em;
}



/*-------------------------------------------------------------------------------------------------------------
EDUCATION EVENTS
-------------------------------------------------------------------------------------------------------------*/
.upcoming-events {
    position: fixed;
    top: 12vh;
    right: -15em;
    width: 15em;
    padding: 0.75em;
    z-index: 100;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
    transition: all .3s ease-in;
    animation-delay: 1.5s;
}

@media screen and (max-width: 768px) {
    .upcoming-events {
        display: none;
    }
}


.upcoming-events.open {
    right: 0;
    transition: all .3s ease-in;
}

.upcoming-events .upcoming-events__icon.glyphicon.glyphicon-chevron-up {
    transform: rotate(180deg);
    transition: all .3s ease-in;
    top: -2px;
}

.upcoming-events.open .upcoming-events__icon.glyphicon.glyphicon-chevron-up {
    transform: rotate(0deg);
    transition: all .3s ease-in;
}


.upcoming-events.upcoming-events--empty {
    display: none !important;
}


/*-------------------------
UPCOMING EVENTS TAB
-------------------------*/
.upcoming-events__tab {
    color: #fff;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0.75em 0 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
    transform-origin: 0 0;
    background-color: #da291c;
    transition: all ease-in-out 0.25s;
    cursor: pointer;
}

    .upcoming-events__tab:hover,
    .upcoming-events__tab:focus {
        background-color: #500778;
    }

.upcoming-events__heading {
    padding: 0.5em 0.75em;
    margin: 0;
}

.upcoming-events__icon .glyphicon .glyphicon-chevron-up {
    margin: 0 0.5em;
    padding: 0 0.5em;
}

/*-------------------------
UPCOMING EVENTS INFO
-------------------------*/
.upcoming-events__info {
}

.upcoming-events__cta {
    color: #fff;
    margin: 1em 0 0 0;
}

    .upcoming-events__cta a {
        color: #fff;
    }


/*-------------------------
EVENT
-------------------------*/
.event {
    position: relative;
    background-color: #f5f5f5;
    padding: 0.5em;
    margin-bottom: 0.1em;
    transition: all ease-in-out 0.25s;
}

    .event:hover,
    .event:focus {
        background-color: rgba(255,255,255,0.9);
        cursor: pointer;
    }

        .event:hover .event__institution,
        .event:focus .event__institution,
        .event--selected .event__institution {
            color: #da291c;
        }

.event--selected,
.event--selected:hover,
.event--selected:focus {
    background-color: #e5f8f7; /*10% tint of #00bfb3;*/
    border: 1px solid rgba(0,191,179,1);
}

    .event--selected::before {
        content: '';
        position: absolute;
        border-color: rgba(0,191,179,1);
        border-style: solid;
        border-width: 0 0.3em 0.25em 0;
        height: 1em;
        top: 1.3em;
        right: 0.6em;
        margin-top: -1em;
        transform: rotate(45deg);
        width: 0.5em;
    }

.event.event--empty {
    grid-column: 1/-1;
    background-color: rgba(80,7,120,0.10);
    cursor: default;
    background-image: url(../images/generic.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 150px;
    text-align: center;
}

    .event.event--empty:hover,
    .event.event--empty:focus {
        background-color: rgba(80,7,120,0.10);
        cursor: default;
    }

    .event.event--empty p {
        max-width: 60ch;
        margin: 0 auto;
        padding: 2em 0;
    }



.event__logo {
    max-width: 140px;
    margin-right: auto;
}

@media (max-height: 800px) {
    /*this hides the logo in the 'upcoming events' tab
    when the screen is not tall enough*/
    .upcoming-events .event__logo {
        display: none;
    }
}

.event__institution {
    margin: 0.5em 0 0 0;
    transition: all ease-in-out 0.25s;
}

.event__info {
    display: flex;
    align-items: center;
    margin: 0.25em 0;
}

.event__icon {
    margin-right: 0.5em;
    max-width: 1em;
}

.event__date {
    margin: 0;
}

.event__location {
    margin: 0;
}

.event .btn {
    margin-top: 0.5em;
    margin-bottom: 0;
}


/*-------------------------
EVENT GRID 

This is the grid of events on all the study destination
pages. It changes aspects of the ".event" class to make 
it look different from when it appears in ".upcoming-events"
-------------------------*/

/*FLEXBOX FALLBACK FOR EVENT GRID*/
.event-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0 1em 0;
}

    .event-grid .event {
        flex-basis: calc(100% / 5);
        padding: 1em;
        margin: 0.1em;
        flex-grow:5;
    }

@supports (grid-area: auto) {
    .event-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

        .event-grid .event {
            padding: 1em;
            margin: 0.1em;
            transition: all ease-in-out 0.25s;
        }
}

/*-------------------------
EVENT FORM CONTAINER 
-------------------------*/
.event-form-container {
    background-color: #f5f5f5;
    margin-top: 3em;
    padding: 0 1em 0.5em 1em;
}

    .event-form-container .btn {
        margin-top: 0;
    }




/*-------------------------------------------------------------------------------------------------------------
MODAL
-------------------------------------------------------------------------------------------------------------*/
.modal {
    background-color: rgba(0,0,0,0.5);
    z-index: 5000;
}

.modal-content {
    background-color: #fff;
    border: none;
    border-radius: 0;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    padding: 0 1em;
}

.modal-body {
    padding: 1em;
}

/*Large models – like on Gallery page*/
.modal {
    background-color: rgba(0,0,0,0.5);
}

.modal-dialog--large {
    width: 90%;
    margin: 10vh auto 0 auto;
    padding: 0;
}

    .modal-dialog--large .close {
        position: absolute;
        top: 0;
        right: 0;
        color: #414042;
        opacity: 1;
    }

    .modal-dialog--large .modal-header {
        position: absolute;
        top: 1em;
        left: 1em;
        width: 97%;
        z-index: 100;
    }


    .modal-dialog--large .modal-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        /*    background-image: url(../_images/patterns/grey-dot.png);*/
    }

        .modal-dialog--large .modal-content img {
            width: 80%;
            height: auto;
        }


    .modal-dialog--large .carousel {
        margin: 0;
    }

    .modal-dialog--large .carousel-indicators {
        bottom: 0;
    }



/*-------------------------------------------------------------------------------------------------------------
GOOGLE MAP
-------------------------------------------------------------------------------------------------------------*/
.google-map {
    border: 0;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 65vh;
    /*
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
*/
}


/*-------------------------------------------------------------------------------------------------------------
STUDENT SERVICES PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__student-services {
}

.student-service {
    margin-top: 3em;
}

.icon__student-services {
    max-width: 100px;
}


/*-------------------------------------------------------------------------------------------------------------
CLIENT LOGOS
-------------------------------------------------------------------------------------------------------------*/
.client-logos {
    position: relative;
    background-color: #fff;
    margin-bottom: 1em;
    padding: 1em;
}

.client-logos__heading {
    margin-top: 0;
    margin-bottom: 1em;
}

.client-logos__image {
    margin: 10px auto;
    text-align: center;
    transition: all 0.25s ease;
}

    .client-logos__image:hover,
    .client-logos__image:focus {
        -webkit-filter: grayscale(0%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
        filter: grayscale(0); /* Mozilla Firefox 19+, IE6-9 */
        background-color: #eee;
    }



/*-------------------------------------------------------------------------------------------------------------
EDUCATION EVENTS PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__education-events {
    /*    background-color: #f5f5f5;*/
}
/*
.table {
    margin-bottom: 3em;
}

.table-head {
    background-color: rgba(80,7,120,0.15);
}

.table__logo {
    max-width: 140px;
}

.table td:nth-child(3) {
    text-align: right;
    padding-right: 0;
}

.table .btn {
    margin: 0.15em 0;
}

.table>tbody>tr>td {
    padding: 0.25em;
    vertical-align: middle;
}
*/

/*-------------------------------------------------------------------------------------------------------------
CALENDAR
-------------------------------------------------------------------------------------------------------------*/
.calendar {
    margin-bottom: 5em;
    background-color: white;
    border: 1px solid #eee;
}

.calendar__month {
    display: flex;
    justify-content: space-between;
    background-color: rgba(80,7,120,0.5);
    color: #fff;
    font-size: 1.5em;
    letter-spacing: 0.025em;
    padding: 0.5em;
    text-align: center;
    text-transform: uppercase;
}

.calendar__week,
.calendar__header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar__week {
    grid-auto-rows: 100px;
    text-align: left;
}

.calendar__header {
    grid-auto-rows: 50px;
    align-items: center;
    text-align: center;
    background-color: rgba(80,7,120,0.25);
}

.calendar__day {
    padding: 16px;
}

.calendar__header > div {
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: bold;
}

.calendar__day {
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
}

    .calendar__day:last-child {
        border-right: 0;
        background-color: #eee;
        border-top: 1px solid #ddd;
    }

    .calendar__day:nth-last-child(2) {
        background-color: #eee;
        border-right: 1px solid #ddd;
        border-top: 1px solid #ddd;
    }


/*-------------------------------------------------------------------------------------------------------------
ABOUT PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__about {
    /*    background-color: #f5f5f5;*/
}

.video-thumbnail {
    margin-bottom: 1em;
}

/*-------------------------------------------------------------------------------------------------------------
CONTACT PAGE 
-------------------------------------------------------------------------------------------------------------*/
.page__contact {
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.location__time {
    background-color: transparent;
    border: none;
    margin-bottom: 0;
    height: 1.5em;
}

.opening-hours {
    margin-left: auto;
    float: right;
}


/*-------------------------------------------------------------------------------------------------------------
REGISTER PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__register {
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/*-------------------------------------------------------------------------------------------------------------
CAREERS PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__careers {
    background-color: #f5f5f5;
}

/*-------------------------------------------------------------------------------------------------------------
CAREERS PAGE
-------------------------------------------------------------------------------------------------------------*/
.page__privacy {
    background-color: #f5f5f5;
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}
