.logo {
    height: 50px;

}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: black;
}

.color_grey {
    color: #a3a3a3;
}

.width_50_percentage {
    width: 50%;
}

.float_right {
    float: right;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    background: url(../../assets/images/home-background.png) center center/cover no-repeat;
    height: 100%;
    width: 100%;
    z-index: -2;
}

.price-bg {
    background: url(../../assets/images/samantha-gades-x40Q9jrEVT0-unsplash.jpg) center center/cover no-repeat;
}

.blank {
    height: 300px;
}

.main {
    margin-top: -300px;
}

.contact-bg {
    background: url(../../assets/images/chuttersnap-iQVn40PdwW0-unsplash.jpg) center center/cover no-repeat;
}


@media only screen and (max-width: 32rem) {
    .main {
        margin-top: -250px;
    }
}

.bg_greydark_alpha_6 {
    background-color: rgba(101, 100, 96, 0.6);
    z-index: -1;
    height: 100%;
    width: 100%;
}

.navbar {
    --bs-navbar-color: #fff;
}

.nav-link:focus,
.nav-link:hover {
    color: #e4e4e4;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    box-shadow: 0px 4px 0px #8fa8ab;
    background-color: #a1c2c5;
    color: #fff;
    text-decoration: none;
    border-radius: 0.375rem;
}

.h2 {
    font-size: 100px;
    line-height: 100px;
    color: #e4e4e4;
    margin-bottom: -10px;
}


.flex-grid,
.half-grid {
    flex-direction: column;
    gap: 1rem;
    display: flex;
}

@media only screen and (min-width: 50em) {
    .flex-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "main form";
        gap: 2rem;
        display: grid;
    }

    .half-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "main form";
        gap: 2rem;
        display: grid;
    }

}

.flex-grid>* {
    flex: 100%;
    width: 100%;
}

.card {
    overflow: hidden;
}

.card p {
    color: #a3a3a3;
}

.card img {
    border-bottom: 1px solid #e4e4e4;
}

.card-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.card-hover .button {
    padding: 5px 10px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.card-hover:hover {
    backdrop-filter: blur(5px);
    opacity: 1;
}

table tbody tr th {
    text-align: start;
    font-weight: 400;
}

table tbody tr td {
    text-align: center;

}

table tbody tr:last-child>* {
    font-weight: bold;
    border: 0;
}

table tbody tr td {
    width: 30%;
}

.yes {
    background-image: url(../../assets/icons/icons8-check-48.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}