@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: Roboto-Black;
    src: url('../fonts/Roboto-Black.ttf');
}

:root{
    --theme-color-1: #081E59;
    --theme-color-2: #1C69C9;
    --theme-color-3: #00C5F8;
    --theme-color-4: #79FAD5;

    --body-bg: #F0F4F7;
    --font-color: #333333;
    --heading-color1: #232837;
    --font-white: #ffffff;
    --link-color: #1E7CF2;
    --border: 1px solid rgba(255, 255, 255, 0.2);
}

body{
    background-color: var(--font-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 30px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: normal;
}

.btn-main{
    color: var(--font-color);
    background: var(--theme-color-4);
    transition: all .5s ease-out;
    white-space: nowrap;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #25c5a0;
    transition: all .5s ease-out;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 10%);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #0d50a3;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 10%);
}

.btn-white{
    border: 1px solid var(--font-white);
    background-color: var(--font-white);
    color: #333;
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-white:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--theme-color-2);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 16px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-4);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: transparent;
    height: 80px;
}

.dropdown-menu{
    min-width: 12rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color1);
    font-size: 14px;
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
    background-color: var(--theme-color-4);
}

.dropdown-menu li a:hover{
    color: var(--theme-color1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-4);
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Roboto-Bold', sans-serif;
  color: var(--theme-color-2);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 0px;
    border: transparent;
    background-color: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: transparent;
    font-size: 14px;
    padding: 1.5rem 0rem;
    border-bottom: 1px solid #ddd;
    font-family: 'Roboto-Medium', sans-serif;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    color: var(--theme-color-2);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--theme-color-2);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq .accordion-body {
    padding: 0rem 0rem;
}

.faq .accordion-button:not(.collapsed){
    border-radius: 12px 12px 0px 0px !important;
    border: var(--border);
    border-bottom: transparent;
    background-color: #fff;
}

.faq .accordion-collapse.collapse.show .accordion-body{
    border-radius: 0px 0px 0px 0px !important;
    border: var(--border) !important;
    border-top: transparent !important;
    background-color: #FFF;
    padding-top: 0;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-2);
    color: white;
    cursor: poRoboto;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-2);
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-1);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-4);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

.header-btns{
    display: flex;
    align-items: center;
}

.login-btn{
    color: var(--font-white);
}

/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 820px;
    overflow: hidden;
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-heading{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.banner-description{
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.main-banner-image{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading{
    color: var(--heading-color1);
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 0px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

.howork-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.howork-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
    font-size: 24px;
    text-align: center;
}

.howork-description{
    text-align: center;
}

.howork-icon{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 50px;
}

.benefit-list-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 2rem;
}

.benefit-icon{
    width: 65px;
    height: 65px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--theme-color-2);
    border-radius: 50%;
}

.benefit-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
    font-size: 20px;
    text-align: left;
}

.benefit-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.benefit-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.healthservice{
    background-color: #0C0C0D;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 10;
    overflow: hidden;
}

.healthservice-top{
    position: relative;
    z-index: 10;
}

.healthservice-image{
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: lightgray 50%;
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
}

.healthservice-image img{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.healthservice-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.healthservice-heading{
    font-size: 24px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.healthservice-description{
    color: var(--font-white);
}

.know-more-link{
    color: var(--theme-color-3);
    width: 100%;
    margin-top: 2rem;
    display: inline-block;
    transition: ease-in 0.3s;
}

.know-more-link:hover{
    color: var(--theme-color-4);
    transition: ease-in 0.3s;
}

.know-more-link i{
    margin-left: 10px;
}

.right-content{
    padding-left: 2rem;
}

.healthservice-layer-purple{
    position: absolute;
    left: 0;
    top: 30%;
    z-index: 1;
    width: 60%;
    opacity: 0.3;
}

.healthservice-layer-green{
    position: absolute;
    right: -15rem;
    bottom: 20%;
    z-index: 1;
    width: 60%;
    opacity: 0.3;
}

.funfactor-subscribe{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.funfactor-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    padding: 10px 100px 10px 10px;
    height: 58px;
    border: 1px solid #ddd;
}

.fsubscribe-btn{
    width: fit-content;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px 15px;
    border-radius: 12px;
    background-color: var(--theme-color-4);
    color: var(--font-color);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color-4);
}

.funfactor-card{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    margin-bottom: 25px;
    justify-content: center;
    padding: 20px;
}

.funfactor-card:last-child{
    margin-bottom: 0px;
}

.funfactor-card.one{
    background: linear-gradient(294deg, #C5322F 1.65%, #C11A83 153.13%);
}

.funfactor-card.two{
    background: linear-gradient(294deg, #872990 1.65%, #4A2779 153.13%);
}

.funfactor-card.three{
    background: linear-gradient(294deg, #5865F2 1.65%, #404EED 153.13%);
    margin-top: 3rem;
}

.funfactor-card.four{
    background: linear-gradient(294deg, #1DA1F2 1.65%, #0A6CA9 153.13%);
}

.funfactor-card h3{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.funfactor-card p{
    color: var(--font-white);
}

.funfactor-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.funfactor-content-wrapper form{
    width: 65%;
    position: relative;
    display: inline-block;
}

.featured-service{
    width: 100%;
    background-color: #0C0C0D;
}

.featured-service-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
}

.fsw-inner h3{
    font-size: 24px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.fsw-inner p{
    color: var(--font-white);
}

.featured-service-wrapper::before{
    background-color: rgb(0 0 0 / 35%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: inline-block;
    z-index: 9;
}

.featured-service-wrapper.one{
    background-image: url('../images/remote-patient.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-service-wrapper.two{
    background-image: url('../images/nlp.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-service-wrapper.three{
    background-image: url('../images/mental-health.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fsw-inner{
    text-align: center;
    position: relative;
    z-index: 11;
}

.long.fsw-inner{
    width: 70%;
}

.short.fsw-inner{
    width: 100%;
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 250px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.blog-content-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-author{
    display: flex;
    align-items: center;
}

.blog-author img{
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--theme-color-2);
    margin-right: 10px;
}

.blog-author h4{
    font-size: 16px;
    color: var(--font-white);
}

.blog-content-top p{
    color: #9298AB;
}

.blog-badge{
    height: 35px;
    border-radius: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    background-color: var(--theme-color-2);
}

.blog-content-bottom {
    margin-top: 15px;
}

.blog-content-bottom a h4{
    font-size: 16px;
    color: var(--font-white);
}

.featuredservice-layer-green{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 60%;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.featuredservice-top{
    position: relative;
    z-index: 10;
}

.feedback{
    background-color: var(--body-bg);
}

.feedback-wrapper{
    width: 100%;
    height: 100%;
    padding: 25px;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 12px;
}

.feedback-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feedback-author-image{
    width: 50px;
    height: 50px;
    position: relative;
    display: inline-block;
}

.feedback-author-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--theme-color-2);
}

.feedback-author-info h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.feedback-bottom{
    position: relative;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.feedback-bottom i{
    color: #EAC608;
}

.footer-layer-wrppaer{
    border-radius: 12px;
    background: linear-gradient(270deg, #081E59 37.93%, #00C5F8 100%);
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.footer-layer-left h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.footer-layer-right img{
    width: 265px;
    opacity: 0.2;
}

/* ------------- */

footer{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 12rem;
    background-color: #0C0C0D;
}

.footer-about a h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p{
    color: var(--font-white);
}

.footer-links{
    position: relative;
    display: inline-block;
    width: 100%;
}

.footer-heading{
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--theme-color-3);
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-links ul li a{
    color: var(--font-white);
}

.footer-conatct ul li{
    margin-bottom: 10px;
}

.footer-conatct ul{
    margin-top: 20px;
}

.footer-conatct ul li a{
    color: var(--font-white);
}

.footer-conatct p{
    color: var(--font-white);
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
}

.footer-bottom p{
    color: var(--font-white);
    text-align: center;
}

.footer-layer{
    width: 100%;
    position: relative;
    margin-bottom: -8rem;
    z-index: 10;
    padding-top: 3rem;
}

.footer-social{
    display: flex;
    align-items: center;
}

.footer-social h3{
    font-size: 20px;
    color: var(--theme-color-3);
    margin-right: 30px;
}

.footer-social ul li{
    display: inline-block;
}

.footer-social ul li a{
    color: var(--font-white);
    margin: 0px 5px;
}

.footer-line{
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    opacity: 0.3;
    display: inline-block;
}

.footer-btn{
    text-align: right;
    float: right;
}

.footer-about a img{
    width: 130px;
    margin-bottom: 1.5rem;
}

/* footer end */
.page-banner-container{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    /* background-color: var(--theme-color-1); */
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-size: cover;
}

.page-banner-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.page-banner-wrapper h1{
    font-size: 28px;
    color: var(--font-white);
}

.page-banner-wrapper ul{
    margin-top: 10px;
    color: var(--font-white);
}

.page-banner-wrapper ul li{
    display: inline-block;
    padding-right: 10px;
    color: var(--font-white);
}

.page-banner-layer{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -5rem;
}

.page-banner-layer-wrapper{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
}

.page-banner-layer-wrapper img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 12px;
}

.plt-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 3rem;
}

.plt-wrapper h3{
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--font-white);
}

.page-banner-layer-wrapper::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 65%);
    content: '';
    z-index: 1;
    border-radius: 12px;
}

.whowe{
    background-color: #0C0C0D;
}

.whowe-list{
    width: 100%;
    position: relative;
    display: inline-block;
}

.whowe-list-item{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 25px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    margin-bottom: 25px;
}

.whowe-list-item h3{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.whowe-list-item p{
    color: var(--font-white);
}

.whowe-list-item img{
    width: 50px;
    margin-bottom: 20px;
}

.whowe-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.service-card-wrapper::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgb(0 0 0 / 35%);
    border-radius: 12px;
}

.service-card-img{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.service-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-card-content{
    position: relative;
}

.service-card-content{
    bottom: 0;
    position: absolute;
    z-index: 10;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.service-card-content.green{
    background: linear-gradient(180deg, #ffffff00 0%, var(--bs-teal) 100%);
}

.service-card-content.blue{
    background: linear-gradient(180deg, #ffffff00 0%, var(--bs-cyan) 100%);
}

.service-card-content a h3{
    color: var(--font-white);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card-content p{
    color: var(--font-white);
}

.blogsingle{
    background-color: #0C0C0D;
}

.our-specialists-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.op-image{
    min-width: 150px;
    height: 190px;
    position: relative;
    display: inline-block;
}

.op-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.op-content{
    width: 100%;
    margin-left: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.op-content-top{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.op-content-top h3{
    font-size: 18px;
    color: var(--theme-color-3);
    margin-bottom: 5px;
}

.op-content-top p span{
    font-family: 'Roboto-Bold', sans-serif;
    margin-left: 10px;
}

.op-content-middle h4{
    font-size: 16px;
    margin-bottom: 10px;
}

.op-content-middle ul{
    list-style: disc;
    padding-left: 18px;
    font-size: 14px;
}

.op-content-bottom{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 15px
}

.book-appontment-btn{
    width: 100%;
    position: relative;
    display: flex;
    border-radius: 12px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-4);
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contacts-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.contacts-card.one{
    background-color: var(--theme-color-3);
}

.contacts-card.two{
    background-color: var(--theme-color-2);
}

.contacts-card.three{
    background-color: var(--theme-color-4);
}

.contacts-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.contacts-card.two h3{
    color: var(--font-white);
}

.contacts-card.two a{
    color: var(--font-white);
}

.contacts-card img{
    width: 50px;
}

.blog .blog-content-top h4{
    color: var(--font-color);
}

.blog .blog-content-bottom a h4{
    color: var(--font-color);
}

.blog-content-bottom p{
    margin-top: 10px;
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-search-label{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.sidebar-search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 6px;
    background-color: transparent;
    color: var(--font-white);
    height: 48px;

}

.sidebar-search-btn{
    position: absolute;
    right: 0;
    top: 29px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.sidebar-recent-posts{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-heading{
    position: relative;
    color: var(--font-color);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
}

.sidebar-heading::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    background: var(--theme-color-2);
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sidebar-heading::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dce3ed;
    left: 0;
    bottom: 1px;
}

.sidebar-orderlist li a:before{
    position: relative;
    font-family: Fontawesome;
    content: "\f101";
    color: var(--theme-color-3);
    top: 0px;
    left: 0;
    transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    display: flex;
    margin-right: 10px;
}

.sidebar-orderlist{
    position: relative;
}

.sidebar-orderlist li a{
    position: relative;
    display: flex;
    align-items: baseline;
}

.sidebar-orderlist li{
    margin-bottom: 10px;
}

.sidebar-orderlist li:last-child{
    margin-bottom: 0px;
}

.sidebat-tagsorer-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebat-tagsorer-list li a{
    padding: 4px 8px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

.blogsingle-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 25px;
    background-color: #14202D;
    border: var(--border);
    border-radius: 15px;
}

.blogsingle-image{
    width: 220px;
    height: 220px;
    min-width: 220px;
    position: relative;
    display: inline-block;
    margin-right: 25px;
}

.blogsingle-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blogsingle-content{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blogsingle-badge{
    width: auto;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    padding: 6px 15px;
    border-radius: 30px;
}

.blogsingle-content a h3{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blogsingle-postinfo{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.blogsingle-postinfo-img{
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 15px;
}

.blogsingle-postinfo-img img{
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.blogsingle-postinfo-author h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.blogsingle-postinfo-author p span::after{
    content: '•';
    font-size: 10px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.blogsingle-postinfo-author p span:last-child:after{
    display: none;
}

.article-contents p{
    margin-bottom: 15px;
}

.article-second-heading{
    margin-bottom: 20px;
    font-size: 20px;
}

.article-tags{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 20px 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0px;
}

.article-tags p{
    color: var(--theme-color-3);
    margin-bottom: 10px;
}

.article-tags ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li a{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-4);
    color: var(--font-color);
}

.article-reply{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.article-reply h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.article-reply-form{
    margin-top: 2rem;
}

.article-reply-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.article-reply-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--font-color);
    border-radius: 6px;
    border: 1px solid #ddd;
}

.article-main-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
}

.article-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-works{
    overflow: hidden;
}

.benefits{
    overflow: hidden;
}

.healthservice{
    overflow: hidden;
}

.funfactor{
    overflow: hidden;
}

.featured-service{
    overflow: hidden;
}

.feedback{
    overflow: hidden;
}