/********** Template CSS **********/
@font-face {
    font-family: gilroyregular;
    src: url(../fonts/Gilroy-Regular.ttf);
 }
 
 * {
    font-family: gilroyregular;
 }
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}
 .chatbot {
              cursor:pointer;
              display: flex;flex-direction: column;
              align-items: center;
              justify-content: center;
              position: fixed;
                  right: 40px;
                    bottom: 40px;
              z-index: 1000;
              animation: bounce 2s infinite;
          }
     

.arrowDiscover{
    background: #0470BA;
    border-radius: 15px;
    color: white;
}

.discover {
    /* border: 1px solid; */
    border-radius: 10px;
    background: white;
    color: #1E3C70;
}

.discover:hover {
    color: #1E3C70 !important;
}


/*** Spinner ***/
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire container */
}
.navbarset{
    justify-content: right !important;
}
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    /* font-family: 'Nunito', sans-serif; */
    /* font-family: 'Gilroy-Bold'; */
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.loginbtn{
    border: 1px solid white;
    width: 100px;
    color: white;
}
.navbar-dark .navbar-nav .nav-link {
    /* font-family: 'Nunito', sans-serif; */
    /* font-family: 'Gilroy-Bold'; */
    position: relative;
    margin-left: 40px;
    padding: 20px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #FFFFFF;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: black;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: -1px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(20 23 27 / 72%);
    
    z-index: 1;
}
.Supporting button:hover{
    /* color: white !important; */
    }
/* .btn:hover {
    color: white !important;
} */

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/backgroundInner.png) center center no-repeat; */
    background: url(../img/backgroundInner.png);
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.home-page-footer {
    margin-top: -50px;
}

p .text-reset {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: #2B4E52 !important;
}
.social_icons{
    display: flex;
}

@media only screen and (max-width: 767px) {
    .swiper-content {
        background-color: rgba(255, 255, 255, 0.29);
        width: 100%;
        height: auto !important;
    }
    .videoset{
        display: none;
    }
    .mobileimage{
        display: block !important;
        height: 800px !important;
    }
    .buttonstyle {
        height: auto !important;
        position: relative !important;
        top: 0px !important;
        width: 100% !important;
        right: 20px;
        left: 0px;
        border-radius: 6px;
    }
    .heroSectionHeading {
        font-size: 73px;
        color: white;
        line-height: 45px;
        font-weight: 800;
        /* font-family: 'Gilroy-Bold' !important; */
    }
    .mobilesetcolmd7{
            text-align: center;
            padding-left: 60px;
            margin-top: 631px;
        }
        .form-control:disabled, .form-control:read-only {
            border: 2px solid #e9ecef !important;
            opacity: 1;
            /* padding-left: 35px !important; */
            line-height: 30px;
            background-color: #FFFFFF;
            text-align: justify;
            font-size: 16px !important;
            font-weight: 600 !important;
            line-height: 25px !important;
            border-radius: 10px;
        }
        .spanIcon {
            position: absolute;
            color: #0470ba;
            top: 9px !important;
            left: 8px;
        }
        .spandownIcon {
            position: absolute;
            right: 5px;
            color: #0470ba;
            top: 10px !important;
        }
        span i {
            font-size: 15px !important;
        }
        .zipcodetext {
            line-height: 1.5 !important;
            border-radius: 10px;
            padding-left: 35px;
        }
        .column7 {
            text-align: center !important;
            padding-left: 0px !important;
        }
        .textboxset{
            padding: 0.5rem !important;
            margin-bottom: 0px !important;
        }
        .input-icons{
             height: 20px;
        }
        .featuredDiv {
            padding-left: 15px;
            padding-top: 3px;
            text-align: justify;
        }
        .pHeroSet {
            width: 100%;
            /* font-family: 'Gilroy-SemiBold'; */
            font-size: 15px;
            font-weight: 500;
            line-height: 20px;
        }

        img.wheelchairimage {
            height: 30px;
            margin-top: 40px;
        }
        .wheelchairdiv {
            /* background: rgba(255, 255, 255, 0.29); */
            backdrop-filter: saturate(180%) blur(20px);
            background-color: #ffffff21;
            border-radius: 16px;
            margin-top: 25px !important;
            padding: 20px;
            padding-bottom: 0px;
            padding-top: 0px;
        }
        .pHeroSet {
            width: 100% !important;
            /* font-family: 'Gilroy-SemiBold'; */
            font-size: 15px !important;
            font-weight: 500;
            line-height: 27px !important;
        }
        .heroSectionHeading {
            font-size: 25px !important;
            color: white;
            line-height: 35px !important;
            font-weight: 400;
            /* font-family: 'Gilroy-Bold' !important; */
        }
        .michigan{
            font-size: 15px !important;
    /* text-align: start; */
    color: white !important;
        }
        .wheelchairparagraph{
            font-size: 12px !important;
        }
        .bottomimg{
            display: flex;
        }
        .mobilelogo{
            display: block !important;
        }
        .laptoplogo{
            display: none;
        }

        /* second section */
        .whyus{
            padding-left: 20px !important;
             padding-right:20px
        }
        .whyus1 {
            padding-right: 1rem !important;
            padding-left: 15px !important;
        }
        .carecenter{
            display: none;
        }
        .learnmoreDiv{
            display: flex;
            justify-content: space-around;
            margin-top: 3rem;
        }
        .mobileview{
            display: none;
        }

        .swiper-slide {
            width: 340px !important;
            height: auto;
            padding: 5px;
        }
        .premservice{
            line-height: 25px !important;
        }
        .premserviceicon{
            line-height: 60px;
        }
        .positionset {
            height: auto !important;
            position: relative !important;
        }
    }

    /* loader */
    /* .loader {
        animation: rotate 1s infinite;
        height: 50px;
        width: 50px;
        position: absolute;
        top: 250px;
        z-index: 11;
        left: 50%;
      } */
      .loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7); /* Adjust the alpha value for transparency */
        backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999; /* Ensure the loader is on top of other content */
      }
  
      .loader {
        position: relative;
        width: 164px;
        height: 164px;
        perspective: 300px;
      }
      .loader::before  {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image:
          radial-gradient(circle 15px, #FF3D00 100%, transparent 0),
          radial-gradient(circle 15px, #FF3D00 100%, transparent 0),
          linear-gradient(#FF3D00 100px, transparent 0),
          linear-gradient(#FF3D00 100px, transparent 0);
        background-repeat: no-repeat;
        background-size: 30px 30px, 30px 30px, 40% 2px, 40% 2px;
        background-position: left center, right center, left center, right center;
        animation: rotateY 1s linear infinite;
      }
      .loader::after  {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image:
          radial-gradient(circle 15px, #0470BA 100%, transparent 0),
          radial-gradient(circle 15px, #0470BA 100%, transparent 0),
          linear-gradient(#0470BA 100px, transparent 0),
          linear-gradient(#0470BA 100px, transparent 0);
        background-repeat: no-repeat;
        background-size: 30px 30px, 30px 30px, 2px 40% , 2px 40%;
        background-position: top center, bottom center, top center, bottom center;
        animation: rotateX 1s linear infinite;
      }
      
      @keyframes rotateY {
        0%{ transform: rotateY(0deg)}
        100% { transform: rotateY(-180deg)}
      }
      @keyframes rotateX {
        0%, 25% { transform: rotateX(0deg)}
        75%,  100% { transform: rotateX(-180deg)}
      }
        
      @media (max-width: 767px) {
        .welcomeText {
            color: black !important;
        }
        .mobileapp{
            width: 230px;
        }
        .mobileview{
            display: none;
        }
        .paddingMobile {
            padding: 0px !important;
        }
        .signupSignin{
            display: flex;
            flex-direction: column;
        }
        .btnn{
            margin-bottom: 10px;
        }

        .positionset {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100%;
            background-color: #fff; /* Set your desired background color */
            z-index: 1000;
            overflow-y: auto; /* Enable vertical scrolling if needed */
        }
    
        .positionset .col-md-3 {
            padding-right: 0; /* Remove padding on smaller screens */
        }
    
        .positionset .btn {
            display: none; /* Hide the toggle button on smaller screens */
        }
        .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
            color: #000000;
        }
        .btncustom {
            background-color: #0470ba;
            border-color: #0470ba;
            color: black !important;
        }
        .mobilealign{
            text-align: center;

        }
        .social_icons{
            display: contents;
        }
        .mobilesection {
            background: url(./img/mobile.png);
            /* height: 50vh; */
            /* margin-bottom: 75px; */
            border-radius: 30px;
            margin-top: 0px !important;
            background-size: cover;
            background-position: center center !important;
        }
        .newsbar{
            display: none;
        }
      }
      @media only screen and (min-width: 1300px) {
        .buttonstyle {
            height: 170px !important;
            position: absolute;
            top: 20px;
            width: 100px;
            right: 20px;
            border-radius: 6px;
        }
       
      }
      @media only screen and (min-width: 1920px) {
        .buttonstyle {
            height: 120px !important;
            position: absolute;
            top: 20px;
            width: 100px;
            right: 20px;
            border-radius: 6px;
        }

      }
      @media only screen and (max-width: 1500px) and (min-width: 1300px) 
      {
    .mobileview {
            position: absolute;
            right: 35px !important;
            /*width: 416px !important;*/
            top: -106px !important;
        }
      }
      @media only screen and (max-width: 1300px) and (min-width: 991px) 
      {
        .mobileview {
            position: absolute;
            right: 35px !important;
            /*width: 420px !important;*/
            top: -106px !important;
        }
        .buttonstyle {
            height: 136px !important;
            position: relative !important;
            top: -75px !important;
            width: auto !important;
            right: 0px;
            left: 0px;
            border-radius: 6px;
        }
        .ScreenSet{
            height: 0px !important;
            margin: 0px !important;
            padding: 0px !important;
        }
        .heroSectionHeading {
            font-size: 40px !important;
            color: white;
            line-height: 50px;
            font-weight: 800;
        }
        .pHeroSet {
         width: 70%;
         /* font-family: 'Gilroy-SemiBold'; */
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 25px !important;
      }
      .column7 {
        text-align: left;
        padding-left: 60px;
        margin-top: 110px;
    }
    .wheelchairdiv {
        /* background: rgba(255, 255, 255, 0.29); */
        backdrop-filter: saturate(180%) blur(20px);
        background-color: #ffffff21;
        border-radius: 16px;
        margin-top: 0px !important;
        padding: 20px;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .wheelchairimage{
        height: 40px;
        margin-top: 50px;
    }
    .navbar-dark .navbar-nav .nav-link {
        /* font-family: 'Nunito', sans-serif; */
        /* font-family: 'Gilroy-Bold'; */
        position: relative;
        margin-left: 16px !important;
        padding: 20px 0;
        color: #FFFFFF;
        font-size: 17px !important;
        font-weight: 600;
        outline: none;
        transition: .5s;
    }
    .laptoplogo{
        height: 35px !important;
    }
    h3.michigan {
        font-size: 18px;
        color: white;
    }
    }

    @media only screen and (max-width: 990px) and (min-width: 768px) 
      {
        .mobilelogo{
            display: block !important;
        }
        .laptoplogo{
            display: none;
        }
        .buttonstyle {
            height: 136px !important;
            position: relative !important;
            top: -75px !important;
            width: auto !important;
            right: 0px;
            left: 0px;
            border-radius: 6px;
        }
        .ScreenSet{
            height: 0px !important;
            margin: 0px !important;
            padding: 0px !important;
        }
        .heroSectionHeading {
            font-size: 30px !important;
            color: white;
            line-height: 40px !important; 
            font-weight: 800;
        }
        .pHeroSet {
         width: 70%;
         /* font-family: 'Gilroy-SemiBold'; */
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 25px !important;
      }
      .column7 {
        text-align: left;
        padding-left: 60px;
        margin-top: 0px;
    }
    .wheelchairdiv {
        /* background: rgba(255, 255, 255, 0.29); */
        backdrop-filter: saturate(180%) blur(20px);
        background-color: #ffffff21;
        border-radius: 16px;
        margin-top: 0px !important;
        padding: 20px;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .wheelchairimage{
        height: 40px;
        margin-top: 45px;
    }
    p.wheelchairparagraph {
        font-size: 15px;
    }
    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
        color: #000000;
    }
    .btncustom {
        background-color: #0470ba;
        border-color: #0470ba;
        color: black !important;
    }
    .premservice {
        line-height: 30px !important;
    }
    .fi{
        line-height: 2;
    }
    .carecenter {
        display: none;
    }
    .mobileview {
        position: absolute;
        right: 10px !important;
        /*width: 300px !important;*/
        top: 51px !important;
    }
    .bestHealth{
        font-size: 20px;
    }
    .fab {
        font-family: "Font Awesome 5 Brands";
        font-size: 14px;
    }
    .pHeroSet {
        width: 100% !important;
        /* font-family: 'Gilroy-SemiBold'; */
        font-size: 20px;
        font-weight: 500;
        line-height: 35px;
    }
    h3.michigan {
        font-size: 18px;
        color: white;
    }
    .discover {
        color: #C2DDDA;
        /* width: 150px; */
        border: 1px solid;
        border-radius: 10px;
        font-size: 15px;
        padding: 0px !important;
    }
    .discover i{
        font-size: 23px !important;
    }
      }
      
      
      
      @media only screen and (max-width: 768px) 
      {
          .chatbot {
              cursor:pointer;
              display: flex;flex-direction: column;
              align-items: center;
              justify-content: center;
              position: fixed;
              right: 5px;
              bottom: 70px;
              z-index: 1000;
              animation: bounce 2s infinite;
          }
     
      }
    
      
      
      
      
    