
/* --------- boilerplate --------- */

/* language links */
.language-select {
    height: 50px;
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 1;
}
.language-select .entry {
    height: 40px;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}
.language-select .entry:first-child {
    margin-right: 50px;
}
.language-select .entry a {
    color: black;
}

/* navigation */
.navbar-toggler {
    height: 150px;
    width: 150px;
}
.navbar {
    margin-top: 50px;
    background-color: white !important;
}
.navbar-nav .nav-link,
.navbar-brand {
    text-align: center;
    font-size: 1.2em;
    margin: 0 15px;
}
.navbar-brand {
    display: none;
}
.navbar-brand-mobile {
    display: inline-block;
}
.navbar-nav li a {
    line-height: 5em;
    padding:5px 10px;
    font-size: 3rem;
}

.social-media-icon img {
    height: 40px;
    width: 40px;
    margin: 0 10px;
    filter: grayscale(1);
    -webkit-transition: filter 0.3s; /* Safari */
    transition: filter 0.3s;
}

.social-media-icon img:hover {
    filter: grayscale(0);
    -webkit-transition: filter 0.3s; /* Safari */
    transition: filter 0.3s;
}

.logo {
    margin-top: -4.5em!important;
}

/* social media icons */
.social-media-icon {
    margin-top: 2rem;
}

/* footer */
#payment {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}
#payment img {
    width: 80%;
}
#footer {
    text-align: center;
    font-size: 12px;
}

/* desktop */
@media (min-width: 992px) {

    /* language select */
    .language-select .inner{
        width: 85%;
    }

    /* navigation */
    .navbar-brand {
        display: inline-block;

    }
    .navbar-brand-mobile {
        display: none;
    }
    .navbar-nav {
       margin: auto;
       height: 80px;
    }
    .navbar-nav li a {
        font-size: x-large;
    }

    /* footer */
    #payment img {
        width: 50%;
    }
    #footer {
        max-width: 80%;
    }
}
