/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "area-normal", sans-serif;
    background-color: #ffffff;
    color: var(--font-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .booking-tiles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 100px;
    }
    .booking-tiles div {
        position: relative;
        padding: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 300px;
        border-radius: 5px;
        box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.2), 2px 2px 12px rgba(0, 0, 0, 0.2);
    }
    .booking-tiles img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }
    .booking-tiles div h2  {
        max-width: 90%;
        font-size: 20px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h3  {
        max-width: 90%;
        font-size: 15px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h4  {
        max-width: 90%;
        font-size: 14px;
        font-weight: 700;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto 15px auto;
    }
    .booking-tiles div button {
        cursor: pointer;
        display: block;
        border-radius: 0 0 5px 5px;
        padding: 10px 20px;
        width: 100%;
        margin: 0 auto;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }
    .booking-tiles div button:hover {
        border-color: var(--off-color);
        background-color: var(--off-color);
        color: var(--primary-color);
    }
}
@media(max-width: 1366px) and (min-width: 1024px) {
    .booking-tiles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 75px;
    }
    .booking-tiles div {
        position: relative;
        padding: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 300px;
        border-radius: 5px;
        box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.2), 2px 2px 12px rgba(0, 0, 0, 0.2);
    }
    .booking-tiles img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }
    .booking-tiles div h2  {
        max-width: 90%;
        font-size: 20px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h3  {
        max-width: 90%;
        font-size: 15px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h4  {
        max-width: 90%;
        font-size: 14px;
        font-weight: 700;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto 15px auto;
    }
    .booking-tiles div button {
        cursor: pointer;
        display: block;
        border-radius: 0 0 5px 5px;
        padding: 10px 20px;
        width: 100%;
        margin: 0 auto;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }
    .booking-tiles div button:hover {
        border-color: var(--off-color);
        background-color: var(--off-color);
        color: var(--primary-color);
    }
}
@media(max-width: 1024px) and (min-width: 769px) {
    .booking-tiles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .booking-tiles div {
        position: relative;
        padding: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 250px;
        border-radius: 5px;
        box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.2), 2px 2px 12px rgba(0, 0, 0, 0.2);
    }
    .booking-tiles img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }
    .booking-tiles div h2  {
        max-width: 90%;
        font-size: 20px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h3  {
        max-width: 90%;
        font-size: 15px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto;
    }
    .booking-tiles div h4  {
        max-width: 90%;
        font-size: 14px;
        font-weight: 700;
        color: var(--font-color);
        text-align: center;
        margin: 10px auto 15px auto;
    }
    .booking-tiles div button {
        cursor: pointer;
        display: block;
        border-radius: 0 0 5px 5px;
        padding: 10px 20px;
        width: 100%;
        margin: 0 auto;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }
    .booking-tiles div button:hover {
        border-color: var(--off-color);
        background-color: var(--off-color);
        color: var(--primary-color);
    }
}
@media(max-width: 769px) {
    .booking-tiles {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 25px;
    }
    .booking-tiles div {
        position: relative;
        padding: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 150px;
        border-radius: 5px;
        box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.2), 2px 2px 12px rgba(0, 0, 0, 0.2);
    }
    .booking-tiles img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }
    .booking-tiles div h2  {
        max-width: 90%;
        font-size: 20px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 5px auto;
    }
    .booking-tiles div h3  {
        max-width: 90%;
        font-size: 14px;
        font-weight: 900;
        color: var(--font-color);
        text-align: center;
        margin: 5px auto;
    }
    .booking-tiles div h4  {
        max-width: 90%;
        font-size: 14px;
        font-weight: 700;
        color: var(--font-color);
        text-align: center;
        margin: 5px auto 15px auto;
    }
    .booking-tiles div button {
        cursor: pointer;
        display: block;
        border-radius: 0 0 5px 5px;
        padding: 10px 20px;
        width: 100%;
        margin: 0 auto;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }
    .booking-tiles div button:hover {
        border-color: var(--off-color);
        background-color: var(--off-color);
        color: var(--primary-color);
    }
}