@import url("/g/webfonts/Montserrat.css");

html,body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    font-family: Montserrat, sans-serif;
    width: 100%;
    position: relative;
    display: block;
    min-width: 0px;
    background-image: url("/g/images/glass_1.png");
    background-repeat: no-repeat;
    background-position: center top 0;
    background-size: auto;
    background-attachment: fixed;
    background-color: rgba(255,255,255, 1);
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.d-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

header {
    background: #fff;
}
header .d-flex{
    height: 110px;

}

.logo-title{font-size: 24px; font-weight: 600;rgb(26, 26, 26)}
.logo-subtitle{font-size: 18px;color: rgba(26, 26, 26, 0.8);padding-top: 1px}
.address{
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-icon{
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.address-icon svg{
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.address-text{text-align: right}

.main-image{
    height: 700px;
    display: grid;
    grid-template-columns: 1fr;
    background: url("/g/images/slider-01.jpg") center;
    background-size: cover;
    position: relative;
}


.dark-block{
    background: linear-gradient(90deg, #371900b3, transparent, #371900b3);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 100px;
}

.mosaic-slider{
    display: flex;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.mosaic-slider div{
    flex-shrink: 0;
    cursor: pointer;
    min-width: 20px;
    min-height: 20px;
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    border-bottom-left-radius: 250px;
    box-shadow: 0px 0px 0px 8px rgba(255,255,255, 0.4);
    background-color: rgba(255,255,255, 0);
    transition-property: all;
    transition-duration: 600ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    z-index: 1;
}
.mosaic-slider div:hover{
    background-color: rgba(64,32,0, 0.8); ;

}

.dark-block-text{
    font-size: 4vw;
    line-height: 1em;
    color: #fff;
    font-weight: 800;
}

section{
    padding-top: 8%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 5%;
}

h1,h2{
    font-size: 4vw;
    font-weight: 800;
    color: #333;
    text-align: center;
    padding-bottom: 40px;
    line-height: 8vh;
    text-shadow: 1px 1px 1px #fff;
}
h2{
    font-size: 5vh;
}

.content,
.content p{
    font-size: 24px;
    color: rgba(26,26,26, 0.6);
    line-height: 1.5em;
    text-align: justify;
}

.content p{
    text-indent: 5%;
}

.content img{
    max-width: 100%;
    border-radius: 4px;
}

.rooms-block-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 40px;
}

.rooms-block{
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 5px 5px 5px #eee;
}
.rooms-block img{
    width: 100%;
}

h3{
    font-size: 24px;
    text-align: center;
}

.rooms-block-price{
    text-align: right;
}
.rooms-block-price span{
    font-weight: 600;
}

.horizontal{
    display: flex;
    list-style: none;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: unset;
}