@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Quicksand', serif;
    --color-primary: #255853;
    --color-secondary: #2f4f4f;
}

/* header{
    width: 100%;
    padding: 1%;
    border: 1px solid rgb(228, 228, 228);
    display: inline-flex;
    justify-content: space-evenly;
} */
.navbar-nav .nav-link.active {
    color: #2f4f4f;
    font-weight: bold;
    border-bottom: 2px solid #2f4f4f;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    display: inline-flex;
    justify-items: center;
    justify-self: center;
}

.btn-consult {
    background-color: black;
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-consult:hover {
    background-color: #333;
    color: white;
}

/* img {
    width: 20%;
} */

.consultbtn {
    border-radius: 5px;
    padding: 20px 30px;
    border: 1px solid rgb(180, 180, 180);
    text-decoration: none;
    color: black;
    font-family: var(--font-primary);
}

.menus {
    display: inline-flex;
    justify-content: space-between;
    width: 50%;
    font-family: var(--font-primary);
}

#servicesDropdown {
    font-family: var(--font-primary);
    color: #595959;
}

.logo-wrapper>img {
    width: 150px;
    height: auto;
}

.banner-wrapper {
    background-image: url("../Image/beautiful-spring-landscape.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* blends color + image */
    width: 100%;
    min-height: 400px;
    align-items: center;
}

.banner-wrapper {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.banner-wrapper>span {
    font-weight: 400;
    color: white;
    text-transform: Italic;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 60px;
}

.banner-content {
    width: 80%;
    border-radius: 10px;
    padding: 18px 98px;
    border: 1px solid rgb(219, 219, 219);
    display: inline-flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 150px 100px 120px 100px;
    align-items: center;
    backdrop-filter: blur(4px);
    background-color: rgba(252, 246, 246, 0.5);
    /* 50% opacity */
}

.banner-content>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 700;
    width: 80%;
    line-height: 60px;
    text-align: center;
}

.banner-content>p {
    font-family: var(--font-primary);
    font-size: 23px;
    margin-top: 18px;
    width: 100%;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
}

.banner-btn {
    width: 50%;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 40px;

}

.banner-btn>a {
    padding: 12px 40px;
    border: 1px solid #255853;
    border-radius: 50px;
    text-decoration: none;
    background-color: #255853;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
}

.banner-btn>a {
    display: inline-flex;
    flex-direction: row;
}

.therapy-designed-wrapper {
    background-color: rgb(255, 249, 242);
    background-image: url("../Image/Frame\ 24.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* blends color + image */
    width: 100%;
    min-height: 400px;
}

.heading-wrapper {
    padding-top: 15px;
    text-align: center;
}

.heading-wrapper>h1 {
    width: 100%;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 600;
    margin: 100px 0px 20px 0px;
    font-family: var(--font-secondary)
}

.heading-wrapper>p {
    width: 100%;
    font-size: 18px;
    font-family: var(--font-primary)
}

.sections-wrapper {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;
    /* border: 1px solid rgb(228, 228, 228); */
}

.sections-inner {
    width: 23%;
    text-align: center;
    /* border: 1px solid rgb(228, 228, 228); */
    padding: 5px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.sections-inner>span {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: bold;
    margin: 0px 0px 10px 0px;
}

.section-image {
    align-self: center;
    background-color: aliceblue;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 2%;
    margin: 20px 0px 20px 0px;
}

.sections-inner>p {
    font-family: var(--font-primary);
    font-weight: 500;
}

.card-title {
    font-family: var(--font-secondary);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.card-text {
    font-family: var(--font-primary);
    font-weight: 500;

}

.card-body>a {
    text-decoration: none;
    font-family: var(--font-primary);
}

.ourmission-wrapper {
    background-image: url("../Image/landscape-palm-trees-pastel-colors.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* blends color + image */
    width: 100%;
    min-height: 400px;
    align-items: center;
}

.ourmission-wrapper {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: column;
}

.ourmission-heading {
    text-align: center;
    padding-top: 50px;
}

.ourmission-logo {
    width: 100px;
    align-items: center;
}

.ourmission-heading>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.ourmission-heading>p {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-top: 20px;
}

.ourmission-sections {
    margin-top: 30px;
    margin-bottom: 100px;
    display: inline-flex;
    justify-content: space-evenly;
    width: 90%;
    flex-wrap: wrap;
}

.ourmissions-boxes {
    width: 42.5%;
    border-radius: 10px;
    padding: 20px 15px;
    border: 1px solid rgb(219, 219, 219);
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 20px;
    background-color: transparent;
    /* Transparent background */
    background-color: rgba(250, 238, 235, 0.5);
    /* 50% opacity */
}

.ourmissions-icon {
    width: 30%;
}

.ourmissions-image {
    width: 100%;
}

.ourmission-text>h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.ourmission-text>p {
    font-family: var(--font-primary);
    font-weight: 400;
}

.ourmission-text {
    align-content: center;
}

.teams-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.teams-wrapper {
    text-align: center;
    padding-top: 50px;
    background: linear-gradient(to bottom, #f9d6d6 0%, #ffffff 100%);
}

.teams-wrapper-heading>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.teams-wrapper-heading>p {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-top: 20px;
}

.our-teams-wrapper {
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    justify-content: space-between;
}

.teams {
    width: 30%;
    border-radius: 5px;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.teams-image {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.teams>span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 20px;
}

.teams>a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 15px;
}

.teams-text {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font-primary);
}

#teams-btn {
    padding: 12px 25px;
    border: 1px solid #255853;
    border-radius: 50px;
    text-decoration: none;
    background-color: #255853;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
}

.teams-btn-wrapper {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
}

.philosophy-wrapper {
    padding: 10px;
    width: 100%;
    background: linear-gradient(to bottom, #f7f4f0 0%, #e3f8fa 100%);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.philosophy-heading > img {
    width: 80%;
}
.philosophy-heading {
    text-align: center;
    padding-top: 50px;
}

.philosophy-heading>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.philosophy-heading>p {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-top: 20px;
}

.individual-therapy-content {
    padding-top: 15px;
    text-align: center;
}

.individual-therapy-content>h1 {
    width: 100%;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 600;
    margin: 100px 0px 20px 0px;
    font-family: var(--font-secondary)
}

.individual-therapy-content>p {
    width: 100%;
    font-size: 18px;
    font-family: var(--font-primary)
}

.footer-custom {
    background-color: #2d3a3c;
    color: #d1d1d1;
    font-family: 'Poppins', sans-serif;
    /* Change to your body font */
}

.footer-custom h5 {
    font-family: var(--font-primary);
    /* Change to your heading font */
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
}

.footer-custom a {
    /* color: #d1d1d1; */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.footer-custom a:hover {
    color: #ffffff;
}

.footer-custom p {
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.footer-custom .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d1d1d1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-custom .social-icon:hover {
    background: #fff;
    color: #2d3a3c;
}

.services-wrapper {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
}

.services-wrapper>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.services-wrapper>span {
    font-family: var(--font-primary);
    font-size: 17px;
    margin-top: 20px;
    color: #595959;
}

.services-wrapper>p {
    width: 100%;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 35px;
}

.contact-wrapper {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    width: 100%;
}

.contact-wrapper>h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.contact-wrapper>p {
    font-family: var(--font-primary);
    font-size: 17px;
    margin-top: 20px;
    color: #595959;
}

.contact-wrapper-main {
    width: 100%;
    display: inline-flex;
    margin-top: 10px;
    flex-direction: row;
    margin-bottom: 50px;
    /* border: 1px solid rgb(219, 219, 219); */
}

.contact-wrapper-left {
    padding: 10px;
    width: 50%;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    /* border: 1px solid rgb(221, 51, 51); */
}

.contact-wrapper-right {
    padding: 10px;
    width: 50%;
    /* border: 1px solid rgb(88, 88, 88); */
}

.map {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    padding: 0px;
    border-radius: 10px;
}

.contact-form {
    border: 1px solid #AAC7F5;
    border-radius: 10px;
}

/* .contact-form-head{
    
} */
.contact-form-head>h5 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
    color: #255853;
}

.contact-form-head>p {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    color: #6A7587;
}

#contact-inputs {
    font-family: var(--font-primary);
    border: 1px solid rgb(180, 180, 180);
    padding: 10px;
    outline: none;
}

#contact-btn {
    width: 100%;
    padding: 12px 25px;
    background-color: #255853;
    border: 1px solid #255853;
    border-radius: 50px;
    color: white;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.sm-msg {
    margin-top: 30px;
    font-family: var(--font-secondary);
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.testimonail-client-area {
    display: inline-flex;
    float: left;
}

#testimonial-text {
    font-family: var(--font-primary);
    text-align: left;

}

.our-teams {
    padding-top: 15px;
    text-align: center;
}

.our-teams>h1 {
    width: 100%;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 600;
    margin: 100px 0px 20px 0px;
    color: #255853;
    font-family: var(--font-secondary)
}

.our-teams>p {
    width: 100%;
    font-size: 18px;
    color: #777777;
    font-weight: 400;
    font-family: var(--font-primary)
}

.teams-flex-wrapper {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-image: url("../Image/Frame\ 100.png");
}

.teams-outter-wrapper {
    width: 30%;
    border: 1px solid rgb(219, 219, 219);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center (if you give wrapper height) */
    background-color: #ECE9FF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.michell-outter-wrapper {
    width: 60%;
    border: 1px solid rgb(219, 219, 219);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center (if you give wrapper height) */
    background-color: #ECE9FF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.michell-wrapper-info {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    text-align: center;
    border: 1px solid rgb(219, 219, 219);
    padding: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* creates a smile-like curve at the top */
    clip-path: polygon(0 50px,
            /* left top start */
            50% 0,
            /* top middle peak (smile) */
            100% 50px,
            /* right top end */
            100% 100%,
            /* bottom right */
            0 100%
            /* bottom left */
        );
}

.michell-wrapper-info>h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
}

.michell-wrapper-info>span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin-top: 10px;
    margin-bottom: 10px;
}

.michell-wrapper-info>p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #595959;
}

#main-michelle-img {
    width: auto;
    height: auto;
    display: inline-flex;
    justify-content: center;
    background-color: #ECE9FF;
}

#main-team-img {
    width: auto;
    height: 210px;
    display: inline-flex;
    justify-content: center;
    background-color: #ECE9FF;
}

.teams-wrapper-info {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    text-align: center;
    border: 1px solid rgb(219, 219, 219);
    padding: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.teams-wrapper-info>h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
}

.teams-wrapper-info>span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin-top: 10px;
    margin-bottom: 10px;
}

.teams-wrapper-info>p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #595959;
}

.teams-wrapper-info>a {
    margin-top: 15px;
    padding: 12px 25px;
    border: 1px solid #255853;
    border-radius: 50px;
    text-decoration: none;
    background-color: #255853;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
}

.teams-footer-text {
    text-align: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    color: #777777;
    margin-top: 40px;
    margin-bottom: 40px;
}
.bgshade{
    background-image: url("../Image/BG_Top.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    width: 100%;
    align-items: center;
    min-height: 400px;
}
.michell-wrapper {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.testimonial-wrapper {
    padding-bottom: 15px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.testimonail-designing-wrapper{
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.testimonail-heading-para{
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.testimonail-heading-para>h1 {
    width: 100%;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 600;
    margin: 100px 0px 20px 0px;
    font-family: var(--font-secondary)
}

.testimonail-heading-para>p {
    width: 100%;
    font-size: 18px;
    color: #595959;
    font-family: var(--font-primary)
}

.testimonail-main {
    display: inline-flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.profile-wrapper {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.profile-cover {
    /* background-color: #255853; */
    background: linear-gradient(135deg, #071027 0%, #081323 60%);
    width: 100%;
    flex-direction: column;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;

}

.profile-cover>h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 50px;
    color: white;
    text-align: center;
    /* margin-top: 80px; */
}
.profile-cover>h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 20px;
    color: white;
    text-align: center;
    /* margin-top: 80px; */
}

.profile-pic {
    display: inline-flex;
    justify-content: center;
}

.profile-pic>img {
    margin-top: 20px;
    border-radius: 100%;
    width: 200px;
    height: 200px;
    border: 5px solid #255853;
}
/* bubble Css */
    /* ====== Bubble section styles (drop into your stylesheet) ====== */

.bubbles-section{
  position:relative;
  overflow:hidden;           /* hide off-screen bubbles */
  min-height:45vh;           /* adjust height as required */
  display:block;
  background:linear-gradient(135deg,#071027 0%,#081323 60%); /* optional */
  color:#fff;
}

/* container for bubble elements (visual-only) */
.bubbles{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}

/* visible page content */
.section-content{
  position:relative;  /* stays above bubbles */
  z-index:2;
  padding:3rem 1.5rem;
}

/* bubble base */
.bubble{
  position:absolute;
  bottom:-25vh;               /* start off screen */
  left:50%;
  transform:translateX(-50%) translateY(0) scale(1);
  border-radius:50%;
  opacity:.75;
  pointer-events:none;
  mix-blend-mode:screen;
  will-change:transform,opacity;
  /* control per-bubble using custom properties */
  --left:50%;
  --delay:0s;
  --dur:28s;
  --drift:40px;
  left:var(--left);
  animation:rise var(--dur) linear var(--delay) infinite;
}

/* size helpers */
.bubble.s{ width:30px; height:30px; }
.bubble.m{ width:70px; height:70px; }
.bubble.l{ width:120px; height:120px; }
.bubble.xl{ width:200px; height:200px; }

/* color / sheen presets (tweak gradients as desired) */
.b1{ --left:6%;  --delay:0s;  --dur:34s; background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.03) 35%),
      linear-gradient(180deg,#60a5fa 0%, #7c3aed 100%); }
.b2{ --left:18%; --delay:6s;  --dur:28s; background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0.03) 36%),
      linear-gradient(180deg,#34d399 0%, #06b6d4 100%); }
.b3{ --left:34%; --delay:3s;  --dur:30s; background:
      radial-gradient(circle at 35% 25%, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 45%),
      linear-gradient(180deg,#fef08a 0%, #fb923c 100%); }
.b4{ --left:50%; --delay:9s;  --dur:36s; background:
      radial-gradient(circle at 25% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 45%),
      linear-gradient(180deg,#a78bfa 0%, #fbcfe8 100%); }
.b5{ --left:68%; --delay:5s;  --dur:26s; background:
      radial-gradient(circle at 35% 30%, rgba(255,255,255,0.2), rgba(255,255,255,0.02) 45%),
      linear-gradient(180deg,#fda4af 0%, #fb7185 100%); }
.b6{ --left:82%; --delay:11s; --dur:32s; background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), rgba(255,255,255,0.03) 40%),
      linear-gradient(180deg,#6ee7b7 0%, #3b82f6 100%); }
.b7{ --left:92%; --delay:2s;  --dur:24s; background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), rgba(255,255,255,0.02) 35%),
      linear-gradient(180deg,#60a5fa 0%, #34d399 100%); }

/* subtle horizontal drift implemented by a pseudo */
.bubble::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  transform:translateX(0);
  animation:drift var(--dur) linear var(--delay) infinite;
}

/* rise animation — vertical movement + fade in/out */
@keyframes rise{
  0%   { transform:translateX(-50%) translateY(0) scale(.98); opacity:0; }
  8%   { opacity:0.6; }
  50%  { opacity:0.9; }
  100% { transform:translateX(-50%) translateY(-140vh) scale(1.04); opacity:0; }
}

/* horizontal oscillation */
@keyframes drift{
  0%   { transform:translateX(calc(var(--drift) * -1)); }
  50%  { transform:translateX(calc(var(--drift) * 1)); }
  100% { transform:translateX(calc(var(--drift) * -1)); }
}

/* responsive sizing tweak */
@media (max-width:640px){
  .bubbles-section{ min-height:40vh; }
  .bubble.l{ width:90px; height:90px; }
  .bubble.xl{ width:140px; height:140px; }
}

/* accessibility */
@media (prefers-reduced-motion:reduce){
  .bubble, .bubble::before{ animation:none !important; opacity:.7; transform:none; bottom:10vh; }
}

/* bubble Css */
.teams-text{
    width: 100%;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.teams-text > p{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
.teams-text > a{
    background-color: black;
    color: white;
    font-weight: 500;
    width: 50%;
    margin: 15px 15px;
    border: 1px solid black;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-family: var(--font-primary);
    text-align: center;
}
.teams-text > a:hover{
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: ease-in-out 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}