/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  overflow-x: hidden;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

.bg-gray1 {
  background: #F1F6F6;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule                       
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

a {
  text-decoration: none !important;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


/* Menu */
.nav-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  margin: .25rem 0 0;
  border-radius: 0;
  outline: none;
  float: right;
  position: relative;
  z-index: 995;
  font-weight: bold;
  text-transform: uppercase;
  color: inherit;
}

.nav-toggle-btn:hover {
  color: #b14fa2;
}

.nav-toggle-btn:focus {
  outline: none;
}

.nav-toggle-title {
  display: inline-block;
  vertical-align: middle;
  margin-right: .75rem;
}

.nav-toggle {
  width: 29px;
  height: 29px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  margin-left: 20px;
}

.nav-toggle-sm {
  transform: scale(.65);
  margin-right: -.3125rem;
}

.stick {
  width: 29px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #8F41D5;
  display: inline-block;
}

.nav-toggle-btn:hover .stick {
  background-color: #8F41D5;
}

.body-menu-opened .nav-toggle-btn {
  color: #000000;
}

.body-menu-opened .nav-toggle-btn .stick {
  background-color: #000000;
}

.stick:last-child {
  margin-bottom: 0px;
}

.nav-toggle:hover .stick-2 {
  width: 29px;
}

.body-menu-opened .stick-1 {
  animation: stick-1-open .85s ease-out forwards;
}

.body-menu-opened .stick-2 {
  animation: stick-2-open .85s linear forwards;
  width: 29px;
  margin-left: 0px;
}

.body-menu-opened .stick-3 {
  animation: stick-3-open .85s linear forwards;
}

@-webkit-keyframes stick-1-open {
  0% {
      width: 29px;
  }
  30% {
      width: 3px;
      transform: translate(14px, 0px);
  }
  65% {
      width: 3px;
      transform: translate(14px, -29px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
      width: 2px;
      transform: translate(9px, 17px);
  }
}

@keyframes stick-1-open {
  0% {
      width: 29px;
  }
  30% {
      width: 3px;
      transform: translate(14px, 0px);
  }
  65% {
      width: 3px;
      transform: translate(14px, -29px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
      width: 2px;
      transform: translate(9px, 17px);
  }
}

@-webkit-keyframes stick-2-open {
  65% {
      width: 29px;
      transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
      width: 29px;
      transform: translate(0px, 0px) rotate(45deg);
  }
}

@keyframes stick-2-open {
  65% {
      width: 29px;
      transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
      width: 29px;
      transform: translate(0px, 0px) rotate(45deg);
  }
}

@-webkit-keyframes stick-3-open {
  65% {
      transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
      transform: translate(0px, -8px) rotate(-45deg);
  }
}

@keyframes stick-3-open {
  65% {
      transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
      transform: translate(0px, -8px) rotate(-45deg);
  }
}

.body-menu-close .stick-1 {
  width: 3px;
  animation: stick-1-close .85s ease-out forwards;
}

.body-menu-close .stick-2 {
  animation: stick-2-close .85s ease-out forwards;
  margin-left: 0px;
}

.body-menu-close .stick-3 {
  animation: stick-3-close .85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {
  0%,
  70% {
      width: 0px;
      transform: translate(0, 0);
  }
  100% {
      width: 29px;
      transform: translate(0, 0);
  }
}

@keyframes stick-1-close {
  0%,
  70% {
      width: 0px;
      transform: translate(0, 0);
  }
  100% {
      width: 29px;
      transform: translate(0, 0);
  }
}

@-webkit-keyframes stick-2-close {
  0% {
      width: 29px;
      transform: translate(0px, 0px) rotate(45deg);
  }
  20% {
      width: 3px;
      transform: translate(0, 0px) rotate(45deg);
  }
  40% {
      width: 0px;
  }
  65% {
      transform: translate(0, -26px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
      width: 0px;
  }
  100% {
      width: 29px;
      transform: translate(0, 0px);
  }
}

@keyframes stick-2-close {
  0% {
      width: 29px;
      transform: translate(0px, 0px) rotate(45deg);
  }
  20% {
      width: 3px;
      transform: translate(0, 0px) rotate(45deg);
  }
  40% {
      width: 0px;
  }
  65% {
      transform: translate(0, -26px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
      width: 0px;
  }
  100% {
      width: 29px;
      transform: translate(0, 0px);
  }
}

@-webkit-keyframes stick-3-close {
  0% {
      width: 29px;
      transform: translate(0px, -8px) rotate(-45deg);
  }
  20% {
      width: 3px;
      transform: translate(0, -8px) rotate(-45deg);
  }
  40% {}
  65% {
      transform: translate(0, -35px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
      width: 3px;
  }
  100% {
      width: 29px;
      transform: translate(0, 0px);
  }
}

@keyframes stick-3-close {
  0% {
      width: 29px;
      transform: translate(0px, -8px) rotate(-45deg);
  }
  20% {
      width: 3px;
      transform: translate(0, -8px) rotate(-45deg);
  }
  40% {}
  65% {
      transform: translate(0, -35px);
      animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
      width: 3px;
  }
  100% {
      width: 29px;
      transform: translate(0, 0px);
  }
}

@-webkit-keyframes fadeZoom {
  0% {
      width: 100%;
  }
  100% {
      width: 0;
  }
}

@keyframes fadeZoom {
  0% {
      width: 100%;
  }
  100% {
      width: 0;
  }
}

.navbar-nav {
  margin-left: 8rem;
  margin-right: 8rem;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav>ul>li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav a {
  position: relative;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.82, 0, 0.21, 1);
}

.navbar-nav a:before {
  content: attr(data-text);
  position: absolute;
  width: 0%;
  transition: width cubic-bezier(0.82, 0, 0.21, 1) 0.3s;
  color: #b14fa2;
  z-index: 2;
  overflow: hidden;
}

.navbar-nav li.active>a,
.navbar-nav a:hover {
  color: #999999;
}

.navbar-nav li.active>a:before,
.navbar-nav a:hover:before {
  width: 100%;
}

.navbar-nav li.active>a {
  font-weight: bold;
  color: transparent !important;
}

.menu-main li.active>a {
  color: transparent !important;
}

.menu-main li.active>a.menu-plus {
  color: #b14fa2 !important;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-nav .dropdown-menu {
  width: 25rem;
  padding: 27px 40px 22px;
  border: none;
  background: #ffffff;
  border-radius: 0;
  margin-top: 1.125rem;
  margin-left: -40px;
  text-transform: none;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 20px !important;
  top: 100% !important;
  transform: translate3d(0, 0, 0) !important;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  animation: transform .3s ease-in-out forwards;
}

.navbar-nav .dropdown-menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 1.125rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -1.125rem;
}

@keyframes transform {
  0% {
      margin-top: 3rem;
      opacity: 0;
  }
  100% {
      margin-top: 1.125rem;
      opacity: 1;
  }
}

.navbar-nav .dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .dropdown-menu ul li {
  margin-bottom: 6px;
}

.navbar-nav .dropdown-menu a {
  white-space: nowrap;
  color: #999999;
}

.navbar-nav .dropdown-menu .active a {
  font-weight: normal;
}

.dropdown-menu-title {
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
}
.menu1 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  background: #ffffff;
  max-width: 100%;
  width: 100%;
  padding: 3.75rem 4.375rem 3.25rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease-in-out;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.body-menu-opened .menu1 {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

@media (min-width:576px) {
  .menu1 {
      width: 34rem;
  }

}
@media (max-width: 768px){
		.page-id-366 .col-md-9 {   padding:0 40px !important; }
	.post.type-post .post-thumbnail img {
   width: 100%;
    height: auto;
}



}
@media (min-width:992px) {
  .navbar-nav {
      margin-left: 15rem;
      margin-right: 15rem;
  }
  .navbar-nav>ul>li {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
  }
}

.body-menu-opened body {}

@media (max-width:575px) {
  .body-menu-opened {
      overflow: hidden;
      width: 100%;
      height: 100%;
  }
}

.hide-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 980;
}

.body-menu-opened .hide-menu {
  bottom: 0;
}

.menu-lang {
  font-size: .875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.menu1 .menu-lang {
  padding-bottom: 4.5rem;
}

.menu-lang.float-right,
.text-right .menu-lang {
  margin-right: -1rem;
}

.menu-lang-item,
.menu1 .menu-lang-item {
  margin-right: 1rem;
  color: #000000;
}

.menu-lang-item:hover {
  color: #b14fa2;
  text-decoration: none;
}

.menu-lang-item.active,.custom-menu-class>ul>li.current_page_item a {
  color: #b14fa2;
}

.menu-lang .divider {
  margin-right: 1rem;
}
.hamburger{
  display: inline-block;
  width: 40px;
  position: relative;
  top: -15px;
}
.hamburger span {
  opacity: 1;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  color: black;
  background-color: #b14fa2;
  position: absolute;
  transform: rotate(0deg);
  transition: .4s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
#hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}
#hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
}
#hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

.menu-lang-item:hover {
  color: #b14fa2;
  text-decoration: none;
}

.menu-lang-item.active,.menu-menu-1-container>ul>li.current_page_item a {
  color: #b14fa2;
}

.menu-lang .divider {
  margin-right: 1rem;
}

.menu-main,.menu-menu-1-container {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-main>ul,.menu-menu-1-container>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-main>ul>li, .menu-menu-1-container>ul>li{
  margin-bottom: .9375rem;
  position: relative;
}

.menu-menu-1-container>ul>li.menu-item-has-children .menu-plus {
  margin-left: 60px;
  font-size: 36px !important;
  font-weight: normal !important;
  position: absolute;
  line-height: 36px;
  transition: all .15s ease-in-out;
  content: "+";
  right: 0;
  top:0;
  cursor: pointer;
  z-index: 99;
}

.menu-plus.open {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-main>ul>li>a,
.menu-main>ul>li>span,.menu-menu-1-container>ul>li>a,.menu-menu-1-container>ul>li>span {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000000;
}

/* .menu-plus {
  margin-left: 60px;
  font-size: 36px !important;
  font-weight: normal !important;
  display: inline-block;
  line-height: 36px;
  transition: all .15s ease-in-out;
} */

/* .menu-plus[aria-expanded="true"] {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} */

.menu-main>ul>li ul,.menu-menu-1-container>ul>li ul {
  padding: 1rem 0 1px .875rem;
  margin: 0;
  list-style: none;
  display: none;
}
.menu-menu-1-container>ul>li.menu-item-has-children.on ul{
  display: block;
}
.menu-main>ul>li ul>li,.menu-menu-1-container>ul>li ul>li {
  margin-bottom: .375rem;
}

.menu-main>ul>li ul>li>a,.menu-menu-1-container>ul>li ul>li>a,
.menu-main>ul>li ul>li>span,.menu-menu-1-container>ul>li ul>li>span {
  color: #999999;
}

.menu-main a,.menu-menu-1-container a,
.menu-main a:hover,.menu-menu-1-container a:hover {
  position: relative;
  text-decoration: none;
}

.menu-main a:before {
  content: attr(data-text);
  position: absolute;
  width: 0%;
  transition: width cubic-bezier(0.82, 0, 0.21, 1) 0.3s;
  color: #b14fa2;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}

.menu-main li.active>a:before,
.menu-main a:hover:before {
  width: 100%;
}

.menu-plus.open {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-menu-1-container>ul>li.menu-item-has-children.on ul{
  display: block;
}

/* Custom */
header {
  background-color: #FFF;
  padding: 5px 0;
  transition: all .15s ease-in-out;
	width:100%;
	position:relative;
	z-index:99;
}

header.fixed{
	position:fixed;
	top:0;
	left:0;
}

.logo-main {
  width: 200px;
}

.logo-main img {
  width: 100%;
}

.right-header {
  text-align: right;
  padding: 32px 0;
  position: relative;
}

.right-header a {
  display: inline-block;
  margin-left: 15px;
	font-size:14px;
}

.right-header .switcher{
	position:absolute;
	left:0;
	
}

.right-header .switcher .selected a,.switcher .option a{
	margin-left:0;
}

.right-header .mobile-numbmer {
  font-size: 14px;
  color: #B14FA2;
  line-height: 24px;
  text-decoration: none !important;
}

.right-header .mobile-numbmer img {
  display: inline-block;
}

.book-appointment {
  color: #000;
  border-radius: 40px;
  border: 1px #B14FA2 solid;
  padding: 5px 15px;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 85vh;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.black-overlay {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+69 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
}

.banner-text {
  width: 100%;
  position: relative;
  z-index: 1;
}

.banner-text h3 {
  font-weight: bold;
  color: #FFF;
  font-size: 4em;
  margin-bottom: 30px;
}

.btn-1 {
  display: inline-block;
  padding: 10px 24px;
  background: white;
  color: #B14FA2;
  font-size: 20px;
  border-radius: 30px;
}

.btn-2 {
  line-height: 36px;
  color: #FFF;
  font-size: 20px;
  margin-left: 20px;
}

.btn-2:hover {
  color: #FFF;
}

section {
  padding: 80px 0;
  position: relative;
}

.home-heading {
  text-align: center;
}

.home-heading h2 {
  color: black;
  font-size: 36px;
  font-weight: bold;
}

.home-heading h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #B14FA2;
  margin-bottom: 8px;
}

.home-heading p {
  font-size: 16px;
  line-height: 1.5;
  width: 60%;
  margin: 0 auto;
}

.home-heading.text-left {
  text-align: left;
}

.services-box {
  margin-top: 30px;
}

.sr-box {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  height: 300px;
  width: 100%;
  padding: 60px 40px;
  margin-bottom: 30px;
}

.sr-box h3 {
  font-size: 36px;
  font-weight: bold;
  color: #FFF;
  width: 100%;
  
}

.sr-box p {
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.service-btn {
  text-align: center;
  margin-top: 60px;
}

.service-btn a {
  margin: 0 15px;
}

.btn {
  color: #000;
  padding: 10px 24px;
  background: #FFF;
  text-align: center;
  border-radius: 30px;
}

.btn-border {
  border: 1px #B14FA2 solid;
}

.btn-fill {
  background: #B14FA2;
  color: #fff;
}

.btn-full-size {
  min-width: 275px;
}

.how-section {
  position: relative;
  margin-top: 60px;
  min-height: 400px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 105%;
  background-image: url('../img/border.svg');
}

.box {
  text-align: center;
}

.img-hw {
  text-align: center;
  border-radius: 120px;
  height: 120px;
  width: 120px;
  line-height: 115px;
  border: 3px #8FB4B4 solid;
  background: #fff;
  display: inline-block;
  margin-bottom: 30px;
}

.img-hw img {
  width: 60px;
}

.box h3 {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.box p {
  font-size: 14px;
}

.box1 {
  position: relative;
  top: 50px;
}

.box3 {
  position: relative;
  top: 110px;
}

.about .home-heading {
  margin-bottom: 30px;
}

.abt-text {
  padding-top: 80px;
}

.about p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
}

.abt-img {
  text-align: right;
}

.at-img {
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
border: 5px solid #8F41D5;
}

.at-img img {
  width: 100%;
}

.credentials {
  background: #F9DEFF;
}

.credentials::before {
  content: "";
  width: 240px;
  height: 270px;
  position: absolute;
  right: 10%;
  top: 0;
  background: transparent url(../img/l-1.svg) no-repeat;
  filter: opacity(0.6);
}

.logo-box {
  margin-top: 60px;
  text-align: center;
}

.logos {
  width: 70%;
  display: inline-block;
}

.logos img {
  mix-blend-mode: darken;
  width: 100%;
}

.book-appointment-section {
  position: relative;
  margin-top: -125px;
  background: #8F41D5;
  border-radius: 20px;
  margin-bottom: 60px;
}

.book-text {
  height: 100px;
  line-height: 40px;
  color: #FFF;
  padding: 30px;
  font-size: 24px;
}

.book-text a {
  float: right;
}

.btn-white {
  border-color: #FFF;
  color: #FFF;
  background: transparent;
}

.leaf-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 250px;
}

.leaf-2 {
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: 0;
}

.leaf-1 img,
.leaf-2 img {
  width: 100%;
}

/* hardik css start */
.service-wrapp {margin-bottom: 80px;}

.service-wrapp .home-heading {
  margin-bottom: 50px;
}

.service-card {
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 8px 30px rgba(143, 65, 215, 0.15);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: inline-block;
  min-height:500px;
}

.service-cardImg {
  display: block;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.service-cardImg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
  transform: scale(1);
}

.service-cardImg img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}

.service-cardText {
  margin-top: 20px;
  padding: 0 15px;
  color: #0F0E0F;
}

.service-cardText h4 {
  color: #0F0E0F;
  font-size: 24px;
}

.service-cardText p {
  color: #0F0E0F;
  font-size: 18px;
}

.foot-right {
  display: flex;
  justify-content: space-between;
  padding-left: 60px;
}

.foot-linkWrap {width:33.33%}

.foot-linkWrap h5 {
  font-size: 18px;
  color: #DD38B4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.foot-linkWrap ul {
  padding: 0;
}

.foot-linkWrap ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.foot-linkWrap ul li a,.foot-linkWrap ul li p {
  color: #0F0E0F;
  font-size: 13px;
}

footer {
  background: #FBF9FC;
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
  /* margin-top: 200px; */
}

.footer-logo img{
	width:100%;
}

.book-appointment-section.t2 {
  position: relative;
  margin-top: 0;
  top: -50px;
  background: #8F41D5;
  border-radius: 20px;
  margin-bottom: 0;
  z-index: 9;
}

.f-leaf-2,
.f-leaf-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.f-leaf-1 {
  max-width: 130px;
}

.f-leaf-2 img,
.f-leaf-1 img {
  width: 100%;
}

.f-leaf-2 {
  top: inherit;
  bottom: 10%;
  right: 0;
  left: inherit;
  width: 170px;
}

.foo-bott {
  border-top: 1px solid #d8d8d8; 
  display: block;
  padding-top: 30px;
  position:relative;
  text-align:center;
}
.foo-bott a{
	text-align:center;
}

.foo-bott p{
	text-align:left;
	position:absolute;
	left:0;
}

.foo-bott p,
.foo-bott a {
  font-size: 16px;
  color: #47404E;
  margin-bottom: 0;
}

.foo-bott a {
  color: #B14FA2;
}

.foo-bott a span {
  color: #47404E;
  cursor: initial;
}

section.instafeeds {
  padding: 120px 0 0;
  overflow: hidden;
}

.fullGride-imgWrap {
  margin-bottom: 60px;
}

.img1Box {
  width: 100%;
  position: relative;
  padding-top: 35%;
  overflow: hidden;
  border-radius: 15px;
}

.img1Box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 1s ease;
  transform: scale(1);
}

.comm-pageTitle {
  text-align: center;
}

.hdn-1 {
  text-align: center;
  font-weight: bold;
  font-size: 3em;
  margin: 0;
  margin-bottom: 40px;
}

.comm-pageTitle .pagination {
  display: flex;
  justify-content: center;
  padding: 25px 0;
}

.comm-pageTitle .pagination li a {
  font-size: 18px;
  color: #47404E;
  margin-bottom: 0;
  text-transform: capitalize;
  padding-left: 10px;
  font-weight: 500;
}

.comm-pageTitle .pagination li a:hover {
  color: #8F41D5;
  /* font-weight: 500; */
}

.comm-pageTitle .pagination li {
  padding-left: 10px;
}

.comm-pageTitle .pagination li :first-of-type {
  padding-left: 0;
}

.commText-conWrapp {
  margin-bottom: 100px;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.commText-conWrapp.px-20p{
	margin:100px auto;
}

.commText-conWrapp.px-20p ul {
  padding: 0 25%;
  text-align: left;
}

.commText-conWrapp ul {}

.commText-conWrapp ul li {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.commText-conWrapp ul li:last-of-type {
  margin-bottom: 0;
}

.abo-2 .container::before {
  content: "";
  width: 240px;
  height: 270px;
  position: absolute;
  right: -60px;
  top: 0;
  background: transparent url(../img/our-approch-1.png) no-repeat;
  filter: contrast(0.1) opacity(0.5);
}

.innerBanner {
  background: url(../img/in-banner-01.jpg) no-repeat center center / cover;
}

.innerBanner .ib-det {
  text-align: center;
  padding: 110px 0;
}

.innerBanner .ib-det .hdn-1 {
  font-size: 64px;
	color:#FFF !important;
}

footer.foot-mar-1 {
  margin-top: 100px;
}

.feePage-content {
  padding-left: 10%;
  padding-right: 10%;
}

.pricing-card {
  margin-bottom: 30px;
  padding-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0px 1px 20px rgba(143, 65, 215, 0.1);
  -webkit-border-radius: 10px;
  text-align: center;
	padding-top:20px;
}

.pricing-card--img {
  display: block;
  padding-top: 37%;
  position: relative;
  overflow: hidden;
}

.pricing-card--img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card--cont h4 {
  color: #8F41D5;
  font-size: 24px;
  font-weight: 500;
  margin: 30px 0 15px;
  text-transform: capitalize;
}

.pricing-card--cont h6 {
  color: #0F0E0F;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 15px;
}

.pricing-card--cont h3 {
  color: #DD38B4;
  font-size: 60px;
  font-weight: bold;
  padding: 20px 0 20px;
  font-family: 'Nunito',
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 30px 0 0;
}

.pricing-card--cont h3:before {
  content: "";
  width: 80px;
  height: 2px;
  border-top: 1px solid #DADCDE;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.pricing-card--cont h3 span {
  display: inline-block;
  font-size: 32px;
  padding-right: 10px;
}

.pricing-card--cont p {
  color: #39353D;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-fill.bg-blue {
  background: #8F41D5;
}

.commText-conWrapp.fees-1 {
  margin-top: 75px;
}

.fees-1-text li {}

.fees-1-text li .fea-1 {
  width: 35px;
  max-width: 35px;
}

.fees-1-text li h4 {
  color: #8F41D5;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  padding: 25px 0;
}

.about.aboutIntro .abt-text {
  margin: auto 0;
  padding-top: 0;
  padding-left: 3%;
}

.abt-img.type-1 .at-img,
.abt-img.type-3 .at-img {
  display: block;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.abt-img.type-1 .at-img img,
.abt-img.type-3 .at-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-img.type-3 .at-img {
  padding-top: 65%;
  width: 80%;
  margin-left: auto;
}

.about.aboutIntro .abt-text h4 {
  color: #DD38B4;
  margin-bottom: 20px;
}

.abt-text.tt-3 {
  padding-top: 0;
  margin: auto 0;
}

.about.tt4 {
  text-align: center;
}

.about.tt4 h2 {
  font-size: 30px;
  font-weight: 500;
}

.about.tt4 .row {
  justify-content: center;
}

.about.aboutIntro {
  padding: 80px 0 100px;
  overflow: visible;
}

.about.aboutIntro::before {
  content: "";
  width: 30%;
  height: 100%;
  position: absolute;
  left: -10%;
  top: 0;
  background: transparent url(../img/bg-style1.svg) no-repeat;
  background-repeat-y: repeat;
}

.contDetail-wrapp {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contDetail--left {
  width: 60%;
}

.contDetail--right {
  width: 40%;
  padding-left: 7%;
}

.form-field {
  border: transparent;
  height: 50px;
  width: 100%;
  z-index: 2;
  padding: 0 20px;
  position: relative;
  background: transparent;
  font-size: 16px;
  color: #1c2d41;
  font-weight: 400;
  outline: none;
  border-radius: 20px;
  transition: .2s all ease;
  -webkit-transition: .2s all ease;
  -moz-transition: .2s all ease;
  -ms-transition: .2s all ease;
  -o-transition: .2s all ease;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

::placeholder {
  color: #959397;
  font-size: 16px;
}

input.form-field {
  border: 1px solid #DADCDE;

}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

textarea.form-field {
  border: 1px solid #DADCDE;
}


.form-group.w48 {
  width: 48%;
}

.form-textarea-group.w100 {
  width: 100%;
}

.formWrapp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.form-textarea-group .form-field {
  height: 150px;
  line-height: 1.3;
  padding: 15px 20px;
  resize: none;
}



.contect-right--box {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.contectDet-title {
  /* display: flex; */
  margin-right: 15px;
}

.cotTitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #DD38B4;
}


.contect-right--box a {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

.mb-120{
  margin-bottom: 120px;
}

.wpcf7-submit {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #FFF;
  background: #8F41D5;
  border:none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 50px;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.h-bann-next {
  right: 60px;
  padding: 20px;
}
.h-bann-prev {
  left: 60px;
  padding: 20px;
}
main {
  position: relative;
}
.pageStyle-wrapp--1 {
  position: absolute;
  z-index: 999;
  TOP: 88vh;
  left: -170px;
}
#pageStyle-01 {
  position: relative;
  width: 275px;
  height: 250px;
  margin: 20px 0;
  background: #F0DDF4;
  /* border-radius: 50% / 10%; */
  border-radius: 340% / 170%;
  color: white;
  text-align: center;
  text-indent: .1em;
}
#pageStyle-01:before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -5%;
  left: -5%;
  background: inherit;
  /* border-radius: 5% / 50%; */
  border-radius: 15% / 50%;
}
.pageStyle-wrapp--2.t1 {
  position: absolute;
  z-index: -999;
  TOP: -40px;
  right: 10px;
  transform: rotate(145deg);
}
#pageStyle-02 {
  position: relative;
  width: 540px;
  height: 440px;
  margin: 20px 0;
  background: #E5EEEE;
  /* border-radius: 50% / 10%; */
  border-radius: 340% / 170%;
  color: white;
  text-align: center;
  text-indent: .1em;
}
#pageStyle-02:before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -5%;
  left: -5%;
  background: inherit;
  /* border-radius: 5% / 50%; */
  border-radius: 15% / 50%;
}
/* Mobail Header */
.nav-but-wrap {
  position: relative;
  display: inline-block;
  float: right;
  padding-left: 0;
  padding-top: 0;
  margin-top: 0;
  transition: all .6s ease-out;
  z-index: 999;
}
.menu-icon {
  height: auto;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #B14FA2;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
  width: 30px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 30px;
  float: right;
  margin-bottom: 0;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}
.mob-nav {
  display: none;
}
.nav {
  position: fixed;
  z-index: 98;
}
.nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 26, 83, .60);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
}
.nav:after {
  background: #1E1A53 !important;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.nav:before {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}
.nav__content {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  /* border: 1px solid #000; */
  margin-top: 0;
  -webkit-transform: none;
  transform: none;
  width: 100%;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #1E1A53;
  overflow: hidden;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 3px;
  -webkit-transform: translate(100px, 0%);
  transform: translate(100px, 0%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-top: 0;
  margin-bottom: 15px;
}
.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 600;
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav__list-item a:hover:after {
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}
.nav__list-item a:hover {
  color: rgba(255, 255, 255, 1);
}
.nav__list-item.active-nav a {
  color: rgba(255, 255, 255, 1);
}
body.nav-active .nav__content {
  visibility: visible;
}
body.nav-active .menu-icon__line {
  background-color: #fff;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
  transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
  transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before,
body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0;
}
body.nav-active .nav:after {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  -moz-transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  -ms-transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  -o-transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  margin-bottom: 30px;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
/*--------------------------------------------------- #Navigation  end*/
.abt-img {
  z-index: 41;
  text-align: right;
}
.abo-2 .container::before {
  z-index: 5;
}
.pageStyle-wrapp--2.t3 {
  width: max-content;
  position: absolute;
  right: -320px;
  bottom: 10px;
  transform: rotate(165deg);
}
.pageStyle-wrapp--1.t3 {
  top: 500px;
}
.main-section {
  position: relative;
  overflow: hidden;
}
.pageStyle-wrapp--2.t3 #pageStyle-02 {
  width: 440px;
  height: 340px;
}
.pageStyle-wrapp--2.t3.ti {
  top: 50%;
  bottom: inherit;
}

.fees-image{
	text-align:center;
}

.fees-image img{
	max-width:90%;
	width:80%;
}
.footer-social-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: -10px;
    margin-bottom: -10px;
}
.footer-social-inline a {
    margin-right: 10px;
    margin-bottom: 10px;
    color: #8F41D5;
}
.footer-social-inline a i {
    font-size: 24px;
    line-height: 1;
    display: block;
}

/****** Blog Styling ******/
.page.page-id-366 main#primary {
    margin-bottom: 50px;
}
.page.page-id-366 header.entry-header.fixed, 
.page.page-id-366 header.entry-header {
    display: none;
}

.pt-cv-content-item {
    position: relative;
    min-height: 100px;
    height: 100%;
    margin-bottom: 30px;
    clear: both;
    border: 1px solid #b14fa2;
    border-radius: 20px;
    padding: 0px!important;
}
img.pt-cv-thumbnail {
    padding: 0;
    display: block;
    margin-bottom: -2px;
    width: 100%;
}
.pt-cv-view h4.pt-cv-title a {
    font-family: 'Montserrat', sans-serif;
    color: black!important;
    font-size: 28px;
    font-weight: bold;
}
.pt-cv-content {
    font-size: 16px;
}
a._self.pt-cv-readmore.btn.btn-success {
    background: #B14FA2;
    color: #fff;
    min-width: 275px;
    margin: 10px 0px;
    padding: 10px 24px;
    text-align: center;
    border-radius: 30px;
    border-color: #B14FA2;
}
a._self.pt-cv-readmore.btn.btn-success:hover {
    background-color: #FFF!important;
    color: #B14FA2!important;
}
.pt-cv-meta-fields a {
    color: #b14fa2;
    text-transform: uppercase;
}
h4.pt-cv-title, .pt-cv-content, .pt-cv-meta-fields {
    padding: 0px 20px;
}


.pt-cv-content-item:hover {
    background-color: #f6f3ee;
    box-shadow: 5px 5px 10px 2px #00000044;
}


.widget {
    background: #FBF9FC;
}
.widget {
    margin-bottom: 30px;
    padding: 30px 20px;
    border-radius: 3px;
}
.widget {
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    position: relative;
    float: left;
}
.widget ul li {
    list-style: disc!important;
    padding-left: 0px;
    margin-left: 20px;
}
.widget ul li a {
    color: #b14fa2;
}

.post.type-post .post-thumbnail img {
    text-align: center;
    margin: 10px;
    border: 2px solid #8f41d5;
}
.post.type-post .post-thumbnail {
    text-align: center;
}


.archive.category.category-blog article.post.type-post {
    position: relative;
    height: 100%;
    margin-bottom: 30px;
    clear: both;
    border: 1px solid #b14fa2;
    border-radius: 20px;
    padding: 0px!important;
    max-width: 77%;
    margin: 20px auto;
}
.archive.category.category-blog article.post.type-post .post-thumbnail img {
    padding: 0;
    display: block;
    margin-bottom: -2px;
    width: 100%;
}
.archive.category.category-blog article.post.type-post .entry-title a {
    font-family: 'Montserrat', sans-serif;
    color: black!important;
    font-size: 28px;
    font-weight: bold;
}
.archive.category.category-blog article.post.type-post header.entry-header, 
.archive.category.category-blog article.post.type-post .entry-content, 
.archive.category.category-blog article.post.type-post .entry-footer {
    margin: 0px 20px;
}
.archive.category.category-blog article.post.type-post .container {
    padding: 0px!important;
}
.page-id-366 .innerBanner{    margin: 0px 0 25px 0px; }
.page-id-366 .col-md-9 {   padding:0 90px; }
.search-field{ margin: 12px 0;
    width: 100%;
    padding: 13px 13px 12px 20px;
    position: relative;
    border-width: 2px;
    font-size: 100%;
    border-radius: 3px;
}

.single-post header.fixed {   text-align: center; } 
.single-post #secondary , time.updated{    display: none;}
.entry-footer.container span {display: none;}

body.page-id-97 .thankyoupage{display: none;}
body.page-id-408 .contactpage{display: none;}

.entry-content ul,
.entry-content ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 40px;
}
.entry-content ul,
.entry-content ul li{
    list-style: disc;
}
.entry-content ol,
.entry-content ol li{
    list-style: decimal;
}
.entry-content ul li,
.entry-content ol li {
    margin-bottom: .8rem;
}
.entry-content ul.lg-text li,
.entry-content ol.lg-text li {
    font-size: 1.2rem;
    font-weight: 600;
}
#announcement-bar {
     background-color: #643b7a;
     margin-top: -5px;
}
#announcement-bar:hover {
	background-color:#482a58;
}
#announcement-bar a.btn{
	border-color: #fff;
	padding: 0;
	border-width: 0 0 1px 0;
	border-radius: 0;
	color: #fff;
	background-color: transparent;
}
#announcement-bar a.btn:hover{
	border-color: #fff;
	color:#fff;
	background-color:transparent;
}