body{
    background: #ECEFF1;
}
#hero{
    background: #CFD8DC;
    padding: 80px 0;
}
#hero .container{
    display: flex;
    max-width: 1050px;
    margin: auto;
    align-items: flex-end;
    gap: 30px;
}
#hero h1{
    text-transform: uppercase;
    color: #364952;
    font-family: "e-Ukraine Head";
    font-size: 60px;
    width: 65%;
    margin: 0;
    line-height: 1.5;
}
#hero p{
    font-size: 12px;
    color: #608395;
    font-family: "e-Ukraine Medium";
    width: 35%;
    max-width: 280px;
    text-transform: uppercase;
    line-height: 24px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1499px){
    #hero h1{
        font-size: 40px;
        width: 48%;
    }
    #hero p{
        margin-bottom: 5px;
    }
    #hero .container{
        max-width: 950px;
    }
}
@media screen and (max-width: 1299px){
    #hero .container {
        max-width: 750px;
    }
}
@media screen and (max-width: 1024px){
    #hero{
        padding: 200px 0 60px;
    }
    #hero h1{
        font-size: 40px;
        width: 60%;
    }
    #hero .container{
        max-width: 100%;
        padding: 0 40px;
        align-items: flex-start;
    }
    #hero p{
        margin-top: 15px;
    }
}
@media screen and (max-width: 991px){
    #hero{
        padding-bottom: 100px;
    }
    #hero h1{
        font-size: 40px;
        width: 60%;
    }
}
@media screen and (max-width: 767px){
    #hero {
        padding: 120px 0 40px;
    }
}
@media screen and (max-width: 690px){
    #hero p{
        display: none;
    }
    #hero h1{
        text-align: center;
        font-size: 30px;
        width: 100%;
    }
}

/* rooms */

.documents{
    padding: 60px 180px 60px 180px;
    position: relative;
    z-index: 9;
}
.documents .container{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.documents .container .item{
    display: block;
    padding: 10px;
    width: calc((100% - 120px)/5);
    background: #fff;
    color: #364952;
}
.documents .container .item p{
    font-size: 12px;
    text-transform: uppercase;
    color: #364952;
    font-family: "e-Ukraine Medium";
    line-height: 2;
    margin-top: 10px;
}
.mfp-title{
    font-size: 14px;
    font-family: "e-Ukraine Medium";
}


@media screen and (max-width: 1650px) {

}
@media screen and (max-width: 1570px) {
    .documents .container .item{
        width: calc((100% - 90px)/4);
    }
}
@media screen and (max-width: 1400px) {
    .documents .container .item{
        width: calc((100% - 60px)/3);
    }
}
@media screen and (max-width: 1024px){
    .documents{
        padding: 40px;
    }
}
@media screen and (max-width: 767px){
    .documents .container .item{
        width: calc((100% - 30px)/2);
    }
}
@media screen and (max-width: 690px){

}
@media screen and (max-width: 630px){

}
@media screen and (max-width: 479px){
    .documents .container .item{
        width: 100%;
    }
}


/* bg-symbol */

#bg-symbol{
    position: absolute;
    top: -20px;
    right: 0;
    max-width: 40%;
    z-index: 1;
}

/* tree-room */
.tree-room{
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
    max-width: 400px;
}
@media screen and (max-width: 1399px){
    .tree-room{
        top: 5px;
    }
}
@media screen and (max-width: 1024px){
    .tree-room{
        transform: scaleX(-1);
        left: auto;
        right: 0;
        top: 130px;
    }
}
@media screen and (max-width: 767px){
    .tree-room{
        top: 80px;
        max-width: 350px;
    }
}
@media screen and (max-width: 690px){
    .tree-room{
        display: none;
    }
}