/**
 * Table of Contents
 * 1.0 - Global Component
 * 2.0 - Homepage
 * 3.0 - Breadcrumb
 * 4.0 - Gallery Page
 * 5.0 - Service Page
 * 6.0 - About Page
 * 7.0 - Blog Page
 * 8.0 - Doctor page
 * 9.0 - Appoinment page
 * 10.0 - Single Post page
 * 0.0 - Media Query
*/


/**
* 1.0 Global Css
*/

/* Global css start here */
:root {
    --font-family: 'Titillium Web', sans-serif;
    --font-family-second: 'Titillium Web', sans-serif;
    --primary:#2B3140;
    --secondary: #109dad;
    --meta-color:#109dad;
    --border-color: #F89A1c;
    --content-color: #797979;
    --button-color: #109dad;
    --white-color: #ffffff;
    --black-color: #000000;
}

*, *::after, *::before {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    font-display: swap;
}
html {
    font-family: var(--font-family);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    height: 100%;
    font-display: swap;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-family);
    color: var(--content-color);
    background: var(--white-color);
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-display: swap;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
input, optgroup, select, textarea {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    outline: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10px;
}
::-webkit-input-placeholder {
    font-family: var(--font-family);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
:-ms-input-placeholder {
    font-family: var(--font-family);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::-ms-input-placeholder {
    font-family: var(--font-family);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::placeholder {
    font-family: var(--font-family);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, footer .copyright-footer .copyright p a, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, em, strong, button, blockquote, small, strike, sub, sup, tt, time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    font-family: var(--font-family);
    color: var(--content-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    color: var(--content-color);
    background-color: transparent;
    text-decoration: none;
    transition: all .3s;
}
a:hover, a:focus, a:active {
    text-decoration: none;
    outline: 0 none;
    color: var(--content-color);
}
b {
    font-weight: bolder;
}
img {
	max-width: 100%;
}
strong {
    font-weight: bolder;
}
.container {
	max-width: 1164px;
}
.section-wrapper {
    position: relative;
	padding: 100px 0;
    overflow: hidden;
}
h1 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 64px;
    font-weight: 700;
    line-height: 97px;
    font-style: normal;
    margin: 0 0 15px 0;
}
h2 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 54px;
    font-weight: 700;
    line-height: 82px;
    font-style: normal;
    margin: 0 0 15px 0;
}
h3 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    font-style: normal;
    margin: 0 0 15px 0;
}
h4 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    font-style: normal;
    margin: 0 0 15px 0;
}
h5 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    font-style: normal;
    margin: 0 0 15px 0;
}
h6 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    font-style: normal;
    margin: 0 0 15px 0;
}
p {
    font-family: var(--font-family);
    color: var(--content-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    margin: 0 0 15px 0;
}
/* Section Title */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}
.section-title h2 {
    margin: 0;
}
.section-title h2 span,
.section-title h4 span {
    color: var(--secondary);
}
.theme-button {
    display: inline-block;
}
.theme-button .btn {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: var(--white-color);
    padding: 10px 25px;
    background: var(--button-color);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    text-shadow: none;
    transition: all .3s;
}
.theme-button .btn:hover {
    color: var(--white-color);
    background: var(--secondary);   
}
#button-scroll-top {
    display: inline-block;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}
#button-scroll-top.show {
    opacity: 1;
    visibility: visible;
}
#button-scroll-top:after {
    display: block;
    content: '';
    background: url('../images/scroll-top.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    line-height: 38px;
    color: var( --primary );
    filter: invert(1) brightness(1);
}
/* Global css start end */
.main-wrapper {
    margin-top: 146px;
}
.header {
    background: #ffffff;
    width: 100%;
    position: relative;
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    transition: top 0.3s;
    box-shadow: 0px 4px 10px 0px #00000033;
}
.header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    background: #ffffff;
    width: 100%;
}
.header .container {
    max-width: 100%;
    justify-content: center;
    display: block;
    overflow: hidden;
}
.header .navbar {
    padding: 0;
}
.header .top-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
}
.header .top-header .top-bar {
    flex: 0 0 33.3333%;
}
.header .top-header .top-bar.top-middle {
    padding: 0 15px;
}
.header .top-header .top-bar ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.header .top-header .top-bar.top-right ul {
    justify-content: flex-end;
}
.header .top-header .top-bar ul li {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-right: 50px;
}
.header .top-header .top-bar ul li a:hover,
.header .top-header .top-bar ul li a:focus {
    color: var(--secondary);
}
.header .top-header .top-bar ul li:last-of-type {
    margin: 0;
}
.header .top-header .top-bar ul li img {
    margin-right: 14px;
}
.header .top-header .top-bar .logo img {
    display: block;
    margin: 0 auto;
    max-height: 80px;
}
.header .header-menu {
    background: #109dad;
    justify-content: center;
    padding: 20px 0;
}
.header .header-menu ul li {
    margin: 0 30px;
}
.header .header-menu ul li a {
    font-family: var(--font-family);
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 10px;
    position: relative;
}
.header .header-menu ul li.active a,
.header .header-menu ul li a:hover {
    color: #2B3140;
}
.header .header-menu ul li.active a:after,
.header .header-menu ul li a:hover:after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #2B3140;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all .15s;
    border: none;
}
.header .header-menu ul li.dropdown a.nav-link {
    padding-right: 26px;
}
.header .header-menu ul li.dropdown a.nav-link:before {
    display: inline-block;
    content: "";
    margin-left: 10px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 8px;
}
.header .header-menu ul li.dropdown a.nav-link:after {
    display: none;
}

/**
* 2.0 Homepage
*/

.banner {
    background: url('../images/hero-section-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 185px 0;
}
.banner .banner-content {
    text-align: left;
}
.banner .banner-content h1 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}
.banner .banner-content p {
    color: var(--white-color);
    margin-bottom: 30px;
}
/* Banner Slider  */
/* Latest */
.banner-slider {

}
.banner-slider .slider {
    margin: 0;
}
.banner-slider .slider .slide {
    position: relative;
    transition: 1s;
    min-height: 466px;
    max-height: 780px;
}
.banner-slider .slider .slide .slide-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .slider .slide .slide-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
}
.banner-slider .slider .slide .slide-content {
    max-width: 1170px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 185px 0;
    padding-left: 15px;
    padding-right: 15px;
}
.banner-slider .slider .slide.first .slide-content .content-box {
    max-width: 640px;
    margin-left: 0;
}
.banner-slider .slider .slide.second .slide-content .content-box,
.banner-slider .slider .slide.third .slide-content .content-box {
    max-width: 1000px;
    margin-left: 0;
}
.banner-slider .slider .slide .slide-content h1 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}
.banner-slider .slider .slide .slide-content p {
    color: var(--white-color);
    margin-bottom: 30px;
}
.banner-slider .slider .slide .slide-content .animated {
    transition: all 0.5s ease;
}
@media (min-width: 992px) {
    .banner-slider .slider,
    .banner-slider .slider .slide {
        height: 100%;
        margin: 0;
    }
    .banner-slider .slider .slide .slide-img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
@media (max-width: 991px) {
    .banner-slider .slider .slide .slide-img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

.slider [data-animation-in] {
opacity: 0;
-webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
transition: opacity 0.5s ease 0.3s;
transition: 1s;
}
.slick-dotted .slick-slider {
margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}
.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
    opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}
.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}
.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
    opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}
  
  /* /////////// IMAGE ZOOM /////////// */
  @-webkit-keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
      transition: 1s;
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
      transition: 1s;
    }
  }
  @keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
      transition: 1s;
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
      transition: 1s;
    }
  }
  .zoomInImage {
    -webkit-animation-name: zoomInImage;
            animation-name: zoomInImage;
  }
  
  @-webkit-keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
      transition: 1s;
    }
    to {
      transform: scale3d(1, 1, 1);
      transition: 1s;
    }
  }
  
  @keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
      transition: 1s;
    }
    to {
      transform: scale3d(1, 1, 1);
      transition: 1s;
    }
  }
  .zoomOutImage {
    -webkit-animation-name: zoomOutImage;
            animation-name: zoomOutImage;
    transition: 1s;
  }
  
  .slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
    display: none !important;
  }
  .slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
  }
  .slick-nav.next-arrow {
    left: auto;
    right: 3%;
  }
  .slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
  }
  .slick-nav i:before, .slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
  }
  .slick-nav i:before {
    transform: rotate(-40deg);
  }
  .slick-nav i:after {
    transform: rotate(40deg);
  }
  .slick-nav:before, .slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
  }
  .slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
  }
  .slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
            animation: stroke 1s ease forwards 0.3s;
  }
  .slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
            animation: arrow 1.6s ease forwards;
  }
  .slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
            animation: arrowUp 1.6s ease forwards;
  }
  .slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
            animation: arrowDown 1.6s ease forwards;
  }
  
  @-webkit-keyframes stroke {
    52% {
      transform: rotate(-180deg);
      stroke-dashoffset: 0;
    }
    52.1% {
      transform: rotate(-360deg);
      stroke-dashoffset: 0;
    }
    100% {
      transform: rotate(-180deg);
      stroke-dashoffset: 126;
    }
  }
  
  @keyframes stroke {
    52% {
      transform: rotate(-180deg);
      stroke-dashoffset: 0;
    }
    52.1% {
      transform: rotate(-360deg);
      stroke-dashoffset: 0;
    }
    100% {
      transform: rotate(-180deg);
      stroke-dashoffset: 126;
    }
  }
  @-webkit-keyframes arrow {
    0%, 100% {
      transform: translateX(0);
      opacity: 1;
    }
    23% {
      transform: translateX(17px);
      opacity: 1;
    }
    24%, 80% {
      transform: translateX(-22px);
      opacity: 0;
    }
    81% {
      opacity: 1;
      transform: translateX(-22px);
    }
  }
  @keyframes arrow {
    0%, 100% {
      transform: translateX(0);
      opacity: 1;
    }
    23% {
      transform: translateX(17px);
      opacity: 1;
    }
    24%, 80% {
      transform: translateX(-22px);
      opacity: 0;
    }
    81% {
      opacity: 1;
      transform: translateX(-22px);
    }
  }
  @-webkit-keyframes arrowUp {
    0%, 100% {
      transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @keyframes arrowUp {
    0%, 100% {
      transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @-webkit-keyframes arrowDown {
    0%, 100% {
      transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @keyframes arrowDown {
    0%, 100% {
      transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
/* Service */ 
.services {
    padding: 0;
    position: relative;
    top: 0px;
    margin-top: -100px;
}
.services .service {
    border-radius: 50px 0px;
    border: 2px solid #109dad;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.28);
    background: #FFF;
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.4s;
}
.services .service img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.services .service h5{
    margin-bottom: 10px;
}
.services .service p {
    margin: 0;
}
/* Welcome */
.welcome {
    position: relative;
}
.welcome .welcome-content ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.welcome .welcome-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 30px;
    flex: 0 0 50%;
}
.welcome .welcome-content ul li img {
    margin: 5px 20px 0 0;
}
.welcome .welcome-content ul li h6 {
    margin: 0;
}
.welcome .welcome-image {
    text-align: center;
}
.welcome .welcome-image img {
    display: block;
    margin: 0 auto;
}
.welcome .welcome-content .author {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.welcome .author .profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 65%;
}
.welcome .author .profile .user {
    margin-right: 30px;
}
.welcome .author .profile .user img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}
.welcome .author .profile .data h5 {
    color: #109dad;
    margin-bottom: 6px;
}
.welcome .author .profile .data p {
    margin: 0;
}
.welcome .author .sign {
    flex: 0 0 35%;
}
.welcome .author .sign img {
    display: block;
    margin: 0;
}
/* Why */
.why {
    background: url('../images/bg-why-choose.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.why .why-content p {
    margin-bottom: 30px;
}
.why .why-content ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}
.why .why-content ul li:last-of-type {
    margin-bottom: 0;
}
.why .why-content ul li img {
    margin-right: 30px;
}
.why .why-content ul li h5 {
    margin: 0;
}
.why .why-image {
    text-align: center;
}
.why .why-image img {
    display: block;
    margin: 0 auto;
}
/* Awads */
.awards {
    padding: 0;
}
.awards .awards-block {
    background: url('../images/awards-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 50px;
}
.awards .awards-block .a-item {
    flex: 0 0 25%;
    text-align: center;
}
.awards .awards-block .a-item h3 {
    margin-bottom: 20px;
}
.awards .awards-block .a-item p {
    margin: 0;
    color: #2B3140;
}
/* What We */
.whatwe .service {
    border-radius: 50px 0px;
    border: 1px solid #109dad;
    background: #ffffff;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 49%);	
}
.whatwe .whatwe-img {
    text-align: center;
    margin: 20px 0;
}
.whatwe .whatwe-img img {
    width: 100%;
    max-width: 420px;
}
.whatwe .service:last-of-type {
    margin-bottom: 0;
}
.whatwe .service:hover {
    border: 2px solid #109dad;
	background: #e9fdff;
    box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 49%);
}
.whatwe .service img {
    margin-bottom: 10px;
}
.whatwe .service h5{
    margin-bottom: 20px;
}
.whatwe .service p {
    margin: 0;
}
/* Testimonial */
.testmonial {
    background: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.testmonial .testimonial-slider {
    max-width: 780px;
    margin: 0 auto;
    overflow: hidden;
}
.testmonial .box {
    text-align: center;
}
.testmonial .box .icon {
    margin-bottom: 25px;
}
.testmonial .box .icon img {
    display: block;
    margin: 0 auto;
}
.testmonial .box .profile {
    margin-bottom: 20px;
}
.testmonial .box .profile img {
    display: block;
    margin: 0 auto;
}
.testmonial .box p {
    margin-bottom: 30px;
}
.testmonial .box .profile-name h5 {
    color: var(--secondary);
    line-height: normal;
    margin: 0;
}
.testmonial .box .profile-job h6 {
    line-height: normal;
    margin: 0;
}
.testmonial .tes-slide .slick-dots {
    bottom: -30px;
}
.testmonial .tes-slide .slick-dots li {
    margin: 0 5px;
    width: 10px;
    height: 10px;
}
.testmonial .tes-slide .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--primary);
    padding: 0;
    margin: 0;
}
.testmonial .tes-slide .slick-dots li button:before {
    display: none;
}
.testmonial .tes-slide .slick-dots li.slick-active button {
    background: var(--secondary);
}
/* Article */
.article {
    margin-bottom: 50px;
}
.article .row.items {
    row-gap: 20px;
}
.article .article-item {
    border-radius: 100px 0px 100px 0;
    border: 1px solid var(--border-color);
    background: #FFF;
    transition: all 0.4s;
}
.article .article-item:hover {
    box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.24);
}
.article .article-media img {
    width: 100%;
    display: block;
    border-top-left-radius: 100px;
}
.article .article-content {
    padding: 20px;
}
.article .article-content h4 {
    margin-bottom: 10px;
}
.article .article-content .date {
    color: var(--primary);
    margin-bottom: 10px;
}
.article .article-content p {
    margin-bottom: 10px;
}
.article .article-content a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    color: var(--meta-color);
}
.article .article-content a:hover {
    color: var(--secondary);
}
.article .article-content a img {
    margin-left: 10px;
}
/* Dream */
.dream {
    background: url(../images/dream-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    overflow: visible;
}
.dream .dream-content {
    max-width: 770px;
    text-align: center;
}
.dream .dream-content p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}
.dream .dream-image {
    position: relative;
    height: 100%;
}
.dream .dream-image img {
    display: block;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -50px;
    top: auto;
}
/* Our Team */
.team {
    padding-bottom: 0;
}
.team .team-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    max-width: 500px;
}
.team .team-box.end {
    justify-content: flex-end;
    margin-left: auto;
}
.team .team-box.one,
.team .team-box.two {
    margin-bottom: 50px;
}
.team .team-box .member {
    flex: 0 0 210px;
    position: relative;
}
.team .team-box .member img {
    border-radius: 50%;
    border-right: 5px solid var(--border-color);
    border-left: 5px solid var(--border-color);
    position: relative;
    z-index: 1;
    display: block;
    width: 210px;
    height: 210px;
}
.team .team-box .biodata {
    flex: 0 0 calc(100% - 230px);
    margin-left: 20px;
}
.team .team-box .biodata h5 {
    margin-bottom: 6px;
}
.team .team-box .biodata h6 {
    color: var(--secondary);
    margin-bottom: 20px;
}
.team .team-box .member .inner-border {
    background: #fff;
    height: 211px;
    width: 211px;
    border-style: solid;
    border-color: transparent;
    border-width: 1px;
    animation: rotateCircle 4s linear infinite reverse;
    display: table;
    text-align: center;
    border-radius: 50%;
    border-right: 5px solid var(--border-color);
    border-left: 5px solid var(--border-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.team .team-box:hover .member .inner-border {
    opacity: 1;
}
@keyframes rotateCircle {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Popup Model */
.modal .modal-dialog {
    max-width: 1100px;
}
.modal .modal-content {
    border-radius: 50px;
    padding: 50px;
    border: 2px solid #F89A1C;
    background: #FFF;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.24);
}
.modal .modal-content .close {
    position: absolute;
    top: 20px;
    left: auto;
    right: 20px;
    border-radius: 30px;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border: none;
    font-size: 20px;
}
.modal .modal-content .modal-body {
    padding: 0;
}
.modal .profile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}
.modal .profile .author-image {
    flex: 0 0 50%;
    padding-right: 56px;
}
.modal .profile .author-image img {
    width: 100%;
    border-radius: 100px 0px;
    border: 3px solid var(--Secondary-Color, #F89A1C);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.24);
}
.modal .profile .author-data {
    flex: 0 0 50%;
}
.modal .profile .author-data .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.modal .profile .author-data .title h6 {
    color: #F89A1C;
    margin: 0 0 10px 20px;
}
.modal .profile .author-data .share-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}
.modal .profile .author-data .share-profile h6 {
    margin: 0;
    margin-right: 20px;
}
.modal .profile .author-data .share-profile ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.modal .profile .author-data .share-profile ul li {
    display: inline-block;
}
.modal .profile .author-data .share-profile ul li a img {
    display: block;
}
.modal .awards ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.modal .awards  ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.modal .awards  ul li h5 {
    margin: 0;
    margin-left: 20px;
}
/* Experience */
.experiance .experiance-image img {
    width: 100%;
    display: block;
    padding-right: 16px;
}
.experiance .experiance-content p {
    margin-bottom: 30px;
}
.experiance ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.experiance ul li:last-of-type {
    margin-bottom: 0;
}
.experiance ul li .icon {
    margin: 5px 20px 0 0;
}
.experiance ul li .content h6 {
    margin-bottom: 4px;
}
.experiance .experiance-content ul li .content p {
    margin-bottom: 0;
}
/* Subscribe */
.subscribe  {
    padding: 0;
    margin-bottom: -60px;
}
.subscribe .newsletter {
    background: var(--primary);
    padding: 50px 40px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.subscribe .newsletter .footer-logo {
    margin: 0;
}
.subscribe .newsletter .footer-logo img {
    display: block;
}
.newsletter .newsletter-form .form {
    position: relative;
}
.newsletter .newsletter-form .form input {
    margin: 0;
    padding-right: 145px;
    border: 1px solid transparent;
}
.newsletter .newsletter-form .form .theme-button {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
}
/* Footer */
.footer .footer-top {
    background: url(../images/footer-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 70px 0;
}
.footer-top .footer-title h6 {
    margin-bottom: 20px;
}
.footer-top .footer-logo p {
    margin-bottom: 26px;
}
.footer-top .footer-logo ul {
    padding: 0;
    margin: 0;
}
.footer-top .footer-logo ul li {
    margin-bottom: 20px;
}
.footer-top .footer-logo ul li:last-of-type {
    margin: 0;
}
.footer-top .footer-logo ul li a {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: var(--primary);
    transition: all 0.4s;
}
.footer-top .footer-logo ul li a:hover {
    color: var(--secondary);
}
.footer-top .footer-logo ul li a img {
    margin-right: 14px;
}
.footer-top .footer-menu {
    max-width: 180px;
    display: block;
    margin: 0 auto;
}
.footer-top .footer-menu ul li {
    margin-bottom: 20px;
}
.footer-top .footer-menu ul li:last-of-type {
    margin-bottom: 0;
}
.footer-top .footer-menu ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--primary);
}
.footer-top .footer-menu ul li a img {
    margin-right: 14px;
}
.footer-top .footer-menu ul li a:hover,
.footer-top .footer-menu ul li a.active {
    color: var(--secondary)
}
.footer-top .footer-hours ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-top .footer-hours ul li:last-of-type {
    margin-bottom: 0;
}
.footer-top .footer-hours ul li span {
    color: var(--primary);
}
.footer-top .footer-hours ul li span:first-of-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--primary);
}
.footer-top .footer-hours ul li span:first-of-type img {
    margin-right: 14px;
}
.footer-top .footer-hours ul li a img {
    margin-right: 14px;
}
.footer .copyright-footer {
    background: var(--primary);
    padding: 35px 0;
}
.footer .copyright-footer .copyright p {
    margin: 0;
    color: var(--white-color);
}
.footer .copyright-footer .social-media ul {
    text-align: right;
}
.footer .copyright-footer .social-media ul li {
    display: inline-block;
    margin-left: 14px;
}
.footer .copyright-footer .social-media ul li a {
    transition: all 0.4s;
}
.footer .copyright-footer .social-media ul li a img {
    display: block;
}
.footer .copyright-footer .social-media ul li a:hover img,
.footer .copyright-footer .social-media ul li a:focus img {
    filter: invert(1) brightness(100);
}
/* Homepage 2 */
/* Welcome */
.version .welcome .welcome-content ul li {
    flex: 0 0 100%;
}
.version .welcome .welcome-content ul {
    margin-bottom: 40px;
}
.version .welcome .author .profile {
    flex: 0 0 100%;
}
.version .welcome .author .profile .data h5 {
    font-size: 22px;
    line-height: 33px;
}
.version .welcome .author .profile .user {
    flex: 0 0 80px;
    margin: 0 20px 0 0;
}
.version .welcome .author .profile .data {
    flex: 0 0 calc(100% - 100px);
}
/* Services */
.version .services {
    margin-top: 0;
    padding: 0;
    padding-top: 10px;
}
.version .services .service {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 20px 0px;
    box-shadow: 0px 0px 10px 0px #0000004D;
    padding: 20px;
    border: none;
    margin-bottom: 50px;
}
.version .services .service .icon {
    border-radius: 20px 0px;
    border: 2px solid #F89A1C;
    padding: 20px 24px;
    margin-right: 20px;
    flex: 120px;
}
.version .services .service .icon img {
    margin: 0;
}
.version .services .service .content {
    flex: 0 0 calc(100% - 140px);
}
.version .services .service .content h5,
.version .services .service .content p {
    text-align: left;
}
/* What We */
.section-wrapper.whatwe {
    background: url(../images/version-2-whatwe.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.version .whatwe .service {
    margin-bottom: 30px;
}
/* Why */
.version .why {
    background: none;
}
/* Awards */
.version .awards {
    background: url(../images/version-awards-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 100px 0;
}
.version .awards .awards-block {
    background: none;
    padding: 0;
}
/* Testimonial */
.version .testmonial {
    background: url(../images/version-bg-patient-feedback.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/* Team */
.version .team .team-box {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    display: block;
}
.version .team .team-box .member {
    max-width: 210px;
    margin: 0 auto;
}
.version .team .team-box .biodata {
    margin: 0;
}
.version .experiance ul li {
    border-radius: 30px 0px;
    border: 2px solid var(--Secondary-Color, #F89A1C);
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
    padding: 20px 30px;
}
.version .experiance .experiance-image img {
    padding-left: 16px;
    padding-right: 0;
}
.version .testmonial .testimonial-slider {
    max-width: 100%;
}
.version .team {
    padding-bottom: 100px;
}
/* Dream */
.version .dream {
    background: none;
    padding: 0;
}
.version .dream-inner {
    background: url(../images/dream-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 40px;
    overflow: visible;
    border-radius: 30px 0 30px 0;
}
.version .dream .dream-image img {
    position: relative;
}
.version .article {
    margin-bottom: 0;
}

/**
* 3.0 Breadcrumb
*/

.breadcrumb {
    background: url('../images/gallery-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0;
    margin: 0;
}
.breadcrumb .breadcrumb-title h1 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin: 0;
    color: var(--white-color);
}

/**
* 4.0 Gallery Page
*/

.gallery {
    padding-bottom: 62px;
}
.gallery .portfolio-tab {
    text-align: center;
    margin-bottom: 10px;
}
.gallery .portfolio-tab button {
    border-radius: 10px;
    border: 1px solid #109dad;
    padding: 6px 24px;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin: 0 16px;
}
.gallery .portfolio-tab button:hover,
.gallery .portfolio-tab button:active {
    background: #109dad;
    color: #ffffff;
}

.gallery .portfolio-tab button.activebutton {
    background: #109dad !important;
    color: #ffffff !important;
}

.gallery .gallery-product {
    padding: 0 18px;
    margin: 18px 0;
}
.gallery .gallery-product img {
    border-radius: 100px 0;
    display: block;
    width: 100%;
}

/**
* 5.0 Service Page
*/

.service-page .breadcrumb {
    background: url('../images/service-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.tabs {
    margin-bottom: 50px;
}
.tabs .tab-nav {
    padding: 30px;
    border-radius: 50px 0px;
    background: #FFF;
    box-shadow: 0px 0px 14px 0px rgba(248, 154, 28, 0.24);
}
.tabs .tab-nav .section-title {
    text-align: left;
    margin-bottom: 30px;
}
.tabs .tab-nav .nav a {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.tabs .tab-nav .nav a h6 {
    color: #000;
    line-height: normal;
    border-radius: 10px;
    border: 1px solid #F89A1C;
    padding: 10px;
    margin: 0;
}
.tabs .tab-nav .nav a.active h6 {
    background: #fff8ef;
    color: #000000;
    border: 1px solid #F89A1C;
}
.tabs .tabs-content .tab-pane img {
    width: 100%;
    display: block;
    border-radius: 100px 0;
    margin-bottom: 30px;
    box-shadow: 0px 0px 18px 0px #0000003D;
}
.tabs .tabs-content .tab-pane h5 {
    margin: 0 0 30px 0;
}
.tabs .tabs-content .tab-pane p {
    margin-bottom: 20px;
}
.tabs .tabs-content .tab-pane ul li {
    background: url('../images/list-arrow.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 34px;    
    margin-bottom: 20px;
}
.tabs .tabs-content .tab-pane ul li:last-of-type {
    margin-bottom: 0;
}
.video-container {
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.video-container .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0px 0px 18px 0px #0000003D;
}
.video-container video2 {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0px 0px 18px 0px #0000003D;
}
.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}
.play-button-wrapper #circle-play-b2 {
    cursor: pointer;
    pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
    width: 100px;
    height: 100px;
    fill: transparent;
    stroke: #fff;
    cursor: pointer;
    opacity: 0.9;
}
.play-button-wrapper #circle-play-b2 svg {
    width: 100px;
    height: 100px;
    fill: transparent;
    stroke: #fff;
    cursor: pointer;
    opacity: 0.9;
}
.service-page .video ul li {
    background: url('../images/list-arrow.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 34px;
    margin-bottom: 20px;
}
.service-page .video p {
    margin-bottom: 20px;
}
.service-page .video p:last-of-type {
    margin: 0;
}

/**
* 6.0 About Page
*/

.about-page .breadcrumb {
    background: url('../images/about-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.howit {
    background: url('../images/how-it-helps-you-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.howit .howit-box {
    text-align: center;
}
.howit .howit-box img {
    margin-bottom: 30px;
}
.howit .howit-box h5 {
    color: #F89A1C;
    margin-bottom: 10px;
}
.howit .howit-box p {
    margin: 0;
}
.importance {
    margin-bottom: 50px;
}
.importance .importance-image img {
    width: 100%;
    border-radius: 100px 0;
    padding-right: 0;
    display: block;
    box-shadow: 0px 0px 18px 0px #0000003D;
}
.importance-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 40px;
}
.importance-content ul li:last-of-type {
    margin-bottom: 0;
}
.importance-content ul li .icon {
    flex: 0 0 50px;
    margin-right: 10px;
}
.importance-content ul li .content h6 {
    margin-bottom: 10px;
}
.importance-content ul li .content p {
    margin-bottom: 0;
}
.about-page .team {
    padding-bottom: 100px;
}

/**
* 7.0 Blog Page
*/

.blog-page .breadcrumb {
    background: url('../images/blog-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-page .article {
    margin-bottom: 0;
}
.blog-page .article .row.items {
    row-gap: 24px;
}
.blog-page .article .article-content {
    padding: 10px;
}
.blog-page .article .article-content h6 {
    margin-bottom: 10px;
}

/**
* 8.0 Doctor Page
*/

.doctor-page .breadcrumb {
    background: url('../images/doctor-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.doctor-page .team {
    padding-bottom: 100px;
    margin-bottom: 50px;
}
.doctor-page .train .train-image img {
    border-radius: 100px 0;
    box-shadow: 0px 0px 18px 0px #0000003D;
}
.doctor-page .train .train-content .section-title {
    margin-bottom: 30px;
}
.doctor-page .train .train-content h4 {
    text-align: left;
}
.doctor-page .train .train-content p:last-of-type {
    margin: 0;
}

/*
9.0 Blog Detail Page
*/


.single-post .single .content-area {
    text-align: left;
}
.single-post .single .content-area .blog-box {
    border: none;
    padding: 20px;
}
.single-post .single .blog-box:hover {
    box-shadow: none;
}
.single-post .single .blog-box .blog-img {
    margin-bottom: 40px;
}
.single-post .single .blog-box .blog-img img {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
}
.single-post .single .blog-box .blog-content .date {
    margin-bottom: 20px;
}
.single-post .single .blog-box .blog-content .date li {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-right: 30px;
    color: #2B3140;
}
.single-post .single .blog-box .blog-content .date li img {
    margin-right: 10px;
}
.single-post .single .blog-box .blog-content h6 {
    margin-bottom: 20px;
}
.single-post .single .blog-box .blog-content p {
    margin-bottom: 0;
    color: #2B3140;
}
.single-post .single .content-area .content h5 {
    color: #2B3140;
    margin: 30px 0;
}
.single-post .single .content-area .content h5 span {
    color: var(--secondary);
}
.single-post .single .content-area .content p {
    margin: 0;
    color: #2B3140;
}
.single-post .single .content-area .content ul {
    padding: 0;
    padding-left: 8px;
    margin: 30px 0 0 0;
}
.single-post .single .content-area .content ul li {
    font-family: 'Spline Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #2B3140;
    letter-spacing: 0em;
    margin-bottom: 15px;
    list-style-type: disc;
        list-style-position: inside;
}
.sidebar .widget-title h5 {
    font-family: 'Spline Sans', sans-serif;
    color: #2B3140;
    font-size: 26px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0em;
    margin: 0 0 30px 0;
    text-align: left;
}
.sidebar .widget-title h5 span {
    color: #F89A1C;
}
.sidebar .widget-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    border-radius: 50px 0px;
    border: 1px solid var(--secondary);
    background: #ffffff;
    margin-bottom: 20px;
}
.sidebar .widget-content ul li:hover {
    background: #FFF8EF;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.24);
}
.sidebar .widget-content ul li:last-of-type {
    margin-bottom: 0;
}
.sidebar .widget-content ul li a {
    flex: 0 0 33.3333%;
    margin-right: 30px;
}
.sidebar .widget-content ul li a img {
    display: block;
    border-radius: 30px 0;
}
.sidebar .widget-content ul li .post-text {
    flex: 0 0 calc(66.6666% - 30px);
    text-align: left;
}
.sidebar .widget-content ul li .post-text h6 {
    margin: 0 0 10px 0;
}
.sidebar .widget-content ul li .post-text h6 a {
    font-family: 'Spline Sans', sans-serif;
    color: #2B3140;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
}
.sidebar .widget-content ul li .post-text .date {
    font-family: 'Spline Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    color: #797979;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.sidebar .widget-content ul li .post-text .date img {
    margin-right: 20px;
}


/*
10.0 Appoinment Page
*/

.appoinment-page .breadcrumb {
    background: url(../images/appoinment-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.appoinment .appoinment-image {
    text-align: center;
}
.appoinment .appoinment-content {
    padding: 40px;
    border-radius: 100px 0px;
    border: 3px solid #109dad;
    background: #FFF;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.24);
}
.appoinment .appoinment-content form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.appoinment .appoinment-content form label {
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    color: #109dad;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 10px 0;
    padding-left: 20px;
}
.appoinment .appoinment-content form input,
.appoinment .appoinment-content form textarea {
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2B3140;
    border-radius: 10px;
    border: 1px solid #109dad;
    padding: 10px 20px;
    margin: 0;
}
.appoinment .appoinment-content form input::placeholder,
.appoinment .appoinment-content form textarea::placeholder {
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #797979;
}
.appoinment .appoinment-content form input,
.appoinment .appoinment-content form select {
    border: 1px solid #109dad;
    margin: 0;
}
.appoinment .appoinment-content form textarea {
    flex: 0 0 100%;
}
.appoinment .appoinment-content form .field {
    flex: 0 0 calc(50% - 10px);
    overflow: hidden;
}
.appoinment .appoinment-content form .field.full-width {
    flex: 0 0 100%;
}

/*
11.0 Our Service Page
*/


/* 
12.0 Media Query
*/

@media screen and (min-width: 1200px) {  
    .banner .banner-content h1 {
        font-size: 64px;
        line-height: normal;
    }  
    .breadcrumb .breadcrumb-title h1 {
        font-size: 64px;
        font-style: normal;
    }    
    .welcome .welcome-content h4 {
        margin-bottom: 20px;
    }
    .welcome .welcome-content p {
        margin: 0 0 10px 0;
    }
    .welcome .welcome-content ul li {
        margin-top: 20px;
    }
    .services {
        padding-bottom: 20px;
    }
    .service-page .video ul li:last-of-type {
        margin-bottom: 30px;
    }
    .welcome {
        padding-top: 80px;
    }
    .version .welcome {
        padding-top: 100px;
    }
    .services .service {
        margin-bottom: 0;
    }
    .article  .row.items {
        row-gap: 76px;
        justify-content: space-between;
    }
    .article  .row.items .col-12 {
        max-width: 556px;
    }
    .dream {
        background-size: 100% 100%;
    }
    .dream .dream-image img {
        max-height: 375px;
    }
    .welcome .welcome-content ul {
        margin-bottom: 60px;
    }
    .blog-page .article .row.items {
        row-gap: 36px;
    }
    .blog-page .article .row.items .col-12 {
        padding: 0;
        flex: 0 0 calc(33.3333% - 24px);
    }
    .homepage .why {
        padding-bottom: 200px;
    }
    .homepage .awards {
        margin-top: -100px;
    }
    .version .services .col-xl-6:nth-child(3) .service,
    .version .services .col-xl-6:nth-child(4) .service {
        margin-bottom: 10px;
    }
    .version .dream-inner {
        border-radius: 100px 0 100px 0;
    }    
    .importance .importance-image {
        padding-right: 40px;
    }
}
@media screen and (max-width: 1199px) {
    .article .article-media img {
        border-top-left-radius: 50px;
    }
    .article .article-item {
        border-bottom-right-radius: 50px;
        border-top-left-radius: 50px;
    }
    .section-wrapper.team {
        padding-bottom: 20px;
    }
    .version .section-wrapper.team {
        padding-bottom: 80px;
    }
    .team .team-box {
        max-width: 100%;
    }
    .gallery .gallery-product img {
        border-radius: 60px 0;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .section-wrapper {
        padding: 80px 0;
    }
    h1 {
        font-size: 54px;
        line-height: 66px;  
    }
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
    h3 {
        font-size: 34px;
        line-height: 44px;
    }
    h4 {
        font-size: 30px;
        line-height: 36px;
    }
    h5 {
        font-size: 22px;
        line-height: 26px;
    }
    .dream {
        padding: 50px 0;
    }
    .dream .dream-content {
        max-width: 570px;
    }
    .dream .dream-image img {
        max-height: 345px;
    }
    .services,
    .awards,
    .subscribe {
        padding: 0;
    }
    .subscribe {
       margin-bottom: -40px;
    }
    .footer .footer-top {
        padding: 60px 0;
    }
    .header .top-header .top-bar ul li {
        margin: 0 0 10px 0;
    }
    .doctor-page .section-wrapper.team,
    .about-page .section-wrapper.team {
        padding-bottom: 80px;
    }
    .homepage .why {
        padding-bottom: 160px;
    }
    .homepage .awards {
        margin-top: -80px;
    }
    .version .awards {
        padding: 80px 0;
    }
}
@media screen and (min-width: 992px) {
    .header .container {
        padding: 0;
        overflow: visible;
    }
    .version .testmonial .box {
        margin: 0 40px;
    }
    .header .header-menu ul li .dropdown-menu {
        background: #ffffff;
        border-radius: 0;
        border: none;
        padding: 0;
        margin: 0;
    }
    .header .header-menu ul li .dropdown-menu li {
        padding: 0;
        margin: 0;
    }
    .header .header-menu ul li .dropdown-menu .dropdown-item {
        color: var(--primary);
        background: #ffffff;
        padding: 10px 15px;
    }
    .header .header-menu ul li .dropdown-menu li.active .dropdown-item,
    .header .header-menu ul li .dropdown-menu li .dropdown-item:hover {
        color: #109dad;
    }
    .header .header-menu ul li .dropdown-menu .dropdown-item:after {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .section-title {
        margin-bottom: 30px;
    }
    .footer .copyright-footer {
        padding: 15px 0;
    }
    .modal .modal-content {
        padding: 30px;
    }
    .modal .profile .author-image {
        padding-right: 26px;
    }
    .header .navbar {
        padding: 10px 0;
    }
    .header .top-header {
        padding: 0;
    }
    .header .top-header .top-left,
    .header .top-header .top-right {
        display: none;
    }
    .header .top-header .top-bar.top-middle {
        flex: 0 0 100%;
        padding: 0;
    }
    .header .top-header .top-bar .logo img {
        margin: 0;
        max-width: 180px;
        max-height: 50px;
    }
    .header .menu {
        text-align: right;
    }
    .header .navbar-toggler {
        padding: 0;
        background: none;
        width: 30px;
        height: 30px;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    .header .header-menu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 70px;
        padding: 0;
    }
    .header .header-menu ul li {
        text-align: left;
        margin: 0;
    }
    .header .header-menu ul li a {
        padding: 10px;
    }
    .header .header-menu ul li.active a:after,
    .header .header-menu ul li a:hover:after {
        display: none;
    }
    .main-wrapper {
        margin-top: 70px;
    }
    .gallery .portfolio-tab button {
        margin: 0 10px;
    }
    .gallery .gallery-product {
        padding: 0 10px;
        margin: 10px 0;
    }
    .gallery .gallery-product img {
        border-radius: 30px 0;
    }
    .subscribe .newsletter {
        padding: 30px 15px;
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .subscribe {
        padding: 0;
        margin-bottom: -30px;
    }
    .appoinment .appoinment-content {
        border-radius: 40px 0;
        padding: 20px;
    }
    .appoinment .appoinment-image {
        margin-bottom: 20px;
    } 
    .sidebar {
        margin-top: 40px;
    }
    .sidebar .widget-content ul li {
        padding: 15px;
        border-radius: 20px 0px;
    }
    .single-post .single .content-area .blog-box {
        padding: 0;
    }
    .single-post .single .blog-box .blog-img {
        margin-bottom: 20px;
    }
    .doctor-page .train .train-image img {
        border-radius: 30px 0;
    }
    .importance .importance-image img {
        border-radius: 30px 0;
    }
    .tabs .tab-nav {
        padding: 0;
    }
    .tabs .tabs-content .tab-pane img {
        border-radius: 30px 0;
    }
    .service-page .video ul li {
        margin-bottom: 20px;
    }
    .video-container,
    .video-container video {
        border-radius: 10px;
    }
    .video-container,
    .video-container video2 {
        border-radius: 10px;
    }	
    .banner-slider .slider .slide .slide-content {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .section-wrapper {
        padding: 50px 0;
    }
    h1 {
        font-size: 44px;
        line-height: 56px;
    }
    h2 {
        font-size: 34px;
        line-height: 42px;
    }
    h3 {
        font-size: 30px;
        line-height: 36px;
    }
    h4 {
        font-size: 22px;
        line-height: 28px;
    }
    h5 {
        font-size: 20px;
        line-height: 26px;
    }
    .tabs .tab-nav .nav a h6 {
        font-size: 18px;
        line-height: 24px;
    }
    .dream .dream-content {
        max-width: 490px;
    }
    .dream .dream-image img {
        max-height: 315px;
        min-height: 315px;
        object-fit: fill;
    }
    .team .team-box .member {
        flex: 0 0 120px;
    }
    .team .team-box .member img,
    .team .team-box .member .inner-border {
        width: 120px;
        height: 120px;
    }
    .version .team .team-box .member img,
    .version .team .team-box .member .inner-border {
        display: block;
        margin: 0 auto;
    }
    .version .team .team-box {
        margin-bottom: 30px;
    }
    .version .section-wrapper.team {
        padding-bottom: 20px;
    }
    .team .team-box .biodata {
        flex: 0 0 calc(100% - 135px);
        margin-left: 15px;
    }
    .services {
        padding: 0;
        margin-top: -50px;
    }
    .awards {
        padding: 0;
    }
    .subscribe {
        padding: 0;
        margin-bottom: -30px;
    }
    .footer .footer-top {
        padding: 50px 0;
    }
    .doctor-page .section-wrapper.team,
    .about-page .section-wrapper.team {
        padding-bottom: 50px;
    }
    .homepage .why {
        padding-bottom: 100px;
    }
    .homepage .awards {
        margin-top: -50px;
    }
    .version .awards {
        padding: 50px 0;
    }
}
@media screen and (min-width: 768px) {
    .article .article-item {
        height: 100%;
    }
}
@media screen and (max-width: 767px) {
    .section-wrapper {
        padding: 40px 0;
    }
    h1 {
        font-size: 34px;
        line-height: 42px;
    }
    h2 {
        font-size: 30px;
        line-height: 38px;
    }
    h3 {
        font-size: 26px;
        line-height: 32px;
    }
    h4 {
        font-size: 22px;
        line-height: 26px;
    }
    h5 {
        font-size: 20px;
        line-height: 24px;
    }
    h6 {
        font-size: 18px;
        line-height: 22px;
    }
    a, p,
    .tabs .tabs-content .tab-pane ul li,
    .service-page .video ul li {
        font-size: 16px;
    }
    [data-aos^=fade][data-aos^=fade] {
        opacity: 1;
    }
    [data-aos=fade-up] {
        transform: translate3d(0, 0, 0);
    }
    [data-aos^=fade][data-aos^=fade] {
        transform: none;
    }	
    .article {
        margin-bottom: 0;
    }
    .why .why-image {
        margin-bottom: 30px;
    }
    .why .why-content ul li {
        margin-bottom: 20px;
    }
    .welcome .welcome-content ul li {
        margin-top: 10px;
    }
    .welcome .welcome-image {
        margin-bottom: 20px;
    }
    .dream .dream-content {
        max-width: 490px;
        margin: 0 auto;
    }
    .dream .dream-image img {
        position: relative;
        margin: 0 auto;
        bottom: -40px;
    }
    .experiance .experiance-image img {
        max-width: 450px;
        padding: 0;
        margin: 0 auto 30px auto;
        display: block;
    }
    .team .team-box {
        flex-direction: column;
        max-width: 380px;
        margin: 0 auto;
    }
    .team .team-box .biodata {
        flex: 0 0 100%;
        margin-left: 0;
        text-align: center;
    }
    .team .team-box.one,
    .team .team-box.two,
    .team .team-box.three {
        margin-bottom: 50px;
    }
    .tabs .tab-nav .nav {
        margin-bottom: 20px;
    }
    .play-button-wrapper #circle-play-b svg {
		display: none;
        height: 0px;
        width: 0px;
    }
    .play-button-wrapper #circle-play-b2 svg {
		display: none;
        height: 0px;
        width: 0px;
    }	
    .tabs .tab-nav .nav a {
        margin-bottom: 10px;
    }
    .subscribe .newsletter .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    .services {
        padding: 0;
        margin-top: -40px;
    }
    .services .service {
        margin-bottom: 20px;
    }
    .subscribe,
    .awards {
        padding: 0;
    }
    .homepage .awards {
        padding-top: 40px;
    }
    .awards .awards-block {
        padding-bottom: 30px;
    }
    .awards .awards-block .a-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    .footer .footer-top {
        padding: 40px 0;
    }
    .footer .footer-top .footer-title {
        margin-bottom: 40px;
    }
    .footer .footer-top .footer-title.footer-hours {
        margin-bottom: 0;
    }
    .footer .footer-top .footer-title.footer-menu {
        max-width: 100%;
    }
    .footer .copyright-footer .copyright p {
        text-align: center;
    }
    .footer .copyright-footer .social-media ul {
        text-align: center;
        margin-top: 10px;
    }
    .modal .modal-content {
        border-radius: 20px;
    }
    .modal .profile .author-image,
    .modal .profile .author-data {
        flex: 0 0 100%;
        padding: 0;
    }
    .modal .modal-content {
        padding: 20px;
        padding-top: 50px;
    }
    .modal .modal-content .close {
        top: 10px;
        right: 10px;
    }
    .modal .profile .author-image {
        margin-bottom: 30px;
    }
    .modal .profile .author-image img {
        border-radius: 30px 0px;
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.24);
    }
    .whatwe .whatwe-img img {
        max-width: 380px;
    }
    .whatwe .service {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery .portfolio-tab button {
        margin: 2px 5px;
    }
    .doctor-page .team {
        margin-bottom: 0;
        padding-bottom: 40px;
    }
    .doctor-page .train .train-image {
        text-align: center;
        margin-bottom: 20px;
    }
    .doctor-page .train .train-content .section-title {
        margin-bottom: 20px;
    }
    .howit .howit-box {
        margin-bottom: 30px;
    }
    .howit .row .col-12:last-of-type .howit-box {
        margin: 0;
    }
    .importance,
    .tabs {
        margin-bottom: 0;
    }
    .importance .importance-image {
        margin-bottom: 30px;
    }
    .importance .importance-image img {
        padding: 0;
    }
    .about-page .section-wrapper.team {
        padding-bottom: 40px;
    }
    .banner-slider .slider .slide .slide-content {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .version .services .service {
        margin-bottom: 20px;
    }
    .version .awards {
        padding: 40px 0;
    }
    .version .team .team-box {
        margin-bottom: 20px;
    }
    .version .dream-inner {
        padding: 40px 30px;
    }
    .version .section-wrapper.team {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 575px) {
    .awards .awards-block .a-item {
        flex: 0 0 100%;
    }
    .welcome .welcome-content ul li {
        flex: 0 0 100%;
    }
    .newsletter .newsletter-form .form .theme-button {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }
    .newsletter .newsletter-form .form .theme-button .btn {
        width: 100%;
    }
    .newsletter .newsletter-form .form input {
        padding-right: 20px;
    }
    .modal .awards ul {
        flex-wrap: wrap;
    }
    .modal .awards ul li {
        flex: 0 0 100%;
        justify-content: center;
        margin: 15px 0;
    }
    .appoinment .appoinment-content form .field {
        flex: 0 0 100%;
    }
    .play-button-wrapper #circle-play-b svg {
		display: none;
        height: 0px;
        width: 0px;
    }	
    .play-button-wrapper #circle-play-b2 svg {
		display: none;
        height: 0px;
        width: 0px;
    }	
}