.card__container {
    /*width: 1200px;*/
    height: 100%;
    margin: 0 auto;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    justify-content: space-around;
}

.card {
    /*width: calc((100%/3.2));*/
    border-radius: 5px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    height: 100%;
    position: relative;
    /*margin-top: 20px;*/
    /*margin-bottom: 40px;*/
}
.card__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.card__body {
    padding: 20px;
    background: #fff;
    margin-top: -4px;
    border-radius: 0 0 5px 5px;
}
.card__title {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
    height: 100px;
}
.card__title i {
    color: #339AF0;
    margin-right: 5px;
    font-size: 1.1em;
}
.card__desc {
    margin-top: 20px;
    font-size: 1em;
}
.card__desc > span > i {
    color: #339AF0;
    margin-right: 5px;
}
.card__desc__room, .card__desc__bed {
    margin-right: 20px;
    font-size: 1em;
}
.card__desc__price {
    font-size: 1em;
    font-weight: bold;
    float: right;
    text-align: right;
}
.card__desc__price--small {
    font-size: 0.8em;
}
.card__buttons {
    display: flex;
    /*transform-origin: top;*/
    /*transform: scaleY(0);*/
    width: 100%;
    /*position: absolute;*/
    box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.2s ease-out;
}
.card__buttons .btn {
    border-radius: 0px !important;
    color: whitesmoke;
    font-weight: normal;
}
.card__buttons .btn:hover {
    color: black !important;
}
.card__buttons--gray, .card__buttons--primary {
    width: 50%;
    display: inline-block;
}
.card__buttons--primary {
    background: #339AF0;
    color: white;
}
.card:hover .card__body {
    border-radius: 0;
}
.card:hover .card__buttons {
    transform: scaleY(1);
    transition: transform 0.2s ease-in;
}
.card:hover .card__buttons--gray {
    border-radius: 0 0 0 5px;
}
.card:hover .card__buttons--gray:hover {
    /*background: #e5e5e5;*/
}
.card:hover .card__buttons--primary {
    border-radius: 0 0 5px 0;
}
.card:hover .card__buttons--primary:hover {
    background: #008cff;
}








.welcome_area {
    /*text-align: left;*/
    /*padding-top: 7%;*/
    /*padding-bottom: 10%;*/
    /*padding-left: 10%;*/
    /*padding-right: 10%;*/
}
.welcome_area .icon {
    color: #1e56a0;
    margin-bottom: 1rem;
}
.welcome_area .fb {
    padding: 5%;
}
.welcome_area h3 {
    color: #000;
    font-size:1.2rem;
}
.welcome_area h1 {
    text-transform: uppercase;
    padding-bottom: 15px;
    font-size: 48px;
    color: #000;
}
.welcome_area .carddesign p {
    color: #222222;
    text-align: left;
    font-size:1rem;
}
.welcome_area ul {
    list-style: none;
}
.welcome_area ul li::before {
    content: "\2022";
    color: #1e56a0;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    /*margin-left: -1.3em;*/
}