body, h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Slab", sans-serif;
    background-color: #0e3b5f;
}

body, html {
    height: 100%;
    color: #ffffff;
    line-height: 1.8;
}

p {
    text-align: justify;
}

.logo {
    font-family: "PlayFair Display SC", sans-serif;
    font-size: 250%;
}

.logo-small{
    font-family: "PlayFair Display SC", sans-serif;
    font-size:105%;
}


/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* First image (Logo. Full height) */
.bgimg-1 {
    background-image: url('../images/parallax1.jpg');
    min-height: 100%;
}

/* Second image (Portfolio) */
.bgimg-2 {
    background-image: url('../images/parallax2.jpg');
    min-height: 400px;
}

/* Third image (Contact) */
.bgimg-3 {
    background-image: url('../images/parallax3.jpg');
    min-height: 400px;
}

.bgimg-4 {
    background-image: url('../images/parallax4.jpg');
    min-height: 350px;
}

.w3-wide {
    letter-spacing: 10px;
}

.w3-hover-opacity {
    cursor: pointer;
}

/* FAQs CSS */
.collapsible {
    background-color: #0070b3;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active, .collapsible:hover {
    background-color: #002542;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #0e3b5f;
    }