/*==============================
 *    Common styles
 *    ================================ */
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #967BB6;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #967BB6;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
/* theme color and basic options */
a:hover, a:active {
  color: #967BB6;
  text-decoration: none;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-primary {
  background-color: #967BB6 !important;
}

.bg-secondary {
  background-color: #967BB6 !important;
}

.bg-dark-blue {
  background: #967BB6;
}

.bg-light-grey {
  background-color: #f5f5f5;
}

/*
.primary-overlay[data-overlay-dark]:before {
  background: $PrimaryColor;
}

.secondary-overlay[data-overlay-dark]:before {
  background: $SecondaryColor;
}

.dark-overlay[data-overlay-dark]:before {
  background: #B2D4AB;
}

.left-overlay[data-overlay-dark]:before {
  background: rgba(0, 0, 0, 0.76);
  background: linear-gradient(-90deg, transparent, #000000 65%);
}

.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(#B2D4AB, 0.76);
  background: linear-gradient(-90deg, transparent, #B2D4AB 65%);
}

*/
.left-overlay-white[data-overlay-dark]:before {
  background: rgba(225, 225, 225, 0.8);
  background: linear-gradient(-90deg, transparent, #ffffff 65%);
}

@media screen and (max-width: 479px) {
  .xs-width-145px {
    width: 145px;
    position: relative;
    top: 4px;
    margin-right: 0;
  }
}
.text-primary {
  color: #967BB6 !important;
}

.text-secondary {
  color: #967BB6 !important;
}

.primary-shadow {
  box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.shadow-primary {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cursor-pointer {
  cursor: pointer;
}

.primary-shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.border-top-10-radius {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.theme-circle {
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
}

.rounded-end-0 {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.height-300 {
  height: 300px;
}

@media screen and (min-width: 992px) {
  .border-radius-start-10 {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
  .border-radius-end-10 {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }
}
@media screen and (min-width: 992px) {
  .vw-lg-50 {
    width: 50vw;
  }
}
/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: white !important;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #967BB6;
  border: 1px solid #967BB6;
  width: 35px;
  height: 35px;
  line-height: 35px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: white;
}
.scroll-to-top:hover {
  color: #967BB6;
  background: #ffffff;
  border: 2px solid #967BB6
}
.scroll-to-top:hover i {
  color:#967BB6;
}
.scroll-to-top:visited {
  color: #1e2022;
  text-decoration: none;
}

/* butn */
.butn {
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background-color: #967BB6;
  position: relative;
  text-align: center;
  border-radius: 10px;
  padding: 12px 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 2px solid #967BB6 
}
.butn:hover:before {
  top: auto;
  bottom: 0;
  background-color: #ffffff;
  color: #967BB6;
  height: 100%;
  border: 2px solid #967BB6
}
.butn:before {
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  bottom: auto;
  z-index: -1;
  border-radius: 10px;
  content: "";
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.butn:hover {
  color: #967bb6;
  background-color: #ffffff;
  border: 2px solid #967BB6
}

.butn.secondary {
  background-color: #967BB6;
  color: #fff;
}
.butn.secondary:hover {
  background-color: #ffffff;
  color: #967BB6 !important;
}
.butn.md {
  padding: 9px 28px;
}
.butn.sm {
  padding: 6px 26px;
}
.butn.appointment {
  background: #967BB6;
  color: #ffffff;
  padding: 12px 14px !important;
  font-size: 16px;
}

.butn.appointment:hover {
  background: #ffffff;
  color: #967BB6;  
  border: 2px solid #967BB6
}

.top-butn:hover {
  color: #967BB6; 
  background-color: #ffffff;
  border: 2px solid #967BB6
}

.butn-2 {
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: #967BB6;
  background-color: #ffffff;
  border: 2px solid #967BB6
  position: relative;
  text-align: center;
  border-radius: 10px;
  padding: 12px 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
}
.butn-2:hover {
  background-color: #ffffff;
  color: #967BB6 !important;
  border: 2px solid #967BB6
}

@media screen and (max-width: 1399px) {
  .butn.appointment {
    border-radius: 4px;
    padding: 6px 12px !important;
  }
  .butn.appointment:before {
    border-radius: 4px;
  }
}
@media screen and (max-width: 991px) {
  .butn.appointment {
    padding: 7px 5px 7px 5px !important;
    background: none;
    color: #f15b5a;
  }
  .butn.appointment:hover {
    color: #967BB6;
    background: #ffffff;
    border: 2px solid #967BB6
  }
}
.butn.white-hover:hover {
  color: #967BB6;
  background-color: #ffffff;
  border: 2px solid #967BB6
}
.butn.white-hover:hover:before {
  background-color: #ffffff;
  color: #967BB6;
  border: 2px solid #967BB6
}

/* animation */
.ani-move-round {
  animation-duration: 15s;
  animation-name: animationMoveround;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes animationMoveround {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
/* animation */
.rotated {
  animation: rotated 45s infinite linear;
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*==============================
 *    Navigation
 *    ================================ */
/* topbar */
#top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}

.navbar-brand img {
    max-height: 90px;
    transition-duration: 0.5s;
}

.header-style1 #top-bar {
  background-color: #967BB6;
}

.fab.fa-twitter {
        color: #ffffff; /* Twitter blue */
    }

.fab.fa-instagram {
      color: #ffffff; /* Twitter blue */
}

.fab.fa-facebook-f {
      color: #ffffff; /* Twitter blue */
  }

.fab.fa-linkedin-in {
      color: #ffffff; /* Twitter blue */
  }    
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info li i {
  font-size: 16px;
  color: #967BB6;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  list-style-type: none;
  font-size: 13px;
  border-color: rgba(225, 225, 225, 0.6) !important;
  padding: 0 15px 0 0;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
}
.top-bar-info li:last-child {
  padding-right: 0;
  margin-right: 0;
}

/* topbar info */
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  transition-duration: 0.3s;
  padding: 0 3px;
}

@media screen and (max-width: 575px) {
  .top-bar-info li {
    border-right: none !important;
    margin-right: 0;
  }
}
/*==============================
*    Main banner area
*    ================================ */
/* banner */
.banner-overlay {
  background-color: transparent;
  background-image: linear-gradient(120deg, #967BB6 40%, rgba(0, 0, 0, 0) 36%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}

.banner-shape-01 {
  width: 160px;
  height: 175px;
  background-color: rgba(249, 241, 225, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: absolute;
  display: inline-block;
  top: 12%;
  left: 16%;
  z-index: 1;
}

.banner-shape-02 {
  width: 90px;
  height: 95px;
  background-color: #967bb6;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: absolute;
  display: inline-block;
  bottom: 9%;
  left: -1%;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .banner-shape-01 {
    top: 14%;
    left: 29%;
  }
}
@media screen and (max-width: 767px) {
  .banner-shape-01 {
    top: 0%;
    left: auto;
    right: 1%;
  }
}
@media screen and (max-width: 575px) {
  .banner-overlay {
    display: none;
  }
}
.banner-contact-icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  transition: all 300ms linear 100ms;
  animation: ani-shake 2s infinite ease-in-out;
  color: #967BB6;
}

@keyframes ani-shake {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-15deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(15deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-15deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(15deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/* slider01 */
.slider-fade1 .owl-item {
  height: 100vh;
  position: relative;
}
.slider-fade1 .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.slider-fade1 h1 {
  animation-delay: 0.8s;
}
.slider-fade1 p {
  animation-delay: 1.2s;
}
.slider-fade1 a {
  animation-delay: 1.6s;
}
.slider-fade1 .h5 {
  font-weight: 500;
  animation-delay: 0.5s;
  display: block;
  position: relative;
}
.slider-fade1 .light-title {
  top: -25%;
}
.slider-fade1.owl-theme .owl-nav {
  margin-top: 0;
}
.slider-fade1.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 80px;
  width: 100%;
  margin: 0;
  left: 0;
}
.slider-fade1.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  right: inherit;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 60px;
  line-height: 65px;
  transition-duration: 500ms;
  left: 15px;
  text-align: center;
  margin: auto;
}
.slider-fade1.owl-theme .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  left: inherit;
  right: 15px;
}
.slider-fade1.owl-theme .owl-nav .owl-next:hover {
  opacity: 1;
  background: #967BB6;
}
.slider-fade1.owl-theme .owl-nav .owl-prev:hover {
  opacity: 1;
  background: #967BB6;
}
.slider-fade1 .owl-nav i,
.slider-fade1 .owl-nav span {
  font-weight: 600;
  color: #fff !important;
  transition-duration: 500ms;
  font-size: 20px;
}
.slider-fade1 .owl-nav .owl-next:hover i,
.slider-fade1 .owl-nav .owl-prev:hover i {
  color: #fff;
}

@media screen and (max-width: 1399px) {
  .slider-fade1 .light-title {
    top: -20%;
  }
}
@media screen and (max-width: 1199px) {
  .slider-fade1 .light-title {
    top: -18%;
  }
}
@media screen and (max-width: 991px) {
  .slider-fade1 .light-title {
    top: -16%;
  }
}
@media screen and (max-width: 767px) {
  .slider-fade1 .light-title {
    top: -12%;
  }
}
/* slider-fade2 */
.slider-fade2 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 83%, 87% 100%, 0% 100%, 0% 100%, 0% 20%);
}
.slider-fade2 .owl-item {
  height: 100vh;
  position: relative;
}
.slider-fade2 .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.slider-fade2 .sub-title {
  animation-delay: 0.8s;
}
.slider-fade2 h1 {
  animation-delay: 1.2s;
}
.slider-fade2 p {
  animation-delay: 1.6s;
}
.slider-fade2 a {
  animation-delay: 2s;
}
.slider-fade2 .h5 {
  font-weight: 500;
  animation-delay: 0.5s;
  display: block;
  position: relative;
}
.slider-fade2.owl-theme .owl-nav {
  margin-top: 0;
}
.slider-fade2.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 80px;
  width: 100%;
  margin: 0;
  left: 0;
}
.slider-fade2.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  right: inherit;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.2) !important;
  line-height: 65px;
  transition-duration: 500ms;
  left: 15px;
  text-align: center;
  clip-path: polygon(0% 0%, 75% 0%, 100% 25%, 100% 100%, 80% 100%, 21% 100%, 0% 100%, 0% 20%);
  margin: auto;
}
.slider-fade2.owl-theme .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  left: inherit;
  right: 15px;
}
.slider-fade2.owl-theme .owl-nav .owl-next:hover {
  opacity: 1;
  background: #967BB6;
}
.slider-fade2.owl-theme .owl-nav .owl-prev:hover {
  opacity: 1;
  background: #967BB6;
}
.slider-fade2 .owl-nav i,
.slider-fade2 .owl-nav span {
  font-weight: 600;
  color: #fff !important;
  transition-duration: 500ms;
  font-size: 20px;
}
.slider-fade2 .owl-nav .owl-next:hover i,
.slider-fade2 .owl-nav .owl-prev:hover i {
  color: #fff;
}
.slider-fade2 .banner-text {
  padding: 40px 0 40px 50px;
}
.slider-fade2 .banner-text:before {
  content: "";
  background: rgba(150, 123, 182, 0.4);
  height: 100%;
  width: 160px;
  position: absolute;
  left: 0;
  top: 0;
  transform: skew(336deg);
}

@media screen and (max-width: 575px) {
  .slider-fade2 .banner-text {
    padding: 0 15px;
  }
  .slider-fade2 .banner-text:before {
    content: none;
  }
}
/*==============================
*    Page title
*    ================================ */
.page-title-section {
  padding: 155px 0 0 0;
}
.page-title-section h1 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}

.pagetitle-breadcrumb {
  background: #fff;
  display: inline-block;
  position: relative;
  margin-top: 50px;
  float: right;
  padding: 20px 20px 15px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.page-title-section ul {
  margin-bottom: 0;
}
.page-title-section ul li {
  display: inline-block;
}
.page-title-section ul li:last-child a {
  font-weight: 600;
}
.page-title-section ul li:after {
  text-align: center;
  content: "";
  width: 8px;
  height: 9px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: #967BB6;
  margin: 0px 9px 0 13px;
  display: inline-block;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li a {
  font-weight: 500;
}
.page-title-section .active a,
.page-title-section li.active:last-child a {
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 125px 0 0 0;
  }
  .pagetitle-breadcrumb {
    margin-top: 50px;
  }
  .page-title-section h1 {
    font-size: 44px;
    line-height: 42px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 125px 0 0 0;
  }
  .page-title-section h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .pagetitle-breadcrumb {
    padding: 15px 20px 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section {
    padding: 125px 0 0 0;
  }
  .page-title-section h1 {
    font-size: 38px;
    line-height: 36px;
  }
}
@media screen and (max-width: 575px) {
  .page-title-section h1 {
    font-size: 34px;
    line-height: 36px;
  }
}
.top-position2 {
  margin-top: -138px;
}

@media screen and (max-width: 991px) {
  .top-position2 {
    margin-top: -72px;
  }
}
/* animation */
.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out;
}

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(30px, 0);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out;
}

@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(0, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
/*==============================
*    Cards
*    ================================ */
/* card-style01 */
.card-style01 .card-body {
  padding: 30px;
  position: relative;
  margin: -40px 20px 0 20px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card-style01:hover .card-body {
  transform: translateY(-60px);
}

.service-style-01 {
  margin-bottom: -110px;
  position: relative;
  z-index: 9;
}

/*card-style05*/
.card-body h3 {
  font-size: 18px;
}

.card-style05 {
  position: relative;
  transition: 0.5s;
}
.card-style05:before {
  position: absolute;
  content: "";
  height: 75px;
  width: 75px;
  background: #a1a1a1;
  opacity: 0.08;
  top: 62px;
  left: 80px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease 0.2s;
}
.card-style05:after {
  position: absolute;
  content: "";
  height: 75px;
  width: 75px;
  background: #a1a1a1;
  border-radius: 50%;
  top: 37px;
  left: 64px;
  opacity: 0.12;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.card-style05:hover:before, .card-style05:hover:after {
  background: #fff;
  transform: scaleX(-1);
}

/*card-style06*/
.card-style06 {
  text-align: center;
  background: #f8f8f8;
  padding: 35px 35px 27px 35px;
  transition: all 0.5s;
}
.card-style06 .social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -16px;
  transition: all 0.5s;
}
.card-style06 .social a {
  color: #091d3e;
  background-color: #ffffff;
}
.card-style06 .social a:nth-child(1) {
  transition-delay: 0.1s;
}
.card-style06 .social a:nth-child(2) {
  transition-delay: 0.2s;
}
.card-style06 .social a:nth-child(3) {
  transition-delay: 0.3s;
}
.card-style06:hover .social a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.card-style06 .social a {
  margin: 3px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  background: #967BB6;
  border-radius: 50%;
  color: #fff;
}
.card-style06 .social a:first-child {
  margin-left: 0 !important;
}
.card-style06:hover p,
.card-style06:hover h3 a {
  color: #000000;
}

/*==============================
*    Owl carousel
*    ================================ */
.owl-theme .owl-nav.disabled {
  margin-top: 40px !important;
}
.owl-theme .owl-dots {
  margin-top: 40px !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.15);
}
.owl-theme .owl-dots .owl-dot:hover span, .owl-theme .owl-dots .owl-dot.active span {
  background: #967BB6;
}

.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.dots-white.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}
.dots-white.owl-theme .owl-dots .owl-dot:hover span, .dots-white.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.owl-nav i {
  color: #1e2022;
  font-size: 18px;
  padding-top: 6px;
}
.owl-nav .owl-next {
  color: #967BB6;
  font-size: 43px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #fff !important;
}
.owl-nav .owl-prev {
  color: #967BB6;
  font-size: 43px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #fff !important;
  left: 0;
  transition: all 0.4s ease 0s;
  box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
}
.owl-nav .owl-next {
  transition: all 0.4s ease 0s;
  box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
}

.owl-theme .owl-nav {
  margin-top: 50px;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #6f6f6f;
  line-height: 30px;
  border-radius: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: #1e2022;
}

.owl-thumbs {
  z-index: 9;
  position: relative;
}
.owl-thumbs button {
  border: none;
}
.owl-thumbs button .title {
  transition: 0.5s;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  margin: 20px -100px 0;
}
.owl-thumbs button.active .title {
  opacity: 1;
  visibility: visible;
}
.owl-thumbs button img {
  opacity: 0.5;
}
.owl-thumbs button.active img {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .owl-theme .owl-nav {
    margin-top: 30px;
  }
}
/*==============================
*    Patient info
*    ================================ */
.first-visit {
  max-width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .first-visit {
    min-width: 100%;
  }
}
/*==============================
*    Accordion style
*    ================================ */
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  border: none;
  margin-bottom: 15px;
}
.accordion-style .card:last-child {
  margin-bottom: 0;
}
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
}
.accordion-style .btn-link {
  background: #967BB6 !important;
  color: #6f6f6f;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 10px;
  padding: 15px 50px 15px 20px;
  text-decoration: none;
  color: #fff;
  box-shadow: none;
  font-size: 18px;
}
.accordion-style .btn-link:hover {
  border: none;
  text-decoration: none;
  background: #967BB6 !important;
  border: 2px solid #967BB6
}
.accordion-style .btn-link.collapsed {
  background: #ffffff !important;
  color: #6f6f6f;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.accordion-style .btn-link.collapsed:after {
  background: #fff;
  border-radius: 50%;
  font-family: Font Awesome\ 5 Free;
  content: "\f0da";
  font-weight: 700;
  right: 15px;
  left: inherit;
  font-size: 18px;
  line-height: 24px;
  height: 25px;
  transform: none;
  width: 25px;
  top: 15px;
  text-align: center;
  padding-left: 0;
  letter-spacing: -1px;
}
.accordion-style .btn-link:after {
  background: #fff;
  border-radius: 50%;
  font-family: Font Awesome\ 5 Free;
  content: "\f0d7";
  font-weight: 700;
  right: 15px;
  left: inherit;
  font-size: 18px;
  height: 25px;
  line-height: 24px;
  transform: none;
  width: 25px;
  top: 15px;
  position: absolute;
  color: #967BB6;
  text-align: center;
  padding-left: 2px;
  letter-spacing: 2px;
}
.accordion-style .card-body {
  padding: 20px;
  line-height: 24px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .accordion-style .btn-link {
    font-size: 14px;
    padding: 12px 45px 12px 15px;
  }
  .accordion-style .btn-link:after, .accordion-style .btn-link.collapsed:after {
    top: 10px;
  }
}
/* service-sidebar */
.service-sidebar .service-widgets {
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
}

@media screen and (max-width: 575px) {
  .service-sidebar .service-widgets {
    padding: 20px;
  }
}
/* about us */
.about-style01 .about-text {
  margin: 0 30px;
  margin-top: -178px;
  padding-bottom: 40px;
}

.about-text a {
  color: white;
}

@media screen and (max-width: 575px) {
  .about-style01 .about-text {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/* about us01 */
.about-style-01:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 40%;
  background-color: #f5f5f5;
  left: 0;
  top: 0;
  z-index: 0;
}
.about-style-01 .about-img1 {
  clip-path: polygon(0% 0%, 63% 0%, 100% 23%, 100% 100%, 80% 100%, 25% 100%, 0% 100%, 0% 20%);
  display: inline-block;
}
.about-style-01 .about-img2 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 77%, 79% 100%, 0% 100%, 0% 100%, 0% 20%);
  display: inline-block;
}
.about-style-01 .about-lg-text {
  font-size: 120px;
  position: absolute;
  writing-mode: tb-rl;
  left: -140px;
  top: 0;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .about-style-01 .about-img1 {
    display: inherit;
  }
}
/* about us02 */
.about-style02 .about-inner-shape {
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #fff;
  opacity: 0.1;
  top: -12px;
  border-radius: 50%;
  right: 20px;
}

/* call to action */
@media screen and (min-width: 991px) {
  .call-to-action01 .count-box {
    border-top-left-radius: 4px;
  }
  .call-to-action01 .count-box1 {
    border-top-right-radius: 4px;
  }
}
/* liststyle 3 */
.list-style3 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style3 li {
  margin-bottom: 10px;
}
.list-style3 li:last-child {
  margin-bottom: 0;
}
.list-style3 li a {
  display: block;
  font-weight: 500;
  padding: 11px 10px 11px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #808087;
}
.list-style3 li a:hover, .list-style3 li a:active, .list-style3 li a:focus {
  color: #967BB6;
}
.list-style3 li.active a {
  color: #ffffff;
  background: #967BB6;
}

/*==============================
*    Footer
*    ================================ */
.footer-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
}
.footer-form .form-control {
  min-height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.footer-logo {
  max-width: 211px;
  width: 100%;
  display: inline-block;
}

/*footer-list-style1*/
.footer-list-style1 {
  margin: 0;
  padding: 0;
}
.footer-list-style1 li {
  list-style-type: none;
  color: #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.footer-list-style1 li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-list-style1 li a {
  color: #ffffff;
}
.footer-list-style1 li a:before {
  content: "\f105";
  font-weight: 700;
  font-family: Font Awesome\ 5 Free;
  color: #ffffff;
  padding-right: 8px;
  transition-duration: 0.3s;
}
.footer-list-style1 li a:hover {
  color: white;
}
.footer-list-style1 li a:hover:before {
  color: white;
}

/*footer bar*/
.footer-bar {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  line-height: 26px;
}

/*footer-social-style1*/
.footer-social-style1 {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
}
.footer-social-style1 li {
  text-align: center;
  margin-right: 5px;
  display: inline-block;
}
.footer-social-style1 li:last-child {
  margin-right: 0;
}
.footer-social-style1 li a {
  color: #f8f9fa;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.footer-social-style1 li a:hover {
  color: #967BB6;
  background-color: #ffffff;
}

.schedule {
  max-width: 75%;
  margin: 20px auto;
}

/* About page - Team */
.team {
  margin-top: -120px;
}

.team h2 {
  font-size: 45px;
  margin-bottom: 60px;
}

.team-row {
  max-width: 80%;
  margin: 0 auto;
}

.team-box {
  background-color: white;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  border-radius: 10px;
}

.team-box img {
  min-width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% top;
     object-position: 80% top;
  border-radius: 10px;
}

.service-main-images {
  height: 300px;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Patient Info */
.float-image {
  float: right;
  width: 500px;
  height: auto;
  margin-left: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 10px;
}

/* On small screens, remove float and make image full width */
@media (max-width: 768px) {
  .float-image {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
    max-width: 100%;
  }
  .team h2 {
    font-size: 32px;
  }
  .schedule {
    min-width: 100%;
  }
  .team-row {
    min-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .float-image {
    width: 300px;
    max-width: 300px;
  }
}
.finance-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}


