@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    height: 100vh;
    background: #0d0e0f;
    font-family: 'Magra', sans-serif;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0);
    text-align: center;
}

.container {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
    margin: 0 35vw;
}

.head__section {
    padding: 20px 0px;
}

.head__section>img {
    height: 8rem;
    width: 8rem;
    object-fit: cover;
    border-radius: 50%;
}

.head__section>h1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5;
}

.head__section>p {
    color: #fff;
    font-size: 0.9em;
}

.list__section>a {
    display: block;
    margin: 15px auto;
    border: 2px solid #fff;
    padding: 0.8rem 1rem;
    color: #fff;
    transition: transform 0.2s cubic-bezier(0, 0.2, 0.5, 3) 0s;
}

.list__section>button {
    display: block;
    margin: 15px auto;
    border: 2px solid #fff;
    padding: 0.8rem 1rem;
    color: #fff;
    transition: transform 0.2s cubic-bezier(0, 0.2, 0.5, 3) 0s;
    background: transparent;
    width: 100%;
    font-family: 'Magra', sans-serif;
    font-size: 16px;
}

.list__section>a:hover {
    background-color: #ffffff;
    background-image: none;
    color: #000000;
    transform: scale(1.02);
}

.list__section>button:hover {
    background-color: #ffffff;
    background-image: none;
    color: #000000;
    transform: scale(1.02);
}

/* expand area */
.hk__expand__content {
    display: none;
}

.hk__expand__content.is__opened {
    display: block;
    background-color: #fdfdfd;
    padding: 10px;
    text-align: left;
}

.hk__expand__content>h2:first-child {
    margin-bottom: 10px;
}

.hk__expand__content>h2:not(:first-child) {
    margin: 30px 0 10px 0;
}

/* tabs */
.tabs {
    display: flex;
    border: 1px solid #ccc;
    border-bottom: none;
}

.tab {
    padding: 10px 0px;
    cursor: pointer;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #E1E5EA;
    width: 100%;
    text-align: center;
}

.tab.active {
    border: none;
    background-color: #fff;
}

.tab:hover {
    background: #fff;
}

.tab.active:first-child {
    border-left: none;
}

.tab.active:last-child {
    border-right: none;
    border-left: none;
}

.active {
    display: block;
}

.tab-content {
    background-color: #fff;
}

.tab-content-item {
    border: 1px solid #ccc;
    display: none;
    max-width: 100%;
    margin-top: -1px;
    padding: 10px;
}

.tab-content-item>h2 {
    color: #ff2d16;
    text-align: center;
    margin: 0 0 10px 0;
}

.tab-content-item.active {
    display: block;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.card:not(:last-child) {
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}

.card>img {
    border-radius: 2px 2px 0 0;
    width: 100%;
    height: 170px;
    object-fit: cover;
    /* object-position: top bottom; */
}

.card__container {
    padding: 10px 10px 10px 10px;
    background-color: #F5F5F5;
}

.card__container>p:first-child {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 6px;
}

.card__container>p {
    font-size: 16px;
    margin-bottom: 6px;
}

.card__button {
    margin-top: 12px;
    text-align: center;
    columns: 4;
}

.card__button>.card__button_inner>a {
    padding: 5px 12px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    border-radius: 2px;
    transition: all 300ms;
    color: #111;
    background-color: #E1E5EA;
    border: 1px solid #E1E5EA;
}

/* disabled link */
[aria-current="page"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

/* .card__button_inner>a.card__book {
    background-color: #E1E5EA;
    border: 1px solid #E1E5EA;
}

.card__button_inner>a.card__call {
    background-color: #E1E5EA;
    border: 1px solid #E1E5EA;
}

.card__button_inner>a.card__location {
    background-color: #E1E5EA;
    border: 1px solid #E1E5EA;
} */

/* a.card__book:hover, a.card__call:hover, a.card__location:hover {
    background: transparent;
    border: 1px solid #A7BBC7;
    color: #333;
} */

.card__button>.card__button_inner>a:hover {
    background: transparent;
    border: 1px solid #A7BBC7;
    color: #333;
}

/* mobile */
@media only screen and (max-width: 767px) {
    .container {
        margin: 0 5vw
    }

    .tab{
        font-size: 14px;
    }

    .card__button {
        columns: 4;
    }

    .card__button>.card__button_inner>a {
        margin: 5px 0;
    }
}