@keyframes mymove {
    0%   {transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;}
    50% {transform: scale(1.6);}
    100% {transform: scale(1);}
}
@keyframes spin{
    from{
        width: 0;
        height: 0;
        opacity: 0;
        margin-top: -50px;
        margin-left: -100px;
        -webkit-transform:rotate(0.5turn);
        transform:rotate(0.5turn);
    }
    
    to{
        margin-top: 0;
        margin-left: 0;
        opacity: 1;
        width: 100%;
        height: 100%;
        -webkit-transform:rotate(1turn);
        transform:rotate(1turn);
        }
}
*{
    font-family: 'Montserrat', sans-serif;
}

html.overflowhidden{
    overflow: hidden;
}

body{
    overflow-x: hidden;
}

#top{
    background: url(/assets/images/header_bg.png);
    background-size: cover;
    padding: 10px 5%;
    background-position: bottom center;
    position: relative;
    z-index: 999;
}

#top > div{
    display: inline-block;
    float: left;
}

#top > div:last-child{
    float: right;
}

#top .location, #top .tel, #top .open, #footer .location, #footer .tel, #footer .email{
    float: left;
    color: #b2b2b2;
    margin-right: 25px;
    margin-top: 5px;
    font-weight: 300;
}

#footer .location, #footer .tel, #footer .email{
    float: none !important;
    display: inline-block;
}

#top .open{
    margin-right: 0;
}

#top .location i, #top .tel i, #top .open i, #footer .location i, #footer .tel i, #footer .email i{
    color: #af9972;
    margin-right: 6px;
} 

#top .tel a, #footer .tel a, #footer .email a{
    text-decoration: none;
    color: #b2b2b2;
}
 
#top .social, #top .reserve, #top .lang{
    float: right;
}

#top .lang.form-group{
    margin-bottom: 0;
}

#top .lang.form-group select{
    background: transparent;
    border: 0;
    height: 29px;
    margin-left: 15px;
    padding: 5px;
    width: 50px;
    font-size: 12px;
    box-shadow: none !important;
    color: rgba(175, 153, 114, 0.7);
}

#top .social i{
    color: rgba(175, 153, 114, 0.7);
    margin-right: 15px;
    font-size: 32px;
    margin-top: -1px;
} 

#top .reserve a{
    display: block;
    text-decoration: none;
    padding: 2px 10px;
    color: rgba(175, 153, 114, 0.7);
    font-weight: bold;
    /*border-radius: 5px;*/
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    border: 2px solid rgba(175, 153, 114, 0.7);
}

#menu{
    padding: 10px 5%;
    position: static;
    background: #fff;
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    position: relative;
    margin: 0;
}

#menu.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

#menu .hamburger{
    display: none;
    float: right;
    z-index: 9999;
    position: relative;
}

#menu .logo{
    display: inline-block;
    float: left;
    text-align: right;
    z-index: 9999;
    position: relative;
}

#menu .logo a, #mobile-menu .logo a{
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #323031;
    text-transform: uppercase;
    transition: all 0.4s;
}

#menu.fixed .logo a{
    font-size: 10px;
}

#menu.fixed .logo a .pright{
    display: none;
}

#menu.fixed .hamburger{
    margin-top: 0;
}

#menu .logo a .small{
    font-size: 12px;
}

#menu .logo a .small2{
    font-size: 14px;
}

#menu .logo a .pright{
    margin-right: -50px;
}

#menu .menu{
    display: inline-block;
    float: right;
    margin-top: 17px;
}

#menu.fixed .menu{
    margin-top: 0;
}

#menu .menu ul{
    padding: 0;
    margin: 0;
}

#menu .menu ul li{
    list-style-type: none;
    display: inline-block;
    transition: all 0.2s;
}

#menu .menu ul li.active a,
#menu .menu ul li:hover a{
    color: #af9972;
}

#menu .menu ul li a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #323031;
    font-size: 12px;
    padding: 0 10px;
}

#menu.fixed .menu ul li a{
    font-weight: normal;
}

#menu .menu ul li:last-child a{
    padding-right: 0;
}

#mobile-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    z-index: 100000;
    background: #2c2929;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.5s;
    opacity: 0;
}

#mobile-menu.active{
    transform: translateX(0);
    opacity: 1;
    -webkit-box-shadow: -1px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: -1px 0px 10px 0px rgba(0,0,0,0.75);
}

#mobile-menu .logo{
    display: inline-block;
    float: left;
    margin-top: 10px;
}

#mobile-menu .logo a{
    color: #cacaca;
    font-size: 14px;
}

#mobile-menu .hamburger{
    display: inline-block;
    float: right;
}

#mobile-menu .mobile-menu{
    margin-top: 50px;
    text-align: center;
}

#mobile-menu .mobile-menu ul{
    padding: 0;
    margin: 0;
}

#mobile-menu .mobile-menu li{
    list-style-type: none;
    display: inline-block;
    width: 100%;
}

#mobile-menu .mobile-menu li a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #cacaca;;
    font-size: 22px;
    font-weight: 300;
}

#mobile-menu .mobile-menu li.active a,
#mobile-menu .mobile-menu li:hover a{
    color: #af9972;
}

.main-slider{
    display: inline-block;
}

.main-slider .slide{
    
}
.main-slider .slide .slide-content{
    position: absolute;
    width: 406px;
    height: 292px;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    /*background: url(/assets/images/rect.png);
    background-repeat: no-repeat;
    background-size: cover;*/
}

.main-slider .slide .slide-content img.rect{
    width: 100%;
    height: 100%;
}

[data-aos="fade"] {
  opacity: 0;
  transition-property: opacity;
}

[data-aos="fade"].aos-animate {
  opacity: 1;
}

.main-slider .slide .slide-content .slide-content-inner{
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 42px;
	line-height: 48px;
    font-weight: bold;
    width: 550px;
    height: auto;
}

.main-slider .slide .slide-content .slide-content-inner > div > div{
    display: inline-block;
    
}

.delay-250ms{
    animation-delay: 250ms;
}

.delay-500ms{
    animation-delay: 500ms;
}

.delay-750ms{
    animation-delay: 750ms;
}

.delay-1250ms{
    animation-delay: 1250ms;
}

.main-slider .slide > img{
    filter: brightness(0.9) saturate(0.9);
}

.main-slider .slide .slide-content .slide-button{
    position: absolute;
    bottom: 30px;
    left: 100px;
}

.main-slider .slide .slide-content .slide-button a{
    color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 30px;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
}

.main-slider .slide .slide-content .slide-button a.colorbg{
    background: rgba(12,12,12,0.3);
    color: #fff;
}

.text-content{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate3d(-50%, -50%, 0);*/
    transform: translateX(-50%) translateY(-50%);
}


.text-content .text, .text{
    font-size: 17px;
    line-height: 28px;
    text-align: left !important;
}

.about-us{
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-us .left{
    height: 600px;
    position: relative;
    /*background: url(/assets/images/fishing_bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;*/
}

.about-us .left .border{
    border: 10px solid rgba(175, 153, 114, 0.4);
    width: 55%;
    height: 420px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1;
}

.about-us .left .mm{
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
    max-width: 700px;
    height: auto;
    background: #fff;
    z-index: 99;
    padding: 20px 0;
}

.about-us .left img{
    width: 100%;
}

.about-us .right{
    position: relative;
    height: 600px;
}

.about-us .right .text-content{
    text-align: center;
    width: 500px;
}

.about-us .right .text-content h1{
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.about-us .right .text-content .text{
    font-weight: normal;
}

.fishing{
    background-size: contain;
    /*background: rgba(175, 153, 114, 0.2);*/
    padding: 0 !important;
    position: relative;
}

.fishing::after{
    content: "";
    /*background-image: linear-gradient(to right, rgba(255,255,255,.15)0%,rgba(0,0,0,0.75)15%,rgba(0,0,0,0.75)40%,rgba(0,0,0,0)90%), url(/assets/images/fishing_bg1.jpg);*/
    background-image: linear-gradient(to right, rgba(0,0,0,.5)0%,rgba(0,0,0,0.5)15%,rgba(0,0,0,0.5)45%,rgba(0,0,0,0)80%), url(/assets/images/horgaszat1111.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;  
}


.fishing .left{
    height: 400px;
    position: relative;
    border-top: 1px solid rgba(175, 153, 114, 0.2);
}

.fishing .left .separator{
    background: #fff;
}

.fishing .right{
    height: 400px;
    position: relative;
    background: url(/assets/images/slider2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.vertical-slider{
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    z-index: 99;
}

.vertical-slider img{
    width: 100%;
}

.vertical-slider img.up, .fishing .right .vertical-slider img.down{
    width: auto;
}

.vertical-slider .slick-arrow{
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #cacaca;
}

.vertical-slider .slick-arrow.up{
    top: -40px;
}
.vertical-slider .slick-arrow.down{
    bottom: -40px;
}

.vertical-slider .slick-slide{
    margin: 10px 0;
}

.fishing .left .text-content{
    text-align: center;
    left: 28%;
    width: 350px;
}

.fishing .left .text-content h2{
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.fishing .left .text-content .text{
    font-weight: 300;
    color: #fff;
}

.fishing .left .text-content .details, .rooms .left .text-content .details, .outdoor .text-content .details{
    width: 150px;
    margin: 20px auto 0 auto;
    display: inline-block;
}

.fishing .left .text-content .details a, .rooms .left .text-content .details a, .outdoor .text-content .details a{
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 20px;
    display: block;
    /*border-radius: 5px;*/
    color: #fff;
}

.rooms .left .border{
    border: 10px solid rgba(175, 153, 114, 0.4);
    width: 300px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: calc(50% - 300px);
    transform: translateY(-50%);
    z-index: 1;
}

.rooms .left .text-content .details a{
    color: #333;
    border: 2px solid #333;
    margin-bottom: 20px;
}

.outdoor .text-content .details{
    width: 210px;
}

.outdoor .text-content .details a{
    color: #333;
    border: 1px solid #333;
    font-weight: normal;
}

.rooms{
    background: url(/assets/images/bg1.jpg);
}

.rooms .left, .rooms-details .info1 .left{
    height: 500px;
    position: relative;
    background: #fff;
}

.rooms .right, .rooms-details .info1 .right{
    height: 500px;
    position: relative;
    /*background: url(/assets/images/header_bg.png);*/
    background: rgba(175, 153, 114, 0.3);
}

.rooms-details .info1 .left, .rooms-details .info1 .left .text-content, .rooms-details .info1 .right{
	background: transparent !important;
}

.rooms .right .text-content{
    width: 70%;
}

.rooms .left .text-content, .rooms-details .info1 .left .text-content{
    text-align: center;
    width: 450px;
    z-index: 2;
    padding-top: 20px;
    background: #fff;
}


.rooms .left .text-content h2, .rooms .right .text-content h2, .news h2, .text-content h2{
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

.content h2{
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

.rooms .right .text-content h2, .rooms-details .info1 .right .text-content h2{
    color: #af9972;
}

.rooms .left .text-content .text{
    font-weight: bold;
}


.rooms .right .text-content .text, .rooms-details .info1 .right .text-content .text{
    color: #333;
    font-weight: normal;
}

.rooms .right .sub-title, .rooms-details .info1 .right .sub-title{
    color: #333;
    font-weight: normal;
}

.rooms .right .tel{
    display: inline-block;
    margin-bottom: 30px;
}

.rooms .right .tel a{
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #333;
    padding: 10px 20px;
    /*border-radius: 5px;*/
    color: #333;
}

.rooms .right .tel a i{
    margin-right: 5px;
}

.outdoor{
    padding: 30px 0;
    background: url(/assets/images/bg1.jpg);
    /*border-bottom: 1px solid rgba(175, 153, 114, 0.3);*/
}

.outdoor h2{
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
}

.outdoor .left{
    height: 500px;
    position: relative;
    background: url(/assets/images/horgaszat2222.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.outdoor .left .text-content{
    min-width: 300px;
}

.outdoor .right{
    height: 500px;
    position: relative; 
    background: rgba(175, 153, 114, 0.3);
    transition: all 0.3s;
}

.outdoor .right .text-content{
    width: 500px;
}
    
.restaurant-preview{
    text-align: center;
    padding: 0 !important;
}


.restaurant-preview .gallery{
    background: url(/assets/images/food1.jpg);
    background-size: cover;
    height: 875px;
    background-position: center center;
    opacity: 0.9;
}

.restaurant-preview .right{
    position: relative;
    height: 875px;
}

.restaurant-preview .right .text-content{
    width: 90%;
}


.restaurant-preview .right::after{
    content: "";
    background-image: url(/assets/images/rest_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute; 
    z-index: -1;
    background-position: bottom right;
}

.restaurant-preview .sub-title, .about-us .sub-title, .rooms .sub-title, .outdoor .sub-title, .sub-title{
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}

.content .sub-title{
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}

.outdoor .left .sub-title{
    font-weight: normal;
}

.restaurant-preview h2{
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
}

.restaurant-preview .text{
    padding: 0 10%;
}

.restaurant-preview .cat-selector{
    position: relative;
}
.restaurant-preview .cat-selector .linebg{
    height: 1px;
    width: 800px;
    max-width: 100%;
    background: #cecece;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.restaurant-preview .cat-selector .is-item{
    display: inline-block;
    text-align: center;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
    margin-right: 30px;
    text-transform: uppercase;
}

.restaurant-preview .cat-selector .is-item:last-child{
    margin-right: 0;
}

.restaurant-preview .cat-selector .is-item .image-container{
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 100%;
    margin-bottom: 10px;
    background: #c7b79c;
    z-index: 999;
    position: relative;
}

.restaurant-preview .cat-selector .is-item .image-container > div{
    height: 64px;
    width: 64px;
}

.restaurant-preview .cat-selector .is-item.active .image-container,
.restaurant-preview .cat-selector .is-item:hover .image-container{
    border: 1px solid #999;

}

.restaurant-preview .cat-selector .is-item.breakfast .image-container  > div{
    background: url(/assets/images/breakfast-white.png);
    /*opacity: 0.6;*/
}
/*
.restaurant-preview .cat-selector .is-item.breakfast.active .image-container > div,
.restaurant-preview .cat-selector .is-item.breakfast:hover .image-container > div{
    background: url(/assets/images/breakfast-black.png);
}
*/
.restaurant-preview .cat-selector .is-item.lunch .image-container > div{
    background: url(/assets/images/lunch-white.png);
    /*opacity: 0.6;*/
}

/*
.restaurant-preview .cat-selector .is-item.lunch.active .image-container > div,
.restaurant-preview .cat-selector .is-item.lunch:hover .image-container > div{
    background: url(/assets/images/lunch-gold.png);
}
/*/
.restaurant-preview .cat-selector .is-item.dessert .image-container > div{
    background: url(/assets/images/dessert-white.png);
   /* opacity: 0.6;*/
}
/*
.restaurant-preview .cat-selector .is-item.dessert.active .image-container > div,
.restaurant-preview .cat-selector .is-item.dessert:hover .image-container > div{
    background: url(/assets/images/dessert-gold.png);
}
*/
.restaurant-preview .cat-selector .is-item.drinks .image-container > div{
    background: url(/assets/images/drinks-white.png);
    /*opacity: 0.6;*/
}

/*
.restaurant-preview .cat-selector .is-item.drinks.active .image-container > div,
.restaurant-preview .cat-selector .is-item.drinks:hover .image-container > div{
    background: url(/assets/images/drinks-gold.png);
}
*/
.restaurant-preview .cat-selector .is-item.soup .image-container > div{
    background: url(/assets/images/soup-white2.png);
    /*opacity: 0.6;*/
}
/*
.restaurant-preview .cat-selector .is-item.soup.active .image-container > div,
.restaurant-preview .cat-selector .is-item.soup:hover .image-container > div{
    background: url(/assets/images/soup-gold.png);
}
*/
.restaurant-preview .foods{
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    height: 250px;
    float: left;  
}

.restaurant-preview .foods .menu-elements{
    margin: 0 auto;
    float: none;
    max-width: 700px; 
}

.restaurant-preview .foods .menu-el{
    position: relative;
    background: #fff;
}

.restaurant-preview .foods .menu-el .name{
    font-size: 24px;
    font-weight: normal;
    display: inline-block;
    float: left;
    position: relative;
    z-index: 999;
    background: #fff;
    padding-right: 10px;
}

.restaurant-preview .foods .menu-el .price{
    font-weight: normal;
    font-size: 26px;
    color: #af9972;
    display: inline-block;
    float: right;
    text-align: right;
    position: relative;
    z-index: 999;
    background: #fff;
    padding-left: 10px;
    width: 100px;
}

.restaurant-preview .foods .menu-el .price .currency{
    font-size: 14px;
}

.restaurant-preview .foods .menu-el .linebg{
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 13px;
    left: 0;
    border-bottom: 1px dotted #cacaca;
}

/*
.news .sub-title{
    color: #fff;
}

.news h2{
    color: #fff;
}
*/

div.news{
    padding: 100px 5%;
    position: relative;
    background: url(/assets/images/bg1.jpg);
}

.news .news-slider{
    
    float: right;
    margin: 0 auto;
    margin-right: 0;
}

.news .news-slider .slider-item{
    position: relative;
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
    background: rgba(255, 255, 255,0.95);
}

@media screen and (max-width: 1400px) {
    .news .news-slider .slider-item img{
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .news .news-slider .slider-item img{
        width: 100% !important;
    }

    .news .news-slider .slider-item .slider-item-intro{
        margin-bottom: 30px;
    }
}

.news .news-slider .slick-track{
    padding: 10px 0;
}


.news .news-slider .slider-item-image{
    height: 400px;
    background: url(/assets/images/fishing_bg2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.news .news-slider .slider-item-video{
    
}

.news .news-slider .slider-item-video video{
    float: left;
}

.slider-item-content{
    padding-top: 50px;
}

.news .news-slider .slider-item-title{
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}


.news .news-slider  .slider-item-intro{
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.news .news-slider .read-more a, .restaurant-preview .read-more a{
    color: #333;
    border: 2px solid #333;
    font-weight: bold;
    padding: 10px 30px;
    margin: 20px auto;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
}

.restaurant-preview .read-more a{
    margin: 20px auto 30px auto;
}

.comments{
    background: url(/assets/images/bg1.jpg);
}

.comments .left{
    height: 400px;
}

.comments .left .text-content{
    max-width: 80%;
}

.comments .left .text-content .comments-slider .slick-arrow,
.news .news-slider .slick-arrow{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
    background: rgba(175, 153, 114, 0.8);
    font-size: 22px;
    color: #fff;
    z-index: 9;
}

.news .news-slider .slick-arrow{
    top: 50px;
}

.comments .left .text-content .comments-slider .slick-arrow.left-arrow,
.news .news-slider .slick-arrow.left-arrow{
    left: -40px;
}
.comments .left .text-content .comments-slider .slick-arrow.right-arrow,
.news .news-slider .slick-arrow.right-arrow{
    right: -40px;
}

.news .news-slider .slick-arrow.left-arrow{
    left: 55px;
}

.news .news-slider .slick-arrow.right-arrow{
    left: 105px;
}

.comments .left .text-content .quote{
    font-size: 40px;
    color: #af9972;
}

.comments .right{
    position: relative;
    height: 400px;
    background: rgba(175, 153, 114, 0.3);
    /*background: url(/assets/images/fishing_bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;*/
}

.comments .right .contact-form input, .comments .right .contact-form textarea{
    background: transparent;
}


.comments .right .contact-form .button input{
    font-size: 16px;
}

.comments .right .contact-form .sub-title{
    margin-bottom: 20px;
}

.comments .right .text-content{
    width: 75%;
    max-width: 550px;
}

.bg{
    height: 350px;
    /*background: rgba(175, 153, 114, 0.2);*/
}

.bg::after{
    content: "";
    background-image: url(/assets/images/slider3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; 
}


.fishing-info{}

.main-image{
    position: relative;
    height: 500px;
    background: url(/assets/images/slider3.jpg);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 0;
}

.events .main-image{
    background: url(/assets/images/horgaszto/horgaszto8.jpg);
}

.fishing-info .main-image{
    background: url(/assets/images/horgaszat_slider.jpg);
    filter: brightness(0.95) saturate(0.95);
}

.outdoor-details .main-image{
    background: url(/assets/images/szabadido/szabadido13.jpg);
}

.rooms-details .main-image{
    background: url(/assets/images/szallas/szallas_fooldal.jpg);
}

.foods-info .main-image{
    background: url(/assets/images/etterem.jpg);
}

.contact .main-image{
    background: url(/assets/images/kapcsolat.jpg);
}

.news-page .main-image{
    background: url(/assets/images/hireink2.jpg);
}

.bistro .main-image{
    background: url(/assets/images/bisztro.jpg?version=2);
}

.main-image .page-title{
    display: inline-block;
    vertical-align: middle;
    padding: 75px 0px 80px 80px;
    position: relative;
    margin: 0;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.main-image .page-title::after{
    content: "";
    position: absolute;
    display: inline-block;
    width: 60%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-left: 15px solid #fff;
    border-top: 15px solid #fff;
    border-bottom: 15px solid #fff;
}

.custom-title{
    display: inline-block;
    position: relative;
}

.custom-title::before, .custom-title::after {
    width: 15px;
    content: "";
    height: 50px;
    background-color: #fff;
    position: absolute;
    left: 59%;
}

.custom-title::after {
    bottom: 0;
}

.fullwidth-block-inner{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
}

.bistro .fullwidth-block-inner,
.rooms-details .fullwidth-block-inner{
	padding: 30px;
    background: #2c282861;
}

.fullwidth-block-inner .container{
	width: auto;
}

.content{
    position: relative;
}

.content table{
    border-collapse: separate;
    border-spacing: 0 50px;
    z-index: 2;
    position: relative;
}

.content table td{
    width: 50%;
    padding: 0 20px;
}

.content table img{
    width: 100%;
    z-index: 2;
}

.content .border{
    border: 20px solid rgba(175, 153, 114, 0.2);
    width: 300px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.fishing-info .content{
    /*background: url(/assets/images/bg1.jpg);*/
    padding: 0 !important;
}

.fishing-info .content .info1{
    background: url(/assets/images/bg1.jpg);
}

.fishing-info .content .info1 .left{
    /*background: url(/assets/images/bg1.jpg);*/
}

.fishing-info .content .info1 .left, .fishing-info .content .info1 .right{
    height: 500px;
}

.fishing-info .content .info1 .left .text-content{
    width: 60%;
	max-width: 700px;
}

.fishing-info .content .info2 .right .text-content{
    width: 90%;
    max-width: 700px;
}

.fishing-info .content .info2 .left, .fishing-info .content .info2 .right{
    height: 700px;
}

.fishing-info .content .info1 .right, .fishing-info .content .info2 .left{
    background-attachment: fixed !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.fishing-info .content .info1 .right{
    background: url(/assets/images/horgaszat/horgaszat8.jpg);
    filter: brightness(0.85) saturate(0.85);
}

.fishing-info .content .info2 .left{
    background: url(/assets/images/horgaszat3333.jpg);
    filter: brightness(1.05);
}

.fishing-info .info2{
    background: url(/assets/images/bg1.jpg);
}

.fishing-info .info2 .right{
    background: rgba(175, 153, 114, 0.3);
}

.fishing-info .content .info2 .right .circle{
    position: absolute;
    top: -85px;
    left: 50px;
    background: #af9972;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    text-align: center;
    font-size: 24px;
    padding-top: 50px;
    text-transform: uppercase;
}

.fishing-info .content .info2 .right .circle span{
    font-size: 44px;
}

.fishing-info .content .text{
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    
}

.fishing-info .rules{
    padding: 0;
}

.fishing-info .rule{
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    list-style-type: none;
    padding: 10px 0;
}

.fishing-info .rule span, span.info{
    display: inline-block;
    background: #af9972;
    color: #fff;
    border-radius: 100%;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

span.info.gold{
    background: #af9972;
}

.fishing-info .info3{
    background: url(/assets/images/bg1.jpg);
}

.fishing-info .info3 .left{
    height: 700px;
    padding: 0 3% !important;
    /*background: rgba(175, 153, 114, 0.3);*/
}

.fishing-info .info3 .separator{
    margin-bottom: 30px;
    margin-top: 30px;
}

.fishing-info .info3 .left .text-content{
    width: 600px;
    
}

.fishing-info .info3 .left .text-content .text{
    text-align: center !important;
    margin-top: 30px;
}

.fishing-info .info3 .left .fish{
    width: 120px;
    height: 120px;
    border-radius: 100%;
    text-align: center;
    background: #af9972;
    display: inline-block;
    float: none;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 120px;
    margin-right: 20px;
}

.fishing-info .info3 .left .fish-row{
    display: inline-block;
    width: 400px;
}

.fishing-info .info3 .left .fish-row .fish{
    float: left;
}

.fishing-info .info3 .left .fish.catfish{
    line-height: 26px;
    padding-top: 34px;
}

.fishing-info .info3 .left .fish:nth-child(4n){
    margin-right: 0;
}

.fishing-info .info3 .right{
    height: 950px;
    background: rgba(175, 153, 114, 0.15);
}

.fishing-info .info4{
    padding: 0;
    background: url(/assets/images/bg1.jpg);
    
}

.fishing-info .info4 .left{
    background: rgba(175, 153, 114, 0.3);
}

.fishing-info .info4 img{
    width: 100%;
}

.fishing-info .info3 .right .text-content{
    width: 90%;
    max-width: 700px;
}

.fishing-info .info3 .right .text-content .text, .rooms-details .info2 .text{
    position: relative;
}

.fishing-info .info3 .text-content .text .linebg, .rooms-details .info2 .linebg{
    width: 100%;
    height: 1px;
    background: rgba(175, 153, 114, 0.3);
    bottom: 10px;
    z-index: 1;
    position: absolute;
}

.fishing-info .info3 .text-content .text .name, .rooms-details .info2 .text .name{
    display: inline-block;
    padding-right: 10px;
    z-index: 2;
    position: relative;
    float: left;
    background: #ebe7de;
}

.fishing-info .info3 .text-content .text .price, .rooms-details .info2 .text .price{
    display: inline-block;
    float: right;
    text-align: right;
    width: 95px;
    padding-left: 10px;
    z-index: 2;
    position: relative;
    background: #ebe7de;
    color: #af9972;
    font-size: 24px;
}

.fishing-info .info3 .text-content .text .price2{
    width: 115px;
}

.fishing-info .info3 .text-content .text .price .currency, .rooms-details .info2 .text .price .currency{
    font-size: 14px;
}


.news-page{
    background: #f1efe8;
}

.news-page .news-list{
    margin-top: 50px;
    margin-bottom: 20px;
}

.news-page .news-list .news-item{
    margin-bottom: 30px;
}

.news-page .news-list .news-item .news-image{
    height: 300px;
    background: url(/assets/images/telepites2025.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-page .news-list .news-item .news-item-content{
    background: #fff;
}

.news-page .news-list .news-item .news-item-content .news-item-title{
    margin: 20px 0;
}

.news-page .news-list .news-item .news-item-content .news-item-title a{
    color: #333;
    text-decoration: none;
    font-size: 26px;
}

.news-page .news-list .news-item .news-item-content .news-item-intro{
    font-size: 16px;
    line-height: 26px;
}

.news-page .news-list .news-item .news-item-content .read-more a{
    color: #333;
    border: 2px solid #333;
    font-weight: bold;
    padding: 10px 30px;
    margin: 20px auto;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
}

.contact{}

.contact .content{
    padding: 0;
}

.contact .content .right{
    height: 800px;
}

.contact .content .right .text-content{
    width: 90%;
}


.contact .contacts{
    margin-bottom: 20px;
}

.contact .contacts > div{
    margin-bottom: 15px;
}

.contact .contacts a{
    color: #333;
}

.contact .contacts i{
    color: #333;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    background: #af9972;
    text-align: center;
    line-height: 50px;
}

.contact .contact-form{
    /*background: rgb(225, 218, 204);*/
    padding: 20px;
    display: inline-block;
    /*border: 3px solid rgba(175, 153, 114, 0.4);*/
}

.contact-form{
   
    margin: 0 auto;
    float: none !important;
}

.contact-form .sub-title,
.bookingForm .sub-title{
    margin-bottom: 20px; 
}

.contact-form .form-group:nth-child(2n+1),
.bookingForm .form-group:nth-child(2n+1){
    padding-left: 0;
}
.contact-form .form-group:nth-child(2n),
.bookingForm .form-group:nth-child(2n){
    padding-right: 0;
}

.bookingForm .form-group:nth-child(2n+1){
    padding-right: 10px;
}

.bookingForm .form-group:nth-child(2n){
    padding-left: 10px;
}

.contact-form .form-group input, .contact-form .form-group textarea,
.bookingForm .form-group input, .bookingForm .form-group textarea{
    border: 0;
    border-bottom: 2px solid #af9972;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.bookingForm .form-group input{
    height: 36px;
}

.contact-form .form-group textarea,
.bookingForm .form-group textarea
{
    resize: none;
}

.contact-form .button input,
.bookingForm .button input
{
    width: 100%;
    height: 45px;
    border: 2px solid #333;
    background: none;
    font-size: 16px;
    font-weight: bold;
}

.bookingForm{
    margin-top: 50px;
}

.bookingForm .sum-price{
    text-align: left !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 45px;
}

/*
#bookingForm .guests .form-group:first-child{
    padding-left: 0;
    padding-right: 10px;
}
#bookingForm .guests .form-group:nth-child(2n){
    padding-left: 10px;
    padding-right: 10px;
}
#bookingForm .guests .form-group:nth-child(3n){
    padding-left: 10px;
    padding-right: 0;
}
*/
.bookingForm label{
    text-align: left;
    float: left;
    margin-bottom: 0;

}

.rooms-details{}

.rooms-details .info1, .rooms-details .info2{
    background: url(/assets/images/bg1.jpg);
}

.rooms-details .info1{
	border-bottom: 1px solid rgba(175, 153, 114, 0.2)
}

.rooms-details .info1 .right{}

.rooms-details .info1 .right .text-content{
    width: 70%;
}

.rooms-details .info1 .right .house-list{}

.rooms-details .info1 .right .house-list > div{
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #af9972;
    font-weight: bold;
    font-size: 20px;
    padding-top: 22px;
    margin: 10px;
    color: #fff;
}

.rooms-details .info1 .right .house-list > div span{
    font-weight: normal;
    font-size: 16px;
    color: #333;
} 

.rooms-details .info2 .right{
    height: 1250px;
    background: rgba(175, 153, 114, 0.2);
}

.rooms-details .info2 .left{
    height: 1250px;
    background: url(/assets/images/_mg_0041.jpg);
    background-position: center center;
    /*background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1199px){
    .rooms-details .info2 .left{
        display: none;
    }
}

.rooms-details .info2 .left .text-content{
    width: 90%;
}

.rooms-details .info2 .right .text-content{
    width: 80%;
}

.rooms-details .info2 .text .name, .rooms-details .info2 .text .price{
    background: #e9e4da;
}

.rooms-details .info2 .text .price{
    width: 100px;
}

.rooms-details .info2 .text .price.long{
    width: 140px;
}

.rooms-details .info5 .tel{
    display: inline-block;
    margin-top: 30px;
}

.rooms-details .info5 .tel a{
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #333;
    padding: 10px 20px;
    /*border-radius: 5px;*/
    color: #333;
}

.rooms-details .info5 .tel a i{
    margin-right: 5px;
}

.rooms-details .info3{
    background: url(/assets/images/bg1.jpg);
    padding: 50px 0 0 0 !important;
}

.rooms-details .info3 .separator{
    margin-bottom: 30px;
}
.rooms-details .info3 h2{
    
}

.rooms-details .info3 #gallery{
    margin-bottom: 0;
} 

.rooms-details .info5{
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: 1200px;
    background: url(/assets/images/bg1.jpg);
} 

.outdoor-details{}

.outdoor-details .info1{
    /*background: url(/assets/images/bg1.jpg);*/
    padding-left: 0;
    padding-right: 0;
}

.outdoor-details .info1 .sub-title{
    margin-top: 50px;
}

.outdoor-details .info1 > .text{
    margin-bottom: 50px !important;
    padding: 0 10%;
}

.outdoor-details .info1 > .text.nomargin{
    margin-bottom: 0 !important;
}

.outdoor-details .info1 .list{
    padding: 0 10%;
     background: rgba(175, 153, 114, 0.3);
}

.outdoor-details .info1 .list > div{
    height: 400px;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.outdoor-details .info1 .list > div:first-child{
    background: url(/assets/images/paci.jpg);
    
}

.outdoor-details .info1 .list > div:nth-child(2){
    background: url(/assets/images/medence.jpg);
}

.outdoor-details .info1 .list > div:nth-child(3){
    background: url(/assets/images/sutes.jpg);
}

.outdoor-details .info1 .list .list-element{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.outdoor-details .info1 .list .list-element .list-element-content{
    margin-top: 350px;
    transition: all 0.5s;
    /*background: red;*/
    height: 400px;
    color: #333;
}

.outdoor-details .info1 .list .list-element:hover .list-element-content{
    margin-top: 0px;
    background: rgba(244, 243, 241, 0.95);
}

.outdoor-details .info1 .list .list-element .list-element-content .list-element-title{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.outdoor-details .info1 .list .list-element:hover .list-element-content .list-element-title{
    color: #333;
}

.outdoor-details .info1 .list .list-element .list-element-content .list-element-text{
    font-size: 16px;
}

.outdoor-details .info1 .list .list-element .list-element-content .list-element-text span{
    color: #333 !important;
    font-weight: normal !important;
}

.outdoor-details .info2{
    padding: 0;
}

#gallery, #gallery2{
    display: inline-block !important;
    width: 100% !important;
    padding: 3px;
}

#gallery_ap_1, #gallery_ap_2, #gallery_ap_3, #gallery_ap_4, #gallery_ap_5, #gallery_ap_6{
	display: inline-block !important;
    width: 100% !important;
	margin-top: 0 !important;
}

#gallery_ap_1 img, #gallery_ap_2 img, #gallery_ap_3 img, #gallery_ap_4 img, #gallery_ap_5 img, #gallery_ap_6 img{
	opacity: 0;
	visibility: hidden;
}

#gallery_ap_1.ug-gallery-wrapper img, #gallery_ap_2.ug-gallery-wrapper img, #gallery_ap_3.ug-gallery-wrapper img,
 #gallery_ap_4.ug-gallery-wrapper img, #gallery_ap_5.ug-gallery-wrapper img, #gallery_ap_6.ug-gallery-wrapper img{
	opacity: 1;
	visibility: visible;
}

.fishing-info #gallery{
    padding: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
}

.foods-info{}

.foods-info .info1{
    height: 700px;
}

.foods-info .info2{ 
    padding: 0;
    padding: 50px 15px 30px 15px;
    /*background: rgba(175, 153, 114, 0.2);*/
}

.foods-info .info2::after{
    content: "";
    background-image: url(/assets/images/bg1.jpg);
    background-position: bottom center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; 
}

.foods-info .info2 .category{
    float: none;
    display: inline-block;
    text-align: center;
    padding: 10px;
    margin: 10px auto;
    background: rgba(175, 153, 114, 0.3);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 30px;
}

.foods-info .info2 .category.active{
    background: rgba(175, 153, 114, 0.7);
}

.foods-info .info2 h2, .foods-info .info3 h2{
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

.foods-info .info2  > .separator{
    margin-bottom: 20px;
}

.foods-info .info2 .food-preview{
    text-align: center;
    margin-bottom: 20px;
    
}

.foods-info .info2 .food-image{
    width: 100%;
}

.foods-info .info2 .food-preview .food-name{
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
    min-height: 68px;
}
.foods-info .info2 .food-preview .food-price{
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 22px; 
    background: rgba(175, 153, 114, 0.3);
}

.foods-info .info2 .food-preview .food-price .currency{
    font-size: 14px;
}

.foods-info .info3{
    padding: 50px 5%;
    background: rgba(175, 153, 114, 0.1);
}

.foods-info .info3::after{
    content: "";
    background-image: url(/assets/images/bg1.jpg);
    background-position: bottom center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; 
}

.foods-info .info3 .menu{}

.foods-info .info3 .menu .onerow{
    display: table;
    margin: 0 auto;
    float: none;
}

.foods-info .info3 .menu .onerow .menu-header{
    text-transform: uppercase;
}

.foods-info .info3 .block{
    padding: 0;
    padding-bottom: 60px;
}

.foods-info .info3 .menu-title{
    font-size: 26px;
    /*background: #e3dbce;*/
    padding: 0;
    margin-bottom: 0;
}

.foods-info .info3 .menu-sub-title{
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    margin-bottom: 25px;
}

.foods-info .info3 .image-separator{
    margin-bottom: 30px;
    margin-top: 20px;
}


.foods-info .menu-el{
    position: relative;
}

.foods-info .menu-el .name,
.outdoor-details .menu-el .name{
    display: inline-block;
    float: left;
    background: #efede7;
    position: relative;
    z-index: 2;
    font-size: 20px;
    padding-right: 10px;
}

@media screen and (max-width: 1300px){
	.foods-info .menu-el .name{
		font-size: 16px;
	}
	
	.foods-info .menu-el .price{
		font-size: 18px !important;
	}
}

.foods-info .info1 .menu-el .name,
.foods-info .info1 .menu-el .price,
.outdoor-details .menu-el .name,
.outdoor-details .menu-el .price{
    background: #fff !important;
}

.foods-info .menu-el .name.small,
.outdoor-details .menu-el .name.small{
    font-size: 16px;
}

.menu-elements .name .small{
    font-size: 16px;
}

.foods-info .menu-el .name .small{
    font-size: 14px;
}


.foods-info .menu-el .name .smallsmall{
    font-size: 12px;
}

.foods .smallsmall{
    font-size: 16px;
}

.foods-info .menu-el .price,
.outdoor-details .menu-el .price
{
    display: inline-block;
    float: right;
    text-align: right;
    background: #efede7;
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: #af9972;
    padding-left: 10px; 
}

.foods-info .menu-el .price.price1,
.outdoor-details .menu-el .price.price1{
    padding-right: 10px;
}

.foods-info .menu-el .price .currency,
.outdoor-details .menu-el .price .currency{
    font-size: 16px;
}

.foods-info .menu-el .linebg,
.outdoor-details .menu-el .linebg{
    width: 100%;
    height: 1px;
    background: rgba(175, 153, 114, 0.3);
    bottom: 10px;
    z-index: 1;
    position: absolute;
}

.foods-info .selector{
    margin-top: 15px;
}

.foods-info .selector > div{
    float: none !important;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 0;
    border: 1px solid #333;
    text-transform: uppercase;
}

.foods-info .selector > div.active{
    font-weight: bold;
}

.gallery-row{
    position: relative;
}

.gallery-row .gallery-info, .gallery-row .gallery-preview{
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gallery-row .gallery-info .text-content{
    width: 450px;
    z-index: 9;
    padding: 20px;
}

.gallery-row .gallery-info .text-content{
    left: 50%;
}

.gallery-row .gallery-preview .text-content{
    width: 90%;

}

.gallery-row .gallery-preview img{
    width: 100%;
    cursor: pointer;
}

.gallery-row .gallery-preview .gallery-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0,0,0,0.4);*/
    overflow: hidden;
}

.gallery-row .gallery-info .sub-title{
    font-weight: bold;
}

.gallery-row .gallery-info .image-separator{
    margin-top: 5px;
    margin-bottom: 15px;
}

.gallery-row .gallery-preview .text-content:hover .gallery-overlay{
    right: 0;
    cursor: pointer;
}

.gallery-row .gallery-preview .gallery-overlay .gallery-overlay-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-row .gallery-preview .gallery-overlay .gallery-overlay-content .gallery-title,
.gallery-row .gallery-preview .gallery-overlay .gallery-overlay-content .gallery-sum{
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
}

.gallery-row .gallery-preview .gallery-overlay .gallery-overlay-content .gallery-sum span.glyphicon{
    margin-right: 10px;
    font-size: 20px;
}

.gallery-info .border{
    border: 10px solid rgba(175, 153, 114, 0.4);
    width: 300px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: calc(55% - 300px);
    transform: translateY(-50%);
    z-index: 1;
}


#footer{
    background: url(/assets/images/header_bg.png);
    padding: 15px 0;
}

#footer .copyright, #footer .copyright a{
    font-weight: 300;
    font-size: 12px;
    color: #cacaca;
    margin-top: 15px;
}

.policy{
    padding: 50px 5% !important;
}

.policy .title{
    font-size: 24px;
    font-weight: normal;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.policy .title:first-child{
    margin-top: 0;
}

.policy .text{
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin-bottom: 10px;
}

.szep-kartya{
    max-width: 300px;
    margin-top: 15px;
}

.events .info1, .events .info2{
    background: url(/assets/images/bg1.jpg);
}

.events .info1, .events .info1 > div{
    height: 400px;
}

@media screen and (max-width: 1199px){
    .events .info1 .text-content{
        width: 80%;
    }
}

@media screen and (max-width: 991px){
    .events .info1, .events .info1 > div,
    .events .content .info2 .left,
    .events .content .info3 .right,
    .events .content .info3 .right > div{
        display: inline-block;
        height: auto !important;
    }

    .events .info1 .text-content,
    .events .info2 .left .text-content,
    .events .info3 .right .text-content{
        position: static;
        transform: none;
        display: inline-block;
        padding: 50px 25px;
        width: 100%;
    }

    .events .info2 .right{
        display: none;
    }

    .events .content .info3 .left {
        height: 500px !important;
    }

}

.events .content .info2 .left, .events .content .info2 .right{
    height: 700px;
}

.events .content .info2 .right{
    background: url("/assets/images/szabadido/szabadido11.jpg");
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.events .content .info2 .left{
    background: rgba(175, 153, 114, 0.2);
}

.events .content .info2 .left .text-content{
    width: 65%;
}

.events .content .info3{
    background: url(/assets/images/bg1.jpg);
}

.events .content .info3 .right > div{
    height: 800px;
}

.events .content .info3 .left, .events .content .info3 .right{
    height: 800px;
}

.events .content .info3 .left{
    background: url("/assets/images/rendezvenyek/rendezvenyek10.jpg");
    background-size: cover;
    background-position: center center;

}

.events .content .info3 .right .text-content{
    width: 75%;
}

.success-message{
    height: 750px;
    background: url(/assets/images/bg1.jpg);
}

.success-message .text.text-center{
    text-align: center !important;
}

.success.contact .contacts{
    display: table;
    margin: 0 auto;
}

.success .back{
    width: 190px;
    height: 45px;
    border: 2px solid #333;
    background: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 50px;
}

@media screen and (max-width: 767px){
    .success-message{
        height: auto;
        padding: 50px 25px !important;
    }
}

@media screen and (min-width: 1440px){
    #menu .menu ul li a{
        padding: 0 15px;
        font-size: 14px;
    }
    
    .rooms .right .text-content{
        width: 60%;
    }
    
    .about-us .left .border{
        height: 440px;
    }
    
    .comments .left .text-content{
        width: 70%;
    }
    
    .comments .right .text-content{
        max-width: none;
    }
    
    .fishing-info .content .info1 .right, .fishing-info .content .info2 .left{
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }
    
    .gallery-row .gallery-info, .gallery-row .gallery-preview{
        height: 600px;
    }

}

@media screen and (min-width: 1540px){
    .about-us .left .border{
        height: 470px;
    }

}

@media screen and (max-width: 1450px){
    .events .content .info2 .left .text-content,
    .events .content .info3 .right .text-content{
        width: 85%;
    }
}

@media screen and (max-width: 1300px){
    .events .content .info2 .left, .events .content .info2 .right{
        height: 700px;
    }

    .events .content .info3 .right > div{
        height: 900px;
    }

    .events .content .info3 .left, .events .content .info3 .right{
        height: 900px;
    }

}

@media screen and (max-width: 1199px){
    #top{
        text-align: center;
        padding: 2px 1%;
    }
    #top > div{
        width: 100%;
        float: none !important;
    }
    #top > div .left, #top > div .right{
        display: inline-block;
    }
    #top > div:first-child{
        margin-bottom: 5px;
    }
    #top > div .location, #top > div .tel, #top > div .open{
        float: none;
        display: inline-block;
    }
    #menu .menu {
        margin-top: 10px;
    }
    #menu .logo a{
        font-size: 12px;
    }
    #menu .logo a .small{
        font-size: 12px;
    }
    
    .about-us .left .border{
        height: 360px;
    }
    
    .rooms-details .info1 .left .text-content{
        width: auto;
    }
    
}

@media screen and (max-width: 1100px){
    #menu .menu ul li a{
        padding: 0 5px;
    }
    
    .about-us .right .text-content{
        width: 400px;
    }
    
    .foods-info .info1{
        height: 850px;
    }
    
    .gallery-row .gallery-info .text-content{
        width: auto;
        min-width: 80%;
    }
    
    .gallery-row .gallery-info, .gallery-row .gallery-preview{
        height: 500px;
    }
    
}

@media screen and (max-width: 1050px){
    #menu .menu{
        display: none;
    }
    
    #menu .hamburger{
        display: inline-block;
    }
    
}

@media screen and (max-width: 991px){
    .restaurant-preview .foods .right{
        padding-right: 0;
    }
    
    .rooms .left .text-content{
        width: auto;
    }
    
    .rooms .left .border{
        width: 210px;
        left: calc(50% - 210px);
    }
    
    .about-us .left .border{
        height: 300px;
    }
    
    .about-us .right .text-content{
        width: auto;
    }

    .comments .right{
        height: auto;
        padding: 50px 25px;
    }
    
    .comments .right .text-content{
        position: static !important;
        transform: translate(0,0) !important;
        width: auto !important;
        display: inline-block;
        max-width: none;
    }
    
    .contact-form .form-group:nth-child(2n+1), .bookingForm .form-group:nth-child(2n+1),
    .contact-form .form-group:nth-child(2n), .bookingForm .form-group:nth-child(2n){
        padding-left: 0;
        padding-right: 0;
    }
    
    .fishing-info .content .info2 .left{
        display: none;
    }
    
    .rooms-details .info1 .left{
        height: 350px;
    }
    
    .gallery-row .text-content{
        position: static !important;
        transform: translate(0,0) !important;
        width: auto !important;
    }
    
    .gallery-row .gallery-info, .gallery-row .gallery-preview{
        height: auto;
    }

    .gallery-row .gallery-preview{
        margin-bottom: 50px;
    }
    
}

@media screen and (max-width: 767px){
    
    .main-slider, .main-image{
        display: none !important;
    }
    
    .about-us .left .border{
        display: none;
    }
    
    .about-us .right{
        padding-top: 0 !important;
        padding-bottom: 50px !important;
    }
    
    .text-content, .about-us .mm{
        position: static !important;
        transform: translate(0,0) !important;
        width: auto !important;
    }
    
    .about-us, .about-us .left, .about-us .right, .comments .left{
        height: auto;
    }

    .fishing, .fishing .left, .fishing .right, .outdoor .left, .outdoor .right{
        height: auto;
    }
    
    .about-us .right, .fishing .left, .rooms .left, .rooms .right, .outdoor .left, .outdoor .right, .comments .left, div.news{
        padding: 50px 25px;
    }

    div.news > div, div.news .news-slider{
        padding: 0;
    }
    .news .news-slider .slick-arrow.left-arrow{
        left: 40px;
    }

    .news .news-slider .slick-arrow.right-arrow{
        left: 90px;
    }



    .about-us .left{
        padding: 20px 25px;
    }
    
    .rooms .left .text-content .details a{
        margin-bottom: 0;
    }
    
    .rooms .right .tel{
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .comments .left .text-content{
        max-width: none;
        width: 100%;
        padding: 0 7%;
    }
    
    .text-content h1{
        font-size: 30px !important;
    }
    
    .text-content h2{
        font-size: 26px !important;
    }
    
    .restaurant-preview .foods{}
    
    .rooms, .rooms .left, .rooms .right{
        height: auto;
    }
    
    .rooms .left .border{
        display: none;
    }
    
    .outdoor .left{
        display: none;
    }
    
    .outdoor .right, .comments .left{
        background: 0;
        border-bottom: 0;
    }
    
    .outdoor{
        border-bottom: 0;
    }

    .restaurant-preview .right{
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .restaurant-preview .cat-selector .is-item .image-container > div{
        width: 32px;
        height: 32px;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .restaurant-preview .cat-selector .is-item .image-container{
        padding: 10px;
        display: inline-block;
    }
    
    .restaurant-preview .cat-selector .is-item{
        width: 100px;
        margin-right: 0;
        font-size: 12px;
    }
    
    .restaurant-preview .cat-selector .linebg{
        display: none;
    }
    
    .restaurant-preview .foods .menu-el .name{
        font-size: 16px;
    }
    
    .restaurant-preview .foods .menu-el .price{
        font-size: 18px;
        width: 75px;
    }
    
    .restaurant-preview .foods .menu-el .linebg{
        bottom: 9px;
    }
    
    .restaurant-preview .foods .menu-el .small, .restaurant-preview .foods .menu-el .smallsmall{
        font-size: 12px;
    }
    
    .fishing-info .content .info1 .left, .fishing-info .content .info1 .right{
        height: auto;
    }
    
    .fishing-info .content .text-content{
        padding: 50px 25px;
    }
    
    .fishing-info .content .info1 .text-content{
        padding-bottom: 150px;
    }
    
    .fishing-info .content .info2 .right .circle{
        top: -130px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .fishing-info .content .info2 .text-content{
        padding-top: 100px;
    }
    
    .fishing-info .info3 .left, .fishing-info .info3 .right{
        height: auto;
    }
    
    .foods-info .info1{
        height: auto;
        padding: 50px 25px;
    }
    
    .fishing-info .content .info2 .left, .fishing-info .content .info2 .right{
        height: auto;
    }
    
    .fishing-info .info3 .left .text-content{
        display: inline-block;
    }
    
    .fishing-info .info3 .right .text-content{
        display: inline-block;
    }
    
    .fishing-info .info3 .left .fish{
        margin: 10px !important;
    }
    
    .fishing-info .content .text{
        font-size: 16px;
    }
    
    .fishing-info .info3 .text-content .text .price, .rooms-details .info2 .text .price{
        font-size: 20px;
    }
    
    .foods-info .info2 .category{
        margin-bottom: 10px;
    }
    
    .foods-info .info2 .category:last-child{
        margin-bottom: 20px;
    }
    
    .foods-info .selector > div.foods{
        margin-bottom: 10px;
    }
    
    .foods-info .info3{
        padding: 50px 10px;
    }
    
    .foods-info .info3 > div{
        padding: 0;
    }
    
    .foods-info .info3 .menu{
        padding: 0;
    }
    
    .foods-info .info3 .menu > div{
        padding: 0;
    }
    
    .foods-info .menu-el .price{
        font-size: 18px;
    }
    
    .foods-info .menu-el .name{
        font-size: 16px;
    }
    
    .rooms-details .info1 .left, .rooms-details .info1 .right, .rooms-details .info5, .rooms-details .info2 .right, .contact .content .right{
        height: auto;
        padding: 50px 25px;
    }

    .rooms-details .info2 .left{
        display: none;
    }
    
     #map{
        height: 400px !important;
     }
     
     .contact .contacts > div{
        font-size: 15px;
     }
     
     .contact .contact-form{
        padding-left: 0;
        padding-right: 0;
     }
     
     .contact .contacts i{
        width: 35px;
        height: 35px;
        line-height: 35px;
     }

}

@media screen and (max-width: 500px){
    .restaurant-preview .foods .menu-el .name{
        font-size: 14px;
        text-align: left;
    }
    .restaurant-preview .foods .menu-el .price{
        font-size: 16px;
        width: 70px;
    }
    
    .foods-info .menu-el .price{
        font-size: 16px;
    }
    
    .foods-info .menu-el .name{
        font-size: 14px;
    }
    
    .contact .contacts > div{
        font-size: 12px;
     }
     
     .policy{
        padding: 30px 25px !important;
     }
    
}


.video-container .play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    font-size: 50px;
    color: rgb(175, 153, 114);
    cursor: pointer;
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 100%;
    padding-top: 18px;
}

.video-container .video{
    transition: all 0.5s;
    opacity: 0;
}

.video-container .video.active{
    opacity: 1;
}

.video-container .video-overlay.inactive{
    display: none;
}

.video-container{
    width:100%;
    overflow:hidden;
    position:relative;
    padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}


.video-container iframe,{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.video-container iframe, {
  pointer-events: none;
}

.video-container iframe{
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
}

#noticeModal,
#bookingModal,
#alertModal,
#adModal,
#infoModal{
    z-index: 99999999;
}

#infoModal h5{
    font-weight: bold;
    text-transform: uppercase;

}

#adModal{
    top: 20%;
}

#adModal .modal-dialog{
    min-width: 40%;
}

#adModal .modal-body{
    display: inline-block;
    width: 100%;
    padding: 0;
}

#adModal .modal-body b{
    color: #af9972;
}


#noticeModal .modal-content,
#bookingModal .modal-content,
#infoModal .modal-content{
    border-radius: 0;
}

#infoModal .modal-dialog{
    min-width: 40%;
}

#infoModal .video{
    height: 36px;
    border: 1px solid #333;
    background: none;
    font-size: 16px;
    background: transparent;
    color: #333;
    font-weight: normal;
    padding: 0 20px;
    margin-left: 15px;
}

#infoModal .modal-header .modal-title{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
}

#bookingModal .modal-body{
    display: inline-block;
}

#bookingModal .bookingForm{
    margin-top: 0;
}

#noticeModal .modal-body p{
    font-size: 16px;
}

#noticeModal .modal-footer button{
    width: 120px;
    height: 40px;
    border: 1px solid #333;
    background: none;
    font-size: 14px;
    font-weight: normal;
    border-radius: 0;
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999999999;
    display: none;
}

.loader.active{
    display: block;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #af9972;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

video{
    object-fit: cover;
}

.rooms-info{
	padding: 60px 20px !important;
}

.rooms-info .text{
	max-width: 600px;
	margin: 0 auto;
	float: none;
}

.news-details{
	padding: 80px 5% !important;
}

@media screen and (max-width: 767px){
	.news-details{
		padding: 30px 10px !important;
	}
}

.news-details .text{
	display: inline-block;
	margin-bottom: 50px;
}

.news-details .text .news-title{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
}
