html {
  scroll-behavior: smooth;
}

body {
 min-height: 100vh;
 min-height: -webkit-fill-available;
 background-color: #F7F7F7;
}

h1{
  font-size: 6rem;
}

h2{
  font-size: 5rem;
}

h3{
/*  font-size: 3rem;*/
}

p{
  font-size: 1.5rem;
}

/*why choose us section*/
h5.subtitle {
    color: #a3b0b4;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.sectionHeading{
  font-weight: 600;
}

.heading{
  color: #66c9f0;
}

.mainColor{
  color: #66c9f0;
}

.mainColor-bg{
  background-color: #66c9f0; 
}



/*Hamburger navigation Stat*/

.hamburger {
  position: fixed;
  right: 2rem;
  top: 2rem;
  z-index: 9000;
  width: 3.5rem;
  height: 3.5rem;
}
.hamburger:hover {
  cursor: pointer;
}

.hamburger__line {
  content: " ";
  display: block;
  width: 100%;
  height: 0.1875em;
  background: black;
  border-radius: 0.5em;
  margin-bottom: 0.5em;
}
.hamburger__line:last-child {
  margin-bottom: 0;
}

.hamburger--steps{
  background-color: #66c9f0;
  padding: 1rem;
  border-radius: 35px;
}

.hamburger--steps .hamburger__line {
  transition: width 0.12s ease-in-out;
  background-color: white;
}
.hamburger--steps .hamburger__line:nth-child(2) {
  width: 80%;
}
.hamburger--steps .hamburger__line:last-child {
  width: 55%;
}

.hamburger--steps-right .hamburger__line {
  float: right;
}

.hamburger--steps:hover .hamburger__line {
  width: 100%;
}

.hamburger--active.hamburger--steps .hamburger__line {
  transition: none;
  width: 100%;
}

.hamburger--active .hamburger__line {
  position: absolute;
  top: 2em;
  right: 0.1em;
  margin: 0;
  background: white;
}
.hamburger--active .hamburger__line:first-child {
  transform: rotate(-45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
  display: none;
}
.hamburger--active .hamburger__line:last-child {
  transform: rotate(45deg);
}

/*Hamburger navigation end*/


/*Hamburger screen start*/
.nav-fullscreen {
  position: fixed;
  display: flex;
  z-index: 800;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  background-color: rgba(102, 201, 240, .9);
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-fullscreen--open {
  opacity: 1;
  visibility: visible;
}
.nav-fullscreen__items {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 3rem;
  line-height: 6rem;
}
@media (max-width: 375px) {
  .nav-fullscreen__items {
    font-size: 2rem;
    line-height: 4rem;
  }
}
.nav-fullscreen__item a {
  text-decoration: none;
  color: white;
  transition: color 0.1s ease-in-out;
}
.nav-fullscreen__item a:hover {
  color: #27498b;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*Hamburger screen end*/


/*Hero, subpages*/
.mainHero{
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.subPageHero{
  height: 60vh;
}

.heading-primary-main{
  animation-name: moveInLeft;
  animation-duration: .9s;

  /*animation-delay: 3s;
  animation-iteration-count: 3;
  animation-timing-function: ease-out;*/
}

.heading-primary-sub{
  animation-name: moveInRight;
  animation-duration: .9s;
  font-size: 2em;
}

@keyframes moveInLeft{
  0%{
    opacity: 0;
    transform: translateX(-10rem);
  }

  80%{
    transform: translateX(2rem);
  }

  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight{
  0%{
    opacity: 0;
    transform: translateX(10rem);
  }

  80%{
    transform: translateX(-2rem);
  }

  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInBottom{
  0%{
    opacity: 0;
    transform: translateY(10em);
  }

  80%{
    transform: translateY(-1rem);
  }

  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

.ctaEffect{
  animation: contact-text 5s ease-in-out infinite;
}


@keyframes contact-text {
  0% {
    transform: rotateZ(0);
  } 2.5% {
    transform: rotateZ(2deg);
  } 5% {
    transform: rotateZ(-4deg);
  } 7.5% {
    transform: rotateZ(6deg);
  } 10% {
    transform: rotateZ(-8deg);
  } 12.5% {
    transform: rotateZ(6deg);
  } 15% {
    transform: rotateZ(-4deg);
  } 17.5% {
    transform: rotateZ(2deg);
  } 20% {
    transform: rotateZ(0);
  } 100% {
    transform: rotateZ(0);
  }
}

.heroBtn:link,
.heroBtn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 2em;
  color:#66c9f0;
}

.heroBtn:hover{
  color: #777;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,.2);
}

.heroBtn:active{
  transform: translateY(-1px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
}

.heroBtn-white{
  background-color: #fff;
  color: #777;
}

.heroBtn::after{
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s;
}

.heroBtn-white::after{
  background-color: #fff;
}

.heroBtn:hover::after{
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.heroBtn-animated{
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards;
  /* ANIMATION-NAME, ANIMATION-DURATION, ANIMATION-TIMEING-FUNCTION, ANIMATION-DELAY */
}

/*Hero, subpages end*/

#logo{
  width: 400px;
  min-height: 250px;
}

.icon {
    margin-bottom: 15px !important;
}

.underline{
  border-bottom: 2px solid #eee;
}

.underline:before {
    content: "";
    background: #66c9f0;
    float: right;
    position: absolute;
    margin-top: 3rem;
    width: 3rem;
    z-index: 10;
    height: .2rem;
}


.social{
  background-color: #ECECEC;
}


body .lc-block .fa.fa-phone.cta-phone#cta-phone{
  color:#66c9f0 !important;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

.fa-facebook,
.fa-envelope,
.fa-instagram
{
  font-size: 2rem;
  color: white !important;
  background-color: #66c9f0;
  padding: 1rem;
  border-radius: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}


.social .fab,
.social .fas{
  font-size: 4rem;
  border-radius: 4rem;
}


/*Instagram Gallery*/
/* aspect ratios */
.ratio-1x1 { --bs-aspect-ratio: 100%; }
.ratio-4x3 { --bs-aspect-ratio: calc(3 / 4 * 100%); } /* landscape (short) */
.ratio-3x4 { --bs-aspect-ratio: calc(4 / 3 * 100%); } /* portrait (tall) */

/* Cover images inside ratio boxes */
.img-cover{ width:100%; height:100%; object-fit:cover; display:block; }

/* Hover micro-interaction */
.gl-card{ transition: transform .15s ease, box-shadow .15s ease; }
.gl-card:hover{ transform: translateY(-2px); }

/* Spacing tune on small screens */
@media (max-width: 575.98px){
  .gl-card.mt-3{ margin-top: .75rem !important; }
}


/*Contact start*/

@media (min-width: 992px) {
  .left_gallery img{
    width: 6.5rem;
  }
}

@media (max-width: 991px) {
  .left_gallery img{
    width: 4.5rem;
  }
}


@media (max-width: 767px) {
  .left_gallery img{
    width: 100%;
  }
}


@media (max-width: 576px) {
  .heading-primary-sub{
    font-size: 1.5rem;
  }

  .heroBtn:link,
  .heroBtn:visited {
    padding: 1rem 1.5rem;
    font-size: 2rem;
  }
}

@media (max-width: 350px) {
  #heading{
    font-size: 1.4em;
  }
}





/*FAQ start*/
.section_padding_130 {
    padding-top: 130px;
    padding-bottom: 130px;
}
.faq_area {
    position: relative;
    z-index: 1;
    background-color: #f5f5ff;
}

.faq-accordian {
    position: relative;
    z-index: 1;
}
.faq-accordian .card {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.faq-accordian .card:last-child {
    margin-bottom: 0;
}
.faq-accordian .card .card-header {
    background-color: #ffffff;
    padding: 0;
    border-bottom-color: #ebebeb;
}
.faq-accordian .card .card-header h3 {
    cursor: pointer;
    padding: 1.75rem 2rem;
    color: #66c9f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1em;
}
.faq-accordian .card .card-header h3 span {
    font-size: 1.5rem;
}
.faq-accordian .card .card-header h3.collapsed {
    color: #070a57;
}
.faq-accordian .card .card-header h3.collapsed span {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.faq-accordian .card .card-body {
    padding: 1.75rem 2rem;
}
.faq-accordian .card .card-body p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .support-button p {
        font-size: 14px;
    }
}

.support-button i {
    color: #66c9f0;
    font-size: 1.25rem;
}
@media only screen and (max-width: 575px) {
    .support-button i {
        font-size: 1rem;
    }
}

.support-button a {
    text-transform: capitalize;
    color: #66c9f0;
    font-size: 1.4em;
}
@media only screen and (max-width: 575px) {
    .support-button a {
        font-size: 13px;
    }
}
/*FAQ End*/


.grecaptcha-badge { 
    visibility: hidden;
}


/*GDPR*/
.gdpr{
    margin-top:-15%;
    padding: 10%;
}
.gdpr h4{
    color: #66c9f0;
    font-weight: bold;
    font-size: 30px;
}
.gdpr .subheading{
    color: #27498b;
    font-size: 20px;
}
.gdpr .row
{
    margin-top: 10%;
}
.how-img 
{
    text-align: center;
}
.how-img i{
    font-size: 4em;
    background-color: #66c9f0;
    color:white;
}

/*TESTIMONIAL START*/

/* ==============================
   Bo Polering – Bubble Testimonials (equal-height)
   Namespace: .bp-bubbles
   ============================== */
.bp-bubbles {
  --bp-deep:  #27498b;
  --bp-brand: #66c9f0;
  --bp-bg:    #f3f6f9;
  --bp-text:  #2f3a45;
  --bp-muted: #6f7d8a;
  --bp-star:  #FBC02D;

  /* equal-height controls */
  --lines: 5;          /* how many lines to show */
  --lh: 1.6;           /* line-height for the text */
  --chrome: 84px;      /* space used by stars + paddings + tail + quote etc. */
}
.bp-bubbles { background: var(--bp-bg); }

/* Carousel track spacing */
.bp-bubbles .owl-stage-outer { padding: 12px 4px 24px; }

/* Hide dots completely (just in case) */
.bp-bubbles .owl-dots { display: none !important; }

/* Card wrapper */
.bp-bubbles .bp-card {
  display:flex; flex-direction:column; height:100%;
  background: transparent; border:0;
}

/* Speech bubble (EQUAL HEIGHT) */
.bp-bubbles .bp-bubble {
  position: relative;
  background:#fff;
  border-radius: 8px;
  padding: 28px 26px 26px;
  box-shadow: 0 18px 38px rgba(39,73,139,.10);
  border:1px solid rgba(39,73,139,.07);

  /* equal height magic:
     min-height = (line-height * lines * font-size) + chrome */
  min-height: calc( (1rem * var(--lh) * var(--lines)) + var(--chrome) );
}
.bp-bubbles .bp-bubble::after{
  /* tail pointing to avatar */
  content:"";
  position:absolute; left:56px; bottom:-14px;
  width: 22px; height: 22px;
  background:#fff; transform: rotate(45deg);
  border-right:1px solid rgba(39,73,139,.07);
  border-bottom:1px solid rgba(39,73,139,.07);
  box-shadow: 8px 8px 18px rgba(39,73,139,.06);
}

/* Decorative quote & subtle brand line */
.bp-bubbles .bp-quote{
  position:absolute; right:16px; top:14px;
  color: rgba(39,73,139,.18); font-size:18px;
}
.bp-bubbles .bp-bubble::before{
  content:""; position:absolute; left:0; top:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--bp-brand),rgba(102,201,240,.35));
  border-top-left-radius:8px; border-top-right-radius:8px;
}

/* Stars */
.bp-bubbles .bp-stars{ color: var(--bp-star); margin-bottom:8px; }
.bp-bubbles .bp-stars .fa-star-o{ color: rgba(0,0,0,.18); }

/* Review text — clamp to X lines so all cards can equalize */
.bp-bubbles .bp-text{
  color: var(--bp-text);
  font-size: 0.98rem;
  line-height: var(--lh);
  margin:0;

  display: -webkit-box;
  -webkit-line-clamp: var(--lines);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author row */
.bp-bubbles .bp-author{
  display:flex; align-items:center; gap:14px;
  margin-top:28px; padding-left:20px;
}
.bp-bubbles .bp-avatar{
  width:72px; height:72px; border-radius:50%;
  background:#fff; box-shadow: 0 8px 22px rgba(39,73,139,.12);
  overflow:hidden; display:grid; place-items:center;
  border:2px solid #fff;
}
.bp-bubbles .bp-avatar img{ width:100%; height:100%; object-fit:cover; }
.bp-bubbles .bp-avatar span{
  font-weight:800; color:var(--bp-deep); letter-spacing:.5px;
}

.bp-bubbles .bp-meta .bp-name{
  color:#1e2b38; font-weight:800; font-size:1.05rem; line-height:1.15;
}
.bp-bubbles .bp-meta .bp-role{
  color:var(--bp-deep); font-weight:600; font-size:.9rem;
}

/* Tune equal height per breakpoint if you want a tighter fit */
@media (max-width: 575.98px){
  .bp-bubbles { --chrome: 78px; }      /* slightly smaller chrome on mobile */
  .bp-bubbles .bp-bubble{ padding:22px 18px; }
  .bp-bubbles .bp-author{ padding-left:6px; }
  .bp-bubbles .bp-avatar{ width:64px; height:64px; }
}


.fa-heart{
  color: #66c9f0;
  font-size: 3em
}
/*TESTIMONIAL END*/


/*The 3 services images + we offer*/
.text-brand{ color: #66c9f0 !important; }

/* Stop the uniform gap */
.clean-card{
  display:flex;
  flex-direction:column;
  gap: 0;                /* was 1rem */
  padding-bottom: 2.75rem;
}

/* Space under the image only */
.clean-card .position-relative {  /* the div wrapping the img */
  margin-bottom: 1rem;            /* adjust to taste */
}

/* Tighten title → desc */
.clean-card .service-title { margin-bottom: .25rem; }
.clean-card .clean-desc     { margin-top: 0; }

/* IMAGE: larger, rounder, subtle shadow + lift */
.clean-media{
  height: 320px;               /* was 260 — closer to reference */
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.clean-card:hover .clean-media{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  filter: saturate(1.03);
}

/* PILL: bigger, left-aligned, OVERHANGS below the image */
.clean-pill{
  position: absolute;
  left: 36px;
  right: auto;
  bottom: 0px;                /* default for in-image variant */
  background: #fff;
  border: 1px solid #e8edf2;
  padding: 1.1rem 1.6rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 72px);
}

/* Modifier: make pill hang OUTSIDE the image (like the reference) */
.clean-pill--out{
  bottom: -28px;               /* pulls it below the image edge */
}

/* Optional: small brand accent bar under pill on hover */
.clean-pill::after{
  content:""; position:absolute; left:14px; bottom:-2px; height:4px; width:0;
  border-radius:4px; background: #66c9f0;
  transition: width .3s ease;
}
.clean-card:hover .clean-pill::after{ width:64px; }

/* Description: more spacing because pill sits lower */
.clean-desc{
  /*margin: 2.2rem 8px 0 8px;    /* creates the gap the pill occupies */*/
  color:#6b7280; line-height:1.7; ;
}

/* Shine sweep */
.clean-shine{
  position:absolute; inset:0; border-radius: 22px;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 22%, transparent 45%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform .6s ease; pointer-events:none;
}
.clean-card:hover .clean-shine{ transform: translateX(120%) skewX(-12deg); }

/* Responsive tweaks */
@media (max-width: 991.98px){
  .clean-media{ height: 280px; }
}
@media (max-width: 575.98px){
  .clean-media{ height: 220px; }
  .clean-pill{ left: 18px; max-width: calc(100% - 36px); }
  .clean-pill--out{ bottom: -22px; }
  .clean-desc{ margin-top: 1.9rem; }
}


.service-card{
  border: 0;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* ikon-cirklen med dobbelt ring */
.icon-badge.results{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  margin-inline: auto;
  box-shadow: 0 2px 0 rgba(0,0,0,.02) inset;
  position: relative;
}
.icon-badge.results::before{
  content:""; position:absolute; inset:-10px;
  border-radius: 50%;
  border: 5px solid #66c9f0;   /* ydre ring */
}
.icon-badge.results i{
  font-size: 30px;
  color: #66c9f0;
  z-index: 1;
}

.service-title{ color: #66c9f0; }

.service-card .card-text{
  max-width: 34ch;
  margin-inline: auto;
  color:#5b6b62;
}

.btn-svc{
  background: #66c9f0;
  border-color: #66c9f0;
  color:#fff;
  padding:.65rem 1.25rem;
  border-radius:.5rem;
  font-weight:600;
}


/* tighten spacing only between your title and desc */
.service-title + .clean-desc { margin-top: .25rem !important; padding-top: 0; }

/* if you still have the old pill version that set a big margin-top on .clean-desc,
   this will also neutralize it inside the clean cards */
.clean-card .clean-desc { margin-top: .25rem !important; padding-top: 0; }






/*newsletter_subscribe*/

.text-brand{ color: #27498b !important; }
.link-brand{ color: #27498b; text-decoration: underline; }
.link-brand:hover{ color:#1d3670; }

/* Card look that matches your site */
.nl-card{
  background:#fff;
  border:1px solid #eef2f5;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* Circle icon with brand ring */
.nl-icon{
  width:76px; height:76px; border-radius:50%;
  display:grid; place-items:center;
  background:#fff;
  border:6px solid rgba(102,201,240,.25);
  color: #27498b;
  font-size: 28px;
}

/* Big pill input */
.form-control-nl{
  height: 56px;
  border-radius: 999px;
  border:1px solid #e5ebf1;
  padding: .75rem 1.25rem;
  box-shadow: none;
}
.form-control-nl:focus{
  border-color: #66c9f0;
  box-shadow: 0 0 0 .25rem rgba(102,201,240,.25);
}

/* Brand CTA */
.btn-brand{
  background: #66c9f0;
  border-color: #66c9f0;
  color:#fff;
  border-radius: 999px;
  padding: .85rem 1.5rem;
  font-weight: 700;
}
.btn-brand:hover{ filter: brightness(.95); color:#fff; }

/* Tighter on small screens */
@media (max-width: 575.98px){
  .form-control-nl{ height: 52px; }
  .btn-brand{ padding: .8rem 1.2rem; }
}

/*Cookies*/
.cookie-box {
    position: fixed;
    background: rgba(10, 75, 157, .9);
    color: rgb(255, 255, 255);
    text-align: center;
    width: 100%;
    bottom: 0;
    animation: popin .4s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transform-origin: center 100%;
    z-index: 9999;
}

#cookies{
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.cookie-box span {
    display: inline-block;
    padding: 20px;
}

.cookie-box span a{
  color: white;
}

.cookie-box button {
    border: none;
    padding: 10px 20px;
    z-index: 10;
    color: #3E3E3E;
}

/*FOOTER*/
.footer{
  color: #66c9f0;
  font-size: 1em;
}


:root{
  --bp-brand:#66c9f0;   /* light blue */
  --bp-deep:#27498b;    /* deep blue */
}

/* Base editorial styles (from the light version) */
.contact-editorial{ position:relative; }
.eyebrow{ letter-spacing:.12em; text-transform:uppercase; font-weight:700; font-size:.78rem; }
.rule{ height:2px; width:80px; border-radius:2px; }
.phone-link{ font-weight:900; text-decoration:none; line-height:1; font-size: clamp(2rem, 5vw, 3.25rem); }

/* BLUE theme */
.contact-editorial--blue{
  color:#fff;
  background:#66c9f0;
    
  overflow:hidden;
}

/* Light variants on blue */
.eyebrow--light{ color: rgba(255,255,255,.75); }
.rule--light{ background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.35)); }
.phone-link--light{ color:#fff; }
.phone-link--light:hover{ color:#f2f6ff; }

/* Glass cards for dark bg */
.contact-card--glass{
  border-radius:18px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.35);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  color:#fff;
}
.contact-card--glass:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.text-white-75{ color: rgba(255,255,255,.82) !important; }

/* Small brand dot rendered for dark background */
.contact-dot{
  width:12px; height:12px; border-radius:50%;
  margin-top:.35rem;
}
.contact-dot--light{
  background: radial-gradient(circle at 40% 40%, #ffffff, rgba(255,255,255,.6));
}

/* Buttons tuned for blue bg */
.btn-ghost-light{
  color:#fff; border:1px solid #fff; background: transparent;
}
.btn-ghost-light:hover{
  background:#fff; color:#0b2545;
}
.btn-white{
  background:#fff; color:#0b2545; border:1px solid #fff; font-weight:700;
}
.btn-white:hover{
  filter: brightness(.95); 
  color:white;
  border: 1px solid white;
  border-radius: 5px;
}
