:root {
    /* Global Settings */
--body-bgcolor: #ffffff;
--font-color: #555555;
--body-width: 100%;
--body-margin: 0px;
--base-font-family: "Times New Roman", Times, serif;
--focus-outline: 3px solid #DB260A;
--heading-color: #385b4f;
--standard-padding-small-screen: .5rem;
--standard-padding-large-screen: 1rem;
--dark-highlight: #385b4f;
--dark-highlight-transparent: #385b4fbb;
--medium-highlight: #bb8b9d;
--medium-highlight-transparent: #bb8b9dbb;

/* Layout Settings */
--body-grid-rows: auto 1fr auto;
--header-col-start: 1;
--header-col-end: 6;
--main-col-start: 1;
--main-col-end: 6;
--footer-col-start: 1;
--footer-col-end: 6;
--header-position: sticky;

/* Header Settings */
--header-background-color: #ece8e3;
--header-height-small: 80px;
--logo-maxwidth-fullscreen: none;
--logo-maxheight-fullscreen: none;
--logo-minheight-fullscreen: 100px;
--logo-maxheight-smalscreen: calc(var(--header-height-small) - (var(--standard-padding-large-screen) * 2));
--logo-minheight-smalscreen: 100px;

/* Navigation Settings */
--nav-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--nav-font-size: 20px;
--nav-font-weight: 600;
--nav-button-bgcolor: transparent;
--nav-button-bordercolor: transparent;
--nav-button-borderradius: 0px;
--nav-button-textcolor: var(--dark-highlight);
--nav-button-bgcolor-hover: transparent;
--nav-button-bordercolor-hover: var(--dark-highlight);
--nav-button-borderradius-hover: 2px;
--nav-button-textcolor-hover: var(--dark-highlight);
--nav-dropdown-bgcolor: var(--dark-highlight);
--nav-dropdown-textcolor: #f2f8f8;
--nav-icons-fillcolor: var(--dark-highlight);
--nav-icons-hoverborder: var(--dark-highlight);
--munu-toggle-border: var(--dark-highlight);

/* Main Content Settings */
--main-bgcolor: #ffffff;

/* Footer Settings */
--footer-bgcolor: var(--dark-highlight);
--footer-textcolor: #f2f8f8;

/* Skiplink Settings */
--skiplink-border: 3px solid var(--dark-highlight);
--skiplink-bgcolor: #d3463c;


}
/* Reset & Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    height: fit-content;
    min-height: 100vh;
    display: grid;
    grid-template-rows: var(--body-grid-rows);
    grid-template-columns: 12.5% auto 1fr auto 12.5%;
    width: var(--body-width);
    margin: var(--body-margin);
    background-color: var(--body-bgcolor);
    font-family: var(--base-font-family);
    color: var(--font-color);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

h1 {
    font-size: clamp(2rem, 4vw, 5rem);
}
h2 {
    font-size: clamp(1.5rem, 3vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 2.75vw, 3rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
}

h5 {
    font-size: clamp(1rem, 2vw, 2rem);
}

h6 {
    font-size: clamp(0.875rem, 1.85vw, 1.75rem);
}

p, body {
    font-size: clamp(1.25rem, 1.5vw, 1.75rem);
}

p {
    margin-top: .5rem;
    margin-bottom: .5rem;
}
hr {
    border: none;
    height: 14px;
    background-image: url('../images/DMBullet-pnk.svg');
    background-size: calc(60% / 7) 14px; 
    background-repeat: repeat-x;
    background-position: center;
    width:80%;
    margin-top:1rem;
    margin-bottom: 1rem;
}

.dmbullet {
    list-style-type: none;
    padding-left: 0;
}

.dmbullet li {
    position: relative;
    padding-left: 24px; /* Adjust based on SVG size and desired spacing */
}

.dmbullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    /*transform: translateY(-50%);*/ /* Center the bullet vertically with the text */
    width: 16px; /* Adjust based on SVG size */
    height: 16px; /* Adjust based on SVG size */
    background-image: url('../images/DMBullet-grn.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


/* Header */
header {
    background-color: var(--header-background-color);
    grid-column-start: var(--header-col-start);
    grid-column-end: var(--header-col-end);
    display: flex;
    flex-direction: row;
    position: var(--header-position);
    top: 0;
    padding: var(--standard-padding-large-screen);
    z-index: 2;
}

.logo {
    max-width: var(--logo-maxwidth-fullscreen);
    max-height: var(--logo-maxwheight-fullscreen);
    min-height: var(--logo-minheight-fullscreen);
}

/* Main Content */
main {
    background-color: var(--main-bgcolor);
    grid-column-start: var(--main-col-start);
    grid-column-end: var(--main-col-end);
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */
footer {
    background-color: var(--footer-bgcolor);
    color: var(--footer-textcolor);
    grid-column-start: var(--footer-col-start);
    grid-column-end: var(--footer-col-end);
    text-align: center;
    padding: var(--standard-padding-large-screen);
}

/* Navigation */
nav {
    display: flex;
    flex-grow: 1;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left:40px;
    align-items: center;
}
nav ul li {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: .25rem;
    text-align: left;
    position: relative;
    width:100%;
}
nav ul li a, nav ul li button {
    border: 1px solid var(--nav-button-bordercolor);
    padding: 12px;
    background-color: var(--nav-button-bgcolor);
    border-radius: var(--nav-button-borderradius);
    font-family:var(--nav-font-family);
    font-size: var(--nav-font-size);
    font-weight: var(--nav-font-size);
    color:var(--nav-button-textcolor);
    text-decoration: none;
}
nav ul li button {
    display:flex;
    align-items: center;
}
nav ul li button svg {
    display: inline-block;
    margin-left:6px;
    fill:var(--nav-button-textcolor);
}
nav ul li button svg{
    height:12px;
    width:12px;
}
nav ul li button svg.opened {
    transform: rotate(180deg);
}

nav ul li a:focus, nav ul li button:focus {
    outline: var(--focus-outline);
    outline-offset: .0rem;
}
nav ul li a:hover, nav ul li button:hover {
    background-color:var(--nav-button-bgcolor-hover);
    border-color: var(--nav-button-bordercolor-hover);
    border-radius: var(--nav-button-borderradius-hover);
    color: var(--nav-button-textcolor-hover);
}

nav ul li ul {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top:100%;
    margin-top: 3px;;
    width:auto;
    white-space: nowrap;
    text-align: left;
    justify-content: stretch;
    background-color: var(--nav-dropdown-bgcolor);
}
nav ul li ul li {
    margin: 0px;
    color: var(--nav-dropdown-textcolor);
}
nav ul li ul li a {
    width: 100%;
    text-align: left;
    color: var(--nav-dropdown-textcolor);
}
nav ul li ul li a:hover {
    width: 100%;
    text-align: left;
    color: var(--nav-dropdown-textcolor);
    text-decoration: underline;
}
.nav-right {
    display:flex;
    align-items:center;
    margin-left:auto;
}
.nav-right svg {
    max-height: 1rem;
    height:1rem;
    fill:var(--nav-icons-fillcolor);
}
.nav-right li a {
    border: 1px solid transparent;
    padding: 12px;
    background-color: transparent;
    text-decoration: none;
}
.nav-right li a:hover {
    border: 1px solid var(--nav-icons-hoverborder);
    padding: 12px;
    background-color: transparent;
    text-decoration: none;
}
.submenu-align-right {
    left: auto;
    right: 0;
}
.submenu-show {
    display: flex;
}

/* ... (menu toggle styles) */
.menu-toggle {
    font-size: 14px;
    padding: .5em;
    border: none;
    border-color:var(--munu-toggle-border);
    border-radius: 0;
    background: #000;
    color: #fff;
    cursor: pointer;
    display: none;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
    background-color: var(--nav-button-bgcolor);
    height:35px;
    width:35px;
    margin: 13px 8px 8px 8px;
}
.menu-toggle:hover {
    border: 1px solid var(--munu-toggle-border);
    outline: transparent;
}
.menu-toggle:focus {
    outline: thin dotted;
    outline-offset: -2px;
}

.icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    width: 1em;
    vertical-align: middle;
    position: relative;
    top: -0.0625em;
}
.icon-menu-toggle {
    width: 1.2em;
    height: 1.2em;
    top: 0;
    fill: var(--nav-button-textcolor);
}

.svg-menu-toggle .line {
    opacity: 1;
    transform: rotate(0) translateY(0) translateX(0);
    transform-origin: 1em 1em;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.svg-menu-toggle .line-1 {
    transform-origin: 1em 2.5em;
}
.svg-menu-toggle .line-3 {
    transform-origin: 1em 4.5em;
}

.menu-toggle.opened .svg-menu-toggle .line-1 {
    transform: rotate(45deg) translateY(0) translateX(0);
}
.menu-toggle.opened .svg-menu-toggle .line-2 {
    opacity: 0;
}
.menu-toggle.opened .svg-menu-toggle .line-3 {
    transform: rotate(-45deg) translateY(0em) translateX(0em);
}

/* Skip Link */
.skiplink {
    position: fixed;
    color: white;
    left: 0;
    top: 0;
    padding: 6px;
    margin: 6px;
    border: var(--skiplink-border);
    outline: none !important;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--skiplink-bgcolor);
    text-decoration: none;
    transform: translateY(-120%);
    z-index: 20;
}

.skiplink:hover {
    text-decoration: underline;
}

.skiplink:focus {
    transform: translateY(0%);
}

/* Responsive Styles */
@media (max-width: 1020px){
    .logo {
        max-height: var(--logo-maxheight-smalscreen);
        max-width:none;
        min-height: var(--logo-minheight-smallscreen);
    }
    header {
        flex-direction: column;
        height:var(--header-height-small);
        overflow: hidden;
    }
    header.full {
        height: auto;
    }
    main {
        grid-column-start: 1;
        grid-column-end: 6;
    }
    
    .menu-toggle {
        display:inline-block;
        position: absolute;
        top:0;
        right:0;
    }
    nav {
        display: block;
    }
    nav ul {
        margin-left:0px;
    }
    nav ul, .nav-right {
        display: none;
    }
    nav ul, nav ul li {
        flex-direction: column;
    }
    .nav-right a {
        text-align: center;
    }
    nav ul li {
        margin: 4px 0px 4px 0px;
    }
    nav ul li a, nav ul li {
        width: 100%;
    }
    nav ul li ul {
        position: relative;
    }


    
    .nav-right {
        flex-direction: row;
    }
    nav ul li {
        margin: 3px;
    }
}

/*generic utilities*/
.text-center {
    text-align: center;
}
.content-nopad {
    padding:0 !important;
}
img.roundwbg {
    width: 75%;
    height:auto;
    border-radius:75%;
    position:relative;
    /*top:50%;
    left:50%;
    transform: translate(-50%, -50%);*/
    z-index:2;
    opacity:100%;
}

.imgwrap {
    position:relative;
    display:inline-block;
    padding:0;
    font-size:0;
    height:100%;
    width:100%;
    z-index: 1;
    text-align: center;
}
.imgwrap svg {
    width:70%;
    height:70%;
    position: absolute;
    top:-10%;
    left:-20%;
    opacity:70%;
}
.imgbgi {
    fill: #ece8e3;
    stroke: #ece8e3;
    width:100%;
    max-height:100%;
    position: absolute;
  left: -10%;
  top: -10%;
  width: 50%;
}
.imgborder {
    border:5px solid green;
    position:absolute;
    left:0;
    top:0;
    z-index:-1;
    transform: rotate(45deg);
}
.content-main {
    position: relative;
    z-index: 1;
}
#element { 
    position: relative;  /* optional */
    width: 100px;
    height: 100px;
    background-color: blue;
}

#element::after {
    content: "";
    width: 150px;
    height: 150px;
    background-color: red;

    /* create a new stacking context */
    position: absolute;
    z-index: -1;  /* to be below the parent element */
}
.liintro {
    color: var(--dark-highlight);
    font-weight:bold;
}
.cmargin {
    margin-top:.1rem;
    margin-bottom: 2rem;
    text-align: center;
}
.imgfr-donotuse {
    float:right;
    max-width:40%;
    clip-path: circle(50% at 50% 50%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.imgfr-wrapper {
    float: right;
    max-width: 40%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%; /* Ensures the shadow follows a rounded shape */
    overflow: hidden;   /* Ensures that the clipped image doesn't overflow */
}

.imgfr {
    width: 100%;       /* Ensures the image takes full width of the wrapper */
    display: block;    /* Removes any default spacing below the image */
    clip-path: circle(50% at 50% 50%);
}
.imgfl-wrapper {
    float: right;
    max-width: 30%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%; /* Ensures the shadow follows a rounded shape */
    overflow: hidden;   /* Ensures that the clipped image doesn't overflow */
}

.imgfl {
    width: 100%;       /* Ensures the image takes full width of the wrapper */
    display: block;    /* Removes any default spacing below the image */
    clip-path: circle(50% at 50% 50%);
}
.bgel {
    position: relative;
}
.bgel::before {    
    content: "";
    background-image: url('../images/DMBullet-pnk.svg');
    background-repeat: no-repeat;
    background-size: 30%;
    position: absolute;
    top: 50px;
    right: 0px;
    bottom: 0px;
    left: -40px;
    opacity: 0.20;
}
.bgel::after {    
    content: "";
    background-image: url('../images/DMBullet-pnk.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 50px;
    right: 40px;
    opacity: 0.20;
    height:300px;
    width:300px;
}
/* Base styling for the anchor tag */
a.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin:1.5rem;
    /* Main button color */
    background-color: var(--dark-highlight);  /* Dark greenish color as the primary background */
    color: var(--header-background-color);             /* Off-white color for text for contrast */

    /* Styling for hover effect */
    border: 1px solid var(--medium-highlight);  /* Pinkish color for the border */
}

/* Hover effect for the button */
a.cta-button:hover {
    background-color: var(--medium-highlight);  /* Pinkish color for hover effect */
    color: var(--dark-highlight);             /* Dark greenish color for text contrast on hover */
    transform: translateY(-2px); /* Slight upwards movement for hover effect */
}

/* Active state effect (when the button is clicked) */
a.cta-button:active {
    transform: translateY(0);  /* Reset to the original position */
    background-color: var(--header-background-color); /* Off-white color for active state */
    color: var(--dark-highlight);            /* Dark greenish color for text contrast on active state */
}


.picbar {
    display: flex;
    flex-direction: row;
    align-items: end;
    position: relative;
    background: linear-gradient(to top, var(--dark-highlight) 0px, var(--dark-highlight) 5px, transparent 10px);
}
.picbar div {
    align-self:flex-end;
}
.picbar h2 {
    line-height: normal;
    font-size: clamp(1rem, 2.05vw, 32px);
    line-height: 1;
    margin:2rem;
    color:var(--dark-highlight)
}
.picbar h3 {
    line-height: normal;
    font-size: clamp(1rem, 7.8vw, 26px);
    line-height: 1;
    margin:2rem;
    color: #444444;
    
}
.picbar img {
    max-height:240px;
    margin-left: 2rem;
}

.sneak-peek {
    width: 100% !important;
    background-color: #985971;
    clip-path: ellipse(100% 100% at top)
}
.sneak-peek > div {
    background-color: transparent;
}
.sneak-peek > div > h2 {
    color:white;
    margin:0;
}
img.roundwbgmf {
    width: 33%;
    height: auto;
    border-radius: 75%;
    position: relative;
    z-index: 2;
    opacity: 100%;
    float: right;
    max-width: 33%;
    margin: 12px;
}
.contact {
    width: 100% !important;
    background-color: var(--dark-highlight);
    clip-path: ellipse(100% 100% at top)
}
.contact > div {
    background-color: transparent;
}
.contact > div > h2 {
    color:white;
    margin:0;
}
header {
    z-index:999;
}
.price {
    line-height: 1;
    margin:1rem;
    text-align: center;
}
.cardimgwrap, .card_content {
    padding:1rem !important;
}
.x > h4 {
    line-height: 1;
    color:#DB260A;
    font-size: clamp(1.25rem, 2vw, 2rem);
    margin:1rem;
}
.centeredul {
    text-align:center;
    line-height: 1.5;
}
.sanshighlight {
    font-family: helvetica, Arial, Helvetica, sans-serif;
    color:var(--dark-highlight);
    font-weight:300;
}
.cout {
    z-index: 2;
    position: relative;
}