.rinologix h2{
	font-size: 24px;
}
.rinologix h3{
	font-size: 20px;
}

/* ==========================
   Rinologix Floating CTA
========================== */

.rlx-contact-bar{

    position:fixed;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);

    width:92%;
    max-width:700px;

    display:flex;
    gap:8px;

    padding:8px;

    background:#fff;

    border-radius:18px;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 2px 8px rgba(0,0,0,.08);

    backdrop-filter:blur(20px);

    z-index:999999;

}

/* Button */

.rlx-contact-bar .rlx-btn{

    flex:1;

    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    padding:10px 14px;

    border-radius:14px;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

}

.rlx-contact-bar .rlx-btn:hover{

    transform:translateY(-3px);

}

/* Colors */

.rlx-contact-bar .rlx-call{

    background:#f14f44;
    color:#fff;

}

.rlx-contact-bar .rlx-whatsapp{

    background:#25D366;
    color:#fff;

}

/* Shine */

.rlx-contact-bar .rlx-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent);

    transform:skewX(-25deg);

    transition:.8s;

}

.rlx-contact-bar .rlx-btn:hover::before{

    left:150%;

}

/* Icon */

.rlx-contact-bar .rlx-icon{

    width:48px;
    height:48px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.18);

    flex-shrink:0;

}

.rlx-contact-bar .rlx-icon i{

    font-size:21px;

    animation:rlxRing 2s infinite;

}

/* Text */

.rlx-contact-bar .rlx-content{

    display:flex;
    flex-direction:column;

}

.rlx-contact-bar .rlx-content span{

    font-size:12px;

    opacity:.95;

    margin-bottom:2px;

}

.rlx-contact-bar .rlx-content strong{

    font-size:16px;

    font-weight:700;

    line-height:1.2;

}

/* Animation */

@keyframes rlxRing{

0%{transform:rotate(0deg);}
5%{transform:rotate(18deg);}
10%{transform:rotate(-18deg);}
15%{transform:rotate(12deg);}
20%{transform:rotate(-12deg);}
25%{transform:rotate(0deg);}
100%{transform:rotate(0deg);}

}

/* ==========================
      Mobile
========================== */

@media only screen and (max-width:768px){

.rlx-contact-bar{

    left: 10px;
        right: 10px;
    bottom:0;

    transform:none;

    width:92%;
    max-width:none;

    padding:6px;

    gap:6px;

    border-radius:18px 18px 0 0;

}

.rlx-contact-bar .rlx-btn{

    padding:10px 8px;

    gap:8px;

    border-radius:12px;

}

.rlx-contact-bar .rlx-icon{

    width:42px;
    height:42px;

    border-radius:12px;

}

.rlx-contact-bar .rlx-icon i{

    font-size:18px;

}

.rlx-contact-bar .rlx-content span{

    font-size:10px;

}

.rlx-contact-bar .rlx-content strong{

    font-size:13px;

}

}

/* Small Mobile */

@media only screen and (max-width:480px){

.rlx-contact-bar{

    padding:5px;

}

.rlx-contact-bar .rlx-btn{

    padding:9px 6px;

    gap:6px;

}

.rlx-contact-bar .rlx-icon{

    width:38px;
    height:38px;

}

.rlx-contact-bar .rlx-icon i{

    font-size:16px;

}

.rlx-contact-bar .rlx-content span{

    font-size:9px;

}

.rlx-contact-bar .rlx-content strong{

    font-size:12px;

}

}