/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */

* {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif !important;
}
body {
    scroll-behavior: smooth;
    background: #FAF9F6 !important;
    box-sizing: border-box;
}

section {
    min-height: 100vh;
    height: fit-content;
}


.section-break {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 0 !important;
    margin: 0 !important;
}

.section-title {
    text-transform: uppercase;
    text-align: center;
}

.section-title>h2{
    font-weight: 700;
    color: rgba(10, 71, 45, 0.8);
    font-size: 2.5rem;
}
.section-title>h3{
    font-weight: 600;
    font-size: 2rem;
}

.section-title h4 {
    font-weight: 400;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fh {
    height: 100%;
}

/* HEADER */

.mobile-menu h2 {
    color: #c9b07a;
    margin-bottom: 4rem;
    margin-top: -2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.mobile-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transform: translateX(100%);
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 66%;
    background: #fafafa;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms;
}

.mobile-menu.change {
    transform: translateX(0%);
    display: flex;
}

.hamburger-menu {
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
    background-color: #fafafa;
    padding: 0.5rem;
    border-radius: 10px;
    z-index: 99999;
    display: inline-block;
}

.bar1, .bar2, .bar3 {
    border-radius: 2px;
    width: 32px;
    height: 4px;
    background-color: #229221;
    margin: 6px 0;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms;
}
  
.change .bar1 {
    transform: translate(0, 10px) rotate(-45deg);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    transform: translate(0, -10px) rotate(45deg);
}

.header-mobile {
    z-index: 999;
    padding: 0 1.5rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    position: fixed;
    top: 0;
    left: 0;
}
#mobile_header_logo {
    border-radius: 100%;
}

.prenav {
    background: rgba(0, 128, 8, 0.65);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
}

.prenav>.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #efefef;
}

.prenav span {
    height: 40px;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
}

.prenav a {
    text-decoration: none !important;
    color: inherit;
}

.prenav svg {
    margin: 0.25rem;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 150ms;
    color: #262626
}

img#header_logo {
    position: relative;
    background: linear-gradient(white, white) padding-box,
    radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #2f8a44 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #1f5d3e 62.5%, #5d4a1f 100%) border-box;
    border: 3px solid white;
    height: 5rem;
    border-radius: 100%;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
}

img#header_logo:hover {
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


a.nav-item {
    min-width: fit-content;
    color: rgb(0,0,0,0.7);
    text-decoration: none;
    border-radius: 8px;
    padding: 0.5rem 0.25rem;
    margin: 0 0.25rem;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
    font-weight: 500;
}

a.nav-item.active {
    color: rgb(41, 146, 33) !important;
}

a.nav-item:hover {
    transform: translateY(-1px);
    cursor: pointer;
    color: rgb(41, 146, 33) !important;
}
a.nav-item:focus{
    transform: translateY(-1px);
    cursor: pointer;
    color: rgb(41, 146, 33) !important;
}

.btn-reserve{
    min-width: fit-content;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.btn-reserve:hover{
    transform: translateY(-1px);
}

.btn-reserve>a{
    box-shadow: rgba(0, 0, 0, 0.15) 0 0px 20px 13px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600 !important;
    border-radius: 16px;
    color:rgb(255, 255, 255);
    background: #00693d;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}
.btn-reserve>a:hover, .btn-reserve>a:focus {
    outline: 0 !important;
    box-shadow: rgba(0, 151, 43, 0.2) 0 0px 20px 13px;
    background: #229221;
    color:rgb(255, 255, 255);
}


.nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#header-row {
    height: 6rem;
    justify-content: space-evenly;
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 100ms ;
    width: 100%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
#header-row:hover {
    background: rgba(255, 255, 255, 0.8);
}






/* FLOATER */

.floater>svg {
    filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.4));
    fill: rgba(41, 146, 33, 0.6);
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 150ms;
}

.floater>svg:hover {
    cursor: pointer;
    fill: rgba(41, 146, 33, 1);
    transform: translateY(-2px);
}

div.floater {
    z-index: 999999;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.nav-infobox {
    display: flex;
    flex-direction: row;
    align-items: end;
}
.nav-infobox:hover {
    cursor: pointer;
}

a#infobox {
    position: relative;
    color: #11230f;
    font-size: 14px;
}

.full-img-wrapper {
    position: relative;
}

#carouselAutoplay {
    width: 100% !important;
}

.carousel-inner {
    width: 100% !important;
}

.review-item {
    width: 320px !important;
    margin: 1rem;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
}

p.content {
    padding: 0 0.5rem;
    margin-bottom: 2rem !important;
}

.profile {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: fit-content;
    padding: 1.75rem 0.5rem 1rem 0.5rem;
}
.profile p {
    margin: 0 .75rem !important;
    width: fit-content !important;
    line-height: 1rem;
}

.review-link {
    position: absolute;
    right: 8px;
    bottom: 8px;
}

.review-link a {
    padding: 0.5rem;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.full-img-wrapper::before {
    z-index: -1;
    content: "";
    background-image: url("../assets/about-us.png");
    border-radius: 0 32px 32px 0;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width:100%
}
.about-info {
    background: white;
    width: 75%;
}

a.nav-item.active  {
    position: relative;
    transform: translateY(-1px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

a.nav-item.active::before {
    border-radius: 2px;
    height: 4px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(41, 146, 33) !important;
}

a.nav-item{
    position: relative;
}

a.nav-item::before {
    border-radius: 2px;
    height: 4px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    background-color: transparent !important;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

div.nav-img-wrapper {
    width:fit-content !important;
}

/* FOOTER */

footer {
    background: #010f08;
}

.footer {
    display: flex;
    flex-direction: column;
    background:#010f08;
    min-height: 15rem;
    color:rgb(226, 226, 226);
}

footer svg {
    position: inherit;
    margin: 0 -0.5rem;
}
footer span.divider {
    width: 1px !important;
    height: 20px !important;
    border-left: 1px solid rgb(82, 82, 82);
}



.credit {
    opacity: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    width: fit-content !important;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}


.credit:hover{
    opacity: 1;
}

#heart{
    opacity: 0.6;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;

}

#heart:hover{
    opacity: 1;
}

a#nrp {
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
    text-decoration: none;
    color: inherit;
}

a#nrp:hover{
    color: #eb4960;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.footer-row {
    min-height: 3.5rem;
    justify-content: center;
    align-items: end;
}

.footer-row>.physioplus{
    margin: 0;
    padding: 0;
    width:fit-content; 
    font-weight: 800;
    color: rgb(226, 226, 226);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;

}
.footer-row>.physioplus:hover{
    color: white;
    cursor: pointer;
}

.footer-row.bottom.row {
    display: flex;
    justify-content: space-evenly;
    border-top: 2px solid #1b1b1b;
}


.footer-nav {
    width: fit-content;
    min-height: 3.5rem;
}

.footer-nav-row {
    text-align: center;
}

.footer-item {
    margin: 0 0.25rem;
    color: rgb(100, 100, 100);
    text-decoration: none;
    text-wrap: nowrap;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.footer-item.local {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.footer-item:hover {
    color: white;
    text-decoration: underline;
}


/* IMAGE CAROUSEL */

.img-carousel {
    display: flex;
    height: 650px;
    align-items: center;
    justify-content: center;
    padding: 2rem !important;
    width: 100%;
}

.img-carousel img {
    object-fit: contain;
    height: 650px;
    max-height: 650px !important;
}

.grid-container {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: auto auto auto;
}

.service-card, .service-card>*{
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.service-card {
    position: relative;
    display: flex;
    padding: 1rem;
    margin: 1.5rem 0 0 0;
    width: 100%;
    height: 340px;
    min-width: 300px !important;
    background: url("../assets/images.jfif");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.service-card-splash{
    color: white;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem;
    z-index: 99;
    position: absolute;
    background: rgba(1, 137, 23, 0.721);
    filter: grayscale(0.33);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
}


.service-card-splash:hover {
    background: rgba(0,0,0, 0.33);
    filter: grayscale(0);
    box-shadow: 0 4px 20px rgba(0, 121, 27, 0.33);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    cursor: pointer;
}

.service-card-description>p {
    margin-top: 1rem;
    color: #fafafa;
    width: 100%;
    font-weight: 300;
    padding: 0 1.5rem;
    text-align: center;
}

.service-card-img {
    padding-top: 1.5rem;
    text-align: center !important;
}

.service-card-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.service-card-title h3 {
    margin-top: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
}

.about {
    position: relative;
}

.about-flag {
    position: absolute;
    width: 100%;
    height: 5rem;
    background: #00693d;
    bottom: 2rem;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.flag-item p {
    color: #efefef;
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    text-wrap: nowrap;
    padding: 0 .75rem;
    line-height: 1.25rem;
}
.flag-item {
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-img>img {
    width: 100px;
    height: 100px;
}

.about-us {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.about-us-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-us-header a{
    text-decoration: none;
}

.about-us-header h3 {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 !important;
    color: rgba(0, 0, 0, 0.6);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.about-us-header h3:hover, .about-us-header h3.active {
    color: #229221;
    cursor: pointer;
}


.about-us-header h3.active {
    text-decoration: underline;
}

.about-us-header .divider{
    border-left: 4px solid #dde0dc;
    margin: 0 1rem;
    border-radius: 2px;
    width: 4px;
    height: 28px;
}


.about_content {
    height: 100%;
}

.about_content>p {
    padding: 0 2rem 8rem 2rem;
    font-weight: 350;
}


.wrapper{
    width: 100%;
}

.socials {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    height: 64px;
    align-items: center;
}

.socials svg {
    margin: 0 !important;
    padding: 0 0 !important;
    opacity: 0.6;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.socials svg:hover {
    opacity: 1;
    cursor: pointer;
}

.socials>*{
    margin: 0 5px;
    width: 32px !important;
    height: 32px !important;
}









/* HERO */

.section.hero {
    background-color: #0a4d09;
    background-image: url("../assets/hero-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    position: relative;
}

.hero .container {
    min-height: calc(100vh - 120px);
    display: flex;
}





@keyframes pulse {
    0% {fill: rgba(255, 255, 255, 0.8)}
    25% {fill: rgba(255, 255, 255, 0.9)}
    50% {fill: #1bcc53;}
    75% {fill: rgba(255, 255, 255, 0.9)}
    100% {fill: rgba(255, 255, 255, 0.8)}
}

.learn-more {
    z-index: 999;
    font-size: 20px;
    height: 4rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more svg>path {
    animation-name: pulse;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-delay: 1000ms;
}


.learn-more>span {
    border: 1px solid rgba(255,255,255,0);
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    text-decoration: none;
}
.learn-more>span:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    color: white !important;
    cursor: pointer;
    transform: translateY(-2px);
}

.herowrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    width: fit-content !important;
}

.herotext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.herowrap::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: rgba(0, 102, 7, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.herowrap img, .herowrap h1, .herowrap h2 {
    z-index: 99;
}


.herowrap h1, .herotext h1 {
    margin-bottom: 0;
    margin-top: 2rem;
    position: relative;
    text-wrap: nowrap;
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.herowrap img {
    text-align: center;
    position: relative;
    background: linear-gradient(white, white) padding-box,
    radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #2f8a44 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #1f5d3e 62.5%, #5d4a1f 100%) border-box;
    border: 4px solid white;
    width: clamp(200px, 60%, 240px) !important;
    border-radius: 100%;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0px 20px 13px;
}

.herowrap img:hover {
    cursor: pointer;
    border: 4px solid transparent;
    transform: translateY(-1px);
}

.herowrap h2, .herotext h2 {
    text-align: center;
    padding: 0 1.5rem;
    color: #60ff53;
    font-size: 24px;
    font-weight: 400;
}

.herowrap p, .herotext p {
    color: #fafafa;
    font-size: 64px;
    font-weight: 700; 
}

.herotext b {
    color: #75c574 !important;
}

.hero .aside {
    display: flex;
    justify-content: center;
    align-items: center;
}
 .hero  img {
    width: clamp(240px, 300px, 330px);
    overflow: hidden;
}

.calendly-inline-widget {
    position: relative;
    min-width:320px;
    height: 700px;
}



.about_content {
    position: relative;
}

.faq-item {
    transition: cubic-bezier(0.445, 0.05, 0.55, 0.95) 150ms;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem;
}

header.header-mobile {
    display: none;
    width: 100%;
    height: 120px;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 1400px){
    .carousel-control-prev {
        left: 5% !important;
    }
    .carousel-control-next {
        right: 5% !important;
    }
}

@media only screen and (max-width: 992px) {
    .herotext{
        position: relative;
    }
    .img-carousel {
        height: 100%;
    }
    .img-carousel img {
        height: auto;
        max-height: auto;
    }
    .prenav>.container {
        margin: 0 !important;
        max-width: 100%;
        padding: 0 !important;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        color: #efefef;
    }
    section#onama>.container {
        max-width: 100%;
    }
    section#onama>.container, section#onama>.container>.row {
        margin: 0 !important;
        padding: 0 1rem !important;
    }
    section#hero>.container {
        padding: 0 1rem !important;
        margin: 0 !important;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .about-flag {
        border-radius: 0 !important;
        overflow: hidden;
    }
    .flag-item {
        padding: 0 1rem;
    }
    section#onama>.container {
        max-width: 100%;
    }
    section#onama>.container, section#onama>.container>.row {
        margin: 0 !important;
        padding: 0 !important;
    }
    p#about_content{
        padding-bottom: 8rem;
    }
    .herotext {
        position: relative;
        height: 95vh;
        /* height: 100dvh; */
    }
    .herotext p {
        line-height: 4rem;
    }
    .herowrap{
        display: none;
    }
    #hero>.section-break{
        height: 0px;
    }
    .learn-more{
        position: sticky;
        bottom: 0;
        left: 0;
    }
    .learn-more span{
        border-bottom: 1px solid rgba(255, 255, 255, 0.75);
        color: white !important;
        cursor: pointer;
        transform: translateY(-2px);
    }
    #header-row {
        display: none;
    }
    .header-mobile {
        display: flex;
    }
    section {
        min-height: auto !important;
    }
    .nav-items {
        display: none;
    }
    .nav-left {
        display: none;
    }
    .prenav {
        display: none;
    }
    .hero .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    .calendly-inline-widget {
        margin: 4rem 0;
        height: 1080px;
    }
    .herowrap {
        height: fit-content;
        padding: 6rem 0;
        width:  100% !important;
    }
    .herowrap::before {
        height: 100vh;
        width: 100%;
    }
    .footer {
        overflow-x: hidden;
    }
    section#hero .container {
        display: contents;
    }
    .footer-nav-row {
        height: fit-content !important;
    }
    .footer-row.bottom.row {
        justify-content: center !important;
    }
}

iframe#gmaps {
    position: relative;
    width: 100%;
    height: 400px;
}

.accordion-item {
    margin: 1rem;
    border-radius: 16px !important;
    border: 0 0 0 0 !important;
}

.accordion-body {
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0 !important;
    border-radius: 16px !important;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0 !important;
    border-radius: 16px !important;

}

.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    --bs-accordion-border-color: transparent !important;
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: 16px !important;
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 1.5rem !important;
    --bs-accordion-btn-padding-y: 2rem !important;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1) !important;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #00690e !important;
    --bs-accordion-active-bg: none !important;
}

ul.contact-info{
    list-style: none;
}
ul.contact-info li{
    padding: .75rem;
    display: flex;
    list-style: none;
    align-items: center;
    text-decoration: none;
}

.contact-info h3 {
    margin: 0 !important;
    padding: 0 1rem;
}