body {
    background-color: #dad4c6;
    font-size: 16px;
}
.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    opacity: 0.2;
}
.bg-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -5;
    opacity: 0.2;
    transform: rotate(180deg);
}
.main {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
}
.main-row {
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}
.col-hotel {
    background-image: url(../img/01.jpg);
    border-right: solid 1px #FFF;
}
.col-agdynia {
    background-image: url(../img/19.jpg);
    border-right: solid 1px #FFF;
}
.col-aperzyca {
    background-image: url(../img/03.jpg);
}
.col-item {
    max-height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #dad4c6;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Cinzel', serif;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.info {
    color: #FFF;
    text-align: center;
    position: absolute;
    bottom: 110px;
    left: 0px;
    right: 0px;
    transition: all .4s ease 0s;
    z-index: 10;
}
.col-item .overl {
    background-color: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: all .4s ease 0s;
}
.info .title {
    font-size: 32px;
    /*font-family: 'Roboto Slab', serif;*/
}
.info .glyphicon-map-marker {
    font-size: 12px;
    margin-right: 4px;
}

.btn-box {
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 100%;
    opacity: .0;
    z-index: 10;
    transition: all .4s ease 0s;
}
.btn-box .btn {
    display: block;
    width: 50%;
    margin: 0 auto;
    border-radius: 0;
    background-color: #a6875d;
    border-color: #a6875d;
    line-height: 2;
}
.btn-box .btn:hover {
    background-color: #af936d;
    border-color: #af936d;
}

.col-item:hover .info {
    bottom: 180px;
}
.col-item:hover .overl {
    opacity: 0.4;
}
.col-item:hover .btn-box {
    bottom: 80px;
    opacity: 1;
}
@media (max-width: 1200px) {
    .col-item {
        height: 90vh;
    }
    .col-hotel {
        border-right: 0;
        border-bottom: solid 1px #FFF;
    }
    .col-agdynia {
        border-right: 0;
        border-bottom: solid 1px #FFF;
    }
}