.contentarea img {
    height: auto;
}

.gallery .pics {
    margin: 5px;
}
.blog #main article {
    clear: both;
}
.blog .alignleft img {
    max-width: 320px;
    height: auto;
}
.single .alignleft img {
    max-width: 450px;
}
.contact-page-info {
    margin-top: 50px;
}
@supports (object-fit: cover) {
    .gallery .pics img {
        width: 380px;
        height: 380px;
    }
}

/* Membership plan page */
.plan-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 50px 0;
    flex-wrap: wrap;
}

a.plan-box,
button.plan-box,
.plan-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(100%, 400px);
    text-align: center;
    text-decoration: none;
    gap: 10px;
    padding: 0 15px;
    background-color: transparent;
    color: #6a6a6a;
    line-height: 1.4;
    transition: ease-in-out 0.5s;
}

.plan-box svg {
    display: none;
}

.plan-box:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.plan-icon img {
    display: block;
}

.plan-icon {
    min-height: 170px;
    display: flex;
    align-items: center;

}


.membership-button {
    text-align: center;
}

.membership-plan-chart-section {
    display: block;
    position: relative;
    background: #f6f6f6;
    padding: 80px 0 120px;
    width: 100%;
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto;
}
.loaded .membership-plan-chart-section {
    background-image: url('../images/smiling-glasses.webp');
}
.membership-inner-container {
    max-width: 900px;
    width: 100%;
}
.membership-bottom {
    padding: 50px 0;
}

.membership-bottom .container {
    max-width: 1700px;
}
.membership-list {
    padding: 50px 0;
}
.membership-inner-container h3 {
    font-size: clamp(20px, 2vw, 31px);
    margin-bottom: 15px;
}

.membership-plan-chart-section .container {
    max-width: 1700px;
}
#membership {
    border-collapse: collapse;
    width: 100%;
    color: #414141;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
    background: #f6f6f6;
}

#membership td,
#membership th {
    border-bottom: 1px solid #a8a8a8;
    padding: 8px;
}

#membership tr:hover {
    background-color: #ddd;
}

#membership tr:nth-of-type(1):hover {
    background-color: transparent;
}

#membership th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: transparent;
    color: white;
}

#membership th#plan {
    color: #07b4ec;
    text-align: center;
}

#membership th#insurance {
    color: #414141;
    text-align: center;
}

#membership,
#membership th {
    border-bottom: 5px solid #07b4ec;
}

#membership td.yes {
    color: #07b4ec;
    text-align: center;
}

#membership td.no {
    color: #414141;
    text-align: center;
}

table#membership {
    font-size: clamp(12px, 2vw, 20px);
}

@media (max-width: 1100px) {
    .membership-inner-container {
        margin: 0 auto;
    }
    .membership-plan-chart-section {
        background-image: none !important;
    }
}

@media (max-width: 600px) {
    .membership-button .main-btn {
        margin: 0 auto;
    }
}

.add-reviews-btn-row .main-btn {
    display: none;
}

.add-reviews-btn-row {
    padding: 15px 0;
}

/* Internal styles */
.contentarea {
    position: relative;
    padding: 50px 0;
}
.contentarea .container {
    max-width: 1700px;
}

.contentarea:before {
    content: '';
    position: absolute;
    width: min(50vw, 456px);
    height: min(50vw, 516px);
    background-image: url('../images/water.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.contentarea .main-wrap {
    position: relative;
    z-index: 1;
}

/* sidebar */
.sidebar {
    padding: 8%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: #222;
    position: sticky;
    top: 15px;
}
/* Make sure to change this with the correct bg image */
.loaded .sidebar {
    background-image: url('../images/sidebarbg.webp');
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: flex-start;
}

.sidebar-inner h4 {
    color: #fff;
}

.sidebar-inner p {
    color: #fff;
    margin: 0;
}

.sidebar-inner .phone {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 5vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.9px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.sidebar-inner .main-btn {
    margin: 0;
}

.sidebar-inner .main-btn:hover {
    color: #fff;
    border-color: #fff;
}
.contact-map {
    margin-top: 50px;
}
/* FAQ Accordion */
.accordion {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}
.accordion-item:last-child {
    margin-bottom: 20px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: clamp(20px, 5vw, 25px);
}

.accordion-header .accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 15px;
    overflow: hidden;
}

.accordion-content p {
    margin: 0;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header .accordion-arrow {
    transform: rotate(180deg);
}
.core-icons h4 {
    font-size: clamp(17px, 2vw, 22px);
    letter-spacing: normal;
}

.core-icons p {
    display: none;
}
.row.core-row {
    gap: 15px 0;
}
.row.team-row {
    gap: 15px 0;
}
/* RESPONSIVE 
-----------------------------------------------*/
@media (max-width: 1200px) and (min-width: 991px) {
    .sidebar-inner .main4-btn {
        letter-spacing: normal;
    }
}

/* RESPONSIVE 
-----------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1400px) {
}

@media only screen and (min-width: 980px) {
}

@media (max-width: 1025px) {
}

@media only screen and (max-width: 979px) {
}

@media only screen and (max-width: 991px) {
    .vivos-pic img {
        width: min(100%, 250px);
    }
    .row.core-row {
        padding-bottom: 50px;
    }
}

@media all and (max-width: 600px) {
}

@media only screen and (max-width: 480px) {
    .gallery .pics {
        margin: 0 0 10px;
    }

    @supports (object-fit: cover) {
        .gallery .pics img {
            width: 300px;
            height: 300px;
        }
    }
}
