body{
    background: url(/img/main_bg.jpg) 50% 50% no-repeat;
    background-size: cover;
    object-fit: cover;
    font: normal 21px/24px 'MinionProRegular', "Times New Roman", Times, serif;
    background-attachment: fixed;
}
ul.info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
.header-row{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    gap: 15px;
}
.class-slider{
    max-width: 415px;
    position: relative;
    width: 100%;
    height: 244px;
}

.class-slider img{
    position: absolute;
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
    opacity: 0; transition: opacity 1s ease-in-out;
}
.class-slider img.active { opacity: 1; }

.menu a:hover{
    background: #ffffffe0;
}
.white-content{
    background: #ffffffe0;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.map-content{

    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}
.footer{background-color: #00000050;padding: 10px;}
.footer .container,
.footer{

    display: flex;
    justify-content: center;
    align-items: center;

}
.footer .info li{
    margin: 0;
}
.grid-2,
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 10px;
    padding-bottom: 20px;
}
.grid-2{
    grid-template-columns: 1fr 1fr;
}
.grid-2 img,
.grid-3 img{
    max-width: 100%;
    width: 100%;
}
.grid-3.gallery img{
    height: 100%;
}
.room-item{
    background: #ffffffe0;
    border-radius: 4px;
    text-align: center;
    padding: 10px 15px;
}
.smgall h3,
.room-item h3{
    font-size: 20px;
    color: chocolate;
    text-align: center;
}
.room-item>span{
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 22px;
    font-weight: bold;
    color: chocolate;
}
.room-item ul{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.room-item img{
    width: 100%;
    border-radius: 4px;
}

table{
    font-size: 0.8em;
    text-align: center;
    border: 1px solid #eee;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 20px 0;
}
table th,
table td{ padding: 5px 10px; border: 1px solid #eee}
table th{background: #ffffffe0}
.fullimg{width: 100%; height: auto;display: block; max-width: 500px; margin: 0 auto}
.smgall>div{
    background: #fff;
    box-shadow: 0px 0px 3px #aaa;
    padding-top: 5px;
}
.tour-widget{
    position: relative;
    overflow: hidden;
}

.tour-widget:after{
    content: ' ';
    position: absolute;
    width: 100%;
    background: #fff;
    left: 0;
    bottom: 0;
    height: 60px;
}
@media screen and (max-width: 963px){
    .header-row{
        padding: 20px 15px;
    }
    .class-slider{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 780px){
    .grid-3{
        grid-template-columns: 1fr 1fr;

    }
}
@media screen and (max-width: 550px){
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 640px){
    .footer .info li{
        text-align: center;
    }
    .class-slider{
        display: none;
    }
    .header-row{
        justify-content: center;
    }
}