/* BOOTSTRAP OVERRIDES */

.modal-backdrop.in {
  filter: alpha(opacity=85);
  opacity: .85;
}

/* OWN CLASSES */

.animated {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

html.no-js nav {
    display: none;
}

html.no-js nav,
html.no-js #logoDiv,
html.no-js #carousel,
html.no-js body > div {
    display: none;
}

html.no-js .no-js-div {
    display: block;
}

.no-js-message {
    text-align: center;
}

html.js .no-js-message {
    display: none;
}

@media (min-width: 1920px) {
    .limited-container {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

@-webkit-keyframes panelFadeOut {
   from   {opacity: 0.7;}
   to     {opacity: 0;}
}

@keyframes panelFadeOut {
    from   {opacity: 0.7;}
    to     {opacity: 0;}
}

.panelFadeOut {
    animation-name: panelFadeOut;
    -webkit-animation-name: panelFadeOut;
}

#logoDiv {
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    height: 100%;
    background-color: white;
}

body.seen #logoDiv {
    display: none;
}


html.cssanimations #logoImg {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

#logoImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
}

@media (max-width: 890px) {
    #logoImg {
        width: 90%;
    }
}

.navbar-logo {
    width: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .navbar-logo {
        width: 150px;
    }
}

@media (max-width: 800px) {
    .navbar-logo {
        width: 100px;
    }
}

.menu-button {
    margin-right: 0px;
    display: block;
}

.menu-button-bar {
    background-color: #bbb;
}

.menu-close {
    color: #ffffff;
    filter: alpha(opacity=100);
    opacity: 1;
}

.menu-close:hover,
.menu-close:focus {
  color: #bbb;
  filter: alpha(opacity=100);
  opacity: 1;
  text-shadow: unset;
}

.nofloat {
    clear: both;
}

.menu-link {
    color: white;
    font-weight: bold;
    line-height: 2em;
}

.menu-link:hover {
    color: #bbb;
}

.contact-details {
    color: white;
    font-size: larger;
    font-weight: bold;
 }

.no-pointer-events {
    pointer-events: none;
}

html.objectfit .carousel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

html.objectfit .carousel-inner {
    height: 100%;
}

html.objectfit .carousel-inner > .item {
    height: 100%;
}

.cover-photo {
    width: 100%;
}

html.objectfit .cover-photo {
    height: 100%;
    object-fit: cover;
}

.under-nav {
    padding-top: 50px;
}

.nav-background {
    background-color: #ffffff;
}

@-webkit-keyframes fadeIn {
    from   {opacity: 0;}
    to     {opacity: 1;}
}

@keyframes fadeIn {
  from   {opacity: 0;}
  to     {opacity: 1;}
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.hide-on-main {
    opacity: 0;
}

body.seen .hide-on-main {
    opacity: 1;
}

.gallery-element {
    margin: 20px 1%;
}

.gallery-element img {
    max-width: 100%;
}

@keyframes galleryElemIn {
    from   {opacity: 0.2;}
    to     {opacity: 1;}
}

@-webkit-keyframes galleryElemIn {
    from   {opacity: 0.2;}
    to     {opacity: 1;}
}

html.cssanimations .galleryElemIn {
    -webkit-animation-name: galleryElemIn;
    animation-name: galleryElemIn;
}

html.js.cssanimations .show-on-scroll {
    opacity: 0.2;
}

.visiting-card {
    width: 300px;
    margin-left: 15px;
    margin-bottom: 15px;
    background-color: #fbfbfb;
}

.visiting-name {
    padding-top: 10px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.visiting-icon {
    padding: 10px;
}

.socials {
    width: 200px;
    margin: auto;
}

.fb-icon {
    width: 34px;
    border-radius: 5px;
}

.insta-icon {
    width: 50px;
    margin-right: -8px;
}