/*--------------------------------------------------------------
# DMS
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,800;0,900;1,200;1,400;1,500;1,600;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap");

/* Fonts */
:root {
  --font-default: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #1fa2ff;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

@media (max-width: 1279px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.equal {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-size: 16px !important;
  line-height: 1.8 !important;
  font-family: "Montserrat", sans-serif !important;
  color: #303138 !important;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  color: #303138;
  font-weight: 400;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none !important;
}

a:hover,
a:focus {
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  outline: 0;
}

button:focus {
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #16213E;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

h3 {
  font-size: 22px;
}

img {
  max-width: 100%;
}

#content-inner {
  padding: 0 15px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.front section {
  padding: 80px 0;
  overflow: hidden;
}



.not-front section {
  padding: 0;
  overflow: hidden;
}

.section-header {
  text-align: left;
  padding: 70px 0 30px 0;
  position: relative;
}

@media (max-width: 1279px) {
  .section-header {
    padding: 0 0 30px 0;
  }

  .front section {
    padding: 30px 0;
    overflow: hidden;
  }

  .services {
    padding: 30px 0 !important;
    background: #fff;
  }

}

.section-header h2 {
  border-color: #1fa2ff !important;
  display: inline-block !important;
  margin-top: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  border-bottom: 6px solid #000;
  /* border-bottom-color: rgb(0, 0, 0); */
  padding: 0 0 15px 0;
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
  color: #16213e;

}

/* .section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #EB6097;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  /* text-transform: uppercase; */
  line-height: 0;
  font-family: 'Raleway';
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  /* box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1); */
  min-height: 60px;
}


.not-front .header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  /* box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1); */
}

.not-front .header .navbar a,
.not-front .header .navbar a:focus {
  color: #fff;
}

.header.sticked .navbar a,
.header.sticked .navbar a:focus {
  color: #fff;
}

.header.sticked {
  background: var(--color-secondary);
  padding: 5px 0;
  /* box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1); */
}

/* .header .logo {
  margin-top: 15px;
} */

.header .logo img {
  /* max-height: 40px; */
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

@media (max-width: 1279px) {

  .not-front .header .navbar a,
  .not-front .header .navbar a:focus {
    color: #fff;
  }

  .header.sticked .navbar a,
  .header.sticked .navbar a:focus {
    color: #fff;
  }

  .oc-page-title {
    margin-top: 60px;
    padding: 30px 20px;
    margin-bottom: 10px;
    color: white;
    /* background: url("https://demo.cosmosafehealthcare.com/drgayatriskin/img/bg-2.png") center center;
    background-size: auto;
    background-size: cover; */
    min-height: 110px;
  }

  .oc-page-header {
    font-family: "Raleway", sans-serif;
    margin-top: 10px;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
  }

  .not-front .main-container {
    padding: 0 15px 100px;
    margin-top: ;
  }
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0 0 10px 0;
    /* max-width: 950px; */
    float: right;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 15px;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
    margin-left: 30px;
    color: #fff !important;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff !important;
    background: #841b4b;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #0E1D34;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }


}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }

  .oc-navbar-brand img {
    margin-top: -10px
  }
}



@media (max-width: 1280px) {
  .oc-navbar-brand img {
    margin-top: -10px;
    /* padding-left: 10px; */
  }

  .oc-flot-right {
    float: right;
    background-color: #002F79;
  }
}

.mobile-bg {
  /* background-color: #16213E;
  position: relative;
  background-image: url(https://drmishras.com/img/baa-mobile-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; */
}

.mobile-video-block {
  width: ;
}

.mobile-content-block {
  padding: 100px 20px 20px;
  /* position: relative;
  background-image: url(https://drmishras.com/img/baa-mobile-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; */
}

.mobile-content-block h2 {
  color: #fff;
}

.mobile-content-block p {
  color: #fff;
}

.mobile-counter-block-out {
  background-color: #002F79;
  width: 100%;
}

.mobile-counter-block {
  /* padding-bottom: 20px; */
  background-color: #002F79;
  padding-top: 20px;
  width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-counter-block .col-xs-4 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mobile-counter-block .stats-item {
  width: 90px;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.mobile-counter-block .stats-item h2 {
  color: #fff;
}

.mobile-counter-block .stats-item p {
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  /* border-top: 2px solid #1fa2ff !important; */
}

.mobile-counter-block .col-xs-6 {
  padding-left: 0;
  padding-right: 0;
}

.counter-box-1 {
  width: 90px;
  margin-left: auto;
  margin-right: auto;
  margin-left: -10px;
}

.counter-box-2 {
  width: 90px;
  margin-left: auto;
  margin-right: auto;
}

.counter-box-3 {
  width: 90px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-counter-block .counter-count {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 700;
  text-align: right !important;
  color: #fff;
}


.mobile-counter-block .counter-sign {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: #fff;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero-video {
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 800px;
  z-index: -9999;
}

#hero-video-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 300px;
  /* height: 50vh; */
  z-index: -9999;
}

/* #hero-video:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140vh;
}

#hero-video::before{
  background: rgba(0, 0, 0, 0.5);
} */


#hero {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  /* background: linear-gradient(to bottom, #68acb8 25%, #969696 100%); */
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  /* margin-bottom: -200px; */
  /* margin-top: -90vh; */
  /* background: rgba(14, 29, 52, 0.5); */
  color: #fff;
  text-align: left;

}

#hero .stats-item .col-xs-6 {
  padding-left: 0;
  padding-right: 0;
}

#hero .counter-sign {
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  padding-left: 10px;
}

#hero .counter-count {
  text-align: right !important;
}

#hero .container {
  position: relative;
  margin-top: 14vh;
}


.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
  font-family: "Raleway", sans-serif;
}

.hero h4 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

.hero h4 span {
  font-weight: 700;
  padding: 0 10px;
  color: #1fa2ff;

}

.hero p {
  font-size: 18px;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
}


.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero form .btn-primary:hover {
  background-color: #841b4b;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item h4 {
  font-size: 62px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}


.hero .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

/* .hero .stats-item:after {
  content: "+";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

/* .hero .stats-item p:before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

.blue-bg {
  background-color: rgba(14, 29, 52, 1);
}

#hero-mobile {
  width: 100%;

  min-height: 800px;
  /* background: linear-gradient(to bottom, #68acb8 25%, #969696 100%); */
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  /* margin-bottom: -200px; */
  /* margin-top: -90vh; */
  /* background: rgba(14, 29, 52, 0.5); */
  color: #fff;
  text-align: center;
  background-color: rgba(14, 29, 52, 0.5);

}

#hero-mobile .container {
  position: relative;
  margin-top: 20vh;
}


.hero-mobile h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
  font-family: "Raleway", sans-serif;
}

.hero-mobile h4 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

.hero-mobile h4 span {
  font-weight: 700;
  padding: 0 10px;
  color: #1fa2ff;

}

.hero-mobile p {
  font-size: 18px;
}

@media (max-width: 575px) {
  .hero-mobile h2 {
    font-size: 30px;
  }
}

.hero-mobile p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(14, 29, 52, 0.5);
}


.hero-mobile form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero-mobile form .btn-primary:hover {
  background-color: #841b4b;
}

.hero-mobile .stats-item {
  padding: 30px;
  width: 100%;
}

.hero-mobile .stats-item h4 {
  font-size: 62px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}


.hero-mobile .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

/* .hero .stats-item:after {
  content: "+";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.hero-mobile .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero-mobile .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  #hero-mobile {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero-mobile {
    margin-bottom: 0;
    height: auto;
  }

  #hero-mobile .container {
    padding-bottom: 63px;
  }

  #hero-mobile h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero-mobile h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero-mobile {
    height: 110vh;
  }
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
/* .why-us {
  background: linear-gradient( transparent 20vh, #fff 20vh);
} */

.why-us {
  background: #F9F9F9;
}

.why-us .content {
  padding: 30px;
  background: rgba(19, 49, 110, 0.8);
  border-radius: 6px 6px 0 0;
  color: #fff;
  /* margin-bottom: 20px; */
  border-bottom: 5px solid #1fa2ff;
}

.why-us .col-xl-3 {
  padding-left: 0;
  padding-right: 0;
}


.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
  color: #fff;
}

.why-us .content p {
  margin-bottom: 30px;
  color: #fff;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}

.why-us .icon-boxes {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  width: 100%;
  padding: 5px 35px;
}

.why-us .icon-boxes .align-items-stretch {
  padding: 1px;
  /* border-radius: 10px; */
}

.why-us .icon-boxes .icon-box {
  text-align: left;
  /* border-radius: 4px; */
  background: rgba(19, 49, 110, 0.5);
  padding: 120px 30px 10px 30px;
  width: 100%;
  /* border-radius: 10px; */
}


.why-us .icon-boxes .box-1 {
  position: relative;
  background-image: url(https://drmishras.com/img/hair-transplant-sec.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  /* border-radius: 10px; */
}

/* .why-us .icon-boxes .icon-box .box-1:before{
  background: rgba(0, 0, 0, 0.5);
} */

.why-us .icon-boxes .box-2 {
  position: relative;
  background-image: url(https://drmishras.com/img/fueadvance-sec.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  /* border-radius: 10px; */
}

.why-us .icon-boxes .box-3 {
  position: relative;
  background-image: url(https://drmishras.com/img/FueEnhance.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  /* border-radius: 10px; */
}

.why-us .icon-boxes .box-4 {
  position: relative;
  background-image: url(https://drmishras.com/img/bodyhair-sec.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  /* border-radius: 10px; */
}


.why-us-shape {
  position: absolute;
  top: 0;
  left: 5%;
  overflow: hidden;
}

.why-us-shape img {
  max-width: 100%;
  height: 100%;
}


.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #fff;
  /* padding-bottom: 20px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.1); */
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #fff;
}


/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/

@media (max-width: 1279px) {
  .services {
    padding: 30px 0 !important;
    background: #fff;
  }

  .section-header {
    padding: 0px;
  }
}

@media (min-width: 1280px) {
  .services {
    padding: 0 !important;
    background: #fff;
  }
}

.services .service-item {
  background: #F9F9F9;
  height: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.services .service-item img {
  border-radius: 10px 10px 0 0;
}


.services .service-item .pic {
  overflow: hidden;
  width: 100%;
  /*border-radius: 5px;*/
}

.services .service-item .pic img {
  transition: ease-in-out 0.3s;
}

.services .service-item:hover img {
  transform: scale(1.1);
}

.services .service-item .img-icon {
  z-index: 2;
  position: absolute;
  width: 70px
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 500;
  margin: 0 20px 20px 20px;
  padding-bottom: 8px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
  padding: 20px 0;
}

.services .service-item h3 a {
  color: var(--color-default);
  /* font-weight: 500;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s; */
}

#content-inner .services h3 {
  margin-top: 0;
}

#content-inner .services .service-item {
  margin-bottom: 20px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.srv-h3 {
  color: #16213e;
  font-weight: 700;
  margin: 30px 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

.srv-h3 a {
  color: #16213e;
}

.srv-link a {
  color: #a7a7a7;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 2px solid #a7a7a7;
  border-radius: 4px;
  font-weight: 700;

}

.srv-link:hover a {
  color: #1977cc;
  border-color: #1977cc;
}

.services .service-item:hover .icon:before {
  background: #E7F6FE;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

#block-views-cosmetology-block,
#block-views-trichology-block,
#block-views-hair-transplant-block {
  padding: 0;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  /* background: linear-gradient(to bottom, #68acb8 25%, #969696 100%); */
  /* background: url("https://drmishras.com/img/bg-1.jpg") center center;
  background-size: cover; */
  background-color: #fff;
  padding: 100px 0;
}



@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action .cta-box {
  position: relative;
  background-image: url(https://drmishras.com/img/baa-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.call-to-action .cta-box::before {
  content: '';
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#002F79), to(#002f7954));
  background-image: linear-gradient(to right, #002F79, #002f7954);
}



@media (max-width: 1279px) {

  .call-to-action .cta-100 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .cta-content {
    position: relative;
    z-index: 1;
    padding: 20px;
  }
}

@media (min-width: 1280px) {
  .call-to-action .cta-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-content {
    position: relative;
    z-index: 1;
    margin-left: 90px;
  }
}

.cta-shape {
  position: absolute;
  top: 0;
  left: 5%;
  overflow: hidden;
}

.cta-shape img {
  max-width: 100%;
  height: 100%;
}

@media (max-width: 1279px) {
  .call-to-action h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .call-to-action p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
  }
}

@media (min-width: 1280px) {
  .call-to-action h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .call-to-action p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
  }
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  background: #F9F9F9;
}

.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.about .content h4 {
  font-weight: 300;
  font-size: 22px;
  font-family: var(--font-secondary);
  color: #16213E;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}





/*--------------------------------------------------------------
# Awards Section
--------------------------------------------------------------*/
.awards {
  background: #fff;
}

.awards .certificate-slider {
  padding: 45px 0;
}

.awards .certificate-slider .flexslider {
  margin: 0;
  background: transparent;
  border: 0;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
}

#block-views-certificates-block {
  padding: 0 !important;
}

#awards {
  padding: 0 !important;
}

.awards .content {
  padding: 50px;
}

@media (max-width: 1279px) {

  .awards .box-1,
  .awards .box-2,
  .awards .box-3 {
    height: auto;
  }
}

@media (min-width: 1280px) {

  .awards .box-1,
  .awards .box-2,
  .awards .box-3 {
    height: 500px;
  }
}

.awards .box-1 {
  background: #16213E;
}

.awards .box-1 .section-header h2 {
  color: #fff;
}

.awards .box-1 .section-header p {
  color: #fff;
}

.awards .box-2 {
  background: #13316E;
}

.awards .box-3 {
  background: #eeeeee;
}

.awards .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.awards .content ul {
  list-style: none;
  padding: 0;
}

.awards .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.awards .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.awards .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.awards .content ul p {
  font-size: 15px;
  color: #fff;
}

.awards .content p:last-child {
  margin-bottom: 0;
}

.awards .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.awards .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.awards .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.awards .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.awards .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Before After Section
--------------------------------------------------------------*/
.before-after {
  background: #fff;
}

.before-after .btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  border: 2px solid #13316E;
  color: #13316E;
  background-color: #fff
}

.before-after .btn:hover {
  background: #fff;
  border: 2px solid #13316E;
}

.before-after .before-after-item {
  overflow: hidden;
  border-right: 3px solid #13316E;
  border-bottom: 3px solid #13316E;
}

.before-after .before-after-item img {
  transition: all ease-in-out 0.4s;
}

.before-after .before-after-item:hover img {
  transform: scale(1.1);
}

.before-after .col-xs-12,
.before-after .col-sm-6,
.before-after .col-md-4,
.before-after .col-lg-3 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#block-views-before-after-block {
  padding: 0;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: #fff;
  padding-top: 0 !important;
}

.contact .section-header {
  text-align: left;
  padding: 30px 0 30px 0;
  position: relative;
}

.pb-0 {
  padding-bottom: 0 !important;
}

@media (max-width: 1279px) {

  .contact .box-1,
  .contact .box-2,
  .contact .box-3 {
    height: auto;
  }
}

@media (min-width: 1280px) {

  .contact .box-1,
  .contact .box-2,
  .contact .box-3 {
    height: 500px;
  }
}

.contact .content {
  padding: 50px;
}

.contact .box-1 {
  background: #16213E;
}

.contact .box-1 .section-header h2 {
  color: #fff;
}

.contact .box-1 .section-header p {
  color: #fff;
}

.contact .box-2 {
  background: #13316E;
}

.contact .box-3 {
  background: #eeeeee;
  padding: 0;
}

.contact .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  position: absolute;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  margin-left: 70px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
  margin-left: 70px;
}


.address,
.email,
.phone,
.time {
  margin-bottom: 20px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: #fff;
}


#block-views-front-testimonials-block {
  padding: 0;
}

.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*=================================
Testimonials Area 
====================================*/
.testimonials-area {
  position: relative;
  /* border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1; */
  padding: 0;

}



.testimonials-area .section-header p {
  color: #fff;
}

.testimonials-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  background-image: url(https://drmishras.com/img/testimonials-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #1FA2FF;
  opacity: 0.1;
}

.flex-direction-nav a {
  height: 80px;
}

.testimonials-img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.testimonials-img img {
  border-radius: 10px;
}

.testimonials-slider-area {
  position: relative;
  z-index: 9;
}

.testimonials-slider-area .owl-nav {
  margin-top: 0;
}

.testimonials-slider-area .owl-nav .owl-prev {
  position: absolute;
  top: -70px;
  left: 145px;
  font-size: 18px !important;
  width: 45px;
  height: 45px;
  border-radius: 0;
  line-height: 45px;
  background-color: #1FA2FF !important;
  color: #ffffff !important;
}

.testimonials-slider-area .owl-nav .owl-prev:hover {
  background-color: #ffffff !important;
  color: #1FA2FF !important;
}

.testimonials-slider-area .owl-nav .owl-next {
  position: absolute;
  top: -70px;
  left: 200px;
  font-size: 18px !important;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 0;
  background-color: #1FA2FF !important;
  color: #ffffff !important;
}

.testimonials-slider-area .owl-nav .owl-next:hover {
  background-color: #ffffff !important;
  color: #1FA2FF !important;
}



@media (max-width: 1279px) {
  .testimonials-slider {
    margin-bottom: 35px;
    background-color: #002F79;
    padding: 30px 20px;
    margin-top: 20px;
    position: relative;
    border-radius: 10px;
  }

  .testimonials-area .section-header {
    margin-top: 30px;
  }

  .testimonials-slider::before {
    content: "\F6B0";
    position: absolute;
    color: #18499547;
    left: 0;
    right: 0;
    top: 115px;
    font-family: bootstrap-icons;
    font-size: 305px;
    /* -webkit-transform: rotate(95deg);
    transform: rotate(80deg); */
    line-height: 0.6;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .testimonials-slider {
    margin-bottom: 35px;
    background-color: #002F79;
    padding: 60px 40px;
    margin-left: -150px;
    margin-right: 150px;
    margin-top: 70px;
    position: relative;
    border-radius: 10px;
  }

  .testimonials-slider::before {
    content: "\F6B0";
    position: absolute;
    color: #18499547;
    left: 0;
    right: 0;
    top: 115px;
    font-family: bootstrap-icons;
    font-size: 505px;
    /* -webkit-transform: rotate(95deg);
    transform: rotate(80deg); */
    line-height: 0.6;
    text-align: center;
  }
}



.testimonials-slider .flexslider {
  margin: 0 0 60px;
  background: transparent;
  border: 0px;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: ''0 1px 4px rgba(0, 0, 0, 0.2);
}

.testimonials-slider .testimonials-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-slider .testimonials-item i {
  color: #1FA2FF;
  font-size: 45px;
  text-align: center;
}

.testimonials-slider .testimonials-item p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.testimonials-slider .testimonials-item .content img {
  /* border-radius: 50%; */
  margin-bottom: 15px;
  width: 90px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider .testimonials-item .content h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
}

.testimonials-slider .testimonials-item .content span {
  font-size: 14px;
  color: #E2E2E2;
}

.testimonials-slider-two {
  margin-bottom: 120px;
  background-color: #002F79;
  padding: 70px 40px;
  position: relative;
}

.testimonials-slider-two .owl-nav {
  margin-top: 0;
}

.testimonials-slider-two .owl-nav .owl-prev {
  position: absolute;
  bottom: -90px;
  left: 45%;
  font-size: 18px !important;
  width: 45px;
  height: 45px;
  border-radius: 0;
  line-height: 45px;
  background-color: #1FA2FF !important;
  color: #ffffff !important;
}

.testimonials-slider-two .owl-nav .owl-prev:hover {
  background-color: #ffffff !important;
  color: #1FA2FF !important;
}

.testimonials-slider-two .owl-nav .owl-next {
  position: absolute;
  bottom: -90px;
  right: 45%;
  font-size: 18px !important;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 0;
  background-color: #1FA2FF !important;
  color: #ffffff !important;
}

.testimonials-slider-two .owl-nav .owl-next:hover {
  background-color: #ffffff !important;
  color: #1FA2FF !important;
}

.testimonials-slider-two::before {
  content: "\f10a";
  position: absolute;
  color: #18499547;
  left: 0;
  right: 0;
  top: 195px;
  font-family: Flaticon;
  font-size: 505px;
  -webkit-transform: rotate(95deg);
  transform: rotate(80deg);
  line-height: 1.4;
}

.testimonials-slider-two .testimonials-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-slider-two .testimonials-card i {
  color: #1FA2FF;
  font-size: 45px;
  text-align: center;
}

.testimonials-slider-two .testimonials-card p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider-two .testimonials-card .content img {
  /* border-radius: 50%; */
  margin-bottom: 15px;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider-two .testimonials-card .content h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
}

.testimonials-slider-two .testimonials-card .content span {
  font-size: 14px;
  color: #E2E2E2;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog {
  background: #fff;
}

#block-views-blog-block-1 {
  padding: 0;
}

.blog {
  /* padding: 0 30px; */
}

.blog .icon-box {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  border: 1px solid #f1eff1;
  box-shadow: none;
}

.blog .icon-box .pic img {
  border-radius: 5px;
}

.blog .icon-box .member-info h4 {
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  font-size: 18px !important;
  background: #fff !important;
  padding: 0 !important;
  margin-top: 25px;
}

.blog .icon-box .member-info h4 a {
  color: #7D1F50;
}

.blog .icon-box .member-info p {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: 0 !important;
}

.blog .icon-box .member-tags a {
  background-color: #D6BDD2;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
}

@media (max-width: 1279px) {
  .blog .icon-box {
    margin-bottom: 10px;
    padding: 0;
    background: #fff;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    border: 1px solid #f1eff1;
  }

  .blog .icon-box .pic img {
    border-radius: 5px 5px 0 0;
  }

  .blog .icon-box .member-info h4 {
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    font-size: 18px !important;
    background: #fff !important;
    padding: 0 !important;
    margin-top: 25px;
    padding: 0 20px !important;
  }

  .blog .icon-box .member-info h4 a {
    color: #7D1F50;
  }

  .blog .icon-box .member-info p {
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 0 !important;
    padding: 0 20px;
  }

  .blog .icon-box .member-tags a {
    background-color: #D6BDD2;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #F2F2F5;
  padding: 50px 0;
  color: #17244A;
  border-top: none;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}


.footer .social-links a {
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #17244A;
  font-size: 16px;
  color: #17244A;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: rgba(13, 66, 255, 0.8);
  border-color: rgba(13, 66, 255, 0.8);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #17244A;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #17244A;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: rgba(13, 66, 255, 0.8);
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #17244A;
}



.service-card {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  /* -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
  /* padding: 1px; */
  border: 1px solid #F2F2F5;
  border-radius: 10px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #16213E;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.8;
}

.service-card:hover .service-content {
  top: 36%;
  -webkit-transform: translateY(-31%);
  transform: translateY(-31%);
}

.service-card:hover .service-content::before {
  display: none;
}

.service-card:hover .service-content .service-icon {
  background-color: #ffffff;
  color: #16213E;
  margin-bottom: 20px;
}

.service-card:hover .service-content h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card:hover .service-content h3 a {
  color: #ffffff;
}

.service-card:hover .service-content .content {
  display: block;
}

.service-card:hover .service-content .content p {
  color: #ffffff;
}

.service-card:hover .service-shape-1 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.service-card:hover .service-shape-2 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.service-card a {
  display: block;
}

.service-card .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background-color: transparent;
  z-index: 1;
  height: auto;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}

.service-card .service-content::before {
  content: '';
  position: absolute;
  bottom: -60px;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F2F2F5;
}

.service-card .service-content .service-icon {
  font-size: 35px;
  width: 75px;
  height: 75px;
  color: #ffffff;
  background-color: #1FA2FF;
  line-height: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.service-card .service-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  padding-top: 30px;
}

.service-card .service-content h3 a {
  color: #16213E;
}

.service-card .service-content .content {
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
}

.service-card .service-content .content p {
  color: #ffffff;
  margin-bottom: 0;
}

.service-card .service-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.service-card .service-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}




#content-inner .views-bootstrap-accordion-plugin-style h4 {
  padding: 0;
}

.panel-default>.panel-heading {
  color: #333333;
  background-color: #F2F2F5;
  border-color: transparent;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel {
  border: 1px solid #F2F2F5;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-width: 0 1px 4px 1px;
}

#content-inner .views-bootstrap-accordion-plugin-style h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  background: #F2F2F5;
  padding: 10px 10px 10px 10px;
}


/*--------------------------------------------------------------
# Services-Box
--------------------------------------------------------------*/
.services-box {
  background: #fff;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  /* border: 1px solid #dddd; */
  /*border-radius: 5px;*/
  margin-bottom: 30px
}


.services-box a {
  color: #2C4964;
}

.services-box .member {
  position: relative;
  padding: 10px;
  /*box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);*/
  /* min-height: 355px; */
}

.services-box .member .pic {
  overflow: hidden;
  width: 100%;
  /*border-radius: 5px;*/
}

.services-box .member .pic img {
  transition: ease-in-out 0.3s;
}

.services-box .member:hover img {
  transform: scale(1.1);
}

.services-box .member .member-info {
  padding-left: 30px;
}

.services-box .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c4964;
  margin-top: 20px;
}

.services-box .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.services-box .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.services-box .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.services-box .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-box .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}

.services-box .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.services-box .member .social a:hover {
  background: #1977cc;
}

.services-box .member .social a+a {
  margin-left: 8px;
}



/*--------------------------------------------------------------
# Front News
--------------------------------------------------------------*/
.front-news {
  background: #F9F9F9;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  /* border: 1px solid #dddd; */
  border-radius: 10px;
  margin-bottom: 30px
}

.front-news a {
  color: #2C4964;
}

.front-news .member {
  position: relative;
  /* padding: 10px; */
  /*box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);*/
  /* min-height: 355px; */
}

.front-news .member .pic {
  overflow: hidden;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.front-news .member .pic img {
  transition: ease-in-out 0.3s;
  transform: scale(1.1);
}

.front-news .member:hover img {
  transform: scale(1.3);
}

.front-news .member .member-info {
  padding-left: 30px;
}

.front-news .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c4964;
  margin-top: 20px;
  padding: 0 20px 20px;
}

.front-news .member:hover h4 a {
  color: #16213E;
}

.front-news .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.front-news .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.front-news .member:hover span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: 0;
}

.front-news .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.front-news .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.front-news .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}

.front-news .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.front-news .member .social a:hover {
  background: #1977cc;
}

.front-news .member .social a+a {
  margin-left: 8px;
}



.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
}

.whatsapp-icon img {
  height: 60px;
}

.book-appointment-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
}

.book-appointment-icon img {
  width: 160px;
}


.top-bar {
  /* background-color: #002F79; */
  height: 33px;
  border-bottom: 1px solid #20324D;
}

.top-navbar-text {
  color: #F2F2F5;
  font-size: 12px;
  margin-top: 5px;
}

.top-navbar-text .tnt {
  padding-right: 20px;
  width: 150px;
  float: left;
}


.social-icons {
  width: 175px;
  height: 25px;
  position: absolute;
  display: contents;
}

.social-icons .icons {
  float: right;
  padding: 8px 5px !important;
}

.social-icons .icons .text {
  border-radius: 50px;
  font-size: 10;

}