body {
    margin: 0;
}

.main {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.p {
    font-size: 1.1rem;
}

.writings {
    text-align: justify;
    margin-top: 8px;
    margin-bottom: 0px;
    line-height: 1.7em;
}

.heading {
    margin-bottom: 2px;
    text-shadow: 2px 2px 5px cornflowerblue;
    text-align: center;
    font-family: none;
}

/* swipe card css */
.reviews {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.review-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 277px;
    border-radius: 12px;
    margin: 6px;
    background-color: #F2F2F2;
    padding: 13px 6px;
}

@media only screen and (max-width: 687px) {
    .review-card {
        width: 90%;
    }
}



.reviews h3 {
    font-family: cursive;
    -webkit-text-decoration: underline wavy #22a4be;
    text-decoration: underline wavy #22a4be;
    width: 80%;
    text-align: center;
    margin: 13px 6px;
    color: blue;
}

.review-card h4 {
    font-size: 15px;
}

.review-card img {
    height: 50px;
}

/* swipe card css */

/*
 .sticky-call-button {
     position: fixed;
     bottom: 50px;
     left: 20px;
     background-color: #31df45;

     color: #0e0e0e;
     padding: 10px 20px;
     border-radius: 5px;
     box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
     cursor: pointer;
 }
 .sticky-call-button:hover {
     background-color: #007bff;
     color: #ffffff;

 }
*/
.sticky-whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.sticky-whatsapp-button:hover {
    background-color: #31df45;
    color: #0e0e0e;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top p {
    margin: 9px
}

.texts {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    margin: 6px 6px 6px 0px;
}

.spacer {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    color: black;
}

.cont {
    background: #73C8A9;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #373B44, #73C8A9);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #373B44, #73C8A9);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    margin: 8px;
    border-radius: 11px;
}

@media only screen and (min-width: 430px) {
    .card {
        width: 45%;
        padding: 6px;
        margin: 6px;
    }
}

.places {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: wrap;
}

.card {
    padding: 6px;
    margin: 6px;
}




.foot {
    padding: 13px;
    text-align: center;
    background: beige;
}


/* CSS */
.button-89 {
    --b: 3px;
    /* border thickness */
    --s: .45em;
    /* size of the corner */
    --color: #373B44;

    padding: calc(.5em + var(--s)) calc(.9em + var(--s));
    color: var(--color);
    --_p: var(--s);
    background:
        conic-gradient(from 90deg at var(--b) var(--b), #0000 90deg, var(--color) 0) var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
    transition: .3s linear, color 0s, background-color 0s;
    outline: var(--b) solid #0000;
    outline-offset: .6em;
    font-size: 16px;
    border: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-89:hover,
.button-89:focus-visible {
    --_p: 0px;
    outline-color: var(--color);
    outline-offset: .05em;
}

.button-89:active {
    background: var(--color);
    color: #fff;
}