/* ===== Common elements ===== */
* {box-sizing:border-box}
body {
    font-family: 'go Light', sans-serif;
    letter-spacing: 0.5px;
    word-spacing: 0px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0px;
    margin-bottom: 0;
    overflow: auto;
}
div {
    display: block;
}
img {
    max-width: 100%;
}
a {
    cursor: pointer;
    color: black;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    text-decoration: underline;
}   
/* ===== End of common elements ===== */

/* ===== Navigation elements ===== */
.top-nav-container {
    position: fixed;
    padding: 7px;
    padding-top: 33px;
    width: 20%;
}
.top-nav-container .top-nav-left a{
    font-size: 22px;
    font-weight: 600;
}
.top-nav-container .left-nav-container {
    margin-top: 10px;
}
.top-nav-container .left-nav-container .left-nav-sidenav {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.top-nav-container .left-nav-container .left-nav-sidenav li{
    padding-top: 3px;
    padding-bottom: 3px;
}
.top-nav-container .left-nav-container .left-nav-sidenav .social-svg{
    width: 16px;
    height: 16px;
    display: inline-block;
}
/* ===== End of Navigation elements ===== */

/* ===== Main gallery elements ===== */
.gallery {
    padding-top: 30px;
    margin-left: 20%;
    width: 80%;
    overflow: auto;
}
.gallery .container .row:after {
    content: "";
    display: table;
    clear: both;
}

/* Image elements */
.gallery .container .row .img-container-65 {
    float: left;
    width: 65%;
    padding: 7px;
}
.gallery .container .row .img-container-65 .thumb_link {
    display: flex;
    text-decoration: none;
}

/* Text elements */
.gallery .container .row .text-container-35 { 
    float: left;
    width: 35%;
    padding: 7px; 
}
.gallery .container .row .text-container-35 .title p{
    font-size: 18px;
    font-weight: 450;
    margin: 0px;
}
.gallery .container .row .text-container-35 .keywords p {
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 10px;
}
/* ===== End of Main gallery elements ===== */

/* ===== Hidden gallery elements ===== */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: white;
    color: #444;
    cursor: pointer;
    padding: 7px;
    margin-top: 7px;
    margin-bottom: 7px;
    height: 70px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 48px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
    background-color: #303030;
    color: white;
}
.active {
    background-color: white;
}
  
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/* ===== End of Hidden gallery elements ===== */

/* ===== Footer elements ===== */
.footer{
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
    border-top: 2px solid;
    margin-top: 7px;
    margin-bottom: 1%;
    margin-left: 0.5%;
    margin-right: 0.5%;
}
/* ===== End of Footer elements ===== */

@media only screen and (max-width:1650px) { /*984px*/
    .gallery {
        margin-left: 15%;
        width: 85%;
    }
    .top-nav-container .top-nav-left a{
        font-size: 20px;
    }
    .accordion {
        height: 50px;
        font-size: 36px;
    }
}
