@charset "UTF-8";
/*
* define all constant here 
*/
:root {
  --theme-primary-color: #D11C23;
  --theme-secondary-color: #04190E;
  --body-font-color: #A4A6A5;
  --title-color: #04190E;
  --link-color: #D11C23;
  --theme-border-color: #dddddd;
  --white: #ffffff;
  --black: #000000;
  --title-font: "Inter", sans-serif;
  --body-font-family: "Inter", sans-serif;
	scroll-behavior: unset;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  font-size: 18px;
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: var(--border-color);
  border-radius: 5px;
}
body::-webkit-scrollbar-button,
body::-webkit-scrollbar-thumb {
  background-color: var(--theme-primary-color);
  border-radius: 5px;
}
::selection {
  color: var(--white);
  background-color: var(--theme-primary-color);
}
p {
  margin: 0px;
  padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-family: var(--title-font);
}
a {
  text-decoration: none;
  display: inline-block;
  transition: 0.5s;
  color: var(--link-color);
}
a:hover {
  text-decoration: none;
  color: var(--theme-primary-color);
}
button {
  border: 0;
  outline: 0;
}
button:focus {
  border: none;
  outline: none;
  box-shadow: 0px 0px 0px;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
  transition: 0.5s;
}
ul,
li {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
input,
textarea {
  width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  line-height: 1.2;
  font-weight: 700;
  color: var(--title-color);
}
h1,
h1 > a {
  font-size: 60px;
}
@media only screen and (max-width: 1199px) {
  h1,
  h1 > a {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  h1 > a {
    font-size: 35px;
  }
}
h2,
h2 > a {
  font-size: 40px;
}
@media only screen and (max-width: 1199px) {
  h2,
  h2 > a {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  h2,
  h2 > a {
    font-size: 30px;
  }
}
h3,
h3 > a {
  font-size: 30px;
}
@media only screen and (max-width: 1199px) {
  h3,
  h3 > a {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  h3,
  h3 > a {
    font-size: 24px;
  }
}
h4,
h4 > a {
  font-size: 24px;
}
@media only screen and (max-width: 1199px) {
  h4,
  h4 > a {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  h4,
  h4 > a {
    font-size: 20px;
  }
}
h5,
h5 > a {
  font-size: 22px;
}
@media only screen and (max-width: 1199px) {
  h5,
  h5 > a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  h5,
  h5 > a {
    font-size: 18px;
  }
}
h6,
h6 > a {
  font-size: 18px;
}
@media only screen and (max-width: 1199px) {
  h6,
  h6 > a {
    font-size: 16px;
  }
}
/* preloader css */
.preloader {
  background: #ffffff;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: helvetica, arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  z-index: 9999999;
}
.elementor-editor-active .preloader, .elementor-editor-preview .preloader, .elementor-html .preloader{
  display: none!important;
}
.preloader span {
  position: absolute;
  width: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-transform: uppercase;
}
.preloader span::after, .preloader span::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--theme-primary-color);
  position: absolute;
  animation: load 0.7s infinite alternate ease-in-out;
}
.preloader span::before {
  top: 0;
}
.preloader span::after {
  bottom: 0;
}
@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}
@media only screen and (max-width: 1024px) {
	.preloader {
		display: none!important;
	}
}
/* slick arrows and arrows style */
.slick-slide {
  margin: 0px 12px;
}
.slick-list {
  margin: 0px -12px;
}
button.slick-arrow {
  font-size: 0;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--theme-primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: calc(50% - 20px);
  right: -40px;
}
button.slick-arrow.slick-prev {
  right: 100%;
  z-index: 1000;
}
button.slick-arrow::before {
  font-family: FontAwesome;
  content: "\f061";
  font-size: 20px;
}
button.slick-arrow.slick-prev::before {
  content: "\f060";
}
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.slick-dots li {
  line-height: 0px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  font-size: 0px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--theme-secondary-color);
  transition: 0.5s;
  border: 0px solid var(--theme-secondary-color);
}
.slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  background: var(--theme-primary-color);
}

/*========== blog css ============*/
.blog_post_item {
  position: relative;
}
.blog_post_item:not(:last-child) {
  margin-bottom: 40px;
}
.blog_post_item a.post-thumbnail {
  display: flex;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  background: var(--black);
}
.blog_post_item a.post-thumbnail img {
  display: block;
  margin: 0 auto;
}
.blog_title {
  color: var(--title-color);
  transition: color 0.2s linear;
  margin: 0 0 20px;
  word-break: break-word;
}
.blog_title a {
  color: var(--title-color);
}
.blog_title a:focus {
  outline: none;
}
.media_blog_content {
  margin-top: 0;
  border: 1px solid #efeded;
  padding: 32px 30px;
  font-family: var(--body-font-family);
}
@media (max-width: 991px) {
  .media_blog_content {
    padding: 28px 20px;
  }
}
.media_blog_content h2,
.media_blog_content .h2,
.media_blog_content h3,
.media_blog_content .h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}
.media_blog_content p {
  line-height: 28px;
  font-size: 16px;
  margin-top: 0;
  color: var(--body-font-color);
}
.media_blog_content p a {
  font-weight: 500;
  color: var(--body-font-color);
  text-decoration: none;
}
.media_blog_content p a:focus {
  outline: none;
}
.media_blog_content p:empty {
  display: none;
}
.media_blog_content .post_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--body-font-color);
  text-transform: capitalize;
}
.media_blog_content .post_bottom .learn_btn_two {
  text-decoration: none;
  color: var(--body-font-color);
  text-transform: capitalize;
}
.media_blog_content .post_bottom .learn_btn_two:after {
  content: "\e901";
  font-family: "icomoon" !important;
  vertical-align: middle;
  margin-left: 6px;
  transition: 0.5s;
  display: inline-block;
}
.media_blog_content .post_bottom .learn_btn_two:hover {
  color: var(--theme-secondary-color);
}
.media_blog_content .post_bottom .learn_btn_two:hover:after {
  transform: translateX(5px);
}
.post-meta {
  padding-bottom: 10px;
}
.post-meta i {
  font-size: 12px;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.post-meta span:not(:last-child):after {
  content: "";
  width: 1px;
  height: 12px;
  background: var(--body-font-color);
  display: inline-block;
  margin: 0 4px 0px 3px;
}
.post-meta span span::after {
  display: none;
}
.post-meta a {
  text-decoration: none;
  color: var(--body-font-color);
}
.post-password-form input[type="password"] {
  height: 50px;
  background: transparent;
  padding: 0 25px 3px;
  font-size: 16px;
  box-shadow: none;
  border: 1px solid var(--strock_color);
  border-radius: 3px;
  color: var(--title-color);
  transition: 0.5s;
  margin-left: 8px;
}
.post-password-form input[type="password"].placeholder {
  color: var(--body-font-color);
}
.post-password-form input[type="password"]:-moz-placeholder {
  color: var(--body-font-color);
}
.post-password-form input[type="password"]::-moz-placeholder {
  color: var(--body-font-color);
}
.post-password-form input[type="password"]::-webkit-input-placeholder {
  color: var(--body-font-color);
}
.post-password-form input[type="password"]:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--theme-secondary-color);
}
.post-password-form input[type="submit"] {
  height: 50px;
  background: var(--theme-secondary-color);
  border: 0;
  color: var(--white);
  padding: 0 25px;
  transition: var(--link-transition);
  cursor: pointer;
}
.form-control:focus {
  box-shadow: none;
}
.post-password-form input[type="submit"]:hover {
  background: var(--theme-secondary-color);
}
blockquote {
  font-family: var(--body-font-family);
  border-radius: 6px;
  background-color: #f9f9f9;
  box-shadow: 0 10px 30px 0 rgba(20, 3, 67, 0.08);
  border-left: 0px solid var(--theme-secondary-color);
  padding: 30px 70px 32px 30px;
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
  margin-left: 0 !important;
  margin-right: 0 !important;
  z-index: 1;
}
@media (max-width: 576px) {
  blockquote {
    padding-right: 30px;
  }
}
blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 30px;
    top: 0px;
    color: var(--theme-primary-color);
    font-size: 76px;
    z-index: -1;
}
blockquote cite {
  color: var(--body-font-color) !important;
}
blockquote cite br {
  display: none;
}
blockquote + p {
  margin-top: 14px;
}
.wp-block-pullquote.has-cyan-bluish-gray-background-color blockquote {
  max-width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}
.blockquote_two:before {
  content: "\e02c";
  font-size: 150px;
  right: 0;
  bottom: 20px;
  line-height: 1.2;
  font-family: "ElegantIcons";
}
.blockquote_two p {
  font-style: normal;
}
.wp-block-pullquote:not(.has-background) {
  padding: 0;
}
.video_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 20px 40px 0 rgba(1, 16, 58, 0.14);
  text-align: center;
  line-height: 85px;
  font-size: 35px;
  position: relative;
  transition: all 0.3s linear;
  display: inline-block;
  color: var(--theme-secondary-color);
  text-shadow: 0 6px 25px rgba(84, 162, 65, 0.9);
}
.video_icon::before,
.video_icon:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 0.2px solid var(--white);
  border-radius: 50%;
  opacity: 0.1;
  position: absolute;
  left: 0;
}
.video_icon:after {
  transform: scale(1.4);
}
.pagination {
  padding-top: 35px;
}
.pagination .page-numbers {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e7e8ea;
  background: transparent;
  color: var(--body-font-color);
  display: inline-block;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 5px;
}
.pagination .page-numbers i::before {
  color: var(--body-font-color);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
  box-shadow: 0px 8px 20px rgba(90, 120, 169, 0.4);
  color: var(--white);
}
.pagination .page-numbers.current i:before,
.pagination .page-numbers:hover i:before {
  color: var(--white);
}
.pagination .page-numbers:focus {
  outline: none;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e7e8ea;
  background: transparent;
  color: var(--body-font-color);
}
.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
  box-shadow: 0px 8px 20px rgba(90, 120, 169, 0.4);
  color: var(--white);
}
.pagination .page-numbers.prev:hover i:before,
.pagination .page-numbers.next:hover i:before {
  color: var(--white);
}
.widget_title {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-primary-color);
  line-height: 1.2;
  margin-bottom: 25px;
}
.widget_recent_entries ul {
  margin-bottom: 0;
}
.widget_recent_entries ul li + li {
  margin-top: 30px;
}
.widget_recent_entries .recent_post_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.widget_recent_entries .recent_post_item img {
  margin-right: 25px;
  border-radius: 4px;
}
.widget_recent_entries .recent_post_item .recent_post_content h5,
.widget_recent_entries .recent_post_item .recent_post_content .h5 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--theme-primary-color);
  margin-bottom: 4px;
  transition: color 0.2s linear;
}
.widget_recent_entries .recent_post_item .recent_post_content .post_date {
  color: #85859c;
  font-size: 15px;
  font-weight: 400;
}
.widget_recent_entries .recent_post_item .recent_post_content .post_date:hover {
  color: var(--theme-secondary-color);
}
.widget_recent_entries .recent_post_item:hover h5,
.widget_recent_entries .recent_post_item:hover .h5 {
  color: var(--theme-secondary-color);
}
.tagcloud,
.wp-block-tag-cloud {
  margin: 0px -4px;
}
.tagcloud a,
.tagcloud .tag-cloud-link,
.wp-block-tag-cloud a,
.wp-block-tag-cloud .tag-cloud-link {
  font-size: 14px !important;
  line-height: 30px;
  color: var(--body-font-color);
  border-radius: 5px;
  background: transparent;
  border: 1px solid #e0e1e3;
  text-transform: capitalize;
  text-align: center;
  padding: 0 13px;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  margin: 5px 3px;
  transition: 0.5s;
}
.tagcloud a:hover,
.tagcloud .tag-cloud-link:hover,
.wp-block-tag-cloud a:hover,
.wp-block-tag-cloud .tag-cloud-link:hover {
  background: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
  color: var(--white);
}
.zigzag_shap {
  margin-bottom: 0;
}
.zigzag_shap li {
  position: absolute;
  z-index: -1;
}
.zigzag_shap li:nth-child(1) {
  left: 0;
  top: 640px;
}
.zigzag_shap li:nth-child(2) {
  left: 0;
  bottom: 50px;
}
.zigzag_shap.right li:nth-child(1) {
  right: 0;
  left: auto;
  top: 130px;
  bottom: auto;
}
.zigzag_shap.right li:nth-child(2) {
  right: 0;
  left: auto;
  bottom: 580px;
}
/*========== End medical_blog_list_area css ===========*/
/*========== start blog_single_info css ===========*/
.blog_single_info .media_blog_content {
  padding: 0;
  border: 0;
}
.media_blog_content h1 {
  font-size: 30px;
  margin-bottom: 30px;
}
.blog_single_info .media_blog_content ul {
  margin-left: 0;
}
.blog_single_info .media_blog_content ul li a {
  color: var(--body-font-color);
  text-decoration: none;
}
.blog_single_info .media_blog_content ul li a:hover {
  color: var(--theme-secondary-color);
}
.blog_single_info .media_blog_content code {
  color: var(--theme-primary-color);
  word-break: break-word;
}
.blog_single_info .media_blog_content .wp-block-cover__inner-container p {
  color: var(--white);
}
.blog_single_info .media_blog_content p {
  padding-top: 0;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--body-font-family);
  color: var(--body-font-color);
}
.blog_single_info .blog____details__post__meta p {
	color: var(--theme-primary-color);
}
.blog_single_info .media_blog_content p a:hover {
  color: var(--theme-secondary-color);
}
.blog_single_info .media_blog_content p.wp-block-tag-cloud a:hover {
  color: var(--white);
}
.blog_single_info .media_blog_content p.has-background {
  padding: 1.25em 2.375em;
}
.blog_single_info .media_blog_content blockquote {
    margin-bottom: 45px;
    margin-top: 45px;
    box-shadow: none;
    background: #f9f9f9;
    border-radius: 0 5px 5px 0;
    margin-left: 0;
    margin-right: 0;
    border-left: 3px solid var(--theme-primary-color);
}
.blog_single_info .media_blog_content blockquote > p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px !important;
    font-family: var(--title-font);
    color: var(--title-color);
    font-style: normal;
    margin-left: 90px;
}
.blog_single_info .media_blog_content blockquote.is-style-large {
  padding: 30px 70px 32px 30px;
}
.blog_single_info .media_blog_content ol,
.blog_single_info .media_blog_content ul {
  margin-left: 0;
}
.blog_single_info .media_blog_content ol li a,
.blog_single_info .media_blog_content ul li a {
  text-decoration: none;
  color: var(--body-font-color);
}
.blog_single_info .media_blog_content ol li a:hover,
.blog_single_info .media_blog_content ul li a:hover {
  color: var(--theme-secondary-color);
}
.blog_single_info .media_blog_content ol li:not(:last-child),
.blog_single_info .media_blog_content ul li:not(:last-child) {
  margin-bottom: 7px;
}
.blog_single_info .post_bottom {
  margin-bottom: 25px;
  clear: both;
}
.blog_single_info .post_bottom .tagcloud {
  padding-top: 15px;
}
.blog_single_info .post_comments i {
  color: var(--theme-secondary-color);
  font-size: 16px;
  vertical-align: middle;
  margin-right: 4px;
}
.blog_single_info .widget_title {
  margin-bottom: 40px;
}
.blog_single_info .tagcloud {
  margin: 0;
}
.blog_single_info .single-page-media {
  margin-bottom: 20px;
}
.blog_single_info .single-page-media img {
  border-radius: 5px;
}
.single-page-media img {
  width: 100%;
}
.blog_single_info .wp-block-button__link {
  border-radius: 3px;
}
.blog_single_info .wp-block-button {
  margin-bottom: 25px;
}
.blog_single_info
  .wp-block-button.aligncenter
  + p
  + .wp-block-button
  .wp-block-button__link {
  border-radius: 45px;
}
.blog_single_info .wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.blog_single_info .wp-block-cover {
  margin-bottom: 25px;
}
.blog_single_info .wp-block-cover .wp-block-cover-text {
  color: var(--white) fff !important;
  line-height: 1.4;
  font-size: 1.9em;
}
.blog_single_info .wp-block-cover .wp-block-cover-text a {
  color: var(--white);
}
@media (max-width: 991px) {
  .blog_single_info .wp-block-cover .wp-block-cover-text br {
    display: none;
  }
}
.blog_single_info figcaption a {
  color: var(--body-font-color);
  text-decoration: none;
}
.blog_single_info figcaption a:focus {
  outline: none;
}
.blog_single_info figcaption a:hover {
  color: var(--theme-secondary-color);
}
.blog_single_info .wp-block-image figure figcaption {
  text-align: center;
}
.blog_single_info .wp-block-file a:first-child {
  text-decoration: none;
  color: var(--body-font-color);
}
.blog_single_info .wp-block-file a:first-child:hover {
  color: var(--theme-secondary-color);
}
.blog_single_info .wp-block-calendar {
  margin-bottom: 30px;
}
.blog_single_info .wp-block-calendar table {
  margin-bottom: 0;
}
.blog_single_info .wp-block-search .wp-block-search__label {
  margin-bottom: 10px;
  display: inline-block;
}
.blog_single_info .wp-block-search .wp-block-search__inside-wrapper {
  padding: 0px;
}
.blog_single_info .wp-block-search input {
  border-radius: 0px;
  border: 1px solid #e5e5e5;
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  color: var(--theme-primary-color);
  padding-left: 30px;
  box-shadow: none;
  transition: 0.5s;
}
.blog_single_info .wp-block-search input:focus {
  outline: none;
  border-color: var(--theme-secondary-color);
}
.blog_single_info .wp-block-search button {
  border: 0;
  padding: 11px 53px;
  margin-left: 0;
  cursor: pointer;
  background: var(--theme-secondary-color);
  color: var(--white);
  transition: 0.5s;
}
.blog_single_info .wp-block-search button:hover {
  background: var(--theme-secondary-color);
  color: var(--white);
}
@media (max-width: 576px) {
  .blog_single_info .wp-block-search button {
    padding: 11px 22px;
  }
}
.blog_single_info .wp-block-search + p {
  margin-top: 40px;
}
.blog_single_info .wp-block-tag-cloud {
  margin-bottom: 20px;
}
.blog_single_info .wp-block-latest-posts {
  padding-left: 0;
}
.blog_single_info .wp-block-group.has-background {
  padding: 15px 15px 1px;
  margin-bottom: 30px;
}
.blog_single_info .page-links {
  padding-top: 20px;
  margin-bottom: 2em;
}
.blog_single_info .page-links .post-page-numbers {
  color: var(--theme-primary-color);
  text-decoration: none;
  margin-right: 12px;
}
.blog_single_info .page-links .post-page-numbers.current {
  color: var(--theme-secondary-color);
  border-bottom: 1px solid var(--theme-secondary-color);
}
.blog_single_info .wp-block-table table {
  margin-bottom: 30px;
}
.blog_single_info .wp-caption-text a {
  display: inline-block;
}
table {
  border: 1px solid #dfe2e7;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-bottom: 4em;
}
table thead {
  background: #f5f5f5;
}
table td,
table th {
  border-top: 1px solid #dfe2e7;
  padding: 0;
  line-height: 40px;
}
@media (max-width: 576px) {
  table td,
  table th {
    padding: 0;
  }
}
table td a,
table th a {
  text-decoration: none;
  font-weight: 500;
  line-height: 40px !important;
  color: var(--theme-primary-color);
}
table td a:hover,
table th a:hover {
  color: var(--theme-secondary-color);
}
table th {
  padding: 0 20px;
  list-style: inherit;
  color: var(--theme-primary-color);
  background: #f5f5f5;
}
@media (max-width: 576px) {
  table th {
    padding: 0 5px;
  }
}
table td {
  text-align: center;
  border-left: 1px solid #dfe2e7;
}
table td a {
  color: var(--theme-primary-color);
}
.wp-block-search .wp-block-search__label {
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 25px;
  color: var(--theme-primary-color);
  font-weight: 600;
}
.wp-block-search .wp-block-search__inside-wrapper {
  padding: 0px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  position: relative;
}
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  margin-left: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  /* width: 40px; */
  height: 34px;
  line-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  padding: 20px;
}
.wp-block-search .wp-block-search__input.wp-block-search__input {
  border-radius: 0px;
  border: 0px;
}
.wp-block-search input[type="search"],
.wp-block-search input[type="text"] {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1px solid #dddddd;
  /* margin-bottom: 30px; */
  transition: 0.5s;
  height: 52px;
}

.wp-block-search input[type="search"]:focus,
.wp-block-search input[type="text"]:focus {
  outline: none;
  border-color: var(--theme-secondary-color);
}
.wp-block-search button {
  border: 0;
  padding: 10px 18px;
  cursor: pointer;
  color: var(--theme-primary-color);
  transition: 0.5s;
}
.wp-block-search button:hover {
  background: var(--theme-secondary-color);
  color: var(--white);
}
@media (max-width: 576px) {
  .wp-block-search button {
    padding: 11px 22px;
  }
}
.wp-block-search + p {
  margin-top: 40px;
}
code {
  color: var(--theme-secondary-color);
}
dl dd {
  margin-left: 0;
}
dl dd a {
  text-decoration: none;
  color: var(--body-font-color);
}
dl dd a:hover {
  color: var(--theme-secondary-color);
}
.single_blog_icon {
    border: 1px dashed var(--theme-secondary-color);
    border-radius: 5px;
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 18px;
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.single_blog_icon:hover {
    border: none;
    background: var(--theme-primary-color)!important;
    color: var(--white)!important;
}
/*========== End blog_single_info css ===========*/
/*========== Start comment_box css ===========*/
.container.sec_padding {
  padding-top: 100px;
}
.blog_comment_inner {
  margin-top: 50px;
  margin-bottom: 70px;
}
.comment_box {
  padding-left: 0;
  margin: 0 0 74px;
}
.comment_box ul,
.comment_box ol {
  margin-left: 0;
}
.comment_box .comment {
  background: #f9f9f9;
  padding: 30px 30px 10px;
}
@media (max-width: 576px) {
  .comment_box .comment {
    padding: 30px 20px 20px;
  }
}
.comment_box .comment:not(:last-child) {
  margin-bottom: 30px;
}
.comment_box .comment > ul {
  margin-left: 60px;
  margin-top: 17px;
  padding: 0;
  list-style: none;
}
@media (max-width: 576px) {
  .comment_box .comment > ul {
    margin-left: 0;
    margin-top: 27px;
  }
}
.comment_box .comment > ul .comment {
  padding: 0;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 576px) {
  .comment_box .comment > ul .comment {
    padding-left: 30px;
  }
}
@media (max-width: 400px) {
  .comment_box .comment > ul .comment {
    padding-left: 15px;
  }
}
.comment_box .comment > ul .comment ul li:not(:last-child) {
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .comment_box .comment > ul .comment ul li ul li ul {
    margin-left: 0;
  }
}
.comment_box .comment > ul .comments_item {
  padding-top: 35px;
}
@media (max-width: 576px) {
  .comment_box .comment > ul .comments_item {
    padding-top: 30px;
  }
}
.comment_box .comments_item {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--body-font-family);
}
@media (max-width: 576px) {
  .comment_box .comments_item {
    display: block;
  }
}
.comment_box .comments_item .comment-reply-link {
  font-size: 13px;
  color: var(--body-font-color);
  letter-spacing: 1.3px;
  border: 1px solid #e0e1e3;
  border-radius: 5px;
  position: absolute;
  text-decoration: none;
  right: 0;
  padding: 3px 15px;
  top: 0;
}
.comment_box .comments_item .comment-reply-link:hover {
  background: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
  color: var(--white);
}
.comment_box .comments_item .comments_author_img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 30px;
  margin-bottom: 15px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .comment_box .comments_item .comments_author_img {
    margin-right: 15px;
  }
}
.comment_box .comments_item .comments_author_img a {
  display: block;
}
.comment_box .comments_item .comments_author_img img {
  max-width: 100%;
}
.comment_box .comments_item .content {
  position: relative;
  flex: 1;
}
.comment_box .comments_item .content h4,
.comment_box .comments_item .content .h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-primary-color);
  margin-bottom: 0;
  margin-top: 0;
}
.comment_box .comments_item .content .comment-date {
  padding-top: 2px;
}
.comment_box .comments_item .content .comment-date a,
.comment_box .comments_item .content .comment-date span {
  font-size: 14px;
  color: var(--body-font-color);
  text-decoration: none;
  line-height: 1.5;
  display: inline-block;
}
.comment_box .comments_item .content p {
  font-size: 15px;
  line-height: 26px;
  color: var(--body-font-color);
  padding-top: 10px;
  margin-top: 0;
  margin-bottom: 1rem;
}
.comment_box .comments_item .content p + p {
  padding-top: 0;
}
.comment_box .comments_item .content p a {
  text-decoration: none;
  color: var(--title-color);
}
.comment_box .comments_item .content p a:hover {
  color: var(--theme-secondary-color);
}
.comment_box .comments_item .content ul li,
.comment_box .comments_item .content ol li {
  margin: 8px 0;
}
.comment_box table {
  border: 1px solid #dfe2e7;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  margin-bottom: 4em;
}
.comment_box table thead {
  background: #f5f5f5;
}
.comment_box table td,
.comment_box table th {
  border-top: 1px solid #dfe2e7;
  padding: 9px;
  line-height: 20px;
}
.comment_box table td a,
.comment_box table th a {
  text-decoration: none;
  font-weight: 500;
  line-height: inherit !important;
}
.comment_box table td a:hover,
.comment_box table th a:hover {
  color: var(--theme-secondary-color);
}
.comment_box table th {
  padding: 10px 20px;
  color: var(--theme-primary-color);
  background: var(--white);
}
.comment_box .trackback,
.comment_box .pingback {
  margin-bottom: 16px;
}
.comment_box .trackback .comment-body,
.comment_box .pingback .comment-body {
  font-size: 15px;
  color: var(--body-font-color);
}
.comment_box .trackback .comment-body a,
.comment_box .pingback .comment-body a {
  color: var(--title-color);
  text-decoration: none;
}
.comment_box .trackback .comment-body a:hover,
.comment_box .pingback .comment-body a:hover {
  color: var(--theme-secondary-color);
}
.comment-form .form-group:not(:last-child) {
  margin-bottom: 30px;
}
.comment-form .form-group input {
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  height: 60px;
  line-height: 60px;
  font-size: 15px;
  color: var(--theme-primary-color);
  padding-left: 30px;
  box-shadow: none;
  transition: 0.5s;
}
.comment-form .form-group input.placeholder {
  color: #9ca3b9;
}
.comment-form .form-group input:-moz-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group input::-moz-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group input::-webkit-input-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group input:focus {
  border-color: var(--theme-secondary-color);
  box-shadow: none;
}
.comment-form .form-group textarea {
  height: 180px;
  padding-left: 30px;
  padding-top: 12px;
  border: 1px solid #e5e5e5;
}
.comment-form .form-group textarea.placeholder {
  color: #9ca3b9;
}
.comment-form .form-group textarea:-moz-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group textarea::-moz-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group textarea::-webkit-input-placeholder {
  color: #9ca3b9;
}
.comment-form .form-group textarea:focus {
  border-color: var(--theme-secondary-color);
  box-shadow: none;
}
.comment-form .btn-comment-form {
  border: 0;
  padding: 13px 36px;
  cursor: pointer;
  background-color: var(--theme-primary-color);
  transition: all 0.4s ease-in-out;
  font-family: var(--body-font-family);
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}
.comment-form .btn-comment-form:hover {
  background-color: var(--theme-secondary-color);
  color: var(--white);
}
.comment-form .logged-in-as {
  margin-top: -28px;
}
.comment-form .logged-in-as a {
  text-decoration: none;
  color: var(--theme-primary-color);
}
.comment-form .logged-in-as a:hover {
  color: var(--theme-secondary-color);
}

/*========== End comment_box css ===========*/
/*========== Start contact_info_item css ===========*/
.contact_info {
  padding-right: 80px;
}
.contact_info_item {
  font-family: var(--body-font-family);
  padding-bottom: 25px;
}
.contact_info_item:not(:first-child) {
  border-top: 1px solid #eeebf6;
  padding-top: 35px;
}
.contact_info_item .contact_title {
  font-size: 20px;
  color: var(--theme-primary-color);
  font-weight: 600;
}
.contact_info_item p {
  line-height: 30px;
  color: var(--body-font-color);
  margin-bottom: 0;
}
.contact_info_item p a {
  color: var(--body-font-color);
}
.contact_info_item p a:hover {
  color: var(--theme-secondary-color);
}
.contact_form .medical_theme_btn {
  padding: 11px 35px;
}
.mapBox {
  height: 460px;
}

/*========== End contact_info_item css ===========*/
.wp-block-button__link {
  color: #232323;
  background-color: transparent;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: 0;
  font-size: 20px;
  margin-bottom: 20px;
}
.widget-title {
  margin: 0 0 35px;
  color: var(--title-color);
}
h2.wp-block-heading a {
  font-size: 20px;
}
.widget.widget_block h2,
.widget.widget_block .h2,
.widget.widget_block h3,
.widget.widget_block .h3 {
  font-size: 22px;
}
.widget h2,
.widget .h2,
.widget h3,
.widget .h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 20px;
  color: var(--title-color);
}
.widget ul,
.widget .wp-block-archives {
  padding-left: 0;
  margin: -12px 0;
  list-style: none;
}
.widget ul > li,
.widget .wp-block-archives > li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  width: 100%;
  line-height: 1.6;
  transition: color 0.2s linear;
  font-size: 15px;
  align-items: center;
  color: var(--body-font-color);
  margin-top: 0 !important;
}
.widget ul > li:not(:last-child),
.widget .wp-block-archives > li:not(:last-child) {
  border-bottom: 1px solid #dfe2e7;
}
.widget ul > li a,
.widget .wp-block-archives > li a {
  color: var(--body-font-color);
  text-decoration: none;
  transition: color 0.2s linear;
  font-size: 15px;
}
.widget ul > li a:hover,
.widget .wp-block-archives > li a:hover {
  color: var(--theme-primary-color);
}
.widget ul > li a:focus,
.widget .wp-block-archives > li a:focus {
  outline: none;
}
.widget ul > li > ul,
.widget .wp-block-archives > li > ul {
  display: flex;
  flex-wrap: wrap;
  flex: 100%;
  margin-left: 15px;
  margin-top: 0;
}
.widget ul > li > ul li,
.widget .wp-block-archives > li > ul li {
  color: var(--body-font-color);
}
.widget select {
  width: 100%;
  border: 1px solid #dfe2e7;
  border-radius: 3px;
  height: 50px;
  padding: 0 3.5em 2px 30px;
  font-size: 16px;
  line-height: 46px;
  color: var(--body-font-color);
  -webkit-appearance: none;
  -moz-appearance: none !important;
  appearance: none !important;
  background: url("../images/arrow.png") no-repeat 95%;
  margin-top: 5px;
}
.widget select:focus {
  outline: none;
}
.widget p:empty {
  display: none;
}
.widget br + img {
  margin: 10px 0;
}
.wp-block-archives-dropdown,
.wp-block-categories-dropdown.wp-block-categories {
  margin-bottom: 20px;
}
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown.wp-block-categories select {
  border: 1px solid #dfe2e7;
  border-radius: 3px;
  height: 50px;
  padding: 0 3.5em 2px 30px;
  font-size: 16px;
  line-height: 46px;
  color: var(--body-font-color);
  -webkit-appearance: none;
  -moz-appearance: none !important;
  appearance: none !important;
  background: url("../images/arrow.png") no-repeat 95%;
}
.wp-block-archives-dropdown select:focus,
.wp-block-categories-dropdown.wp-block-categories select:focus {
  outline: none;
}
.calendar_wrap,
.wp-block-calendar {
  border: 1px solid #dfe2e7;
}
.calendar_wrap .wp-calendar-table,
.wp-block-calendar .wp-calendar-table {
  margin-bottom: 10px;
  border-spacing: 0;
}
.calendar_wrap caption,
.wp-block-calendar caption {
  font-size: 18px;
  padding: 7px 15px;
}
.calendar_wrap caption,
.calendar_wrap nav,
.wp-block-calendar caption,
.wp-block-calendar nav {
  background: #f5f5f5;
}
.calendar_wrap thead tr th,
.wp-block-calendar thead tr th {
  color: var(--theme-primary-color);
  border-top: none;
  text-align: center;
  line-height: 45px;
  border-top: 1px solid #dfe2e7;
  padding: 0px;
}
.calendar_wrap tbody td,
.wp-block-calendar tbody td {
  text-align: center;
  font-size: 14px;
  color: var(--body-font-color);
  padding: 0px;
}
.calendar_wrap tbody td a,
.wp-block-calendar tbody td a {
  display: block;
  background: var(--theme-secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 3px;
  line-height: 38px;
}
.calendar_wrap .wp-calendar-nav,
.wp-block-calendar .wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  padding: 6px 15px;
}
.calendar_wrap .wp-calendar-nav a,
.wp-block-calendar .wp-calendar-nav a {
  font-size: 14px;
  color: var(--body-font-color);
  text-decoration: none;
  transition: 0.5s;
}
.calendar_wrap .wp-calendar-nav a:hover,
.wp-block-calendar .wp-calendar-nav a:hover {
  color: var(--theme-secondary-color);
}
.widget_categories ul li + li {
  margin-top: 0;
}
.widget_recent_comments ul {
  overflow: hidden;
}
.widget_recent_comments ul > li {
  justify-content: flex-start;
  color: var(--title-color);
  margin-left: -5px;
  margin-right: -5px;
}
.widget_recent_comments ul > li a {
  margin: 0 5px !important;
  transition: 0.5s;
}
.widget_recent_comments ul > li a:hover {
  color: var(--theme-secondary-color) !important;
}
.widget_recent_comments ul > li .url {
  font-weight: 600;
  color: var(--title-color);
}
.widget_nav_menu .menu li {
  padding: 0;
}
.widget_nav_menu .menu li:not(:last-child) {
  border: 0;
}
.widget_nav_menu .menu li a {
  padding: 12px 0;
  border-bottom: 1px solid #dfe2e7;
  display: block;
  width: 100%;
}
.widget_nav_menu .menu li ul {
  margin-top: 0;
  margin-bottom: 0;
}
.widget_rss ul li {
  line-height: 1.8;
  font-size: 14px;
}
.widget_rss ul li:not(:last-child) {
  border: 0;
}
.widget_rss ul li a {
  display: block;
  width: 100%;
}
.widget_rss ul li .rss-date {
  font-size: 13px;
  color: var(--body-font-color);
  display: block;
  margin: 2px 0 15px;
}
.widget_rss ul li cite {
  color: var(--body-font-color);
  margin-top: 6px;
  font-size: 13px;
}
.widget_rss ul li cite:before {
  content: "-";
  display: inline-block;
  margin-right: 3px;
}
.search-form {
  position: relative;
}
.search-form input {
  width: 100%;
  height: 60px;
  background: transparent;
  padding: 0 25px 3px !important;
  font-size: 16px;
  box-shadow: none;
  border: 1px solid var(--theme-secondary-color)!important;
  border-radius: 10px!important;
  color: var(--title-color);
  transition: 0.5s;
}
.search-form input.placeholder {
  color: var(--body-font-color);
}
.search-form input:-moz-placeholder {
  color: var(--body-font-color);
}
.search-form input::-moz-placeholder {
  color: var(--body-font-color);
}
.search-form input::-webkit-input-placeholder {
  color: var(--body-font-color);
}
.search-form input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--theme-secondary-color);
}
.search-form .search-submit {
  padding: 0;
  background: transparent;
  color: var(--theme-primary-color);
  border: 0;
  position: absolute;
  right: 22px;
  height: 100%;
  top: 0;
  cursor: pointer;
}
.search-form .search-submit:focus {
  outline: none;
}
.widget_text p {
  line-height: 1.8;
}
.wp-caption {
  margin-bottom: 1em;
}
.wp-caption a {
  display: flex;
  flex-wrap: wrap;
}
.wp-caption .wp-caption-text {
  margin: 1em 0;
  font-size: 14px;
  color: var(--body-font-color);
}
.widget_tag_cloud .tagcloud {
  margin-top: 0;
}
.wp-block-media-text,
.wp-block-media-text.alignwide,
figure.wp-block-gallery {
  margin-bottom: 30px;
}
.wp-block-gallery .blocks-gallery-item {
  margin-bottom: 1em !important;
}
.wp-block-gallery .blocks-gallery-item figcaption {
  line-height: 1.6;
}
.wp-block-gallery.columns-3 ul {
  margin-bottom: 20px;
}
.comment-form p {
  margin-top: 0;
}
.comment-form .form-submit {
  margin-bottom: 0;
}
.share_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
.share_links ul {
  margin-bottom: 0;
  list-style: none;
  margin-left: 0;
  padding-left: 8px;
}
.share_links ul li {
  display: inline-block;
}
.share_links ul li:not(:last-child) {
  margin-right: 8px;
  margin-bottom: 0 !important;
}
.share_links ul li a {
  font-size: 14px;
  color: var(--body-font-color) !important;
}
.share_links ul li a:hover {
  color: var(--theme-secondary-color) !important;
}
.comment-reply-title,
.comments-title {
  font-weight: 600;
  margin-bottom: 45px;
  margin-top: 0;
  font-size: 28px;
}
.about-autheor {
  margin-top: 75px;
}
.author-details {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 380px) {
  .author-details {
    display: block;
  }
}
.author-details .auther-avater {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
}
@media (max-width: 380px) {
  .author-details .auther-avater {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.author-details .auther-info {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.author-details .auther-info h4,
.author-details .auther-info .h4 {
  margin-top: 0;
  color: var(--title-color);
  margin-bottom: 0;
}
.author-details .auther-info p {
  margin-top: 10px;
  margin-bottom: 0;
}
.wp-block-column ol {
  padding-left: 17px;
  margin-left: 0;
}
.wp-block-column blockquote {
  padding-right: 20px;
}
.wp-block-media-text__content .has-large-font-size {
  margin-bottom: 25px;
}
.wp-block-gallery.columns-2.is-cropped ul {
  margin-bottom: 1em;
}
.wp-block-embed {
  margin-bottom: 22px;
}
.wp-block-embed .wp-block-embed__wrapper {
  margin-bottom: 22px;
}
.wp-block-embed.wp-block-embed-youtube .wp-block-embed__wrapper {
  margin-bottom: 14px;
}
.wp-block-embed.wp-block-embed-facebook,
.wp-block-embed.wp-block-embed-instagram {
  margin-top: 0;
  margin-bottom: 12px;
}
.wp-block-embed.wp-block-embed-facebook .wp-block-embed__wrapper,
.wp-block-embed.wp-block-embed-instagram .wp-block-embed__wrapper {
  margin-bottom: 12px;
}
.wp-block-embed.wp-block-embed-wordpress-tv {
  margin-top: 22px;
}
.wp-block-embed.wp-block-embed-wordpress-tv .wp-block-embed__wrapper {
  margin-bottom: 12px;
}
p.wp-block-tag-cloud a {
  padding: 2px 0px;
  text-align: center;
  border-radius: 0px;
  background-color: var(--white);
  color: var(--theme-secondary-color);
  border: 1px solid var(--title-color);
  margin: 0px 15px 20px 0px;
  width: 100px;
}
.widget .mc4wp-form-fields p input {
  height: 45px;
  border: 0;
  text-align: center;
  padding: 4px 15px;
  border-radius: 0;
  border: 1px solid var(--theme-border-color);
}
h2.wp-block-heading {
  margin: 0px;
  margin-top: 18px;
  margin-bottom: 15px;
}
/*========== profile-single-breadcrumbs ==========*/
.profile-banner {
  padding: 200px 0px 150px;
}
.search-doc {
  position: relative;
  background: var(--white);
  border-radius: 5px;
}
.search-doc .form-control {
  color: #0e1133;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  box-shadow: none;
  outline: none;
  padding: 12px 20px 9px;
  font-family: var(--body-font-family);
  border: none;
}
.search-doc .form-control.placeholder {
  color: #929ab2;
}
.search-doc .form-control:-moz-placeholder {
  color: #929ab2;
}
.search-doc .form-control::-moz-placeholder {
  color: #929ab2;
}
.search-doc .form-control::-webkit-input-placeholder {
  color: #929ab2;
}
.search-doc .btn_search {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 0;
  background: 0 0;
  color: #2579ff;
}
.search-doc .ajax_sajation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: none;
}
.search-doc .ajax_sajation.animated {
  width: 100%;
  padding: 10px 30px;
  font-size: 16px;
  color: #677789;
  border-top: 1px solid #ededed;
  background: #e1e6ee;
  border-radius: 5px;
  opacity: 1;
  visibility: visible;
  display: block;
  position: absolute;
  top: 100%;
  z-index: 1;
}
.search-doc .ajax_sajation.animated h3,
.search-doc .ajax_sajation.animated .h3 {
  margin: 4px 0px;
}
.search-doc .ajax_sajation.animated h3 a,
.search-doc .ajax_sajation.animated .h3 a {
  font-size: 16px;
  color: #0e1133;
  text-decoration: none;
  font-weight: 500;
}
.search-doc .ajax_sajation.animated h3 a:hover,
.search-doc .ajax_sajation.animated .h3 a:hover {
  color: #2579ff;
}

/*========== profile-single-breadcrumbs ==========*/
.hover-bg {
  position: absolute;
  content: "";
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: left 0.5s cubic-bezier(0.694, 0, 0.335, 1);
  z-index: -1;
  background-color: var(--white);
  box-shadow: 0px 8px 120px #e7e7e7;
}
.blog_breadcrumbs_area_two,
.blog_breadcrumbs_area_two.page-banner,
.blog_breadcrumbs_area_two.blog-single-page,
.blog_breadcrumbs_area_two.archive-banner,
.blog_breadcrumbs_area_two.banner-404 {
  padding: 280px 0px 210px;
  position: relative;
  z-index: 1;
}
.blog_breadcrumbs_area_two .overlay_bg,
.blog_breadcrumbs_area_two.page-banner .overlay_bg,
.blog_breadcrumbs_area_two.blog-single-page .overlay_bg,
.blog_breadcrumbs_area_two.archive-banner .overlay_bg,
.blog_breadcrumbs_area_two.banner-404 .overlay_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.blog_breadcrumbs_area_two .breadcrumb_content .page_title {
  margin-bottom: 12px;
  color: var(--white);
}
span.breadcrumbs__current,
.breadcrumbs__separator {
  color: var(--white);
}
.blog_breadcrumbs_area_two .breadcrumb_content .post-meta {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.blog_breadcrumbs_area_two .breadcrumb_content .post-meta a {
  color: var(--white);
}
.blog_breadcrumbs_area_two
  .breadcrumb_content
  .post-meta
  span:not(:last-child):after {
  background: var(--white);
}
.blog_breadcrumbs_area_two.banner-with-color .post-meta a {
  opacity: 0.7;
}
.blog_breadcrumbs_area_two.banner-with-color
  .post-meta
  span:not(:last-child):after {
  opacity: 0.7;
}
.job_breadcrumb {
  padding-bottom: 90px;
}
.job_breadcrumb .breadcrumb_content h2,
.job_breadcrumb .breadcrumb_content .h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
}
.job_breadcrumb .entry-content {
  margin-top: 0px;
}
.job_breadcrumb .entry-content li {
  display: inline-block;
  color: var(--white);
  font-family: "Noto Sans", sans-serif;
}
.job_breadcrumb .entry-content li:before {
  content: "-";
  position: relative;
  display: inline-block;
}
.job_breadcrumb .entry-content li:first-child:before {
  display: none;
}
.job_breadcrumb p {
  color: var(--white);
  margin-top: 50px;
  margin-bottom: 0;
}
.service_banner {
  padding: 80px 0px 80px;
  position: relative;
  z-index: 1;
}
.service_banner .breadcrumb_content {
  max-width: initial;
  align-items: center;
  width: initial;
}
.service_banner .breadcrumb_content span {
  padding: 0px;
  display: inline-block;
  font-size: 14px;
  font-family: var(--menu-font-family);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 10px;
}
.service_banner .breadcrumb_content .page_title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
}
.service_banner .breadcrumb_content p {
  margin-bottom: 0;
  padding-left: 50px;
  color: var(--white);
}
/* mailchim css start */
.mc4wp-form-fields {
  position: relative;
  width: 100%;
  margin: 0;
}
.mc4wp-form-fields * {
  margin: 0;
}
.mc4wp-form-fields input {
  background: #646478;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  height:  60px;
  padding-left: 20px !important;
  border-radius: 30px !important;
}
.mc4wp-form-fields input:focus, .mc4wp-form-fields input::placeholder {
  color: var(--white);
}
.mc4wp-form-fields button {
  position: absolute;
  right: 10px;
  bottom: 8px;
  top: 8px;
  width: 80px;
  border-radius: 50px;
  background-color: var(--theme-primary-color);
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mc4wp-form-fields button:hover {
  background-color: var(--theme-secondary-color);
}
/* mailchim css end */

/* Button css start */
.custom__btn {
  text-align: left;
}
.ht_btn {
  overflow: hidden;
  color: var(--white);
  background: var(--theme-primary-color);
  font-size: 18px;
  font-weight:400;
  line-height: 30px;
  padding:12px 30px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  transition: .7s;
  z-index: 3;
  border-radius: 4px;
}
.ht_btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ht_btn:hover {
  color: var(--white);
  background-color: var(--theme-secondary-color);
}
.elementor .ht_btn img {
  max-width: 100px;
}
/* Button css end */
.elementor-icon.elementor-social-icon {
    display: inline-flex;
}