body {
    font-size: 16px;
}
body#skybg {
    background-size: cover;
    background: url("../images/background/magunkrol.jpg") fixed no-repeat;
}
header .logo {
    width: 15%;
    min-width: 150px;
    max-width: 250px;
    margin: 20px;
    display: block;
    transition: margin 300ms ease;
}

@media screen and (max-width: 768px) {
    header .logo {
        margin: 10px;
    }
}
#mainmenu {
    position: absolute;
    top: 0;
    right: 0;
}
#mainmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#mainmenu ul li {
    transition: background-color 300ms ease-out;
    border-radius: 3px;
    padding: 0;
    margin: 0;
}
#mainmenu a {
    text-decoration: none;
    font-size: 1.3rem;
    color: #fff;
    padding: 3px 20px 3px 20px;
    display: block;
    text-align: center;
}
#mainmenu ul ul a {
    text-align: left;
}

#mainmenu >ul > li:hover {
    background: rgba(255,255,255, .4);
}

#mainmenu >ul > li li:hover {
    background: rgba(255,255,255, .4);
}

#mainmenu>ul>li {
    float: left;
}

#mainmenu li ul {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 200ms ease-out;
}
#mainmenu li ul li a {
    margin-top: -1em;
    margin-bottom: -1em;
    transition: margin 200ms linear;
}

#mainmenu li:hover ul {
    height: auto;
    opacity: 1;
}

#mainmenu li:hover ul a {
    margin-top: 0;
    margin-bottom: 0;
}
#mainmenu li ul {
    border-radius: 0 0 3px 3px;
}
#mainmenu .active {
    background: rgba(189,216,49,0.8);
}
#mainmenu .active:hover {
    background: rgba(247,247,42,0.9);
}
.content {
    position: fixed;
    background: rgba(255,255,255, .6);
    top: 200px;
    bottom: 0;
    overflow-y: auto;
    padding-bottom: 40px;

}

::-webkit-scrollbar {
    display: none;
}

.gallery a img {
    transition: transform 300ms linear;
}
.gallery a:hover img {
    transform: scale(1.1);
}

.title-text {
    font-size: 120%;
}

.prices table td:nth-child(1){
    width: 600px;
}

.prices table td:nth-child(2){
    text-align: right;
    white-space: nowrap;
}

.offer img {
    transition: filter 300ms ease;
}
.offer a:hover {
    text-decoration: none;
}
.offer a:hover img {
    filter: brightness(110%);

}

a.facebook {
    display: block;
    position: absolute;
    right: 70px;
    top: 80px;
}

@media screen and (max-width: 768px){
    .content {
        top: 120px;
    }
}
