.logowidth{
    width: 120px;
}

.ftrlogowidth{
    width: 160px;
}

.text-darkblue{
    color: #13378D;
}

.text-lightblue{
    color: #338DCC;
}

.ftrlinkclr{
    color: #7ffff8;
}

.ftrlinkclr:hover{
    color: #fff !important;
}

.b-radius-12{
    border-radius: 12px;
}

.top-ticker-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.top-ticker {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #2563eb 100%);
    overflow: hidden;
    padding: 12px 0;
    border-top: 2px solid #ffffff20;
    border-bottom: 2px solid #ffffff20;
}

.top-ticker__wrap {
    overflow: hidden;
    white-space: nowrap;
}

.top-ticker__track {
    display: inline-flex;
    gap: 30px;
    animation: scrollTicker 50s linear infinite;
}

.top-ticker__trackone {
    display: inline-flex;
    gap: 30px;
    animation: scrollTicker 170s linear infinite;
}

.top-ticker__item {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 8px;
    background: rgb(255 255 255 / 16%);
    transition: 0.3s;
}

.top-ticker__item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* animation */
@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* pause on hover */
.top-ticker:hover .top-ticker__track {
    animation-play-state: paused;
}

.top-ticker__item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #93c5fd);
    box-shadow: inset 0 0 4px #fff, 0 0 5px #60a5fa;
    display: inline-block;
}

.hdricnwidth{
    width: 35px;
}

.ctathm-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 800;
    font-size: 16px;
    color: #13378d;
    text-transform: capitalize;
    padding: 12px 24px 12px;
    border-radius: 8px;
    background: #fff;
    font-family: var(--chirofind-font-two);
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    overflow: hidden;
    gap: 5px;
    z-index: 1;
}

.ctathm-btn::before {
  content: "";
  background: #fff;
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.ctathm-btn:hover::before {
  width: 100%;
}

.ctathm-btn::after {
  content: "";
  background: #fff;
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.testiwidth{
    width: 60px;
}

.mt30{
    margin-top: 30px;
}

.blankborderbtm{
    border-bottom: 0px Solid;
}

.cntcticnwidth{
    width: 55px;
}

.cntcscialwidth{
    width: 30px;
}

.clrblack{
    color: #000000;
}

.pt-60{
    padding-top: 60px;
}

.marquee-container {
    overflow: hidden;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: #fff;
    padding: 12px 0;
    position: relative;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.marquee span {
    margin-right: 50px;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee {
    animation-play-state: paused;
}

.ftrwidicon{
    width: 28px;
}

.aboutbanner{
    background: url('../new-images/banner/about-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.doctorbanner{
    background: url('../new-images/banner/about-doctor-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contactbanner{
    background: url('../new-images/banner/contact-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;   
}

.gallerybanner{
    background: url('../new-images/banner/gallery-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.livedonorbanner{
    background: url('../new-images/banner/live-donor-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cadaverbanner{
    background: url('../new-images/banner/cadaver-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.abobanner{
    background: url('../new-images/banner/abo-incompatible-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pairedbanner{
    background: url('../new-images/banner/kidney-paired-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.preemptivebanner{
    background: url('../new-images/banner/pre-emptive-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.doctor-float {
    position: fixed;
    right: 20px;
    top: 80%;
    z-index: 999;
}

/* Doctor main button */
.doctor-btn {
    width: 60px;
    height: 60px;
    background: #eaeaf4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    font-size: 24px;
}

/* Pulse animation */
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #487cee;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Hidden menu */
.doctor-menu {
    position: absolute;
    bottom: 95px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Show menu */
.doctor-float.active .doctor-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Social buttons */
.menu-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Colors */
.whatsapp { background: #f3f3f3; }
.instagram { background: #f3f3f3; }
.facebook { background: #f3f3f3; }
.call { background: #f3f3f3; }

.pulseicon{
    width: 40px;
}
.pulseundericon{
    width: 30px;
}

.ml-0{
    margin-left: 0px !important;
}

.inputclss{
    border: 2px solid #13378d !important;
}

.frmtxtcls{
    color: #000000 !important;
}

.fs-25{
    font-size: 25px;
}

@media only screen and (min-width: 280px) and (max-width: 767px) {
    .main-menu-two__menu-box {
        gap: 180px;
    }
    .banner-one__sub-title-box {
        margin-bottom: 12px;
    }
    .banner-one__btn {
        border: 1px solid var(--chirofind-white);
        padding: 10px 15px 10px;
        background: none;
    }
    .about-one {
        padding: 40px 0 30px;
    }
    .about-one__call-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    .about-one__call-box .content>p {
        font-size: 16px;
    }
    .mblmtforty{
        margin-top: 35px !important;
    }
    .section-title {
        display: block;
        margin-bottom: 17px;
    }
    .team-one__title {
        font-size: 21px;
    }
    .team-one__content {
        position: relative;
        display: block;
        text-align: center;
        margin-top: 12px;
    }
    .process-one__title {
        font-size: 21px;
    }
    .testiwidth {
        width: 50px;
    }
    .counter-one__count h3 {
        font-size: 24px;
    }
    .pricing-one__pricing-list li {
        margin-bottom: 18px;
    }
    .before-and-after {
        padding: 25px 0 0px;
    }
    .before-and-after__left .section-title {
        margin-bottom: 10px;
    }
    .mblmtten{
        margin-top: 10px !important;
    }
    .mblimgwidth{
        width: 100%;
    }
    .testimonial-one {
        position: relative;
        display: block;
        background-color: #F3F7FB;
        padding: 40px 0 115px;
        z-index: 1;
        margin-top: 35px;
    }
    .testimonial-one__single-text {
        margin-top: 12px;
    }
    .testimonial-one__carrosel-box {
        position: relative;
        display: block;
        margin-top: 18px;
    }
    .testimonial-one__client-img img {
        width: 60%;
        border-radius: 50%;
    }
    .testimonial-one__quote-icon {
        position: absolute;
        top: 60px;
        right: 40px;
    }
    .testimonial-one__nav .swiper-button-prev, .testimonial-one__nav .swiper-button-next {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
    }
    .testimonial-one__nav {
        gap: 40px;
        display: flex;
        margin-top: 20px;
    }
    .ftrlogowidth {
        width: 100% !important;
    }
    .site-footer__top {
        position: relative;
        display: block;
        padding: 35px 0 65px;
    }
    .mblmtfifteen{
        margin-top: 15px !important;
    }
    .footer-widget__title-box {
        position: relative;
        display: block;
        margin-bottom: 6px;
    }
    .services-details__title-2 {
        font-size: 21px;
        font-weight: 700;
        line-height: 28px;
        margin-top: 12px;
        margin-bottom: 10px;
    }
    .mblmttwentyfive{
        margin-top: 25px !important;
    }
    .mblptzero{
        padding-top: 0px !important;
    }
    .mbltxtxntr{
        text-align: center;
    }
    .faq-page__right .faq-one-accrodion .accrodion-title {
        padding: 18px 8px 18px;
    }
    .faq-one-accrodion .accrodion-title h4 {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }
    .faq-one-accrodion .accrodion-content {
        position: relative;
        padding-bottom: 14px;
        margin-top: -7px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .faq-one-accrodion .accrodion-content p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }
    .page-header__inner {
        position: relative;
        display: block;
        padding: 0 2px;
    }
    .team-details {
        position: relative;
        display: block;
        padding: 40px 0 0;
        z-index: 1;
    }
    .team-details__client-title {
        font-size: 21px;
        font-weight: 700;
        line-height: 38px;
    }
    .team-details__bottom-title-1 {
        font-size: 21px;
        font-weight: 700;
        line-height: 21px;
    }
    .page-content-wrapper {
        z-index: 1;
        display: block;
        position: relative;
        padding: 40px 0 100px;
    }
    .contact-page__bottom {
        position: relative;
        display: block;
        margin-top: 10px;
    }
    .mblpbhundred{
        padding-bottom: 130px;
    }
    .cntcticnwidth {
        width: 50px;
    }
    .services-details__title-1 {
        font-size: 21px;
        font-weight: 700;
        line-height: 30px;
    }
    .services-details__text-1 {
        margin-top: 8px;
        margin-bottom: 10px;
    }
    .services-details__content {
        position: relative;
        display: block;
        margin-top: 20px;
    }
    .sidebar__title {
        position: relative;
        margin: 0;
        font-size: 20px;
        margin-bottom: 28px;
        font-weight: 700;
    }
    .sidebar__single+.sidebar__single {
        margin-top: 25px;
        margin-bottom: 120px;
    }
    .mblnone{
        display: none !important;
    }
    .banner-one__img>img {
        width: 350px;
    }
    .banner-one__img-box {
        position: absolute;
        top: 155px;
        right: 0px;
        z-index: 2;
    }
}
