/*-------------------------------- 
# Top bar menu
----------------------------------*/
.header-top-area {
    padding: 15px 0;
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #ebebeb;
}
.top-bar-left-content a,
.header-info a {
    color: #8a8a8a;
}
.header-info span {
  font-family: "droid_serifregular";
  font-size: 14px;
  position: relative;
}
.header-info span + span {
    margin-left: 8px;
    padding-left: 8px;
}
.header-info span + span::before {
    background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
    content: "";
    height: 20px;
    left: -2px;
    position: absolute;
    top: 0;
    width: 1px;
}
/*-------------------------------- 
# Top bar left side menu
----------------------------------*/

.top-bar-left-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.top-bar-left-menu ul li {
    display: inline-block;
}
.top-bar-left-menu ul li a {
    padding: 5px 10px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    color: #fff;
}
.top-bar-left-content a:hover,
.header-info a:hover,
.header-social ul li a:hover,
.top-bar-left-menu ul li a:hover {
    color: #303f9f;
}
.top-bar-left-content {
    color: #fff;
}
.top-bar-left-content p {
    margin-bottom: 0;
}
/*-------------------------------- 
# Header Top Social icons
----------------------------------*/

.header-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-social ul li {
    display: inline-block;
}
.header-social ul li a {
    color: #fff;
    font-size: 16px;
}
.header-social.text-white > a {
    color: #fff;
}
.menu-middle-area {
    border-top: 1px solid #ddd;
}
.header-social ul li + li {
    margin-left: 15px;
}
/*-------------------------------- 
# Header Search
----------------------------------*/

.header-search {
    margin: 29px 0;
}
.header-search form {
    display: block;
    position: relative;
}
.header-search form input {
    border: 1px solid #ddd;
    height: 40px;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    width: 250px;
}
.header-search form button {
    background-color: transparent;
    border: 0 none;
    color: #999;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 40px;
}
.header-search form button i {
    display: block;
    line-height: 38px;
}
.header-search form button:hover {
    color: #26c7cc;
}
/**
* Header Transparent Enable
*/

header.header-transparent {
    background: transparent none repeat scroll 0 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 1px 3px rgba(50, 50, 50, 0);
}
.logged-in.admin-bar header.header-transparent {
    top: 32px;
}

/**
* Header Sticky 
*/

header.is-sticky {
    position: fixed;
    left: 0;
    top: 0 !important;
    right: 0;
    background-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
body.logged-in.admin-bar .is-sticky {
    padding-top: 32px;
}
header.is-sticky .default-menu nav > ul > li > a {
    padding: 20px 0px;
}
header.is-sticky .default-menu nav > ul > li {
}

.is-sticky .buy__now__btn {
  margin-top: 8px;
}
/**
* Default Menu Style
*/
.default-style-one nav {
  float: left;
}
.buy__now__btn {
  float: right;
  margin-left: 40px;
  margin-top: 34px;
}
.default-menu nav > ul {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}
.default-menu nav > ul > li {
    position: relative;
    margin-right: 40px;
}
.default-menu nav > ul > li:last-child{
    padding-right: 0;
}
.default-menu nav > ul > li > a {
    display: flex;
    font-size: 16px;
    line-height: 30px;
    padding: 44px 0px;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    text-transform: uppercase;
    color: #303030;
}
.default-menu nav > ul > li:hover > a{
    color: #303f9f;
}
.primary-nav-wrap ul > li ul.sub-menu {
  background-color: #ffffff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  list-style: outside none none;
  margin-left: 0;
  margin-top: 30px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 270px;
  z-index: -999;
}
.default-menu nav > ul > li:hover > .sub-menu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
.primary-nav-wrap ul > li ul.sub-menu li {
    position: relative;
}
.primary-nav-wrap ul > li ul.sub-menu li a {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  font-size: 14px;
  line-height: 25px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
    color: #303030;
}
.primary-nav-wrap ul > li ul.sub-menu li:hover a {
background: #fafafa;
color: #222;
}
.primary-nav-wrap ul > li ul.sub-menu li .sub-menu {
    top: 0;
    left: 100%;
    right: auto;
}
.primary-nav-wrap ul > li ul.sub-menu li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
}
.primary-nav-wrap ul > li ul.sub-menu li .sub-menu li .sub-menu li .sub-menu {
    left: 100%;
    right: auto;
}
.primary-nav-wrap ul > li ul.sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
}
.primary-nav-wrap ul > li ul.sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
    left: 100%;
    right: auto;
}
/* Last 2 Element drop-down position */

.last-elements .sub-menu {
    left: auto;
    right: 0;
}
.last-elements .sub-menu li .sub-menu {
    top: 0;
    left: auto;
    right: 100%;
}
.last-elements .sub-menu li .sub-menu li .sub-menu {
    right: auto;
    left: 100%;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu {
    right: 100%;
    left: auto;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
    right: auto;
    left: 100%;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
    right: 100%;
    left: auto;
}
/**
* Hover Animation 
*/

.primary-nav-wrap ul > li ul.sub-menu li:hover > .sub-menu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
/**
* Mobile Menu 
*/

.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
    z-index: 9;
}
/**
* Menu Open/Close Button
*/
a.meanmenu-reveal {
  height: auto;
  line-height: 1;
  padding: 0;
  top: -48.5px;
  transform: translateY(-50%);
  width: auto;
}
a.meanmenu-reveal:hover,
a.meanmenu-reveal:focus {
    color: #303f9f;
    outline: medium none;
}
a.meanmenu-reveal i {
  border: 1px solid #444;
  color: #444;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 3px 7px;
  width: 41px;
}
/**
* Mobile Menu Nav
*/

.mean-nav {
    background-color: transparent;
    margin: 0;
}
.mean-nav a.mean-expand {
    border: medium none !important;
    color: #464646 !important;
    font-size: 18px !important;
    height: 36px;
    line-height: 36px;
    padding: 0 !important;
    text-align: center;
    width: 30px !important;
}
.mean-nav a.mean-expand:hover {
    color: #303f9f !important;
}
.mean-nav a.mean-clicked {
    font-size: 22px !important;
}
.mean-nav > ul {
    float: left;
    padding: 15px 0;
}
.mean-nav > ul > li > a {
    border-color: #eee;
    color: #464646;
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    padding: 6px 30px 6px 0;
}
.mean-nav > ul > li > a:hover,
.mean-nav > ul > li.current_page_item > a {
    color: #303f9f;
}
.mean-container .mean-nav > ul {
  height: 230px;
  overflow-y: auto;
  padding: 0 15px;
}

/**
* Mobile Sub & Mega menu
*/
.mean-nav .sub-menu,
.mean-nav .mega-menu {
    box-shadow: none;
    float: left;
    opacity: 1;
    position: static;
    -webkit-transition: none 0s ease 0s;
    transition: none 0s ease 0s;
    visibility: visible;
    z-index: 1;
}
.mean-nav ul li li {
    margin: 0;
    padding: 0;
}
.mean-nav ul li li a {
    border-color: #eee;
    color: #464646;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    opacity: 1;
    padding: 6px 30px 6px 15px;
    text-transform: uppercase;
    width: 100% !important;
    border-bottom: none;
}
.mean-nav .sub-menu li:hover > a {
    color: #464646;
}
.mean-nav .sub-menu li.current_page_item:hover > a {
    color: #303f9f;
}
.mean-nav ul li li.current_page_item > a,
.mean-nav ul li li > a:hover,
.mean-nav .sub-menu li > a:hover {
    color: #303f9f;
}
.mean-nav ul li li li a {
    padding: 6px 30px 6px 25px;
}
.mean-nav ul li li li li a {
    padding: 6px 30px 6px 35px;
}
.mean-nav ul li li li li li a {
    padding: 6px 30px 6px 45px;
}
.mean-nav ul li li li li li li a {
    padding: 6px 30px 6px 55px;
}

/**
* Text Logo Style 
*/

.site-title h3,
.site-title p {
    margin: 0;
}
.site-title a {
    color: #333;
    display: block;
    font-size: 20px;
    font-weight: 700;
}

/**
* Logo Position
*/

.header-menu-wrap {
    -ms-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.header-menu-wrap .site-title {
    min-width: 150px;
    flex-shrink: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
.header-menu-wrap.logo-left {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.header-menu-wrap.logo-center {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
}
.header-menu-wrap.logo-center > div:nth-child(2) {
    -ms-align-self: flex-start;
    align-self: flex-start;
}
.header-menu-wrap.logo-right {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.header-menu-wrap.logo-left-top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.header-menu-wrap.logo-center-top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
}
.header-menu-wrap.logo-right-top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-end;
    align-items: flex-end;
}
.header-menu-wrap.logo-center,
.header-menu-wrap.logo-left-top,
.header-menu-wrap.logo-center-top,
.header-menu-wrap.logo-right-top {
    padding-top: 15px;
}
header.header-default {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
/**
* Search Option
*/

.page-title-search-box input {
    background: transparent;
    border-radius: 0;
    padding: 10px 20px;
}
.page-title-search-box input:focus {
    outline: none;
}
.page-title-search-box button {
    display: none;
}
.page__title__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: wrap column;
}
.page__title__inner.breadcrumbs-title-left {
    justify-content: flex-start;
    align-items: flex-start;
}
.page__title__inner.breadcrumbs-title-center {
    justify-content: center;
    align-items: center;
}
.page__title__inner.breadcrumbs-title-right {
    justify-content: flex-end;
    align-items: flex-end;
}
/**
* Page Title and Breadcrumbs
*/
.phc__breadcrumb.bg__gray {
  align-items: center;
  background: #fafafa none repeat scroll 0 0;
  display: flex;
  min-height: 100px;
  padding: 30px 0;
  text-align: center;
}
.page__title__wrapper {
    background: #F2F2F2;
}
.page__title__inner {
  padding: 110px 0;
}

.breadcrumbs li, .breadcrumbs li a {
  color: #666;
  font-family: "droid_serifregular";
  font-size: 18px;
  transition: all 0.4s ease 0s;
}
.bread-current,.breadcrumbs li a:hover {
  color: #303f9f;
}
.breadcrumbs li i{
    font-size: 13px;
}
h2.page-title {
    padding-bottom: 10px;
    margin: 10px 0;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
}
.page__title__inner > p {
  color: #fff;
  margin-bottom: 0.8em;
}
h2.title_page {
  color: #444;
  font-size: 34px;
  margin: 0;
  padding: 0;
}
.page__title__inner .page-subtitle {
    margin-bottom: 0;
}
.breadcrumbs_wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -10px;
    margin-right: -10px;
}
.breadcrumbs_wrap ul li {
    display: inline-block;
}
.breadcrumbs_wrap ul li {
	padding: 0 4px;
	word-break: break-word;
    line-height: 1.5;  
}
.entry-content p {
    word-break: break-word;
}
section.page__title__wrapper {
    position: relative;
}
section.page__title__wrapper::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.page__title__wrapper.text-center {
    justify-content: center;
    align-items: center;
}
section.page__title__wrapper.full-height,
section.page__title__wrapper.full-height .container,
section.page__title__wrapper.full-height .container .row,
section.page__title__wrapper.full-height .container .row div[class*="col-"],
section.page__title__wrapper.full-height,
section.page__title__wrapper.full-height .container-fluid,
section.page__title__wrapper.full-height .container-fluid .row,
section.page__title__wrapper.full-height .container-fluid .row div[class*="col-"] {
    height: 100vh;
}
section.page__title__wrapper.full-height .container .row div[class*="col-"],
section.page__title__wrapper.full-height .container-fluid .row div[class*="col-"] {
    display: flex;
    align-items: center;
}
section.page__title__wrapper.half-height,
section.page__title__wrapper.half-height .container,
section.page__title__wrapper.half-height .container .row,
section.page__title__wrapper.half-height .container .row div[class*="col-"],
section.page__title__wrapper.half-height,
section.page__title__wrapper.half-height .container-fluid,
section.page__title__wrapper.half-height .container-fluid .row,
section.page__title__wrapper.half-height .container-fluid .row div[class*="col-"] {
    height: 50vh;
}
section.page__title__wrapper.half-height .container .row div[class*="col-"],
section.page__title__wrapper.half-height .container-fluid .row div[class*="col-"] {
    display: flex;
    align-items: center;
}
section.page__title__wrapper .page__title__inner {
    width: 100%;
}
.breadcrumbs_wrap ul,
.breadcrumbs_wrap ul li,
.breadcrumbs_wrap ul li a {
    transition: 0.3s !important;
}
/**
* Page Wrapper
*/

.page-sub-title p {
    margin-bottom: 10px;
}
/**
* Default Footer
*/
footer .default-footer {
  background: #212121 none repeat scroll 0 0;
  color: #ddd;
  padding: 30px 0;
  position: relative;
  text-align: center;
}
footer .default-footer:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0, 0);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/**
* Footer fixed enable effect
*/

footer.fixed-footer-enable {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
}
/**
* Not found / 404 page 
*/

.page-not-found-wrap {
    height: 700px;
    width: 100%;
    background: #f6f6f6;
}
.page-not-found-wrap .container,
.page-not-found-wrap .container .row,
.page-not-found-wrap .container .pnf-inner-wrap,
.page-not-found-wrap .container [class*="col-"] {
    height: 100%;
}
.page-not-found-wrap .container .pnf-inner-wrap {
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.pnf-inner img {
    max-height: 350px;
    margin-bottom: 30px;
}
.pnf-inner > h1 {
    color: #333;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.pnf-inner > h2 {
    color: #333;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}
.pnf-inner > p {
    color: #333;
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
}
.pnf-inner a.btn {
    background-color: #303f9f;
    border: 1px solid #303f9f;
    border-radius: 2px;
    color: #fff;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-top: 50px;
    padding: 0 30px;
    text-transform: uppercase;
}
.pnf-inner a.btn:hover {
    background-color: #303f9f;
}
.align-center {
    align-items: center;
    display: flex;
}
/* Breadcrumb */

.breadcrumb-wrapper .breadcrumb {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    margin: 0;
    padding: 0;
}
.breadcrumb-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-wrapper .breadcrumb li a {
    color: #fff;
    font-size: 16px;
}
.breadcrumb-wrapper .breadcrumb.black-text li a {
    color: #444
}
.breadcrumb-wrapper .breadcrumb.black-text li.active {
    color: #888
}
.breadcrumb-wrapper .breadcrumb li.active {
    color: #ccc;
}
/*-------------------------------
  Button style
--------------------------------*/
.htc__btn {
  background: #303f9f none repeat scroll 0 0;
  border-radius: 5px;
  color: #ffffff;
  display: inline-block;
  font-family: "Source Sans Pro",sans-serif;
  font-size: 16px!important;
  height: 50px;
  letter-spacing: 2px;
  line-height: 50px;
  outline: medium none;
  padding: 0 30px;
  position: relative;
  transition: all 0.4s ease 0s;
  z-index: 2;
}
.htc__btn::after {
  border-radius: 5px;
  content: "";
  position: absolute;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

.htc__btn::after {
  background: #212121  none repeat scroll 0 0;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
}

.htc__btn:hover::after,
.htc__btn:active::after {
  height: 100%;
}


.htc__btn:hover,
.htc__btn:active {
  color: #fff;
}

.slider__inner h1 {
    color: #303f9f;
    font-family: Source Sans Pro;
    font-size: 56px;
    font-weight: 900;
    line-height: 65px;
    text-transform: uppercase;
}
.animation-wrapper {
  padding: 0 15px;
}
.htc__support__inner h3 {
  font-family: "droid_serifregular";
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
.htc__support__inner h2 {
    font-family: "droid_serifbold";
    font-size: 40px;
    margin-bottom: 12px;
    text-transform: capitalize;
    margin-top: 0;
}
.htc__support__inner h4 {
  color: #505050;
  font-family: "droid_serifregular";
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0;
}
.htc__support__inner h4 span {
    font-weight: 'droid_serifbold';
}
.htc__support__inner h4 span {
    color: #505050;
    font-size: 26px;
    font-family: "droid_serifbold";
}
.htc__support__inner span+span {
    font-family: 'droid_serifregular';
    text-transform: lowercase;
    font-size: 16px;
    color: #505050;
}
.htc__spt__dai p {
    font-family: "droid_serifbold_italic";
    font-size: 24px;
}
.htc__spt__dai p a {
    color: #303f9f;
    padding-left: 6px;
}
.htc__support__wrap {
    align-items: center;
    display: flex;
}
.htc__support__details p + p {
    margin-top: 21px;
}

.htc__try__details .content-position{font-size: 40px;color: #fff;}

/*---------------------------------------
  04. Try Solve Area
----------------------------------------*/
.htc__try__details {
  border: 6px solid #c0c2d3;
  padding: 70px 52px;
  position: relative;
  z-index: 2;
}
.ht__sin__solve h4 {
  color: #303030;
  font-family: "droid_serifregular";
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 17px;
  margin-top: 0;
  text-transform: capitalize;
}
.ht__sin__solve p {
  color: #606060;
  line-height: 25px;
  margin-bottom: 0;
}
.service_max_width{max-width: 812px;}
.ht__therapy__icon i {
    color: #303030;
    font-size: 25px;
}
.ht__therapy__icon {
  margin-right: 11px;
  margin-top: 3px;
}
.ht__therapy{
    display: flex;
}
.services-area [class*="col-"]:nth-child(n+3) .ht__therapy{
    margin-top: 45px;
}
.ht__therapy.boxstyle {
  border: 1px solid #f5f5f5;
  padding: 30px;
  transition: all 0.3s ease 0s;
}
.ht__therapy.boxstyle:hover {
  border: 1px solid transparent;
  box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.1);
}
.service-2 .services-area [class*="col-"]:nth-child(n+3) .ht__therapy.boxstyle {
  margin-top: 30px;
}
/*---------------------------------------
  Service Details
----------------------------------------*/
.psy__ser__inner h2 {
  color: #303f9f;
  font-size: 30px;
  margin-bottom: 29px;
  margin-top: 0;
}
.psy__ser__inner ul {
  list-style: outside none none;
  padding-left: 27px;
  padding-right: 50px;
}
.psy__ser__inner ul li{
    position: relative;
    line-height: 24px;
}
.psy__ser__inner ul li + li {
  margin-top: 15px;
}
.psy__ser__inner ul li::before {
  color: #303030;
  content: "\f0f4";
  font-family: "IcoFont";
  font-size: 16px;
  left: -25px;
  position: absolute;
  top: 1px;
}
.psy__single__service__container .kc-container{
    margin: 0 -15px;
}

.psy__single__service__container + .next-prev{
    padding-right: 30px;
}
.psy__ser__inner p {
  padding-right: 30px;
}
.psy__blog__sidebar .sidebar-widget:last-child{
    margin-bottom: 0;
}

.psy__single__service__container + .next-prev{
    margin: 30px 0 0;
}

/*---------------------------------------
  Gallery
----------------------------------------*/
.section__title h2 {
  font-size: 40px;
  margin-bottom: 22px;
  margin-top: 0;
  font-weight: 500;
}
.section__title p {
  font-size: 16px;
  line-height: 24px;
  margin: auto;
  max-width: 600px;
  margin-bottom: 0;
}
.gallery_box {
    margin-top: 30px;
    position: relative;
}
.gallery_gutter .gallery_box {
  margin-top: 0;
}
.gallery__hover {
    bottom: 0;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all 0.4s ease 0s;
    width: 100%;
    z-index: 2;
}
.gallery__hover::before {
    background: #303f9f none repeat scroll 0 0;
    content: "";
    height: 100%;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.gallery__hover__info {
    bottom: 46px;
    left: 54px;
    padding: 16px;
    position: absolute;
    z-index: 3;
}
.gallery__hover__info a {
    color: #ffffff;
    font-family: 'droid_serifbold';
    font-size: 18px;
}

.gallery_box:hover .gallery__hover {
    opacity: 1;
}
.gallery__thumb {
    transition: all 0.5s ease 0s;
}
.gallery_box:hover .gallery__thumb {
    transform: scale(1.2);
}
.gallery_box {
    overflow: hidden;
}
.gallery__hover__info a::before {
  background: #94a2ff none repeat scroll 0 0;
  bottom: -21px;
  content: "";
  height: 170px;
  left: -3px;
  position: absolute;
  width: 2px;
}
.gallery__hover__info a::after {
  background: #94a2ff none repeat scroll 0 0;
  bottom: 3px;
  content: "";
  height: 2px;
  left: -28px;
  position: absolute;
  width: 270px;
}
.gallery__hover__info a {
  color: #ffffff;
  font-family: "droid_serifbold";
  font-size: 18px;
}
.gallery_gutter {
  padding: 0;
}
.gallery_active div[class*="col-"]{max-width: 100%}
.gallery_active div[class*="col-"] {
  max-width: 100%;
  padding: 0;
}
.gallery_active .owl-nav div {
    height: 30px;
    left: -40px;
    line-height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    text-align: center;
}
.gallery_active .owl-nav div.owl-next {
    left: auto;
    right: -40px;
}
.gallery_active .owl-nav [class*="owl-"] {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    color: #dedede;
    cursor: pointer;
    border-radius: 100%;
}
.gallery_active .owl-nav [class*="owl-"] {
    font-size: 14px;
    transition: 0.4s;
}
.gallery_active .owl-nav [class*="owl-"]:hover {
    background: #303f9f none repeat scroll 0 0;
    border: 1px solid #303f9f;
    color: #fff;
}
.gallery_active .owl-nav {
    margin-top: 0;
}

/*---------------------------------------
  06. Appoinment Area
----------------------------------------*/

.htc__appoinment__inner {
    text-align: center;
}
.htc__appoinment__inner h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
}
.htc__appoinment__inner p {
    color: #ffffff;
    margin-top: 22px;
    padding: 0 25%;
}
.htc__appoinment__form {
  background: #fafafa  none repeat scroll 0 0;
  bottom: 0;
  padding: 85px 190px;
  position: relative;
}
.htc__app__box__inner {
    display: flex;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}
.htc__app__box {
    padding: 0 15px;
    width: 50%;
}
.htc__appoinment__form .htc__app__box__inner + .htc__app__box__inner {
    margin-top: 23px;
}
.htc__app__box__inner.message {
    margin: 0;
    width: 100%;
}
.htc__app__box.message {
    padding: 0;
    width: 100%;
}
.htc__app__box input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  height: 35px;
  margin-top: 5px;
  padding: 0 10px;
  width: 100%;
  outline: none;
}
.htc__app__box span {
    color: #606060;
    font-family: PT Sans;
    font-size: 16px;
}
.htc__app__box select {
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    height: 35px;
    margin-top: 10px;
}
.htc__app__box.message textarea {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    margin-top: 10px;
    height: 135px;
    outline: none;
}
.ht__appoin__btn {
    margin-top: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.htc__appoinment__wrap {
    padding: 0 100px;
}
.ht__appoin__btn input {
  background-color: #303f9f;
  border: 1px solid #303f9f;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 11px 28px 12px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.ht__appoin__btn input:hover {
  background-color: #fff;
  border: 1px solid #dddddd;
  color: #666;
}
.htc__app__box input[type=date] {
    padding: 6px 10px;
}
/*---------------------------------------
 Testimonial Area
----------------------------------------*/

.testimonial {
    position: relative;
    z-index: 2;
}
.ht__test__details p {
    color: #ffffff;
    font-size: 19px;
    font-style: italic;
    line-height: 30px;
    padding-right: 1%;
}
.ht__test__details {
  margin-top: 19px;
  padding-right: 30px;
}
.htc__testimonial__content {
    align-items: flex-end;
    display: flex;
    height: 494px;
    padding-bottom: 90px;
}

.testimonial__clint {
    position: relative;
    top: 100px;
}
.clint__info h4 {
    font-size: 22px;
    font-family: 'droid_serifbold_italic';
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
}
.clint__info {
  bottom: -2px;
  left: -100%;
  padding-right: 30px;
  position: absolute;
  text-align: right;
  width: 100%;
}
.clint__info h6 {
    color: #606060;
    font-family: "droid_serifitalic";
    font-size: 14px;
    margin-top: 5px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
}
.ht__quote img {
  width: auto!important;
}
.ht__quote i {
  font-size: 42px;
  color: #fff;
}
.tes--bg{
    position: relative;
}


/* -------------------------
  Testimonial Style 2
---------------------------*/

.testimonial--2 .testimonial__clint {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    top: auto;
}
.testimonial--2 .testimonial {
    align-items: center;
    display: flex;
}
.testimonial--2 .htc__testimonial__content {
    display: block;
    height: auto;
    padding-bottom: 0;
}
.testimonial--2 .clint__info h4 {
    color: #fff;
    transition: 0.3s;
}
.testimonial--2 .clint__info h4 a{
    transition: 0.3s;
}
.testimonial--2 .clint__info h4 a:hover {
    color: #fff;
}
.testimonial--2 .clint__info h6 {
    color: #ffffff;
    font-size: 14px;
    margin-top: 12px;
}
.testimonial--2 .clint__info {
    bottom: 63px;
    left: -40px;
}


/* -------------------------
  Testimonial Style 3
---------------------------*/
.testimonial--3 .ht__test__details p {
    padding-right: 10%;
}
.testimonial--3 .testimonial--1 .owl-stage-outer {
  padding:0;
}
.testimonial--3 .ht__test__details {
    margin-top: 32px;
}

.testimonial--3 .clint__info h4 a {
    color: #ffffff;
}
.testimonial--3 .clint__info h4 {
    font-size: 22px;
    font-family: 'droid_serifbold_italic';
    margin-top: 0;
    margin-bottom: 0;
}
.testimonial--3 .clint__info h6 {
    color: #ffffff;
    font-size: 14px;
    font-family: 'droid_serifitalic';
    margin-top: 7px;
    margin-bottom: 0;
}
.testimonial--3 .clint__info {
    margin-top: 30px;
    position: static;
    text-align: left;
}
.testimonial--3 .ht__testimonial__thumb {
  background: #ddd none repeat scroll 0 0;
  border-radius: 100%;
  height: 114px;
  padding: 2px;
  width: 114px;
}

.testimonial--3 .testimonial {
    padding-left: 100px;
    position: relative;
    z-index: 2;
}

.testimonial--2 .testimonial__activation--1 .owl-dots {
    bottom: 139px;
    left: 9px;
    position: absolute;
}
.tes--bg::after {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.tes--bg > div{
    z-index: 3;
    position: relative;
}

.testimonial--1 .owl-stage-outer {
    padding-bottom: 70px;
}

.testimonial--1  .owl-dots {
  bottom: 34px;
  left: -4px;
  position: absolute;
}
.owl-dot {
  display: inline-block;
}


.testimonial--1 .owl-dots {
    bottom: 135px;
}
.testimonial--1 .owl-dots .owl-dot span {
  backface-visibility: visible;
  background: #b7b7b7 none repeat scroll 0 0;
  border-radius: 5px;
  display: block;
  height: 5px;
  margin: 0 6px;
  transition: opacity 0.2s ease 0s;
  width: 20px;
}
.testimonial--1.owl-theme .owl-dots .owl-dot.active span {
  background: #fff none repeat scroll 0 0;
  width: 35px;
}
/*---------------------------------------
    Subscribe Area
----------------------------------------*/
.htc__subscribe__inner h2 {
  color: #303f9f;
  font-size: 30px;
  line-height: 24px;
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.htc__subscribe__inner h4 {
    color: #606060;
    font-size: 16px;
    font-family: 'droid_serifregular';
    line-height: 39px;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    font-weight: 400;
}

.news__input input::-moz-placeholder {
    color: #c2c2c2 !important;
    opacity: 1;
}
.news__input input::-webkit-input-placeholder{
    color: #c2c2c2 !important;
    opacity: 1; 
}
.news__input input:-ms-input-placeholder{
    color: #c2c2c2 !important;
    opacity: 1; 
}

.htc__news__inner {
    position: relative;
}
.subscribe__btn {
    position: absolute;
    right: 27.5%;
    top: 0;
}
.subscribe__btn input {
    background: transparent none repeat scroll 0 0;
    border: 0 none;
}
.subscribe__btn input.bst__btn{
    position: relative;
}
.news__input input {
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    color: #c2c2c2;
    outline: none;
    font-size: 14px;
    height: 40px;
    padding: 0 20px;
    width: 45%;
    padding-right: 63px;
}
.subscribe--3  .news__input input {
    color: #aeaeae;
}
.subscribe--3 .news__input input {
  color: #aeaeae;
  width: 100%;
}
.subscribe__btn input.bst__btn {
    background-image: url(../images/send.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto auto;
    position: relative;
    text-indent: -999px;
    z-index: 5;
    outline: none;
    cursor: pointer;
}
.subscribe--2 .subscribe__btn input.bst__btn {
    background-image: url(../images/send.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 87% auto;
    position: relative;
    text-indent: -999px;
    z-index: 5;
    outline: none;
}
.subscribe--2 .news__input input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #424242;
  color: #fff;
}
.subscribe__btn input {
    height: 40px;
    padding: 0 11px;
    position: relative;
    right: 25px;
}

.subscribe--3 .subscribe__btn {
    position: absolute;
    right: 18px;
}
.subscribe--3 .subscribe__btn input {
    right: auto;
}

.subscribe--translate {
    transform: translateY(50%);
    overflow: hidden;
}

.htc__subscribe__inner {
  background: #f9f9f9 none repeat scroll 0 0;
  padding: 50px 0 30px;
  text-align: center;
}
.subscribe--3 .htc__subscribe__inner h2 {
  font-family: "droid_serifregular";
  font-size: 26px;
  line-height: 36px;
}
.subscribe--3 .htc__subscribe__inner h4 {
  font-family: "droid_serifregular";
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.subscribe--3 .htc__subscribe__inner::before {
  background: #e1e1e1 none repeat scroll 0 0;
  content: "";
  height: 90px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}
.subscribe--3 .htc__subscribe__inner {
  padding-bottom: 65px;
  padding-left: 140px;
  padding-top: 65px;
}


/*---------------------------------------
    Footer Area
----------------------------------------*/
.ft__address h6 {
  color: #9d9d9d;
  font-family: "Playfair Display",serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
.ft__address p,
.ft__address p a {
    color: #9d9d9d;
    display: block;
    font-family: PT Sans;
    font-weight: 400;
    margin-top: 9px;
}
.social__icon {
  display: flex;
  justify-content: flex-end;
  list-style: outside none none;
  margin-bottom: 0;
  padding-left: 0;
}
.social__icon li {
  padding: 0 16px;
}
.social__icon li {
    padding: 0 16px;
}
.social__icon li a {
    color: #959595;
}
.social__icon li a:hover {
    color: #fff;
}
/*---------------------------------------
    Footer Area Two
----------------------------------------*/
.footer-style2 .widget h2{
    font-family: "Playfair Display",serif;
    font-size: 20px;
    margin-top: 0;
    color: #e0e0e0;
}

.footer-style2 .widget li a {
  color: #9d9d9d;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
}
.footer-style2 .widget li a:before{
    font-family: "themify";
    color: #9d9d9d;
    font-size: 10px;
    padding-right: 10px;
    content: "";
}
.footer-style2 .widget li.menu-item{
    display: inline-block;
    width: 49%;
}
.footer-style2 .widget ul{
    list-style: none;
    padding-left:0;
}
.footer-style2 .menu-main-menu-container{
    margin-top: -13px;
}
.ht__twit {
    display: flex;
}
.ht__twit__icon {
    padding-right: 12px;
}
.ht__twit__icon span {
    color: #5b5b5b;
    font-size: 20px;
}
.twit__details p {
    color: #9d9d9d;
    font-size: 14px;
    line-height: 22px;
    padding-right: 21%;
    margin-bottom: 0;
}
.twit__details p a {
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
}
.twit__details span {
    color: #9d9d9d;
    display: block;
    margin-top: 2px;
}
.ht__twitter__feed .ht__twit + .ht__twit {
    margin-top: 26px;
}
.footer-contact p {
  color: #9d9d9d;
  margin-bottom: 10px;
}

/*---------------------------------------
   Home Two Slider
----------------------------------------*/

.single-slide {
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}
.slider__fixed--height {
    align-items: center;
    display: flex;
    height: 780px;
}
.slider__inner h1 {
    color: #303f9f;
    font-family: Source Sans Pro;
    font-size: 56px;
    font-weight: 900;
    line-height: 65px;
    text-transform: uppercase;
    margin-top: 0;
}
.slider__btn {
    margin-top: 27px;
}
.slider__btn a.htc__btn {
    padding: 0 32px;
}
.slider__bg__position{
    background-attachment: scroll;
    background-color: rgba(0, 0, 0, 0);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.slider--2 .slider__inner h1 {
  font-family: "droid_serifbold_italic";
  font-size: 60px;
  font-weight: normal;
  line-height: 70px;
  text-transform: none;
}

.cd-intro {
  max-width: inherit;
  text-align: center;
  width: 100%;
}
.owl-nav div {
  background: #212121 none repeat scroll 0 0;
  border-radius: 2px;
  height: 30px;
  left: 0px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.owl-nav div.owl-next{
    left: auto;
    right: 0;
}
.owl-nav div:hover{
    background: #303f9f;
}
.sction__title--2 h3{
  font-family: "droid_serifregular";
  font-size: 30px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}
.sction__title--2 h3 span {
  font-family: "droid_serifbold";
  font-size: 32px;
  text-transform: capitalize;
  font-weight: 400;
}
.sction__title--2 h4 {
  font-family: "droid_serifbold";
  font-size: 36px;
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 0;
}
.slider__fixed--height:before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}
.service2-page .sction__title--2 h3 span {
  font-size: 26px;
}

/*----------------------
  features 
-------------------------*/
.features {
    background: #fafafa none repeat scroll 0 0;
    padding: 50px 40px;
}
.features__details h4 {
    color: #303030;
    font-size: 22px;
    font-family: 'droid_serifregular';
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 500;
}
.features__details p {
  color: #606060;
  line-height: 22px;
  margin-top: 14px;
}
.features__icon img {
    max-height: 72px;
}
.features__icon i {
  color: #ccc;
  font-size: 70px;
  line-height: 70px;
}
/*---------------------------
  Appoinment 2
----------------------------*/
.appointment-area .htc__appoinment__form h2 {
  color: #606060;
  font-family: PT Sans;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 31px;
  text-align: center;
  margin-top: 0;
}
.htc__visit__time {
    padding: 77px 0;
    background: #FAFAFA;
}
.appointment_form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.appointment-area .htc__appoinment__form {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.1);
  padding: 70px 92px;
}
.appointment-area .htc__app__box{
    width: 100%;
    margin-top: 23px;
}
.appointment-area .htc__app__box__inner{
    display: block;
}
.app2 .appointment_form {
  left: 0;
  position: relative;
  right: auto;
  top: -131px;
  transform: none;
}
.app2 .htc__visit__time {
  background: #fff none repeat scroll 0 0;
  padding: 0;
}
.appointment-area.app2 .htc__appoinment__form {
  background: #fafafa none repeat scroll 0 0;
  bottom: 0;
  box-shadow: none;
  padding: 70px 92px;
}
.app2 .htc__visit__inner {
  padding-left: 60px;
  padding-top: 115px;
}
.htc__visit__time .row{
    position: relative;
}
.htc__visit__inner h2 {
  line-height: 45px;
  margin-bottom: 13px;
  margin-top: 0;
  font-weight: 500;
  font-size: 36px;
}
.htc__visit__inner p {
  line-height: 24px;
  padding-right: 20%;
}
.htc__visit__inner p + p {
  margin-bottom: 0;
  margin-top: 6px;
}
.section__title__left h2{
    margin-top: 0;
    margin-bottom: 14px;
}
.section__title__left p {
  margin-bottom: 0;
  max-width: 600px;
}
.ht__sin__solve .set__list__num {
  color: #e0e2f1;
  font-family: "droid_serifregular";
  font-size: 24px;
}

.service-2 .services-area [class*="col-"]:nth-child(n+3) .ht__therapy {
  margin-top: 20px;
}
.service-2 .ht__sin__solve h4{
    margin-bottom: 12px;
}
/*---------------------------
  Team 
----------------------------*/
.team {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.htc__team__thumb a {
    display: block;
    position: relative;
}
.htc__team__thumb a img {
    width: 100%;
}
.htc__team__thumb > a::before {
    background: #303f9f none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.4s ease 0s;
    width: 100%;
    z-index: 1;
}
.team:hover .htc__team__thumb a::before {
    opacity: 0.92;
}
.htc__team__thumb {
    position: relative;
}
.team__hover__action {
    left: 50%;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.4s ease 0s;
    width: 100%;
    z-index: 3;
}
.team__hover__action h2 a {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
}
.team__hover__action h2{
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
}
.team__hover__action h6 {
    color: #fff;
    font-family: PT Sans;
    font-size: 16px;
    margin-top: 5px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.team:hover .team__hover__action {
    opacity: 1; 
}
.team__social__service {
    background: #efefef none repeat scroll 0 0;
    left: 0;
    opacity: 0;
    padding: 31px 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all 0.4s ease 0s;
    width: 100%;
}
.htc__team__info {
    background: #efefef none repeat scroll 0 0;
    padding: 24px 0;
    text-align: center;
    transition: all 0.4s ease 0s;
}
.htc__team__info h2 {
  color: #303030;
  font-family: "droid_serifregular";
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: capitalize;
  font-weight: 400;
}
.htc__team__info h6 {
    margin-bottom: 0;
    color: #606060;
    font-family: PT Sans;
    font-size: 16px;
    margin-top: 7px;
    text-transform: capitalize;
    font-weight: 400;
}
.htc__team__details {
    position: relative;
}
.tm__social__icon {
  display: flex;
  justify-content: center;
  list-style: outside none none;
  padding-left: 0;
}
.tm__social__icon li {
    margin: 0 10px;
}
.tm__social__icon li a {
    border: 1px solid #cfcfcf;
    border-radius: 100%;
    color: #bcbcbc;
    display: block;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    transition: all 0.4s ease 0s;
    width: 32px;
}
.tm__social__icon li a:hover {
    background: #303f9f none repeat scroll 0 0;
    border: 1px solid #303f9f;
    color: #fff;
}
.team:hover .team__social__service {
    opacity: 1;
}
.team:hover .htc__team__info {
    opacity: 0;
}
.team__history h5 {
  color: #303030;
  font-family: "droid_serifregular";
  font-weight: 400;
  font-size: 16px;
}
.team__history > p {
  padding-right: 15%;
}
.team__social__net{
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-top: 40px;
}
.team__social__net li a span {
    background: #333 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    height: 35px;
    line-height: 34px;
    text-align: center;
    transition: all 0.4s ease 0s;
    width: 50px;
}
.team__social__net li + li {
  margin-left: 16px;
}
.team__social__net li a .ti-facebook{
    background: #3b5998  none repeat scroll 0 0;
}
.team__social__net li a .ti-twitter{
    background: #00aced none repeat scroll 0 0;
}
.team__social__net li a .ti-google{
    background: #007bb6 none repeat scroll 0 0;
}
.team__social__net li a .ti-linkedin{
    background: #d34836 none repeat scroll 0 0;
}
.team__social__net li a:hover span{
    background: #000;
}
.team__contact__info {
  margin-top: 30px;
  line-height: 34px;
    font-family: PT Sans;
  font-size: 18px;
  color: #656565;
  font-weight: 400;
}
.team__contact__info strong{
    font-weight: 400;  
    font-family: "droid_serifregular";
}
.team__expre h2{
  color: #303030;
  font-family: "droid_serifregular";
  font-size: 24px;
  margin-bottom: 18px;
  text-transform: capitalize;
  font-weight: 400;
  margin-top: 0;
}
.team__details__inner h2 {
  color: #303030;
  font-family: "droid_serifregular";
  font-size: 32px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}
.team__details__inner span {
  color: #606060;
  display: block;
  font-size: 18px;
  margin-bottom: 23px;
  margin-top: 4px;
  text-transform: capitalize;
}
/*----------------------------
  Team Style 2
-----------------------------*/
.team--2.team:hover .htc__team__info {
    opacity: 1;
}
.team--2 .team__hover__action {
    padding: 10px 24px 10px 58px;
    width: 100%;
}
.team--2 .tm__social__icon li {
    margin: 0 8px;
}
.team--2 .tm__social__icon li a:hover {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #ffffff;
}
.team--2 .team__hover__action p {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    text-align: left;
}
.team--2 .team__hover__action::before {
    background: #f5f5f5 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 14%;
    position: absolute;
    top: 0;
    width: 1px;
}
.team--2 .tm__social__icon li a:hover span {
    color: #3e4ca5;
}
.team--2 .tm__social__icon li a span {
    transition: all 0.3s ease 0s;
}
.team--2 .tm__social__icon li:first-child {
    margin-left: 0;
}

.home2 .testimonial__clint {
  top: 0px;
}
.home2  .owl-carousel .owl-item img {
  width: 87%;
}

.home2 .testimonial--1 .owl-stage-outer {
    padding:0;
  
}
.home2.testimonial-area{
    margin-top: -50px;
}
.home2 .clint__info {
  bottom: 90px;
}
.home2 .testimonial--1 .owl-dots {
  bottom: 125px;
}

.home2 .ht__test__details {
  padding-right: 14%;
}
.team__expre p {
  padding-right: 50px;
}

/*---------------------------------------
Our Success Area
----------------------------------------*/

.ht__success__inner {
    margin-left: -15px;
    padding-left: 60px;
    padding-right:50px;
    margin-right: -15px;
}
.ht__success__thumb {
    margin-right: -15px;
}
.ht__single__success {
    align-items: center;
    display: flex;
}
.ht__success__thumb {
    margin-left: -15px;
}
.ht__success__content h2 {
    color: #303f9f;
    font-size: 24px;
    margin-bottom: 24px;
}
.ht__success__content p {
    color: #606060;
    font-size: 19px;
    font-style: italic;
    line-height: 30px;
}

.htc__success__activation,
.testimonial__activation--1{
    position: relative;
}
.testimonial--2 .testimonial__activation--1 {
    margin-top: -38px;
}
.htc__success__activation .owl-dots {
  bottom: 55px;
  left: 47%;
  position: absolute;
}
.htc__success__activation.owl-theme .owl-dots .owl-dot span,
.testimonial__activation--1.owl-theme .owl-dots .owl-dot span {
    backface-visibility: visible;
    background: #b7b7b7 none repeat scroll 0 0;
    border-radius: 5px;
    display: block;
    height: 5px;
    margin: 0 6px;
    transition: opacity 0.2s ease 0s;
    width: 20px;
}
.htc__success__activation.owl-theme .owl-dots .owl-dot.active span{
    background: #6e6e6e none repeat scroll 0 0;
    width: 35px;
}
.ht__single__success{
    background: #fafafa;
}

/*---------------------------------------
Our Success Area
----------------------------------------*/
.contact_address_section {
  margin-bottom: -50px!important;
  position: relative;
  z-index: 5;
}
.htc__appoinment__form h2 {
  color: #303f9f;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 64px;
  margin-top: 0;
  text-align: center;
}
.htc__pagenation {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.23);
    display: inline-block;
    padding-left: 0;
}
.htc__pagenation li {
    display: inline-block;
}
.htc__pagenation li a {
    display: block;
    height: 45px;
    line-height: 45px;
}
.htc__pagenation li.page a {
    color: #303030;
    font-family: "droid_serifregular";
    font-size: 16px;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    padding:0 30px;
    cursor: default;    
}
.htc__pagenation li a span,.htc__pagenation li span {
    color: #303030;
    font-size: 12px;
    padding:0 18px;
}
.htc__pagenation li a{
    cursor: pointer;
}
.htc__pagenation li{
    cursor: not-allowed;
}

.lightboxOverlay {
  z-index: 99999;
}
.lightbox {
  z-index: 99999;
}
.owl-item.active .testimonial__clint{
  animation-name: bounceInRight;
  animation-fill-mode: both;
    animation-delay: 1s;
  animation-duration: 1s;
}
.owl-item.active .htc__testimonial__inner{
    animation-name: bounceInLeft;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
}
/*.home .site-content{
    padding:0;
}*/