:root {
    --gray-color: #777778;
    --accent-color: #F5F0F0;
}

@font-face {
    font-family: Graphik;
    src: url("../Font/Graphik-Regular.otf") format("opentype");
}

@font-face {
    font-family: Graphik;
    font-weight: lighter;
    src: url("../Font/Graphik-Extralight.otf") format("opentype");
}


@font-face {
    font-family: Questrial;
    font-weight: lighter;
    src: url("Questrial-Regular.ttf") format('truetype');
}

html,
body {
    height: 100%;
    margin: 0;
    background-color: #f4f4f4;
}

footer {
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: var(--accent-color);
    padding-top: 10px;
    /* margin-top: 4rem;*/
}

.footer-p {
    width: auto;
    font-size: 13px;
    margin-right: 1rem;
    margin-left: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-color: rgba(0, 0, 0, 0);
}

td,
th {
    text-align: left;
    padding: 17px;
    border-bottom: 2px solid #EAEAEA;
    color: #3F495D;
    font-family: 'Questrial';
    font-size: 13px;
}

td {
    background-color: #ffffff;
}

tr:last-child > td {
    border-bottom: none;
}

.table-container {
    padding: 1px;
    background-color: #fff;
    overflow: scroll;
}

.table-container h3 {
    margin: 0;
    padding-left: 17px;
    text-transform: uppercase;
}

tbody {
    border-color: rgba(0, 0, 0, 0);
}

hr {
    border: 1px solid #EAEAEA;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

h1 {
    word-break: break-word;
    hyphens: auto;
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'questrial';
    font-style: normal;
    font-weight: normal;
}

h2 {
    word-break: break-word;
    hyphens: auto;
    font-size: 25px;
    line-height: 40px;
    font-family: 'questrial';
    font-weight: normal;
    font-style: normal;
    margin-top: 0;
}

h3 {
    word-break: break-word;
    hyphens: auto;
    text-align: left;
    color: #3F495D;
    font-family: 'Questrial';
    font-size: 14px;
}

h4 {
    word-break: break-word;
    hyphens: auto;
    font-size: 25px;
    line-height: 40px;
    font-family: 'Questrial';
    font-style: normal;
    margin-top: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    font-family: 'Questrial';
    font-size: 13px;
    color: var(--gray-color);
}

a.menu-link,
#menu a {
    text-decoration: none;
}

p {
    margin: 0;
}

p,
li {
    /*color: #3B3B3B;*/
    font-family: 'Questrial';
    font-size: 13px;
    line-height: 24px;
}

.col {
    display: flex;
    /*margin-left: auto;
    margin-right: auto;*/
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.col33 {
    margin-right: 0.5rem;
}


.text-uppercase {
    text-transform: uppercase;
}

.margin-top-50 {
    margin-top: 50px;
}

.flex {
    display: flex;
}

.headline {
    margin-bottom: 50px;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.content-container {
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
    width: 80%;
    overflow: hidden;
}


.content {
    min-height: 100%;
    padding-top: 39px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.intro-picture {
    height: 100vh;
    width: 100%;
}

.center {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.picture {
    /* Set a specific height */
    height: calc(93vh - 55px);
    /* Create the parallax scrolling effect */
    background-repeat: no-repeat;
    background-size: cover;
}

.home-arrow {
    margin-top: 2.5vh;
}

.name {
    font-size: 50px;
    line-height: 100%;
    font-weight: 900;
}

.undername {
    font-size: 20px;
}

hr {
    background: #000;
    height: 2px;
    border: none;
    max-width: 300px;
    width: 100%;
    margin-top: 2px;
}

.elementCenter {
    position: absolute;
    width: 50%;
    max-width: 990px;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.thin {
    font-weight: lighter !important;
}

.gray-color {
    color: var(--gray-color);
}

.sort-item {
    background-color: transparent;
    transition: all 0.2s ease-in;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    border-radius: 15px;
    cursor: pointer;
    color: var(--gray-color);
    font-family: 'Questrial';
    font-size: 13px;
    border-color: transparent;
}

.sort-item:hover {
    background-color: var(--accent-color);
    transition: all 0.2s ease-out;
}

.grid-container {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, 230px);
  gap: 20px;
  justify-content: center; */

  /* grid-template-rows: masonry; */

  margin: 0 auto;
  padding-bottom: 4rem;
}

.grid-item {
  width: 230px;
  /* height: 200px;
  object-fit: cover; */
  margin-bottom: 40px;
  border-radius: 15px;
  cursor: zoom-in;
  background-color: lightgray;
  transition: all 0.2s ease-in;
}

.grid-item:hover {
  filter: opacity(0.9);
  transition: all 0.2s ease-out;
}

.extended-padding {
    margin-bottom: 3rem;
}

.fancybox-caption__body {
    font-family: 'Questrial';
    font-size: 13px;
}

.displayNone {
    display: none;
}

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

    .flex-box {
        display: flex;
        flex-flow: row wrap;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}


@media only screen and (max-width: 1000px) {
    .content-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .flex {
        display: flex;
        flex-wrap: wrap;
    }

}


@media (max-width: 750px) {

    .picture {
        height: 93vh;
    }
}


@media (max-width: 625px) {
    
    .elementCenter {
        width: 80%;
    }
}
