@font-face {
    font-family: 'roboto';
    src: url(font/Roboto-Thin.ttf);
    font-style: normal;
    font-weight: 400;
}

body {
    margin: 0;
    border: 0;
    padding: 0;
    font-family: roboto;
    font-weight: 100;
    background-color: white;
}

h1,
h2,
h3 {
    font-weight: 400;
    font-size: 18px;
    color: black
}

h6 {
    font-size: 15px;
    font-weight: 600;
    color: chocolate;
    margin-bottom: 6px;
}

h7 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 100;
    color: chocolate;
}

#container {
    width: 90%;
    margin: 0 auto;
    margin-top: 0px;
}

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

a:hover {
    font-weight: 500;
    text-decoration: none;
}

/********* HEADER  *******/

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    margin-top: 15px;
    z-index: 100;
}

#header a {
    text-decoration: none;
    color: black;
}

#header p {
    font-size: 18px;
    font-weight: 400;
    color: chocolate;
    line-height: 0;
    text-align: right;
}

.column1 {
    float: left;
    width: 65%;
    text-align: left;
}

.column2 {
    float: left;
    width: 0%;
    text-align: center;
}

.column3 {
    float: right;
    width: 35%;
    text-align: right;
}

button {
    background-color: rgba(255, 255, 255, 0);
}

.collapsible {
    color: chocolate;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 24px;
}

.active,
.collapsible:hover {
    color: chocolate;
}

.collapsible:after {
    content: '\002B';
    color: chocolate;
    font-weight: 100;
    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;
}


/********* CONTENT  *******/

#content {
    margin-top: 150px;
    margin-bottom: 50px;
}

#project_intro {
    margin-bottom: 0px;
}

#project_info {
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
}

#project_location {
    margin-top: 45px;
    margin-bottom: 30px;
    float: right;
}

#project_location img {
    height: 120px;
}

#project_info h1 {
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 18px;
}

#project_info h2 {
    font-size: 13.5px;
    line-height: 24px;
}

#project_text {
    margin-top;
    0px;
}

h4 {
    font-weight: 100;
    color: blue;
    font-size: 30px;
}

p {
    columns: 1;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.5;
}


/********* PROJECT INFO ********/


body {
    background-color: white;
}

#projects {
    width: 92%;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 50px;
}

.columnA {
    width: 28%;
    float: left;
    padding: 1%;
}

.columnB {
    width: 68%;
    float: left;
    padding: 1%;
}

.image {
    margin: auto;
}

.container p {
    font-size: 13.5px;
}

h2 {
    font-size: 15px;
    color: blue;
    line-height: 1.5;
}



/********* GALLERY *******/

#projects_overview {
    width: 95%;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 50px;
}

.container {
    position: relative;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 67%;
}

.container:hover .image {
    opacity: 0.5;
}

.container:hover .middle {
    opacity: 1;
}

.text {
    background-color: 0;
    padding: 16px 0px;
}

.text h1 {
    font-size: 15px;
    color: black;
}

.text h2 {
    font-size: 10px;
    color: blue
}

.column {
    float: left;
    width: 20%;
    padding: 2.5%;
    padding-bottom: 45px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}



/********* SLIDESHOW *******/

.single-item {
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 80%;
}

.slick-prev:before {
    content: '-';
    color: transparent;
    background-image: url(content/arrow_prev.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 30%;
    padding: 30px;
}

.slick-prev {
    left: -10%;
    z-index: 1;
}

.slick-next:before {
    content: '-';
    color: transparent;
    background-image: url(content/arrow_next.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 30%;
    padding: 30px;
}

.slick-next {
    right: -10%;
    z-index: 1;
}

.slick-slide img {
    display: block;
    width: 100%;
    /* change to height for index slider */
    margin-left: 0px;
    margin-right: 0px;
}


/********* FOOTER *******/

#footer {
    text-align: left;
    margin-left: 5%;
    margin-bottom: 15px;
}

#footer h7 {
    font-size: 12px;
    color: black;
}



@media screen and (max-width: 900px) {
    .column {
        width: 28%;
    }
}

@media screen and (max-width: 600px) {

    .columnA {
        width: 100%;
    }

    .columnB {
        width: 100%;
    }

}

@media screen and (max-width: 600px) {
    .column {
        width: 45%
    }

    #container,
    #header {
        width: 90%;
    }

    #projects_overview {
        width: 95%;
    }
}
