@font-face {
    font-family: 'poppins-regular';
    src: url('../font/poppins-regular.woff2') format('woff2'),
    url('../font/poppins-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    padding: 0;
    margin: 0;
    font-family: 'poppins-regular', 'sans-serif';
    font-size: 15px;
    line-height: 1.7;
    color: #312e2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #fff;
    font-family: poppins-regular, sans-serif;
    text-transform: capitalize;
    margin: 15px 0 0;
    line-height: 1.3;
}

h1 {
    font-weight: lighter;
    font-size: 36px;
}

h2 {
    font-weight: lighter;
    font-size: 28px;
}

h3 {
    font-weight: lighter;
    font-size: 24px;
}

h4 {
    font-weight: lighter;
    font-size: 18px;
    margin: 0;
}

p {
    font-weight: lighter;
    margin: 15px 0;
}

a {
    color: inherit;
    transition: all .5s;
    text-decoration: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}

/***************************/
/* COLUMN GROUP */
/***************************/
.group {
    position: relative;
    width: 100%;
    display: flow-root;
    overflow: hidden;
}
.group .col-xs-4 {
    display: flex;
    overflow: hidden;
}

.group img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%);
    transform: scale(1);
    transition: all .6s;
}
.group .col-xs-4:hover img {
    transform: scale(1.03);
}
.group .col-xs-4:hover .logo {
    transform: scale(1);
}
.name_hotel {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.name_hotel .logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}


