/* Cards */

.price-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
}

.price-cards .custom-card {
    border: solid white 4px;
    /* box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.041); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    padding: 30px;
    padding-bottom: 0px;
    text-align: center;
    margin-top: 20px;
}

.price-info a {
    color: black;
}

.companions span {
    color: rgb(42, 186, 200);
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
}

.price-cards h5 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.price-cards hr {
    display: block;
    height: 1px;
    border: 0;
    /* border-top: 1px solid rgb(228, 228, 228); */
    border-top: 1px solid white;
    margin: 1em 0;
    padding: 0
}

.price-cards p {
    color: rgb(131, 131, 131);
    margin-bottom: 20px;
}

.custom-card .offer {
    margin-bottom: 80px;
    margin-top: 30px;
}

.custom-card .offer p {
    margin-bottom: 10px;
}

.price-cards .price {
    font-size: 42pt;
    font-weight: bolder;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #3185c9;
}

.price-cards .price::before {
    content: "€";
    font-size: medium;
    position: absolute;
    margin-left: -14px;
    margin-top: 14px;
    color: #3185c9;
}

.price-cards button {
    border: 3px #3185c9 solid;
    background-color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 10pt;
    font-weight: bolder;
    color: #3185c9;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.price-cards button:hover {
    background-color: #3185c9;
    color: white;
}

.price-cards .month::after {
    content: "/ month";
    font-size: medium;
}

.price-cards .best-price {
    border: 5px solid #3185c9;
}

.price-cards .best-price button {
    color: white;
    background-color: #3185c9;
}

.custom-card .week-visit {
    color: #43b7c3;
}

.card-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
}

.close-form {
    cursor: pointer;
    color: #3185c9
}

.close-form:hover {
    text-decoration: none;
    color: #3185c9

}

.submit-form {
    cursor: pointer;
    padding: 5px 10px;
    background: #3185c9;
    color: white;
    border-radius: 5px;
}