html, body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color:#000;
    margin: 0;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[class*="slide0"] {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Slide backgrounds */

.slide01 {
    background-image: url(../img/engineering.jpg);
}

.slide02 {
    background-image: url(../img/finance.jpg);
}

.slide03 {
    background-image: url(../img/human-resources.jpg);
}

.slide04 {
    background-image: url(../img/marketing.jpg);
}

.slide05 {
    background-image: url(../img/sales.jpg);
}

/* Slide overlay */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(18,67,149,0.5);
    z-index: 1;
}

/* Custom navigation colour */

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev, 
.swiper-container-rtl .swiper-button-next{
    background-image: none;
}

.swiper-button-next,
.swiper-button-prev, 
.swiper-container-rtl .swiper-button-prev,
.swiper-container-rtl .swiper-button-next{
    fill: #ffffff;
}

/* Custom pagination colour */

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #124395;
    opacity: 1;
}

/* Custom text */

.text {
    z-index: 9999;
    width: 80%;
}

h3 {
    color: white;
    font-size: 2em;
    font-weight: 400;
    opacity: 1;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}

p {
    color:white;
    padding-bottom: 2em;
}

a.button {
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    width: 50%;
    max-width: 300px;
    text-decoration: none;
    color: white;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}

a.button:hover {
    background-color: white;
    color: #00bcd3;
}

/* PG Palette */

.pg-blue-bg {
    background-color: #00496b;
}

.mp-blue-bg {
    background-color: #124395;
}

.mp-blue {
    color: #124395;
}

.mp-light-blue-bg {
    background-color: #00bcd3;
}

.mp-light-blue {
    color: #00bcd3;
}

.pg-blue {
    color: #00496b;
}

.pg-pink-bg {
    background-color: #e23c5b;
}

.pg-orange-bg {
    background-color: #e07736;
}

.pg-darkGrey-bg {
    background-color: #738a96;
}

.pg-green-bg {
    background-color: #007c84;
}

/* Small viewport */
@media screen and (max-width: 480px) {
    h3 {
        font-size: 1.5em;
    }
    p {
        font-size: 0.85em;
    }
}