:root {
    /* Primaries */
    --dark-green: #124E43;
    --light-green: #007677;
    --light-blue: #7FB3B0;
    --dark-blue: #122932;
    /* Accents */
    --purple: #9D96D3;
    --pink: #D980A6;
    --yellow: #DD9D4E;
    --green: #81883A;
    /* Fonts */
    --font-heading: "DMSerifTextRegular";
}

.location-icon {
    position: absolute;
    right: 50px;
    top: 0;
    transform: translateY(-50%);
}

.background2 {
    padding: 0;
    background-color: #F6D1C3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    max-width: 1920px;
    margin: 0 auto 80px;
    border-radius: 60px;
}

.background2 div {
    background-color: transparent;
    background-image: url('/Portals/0/Images/IntestineElements.svg');
    /* background-repeat: no-repeat; */
    background-size: auto 100%;
    background-position: 100%;
    background-color: #F6D1C3;
}

.accordion-card {
    border: 6px solid white;
    padding: 20px 10px;
    background-color: #7fb3b0;
    cursor: pointer;
}

.squigglies-left,
.squigglies-right {
    border-radius: 60px 0 0 60px;
}

.squigglies-right {
    display: block;
    transform: scaleX(-1);
}

.background2 h2 {
    color: var(--dark-green);
    text-align: center;
    background-color: #F6D1C3;
    padding: 10px 80px;
}

.profile-image {
    width: 242.48px; 
    height: 303.84px;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 1920px) {
    .background2 {
        background-color: transparent;
        border-radius: 0;
    }

    .squigglies-left {
        border-radius: 0;
    }

    .squigglies-right {
        display: none;
    }

    .background2 h2 {
        border-radius: 0 60px 60px 0;
    }
}

@media screen and (max-width: 767px) {
    .background2 {
        width: 100%;
        background-color: #F6D1C3;
    }

    .background2 h2 {
        border-radius: 0;
    }
}

@media screen and (max-width: 575px) {
    .background2 h2 {
        padding: 10px 15px;
    }
}



