/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #f2f675;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: var(--secondary);
}
.back-to-top:focus, .back-to-top:hover,{

    background: var(--secondary);
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
 font-family: "Poppins", serif;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
     font-family: "Poppins", serif;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
     font-family: "Poppins", serif;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 20px;
    padding: 35px 0;
    font-family: "Poppins", serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #f2f675;

}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        height: 90px;
        position: fixed;
        background: #6222cc;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: #ffffff;
        font-size: 32px;
    }
    .sticky-top.navbar-light .navbar-brand p {
        font-size: 14px;
    }
     .sticky-top.navbar-light .navbar-brand h3 {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 0;
    padding: 10rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 2rem 0 5rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

/*.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}*/

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
/*    margin: 6rem 0;*/
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}
.service-item h5{
    font-size: 25px;
}
.service-item p{
    font-size: 16px;
    color: #333;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 0;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/footerbg.jpg);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 7px;
    padding: 0;
    font-size: 15px;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}
.logo h1{
    font-size: 33px;
     font-family: "Poppins", serif;
     font-weight: 700;

}
.logo p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
     font-family: "Poppins", serif;
}
.logo h3{
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #fff;
     font-family: "Poppins", serif;
}
.carousel-control-prev, .carousel-control-next{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 45%;
}
.carousel-indicators [data-bs-target]{
    border: none;
    width: 7px;
    height: 7px;
    margin: 0 10px;
    border-radius: 100px;
    box-shadow: 0 0 2px 5px #ffffff85;
}
.aboutsec .section-title{
    color: #666666!important;
}
.aboutpage h1{
   color: #6222cc;
    margin: 0;
    padding-bottom: 5px;
     font-family: "Poppins", serif;
}
.aboutsec h1{
    color: #6222cc;
    margin: 0;
    padding-bottom: 5px;
     font-family: "Poppins", serif;
}
.aboutsec h4{
    font-size: 18px;
     font-family: "Poppins", serif;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 10px;
}
.aboutsec h4 span{
    font-size: 19px;
    color: #444444;
     font-family: "Poppins", serif;
}
.aboutsec p{
    color: #333333;
}
.servicesec{
    padding-bottom: 6em;
     font-family: "Poppins", serif;
}
.text-secondary {
    color: #686868 !important;
}
.abtimg img{
    border-radius: 20px;
}
.appbtn a{
    background: var(--secondary);
    padding: 10px 40px;
    font-weight: 600;
    font-size: 20px;
    grid-row: 400;
    border-radius: 30px;
    color: #333333!important;
}
.appcnt h1{
    font-size: 28px;
    color: #ffffff;
    text-align: center;
}
#test {
    padding: 5em 0;
}
.testif h3{
    background: #666666;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100px;
}
.why{
    display: flex;
    flex-wrap: wrap;
}
.whylft{
    width: 50%;
    padding: 70px 50px;
      background: #6222cc;
}
.whylft h1{
    color: #fff;
    margin-bottom: 25px;
}
.whylft ul{
    margin-bottom: 0;
    padding: 0;
}
.whylft ul li{
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    padding: 8px 0;
    list-style: none;
    padding-left: 45px;
    position: relative;
}
.whylft ul li i{
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 22px;
}
.whyrgt{
    width: 50%;

}
.whyrgt img{
    width: 100%;
    height: 100%;
}
.hosp{
    padding: 5em 0;
}
.testimonial-item p{
    font-size: 18px;
    color: #333333;
    font-style: italic;
}
.address{
    text-align: center;
}
.address p{
    margin: 0;
    line-height: 1.6;
}   
.address p span{
    font-size: 20px;
    font-weight: 600;
    color: #6222cc;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.footer p{
    font-size: 15px;
    line-height: 1.6;
}
.contactpage{
    padding: 4em 0;
}
.contactpage button{
    background: #6222cc;
}
.contactpage button:hover{
    background: #ffffff;
    color: #6222cc;
}
.moreinfo{
    padding-top: 35px;
}
.moreinfo h2{
    padding-bottom: 20px;
    color: #565656;
}
.aboutpage p{
    color: #333333;
    text-align: justify;
}
.aboutpage p:last-child{
    margin-bottom: 0;
}
.aboutpage h4{
       font-size: 18px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 10px;
}
.aboutpage h5{
    margin-bottom: 20px;
}
.moreinfo ul{
    padding: 0;
}
.moreinfo ul li{
     color: #333333;
    padding-bottom: 10px;
    position: relative;
    list-style: none;
    line-height: 1.6;
    padding-left: 30px;
}
.moreinfo ul li i{
    left: 0;
    color: #6222cc;
    font-size: 20px;
    position: absolute;
}
.socialicons{

}
.socialicons a{
    border: 1px solid #666;
    width: 50px;
    color: #666666;
    height: 50px;
    padding: 0;
    font-size: 22px;
    line-height: 50px;
    margin: 0 10px;
    border-radius: 100%;
}
.servinn{
    padding: 5em 0;
}
.topside img{
    border: 1px solid #cccccc55;
    padding: 8px;
}
.servcnt p{
    font-size: 1rem;
    color: #333333;
}
.revsec{
    padding: 5rem 0;
}
.tbtn{
    text-align: center;
    margin-top: 30px;

}
.tbtn button{
        padding: 12px 25px;
        border: none;
        background: var(--secondary);
        font-weight: 600;
        border-radius: 30px;
    }
    .tbox{
        background: #f6f0ff;
        padding: 50px;
        border-radius: 30px;
        margin-bottom: 50px;
    }
        .tbox p{
            font-style: italic;
            font-weight: 200;
            color: #333333;
            line-height: 1.6;
        }
        .float{
    position:fixed;
    width:60px;
    height:60px;
    text-align: center;
    line-height: 60px;
    bottom:100px;
    left:30px;
    background-color:blue;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}
.whts i{
    transition: 0.5s ease;
}
.whts a{
    color: #fff;
}
.whts:hover i{
    transform: scale(1.2);
}
.float1{
    position:fixed;
    width:60px;
    height:60px;
    text-align: center;
    line-height: 50px;
    bottom:100px;
   right:30px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}
.float1 i{
    font-size: 40px;
    line-height: 60px;
    transition: 0.5s ease;
}
.whts a{
    color: #fff;
}
.whts:hover i{
    transform: scale(1.2);
}
.consultaion{
    background: #6222cc;
    height: 500px;
    margin-top: 60px;
    padding: 60px 15px;
}
.consultaion img{
    border-radius: 20px;
}
.text1 p{
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300!important;
}
.text2 h3{
    color: #f2f675;
    padding: 10px 0;
    padding-top: 25px;
}
.text2 p{
    text-align: left;
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
   
}
.portfolio-container .bg-light{
    background: #f2f675!important;
}
.hero-header h1{
    color: #f2f675!important;
}
.dropdown-item:hover, .dropdown-item:focus{
    background: #f2f675;;
}


	