/* 
Template Name: Curetone
Template URI: https://www.designtocodes.com/product/curetone-bootstrap-medical-service-template/
Description: Curetone is a fully responsive Medical service website template inspired by a modern flat design.
Author: DesignToCodes
Author URI: https://www.designtocodes.com
Text Domain: Curetone
*/

:root {

  /* Global Color */
  --primary_color: #204066;
  --primary_shade: rgba(233, 236, 240, 0.4);
  --text_color: #616161;  
  --primary_gradient: linear-gradient(0deg, rgba(32, 64, 102, 0.94), rgba(32, 64, 102, 0.94));
  --primary_border: 1px solid rgba(97, 97, 97, 0.15);/* primary Border */
  --border_radius: 8px;  
  --default_color_one: #FFFFFF; /* default color*/
  --primary_font: 'Poppins', sans-serif;
  --secondary_font: 'Open Sans', sans-serif;
}

/*Typography
-----------------------*/
p{
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 16px;
  color: var(--text_color);
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5{
  color: var(--primary_color);
  font-family: var(--primary_font);
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased !important;
  margin-bottom: 20px !important;
}

h1 {
  font-size: 2.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.313rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

ul li{
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 16px;
  color: var(--text_color);
}


/*Custom Style
-----------------------*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

::selection {
  background: var(--primary_color);
  color: var(--default_color_one);
}

[class *="col-"]{
  padding: 10px;
}

#scrollToTopBtn{
  display: none;
}

/* button */
.d2c_btn {
  display: inline-block;
  text-decoration: none;
  color: var(--default_color_one);
  background-color: var(--primary_color);
  border: 1px solid var(--primary_color);
  border-radius: var(--border_radius);
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 35px 10px;
  font-family: var(--primary_font);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  transition: 0.4s all;
}

.d2c_btn:focus {
  outline: 0;
  box-shadow: none;
  color: var(--primary_color);
  background-color: transparent;
}

.d2c_btn:hover {
  color: var(--primary_color);
  background-color: transparent;
  transition: 0.4s all;
}

.d2c_btn:active {
  box-shadow: none;
}

.d2c_btn.d2c_btn_invert {
  color: var(--primary_color);
  background-color: transparent;
}

.d2c_btn.d2c_btn_invert:focus {
  color: var(--default_color_one);
  background-color: var(--primary_color);
  outline: 0;
  box-shadow: none;
}

.d2c_btn.d2c_btn_invert:hover {
  color: var(--default_color_one);
  background-color: var(--primary_color);
  transition: 0.4s all;
}

.d2c_btn.d2c_btn_invert:active {
  box-shadow: none;
}

a,
button,
select,
input,
label {
  cursor: pointer;
  transition: 0.4s all;
}

a:focus,
button:focus,
select:focus,
input:focus,
label:focus {
  outline: 0;
}

a {
  text-decoration: none;
  color: var(--primary_color);
}

a:hover {
  color: var(--primary_color);
  text-decoration: none;
}

img {
  border-radius: var(--border_radius);
}

/* Title Header */
.d2c_header {
  margin-bottom: 50px;
  text-align: center;
}

.d2c_title {
  font-size: 2.625rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.d2c_title span{
  font-weight: 300;
}
.d2c_title::before{
  content: '';
  width: 60px;
  height: 166px;
  background-image: url(../images/title_left_rectangle.png);
  position: absolute;
  background-repeat: no-repeat;
  top: 40%;
  transform: translateY(-50%);
  z-index: -1;
  left: -25px;
}

/* View And Load More */
.d2c_see_more {
  margin-top: 70px;
  text-align: center;
}

/* icon */
.d2c_icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background-color: var(--primary_color);
  color: var(--default_color_one);
}

.d2c_social_link .d2c_icon {
  font-size: 14px;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  background: var(--primary_shade);
  color: var(--primary_color);
  transition: .4s all ease;
}

.d2c_social_link .d2c_icon:hover {
  background: var(--primary_color);
  color: var(--default_color_one);
  transition: .4s all ease;
}

/*Preloader*/
#preloader {
  background-color: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 1100;
}

#preloader > img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* List Item */
.list-group .list-group-item{
  padding: 5px 0px;
  border: none;
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 16px;
  color: var(--text_color);
}
.list-group .list-group-item a {
  display: flex;
  align-items: unset;
  color: var(--text_color);
}

.list-group .list-group-item:last-child {
  margin-bottom: 0 !important;
}

.list-group .d2c_icon {
  width: 12px;
  height: 12px;
  background: var(--primary_color);
  margin-right: 8px;
  border-radius: 50%;
}
.list-group .d2c_icon_invert  {
  width: 12px;
  height: 12px;
  background: transparent;
  margin-right: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary_color);
}

/* Input form */
.form-control {
  box-shadow: none;
  border: var(--primary_border);
  padding: 10px 20px 10px;
  height: auto;
  color: var(--primary_color);
  font-size: 16px;
  border-radius: var(--border_radius);
  font-weight: 400;
  font-family: var(--secondary_font);
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #2040665e;
}
.form-control::placeholder{
  color: #868686;
}

/* Section */
section {
  padding: 100px 0px;
}



/* Background Image */
.d2c_bg_image {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* image wrapper with overlay */
.d2c_image_wrapper{
  width: 100%;
  position: relative;
}
.d2c_image_wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d2c_image_wrapper .d2c_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(32, 64, 102, 0.2), rgba(32, 64, 102, 0.2));
  border-radius: var(--border_radius);
}

/* working process card start */
.d2c_Specialty{
  background: var(--default_color_one);
  box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
  border-radius: var(--border_radius);
  padding: 40px 20px;
  transition: .4s all ease;
  height: 100%;
}
.d2c_Specialty h3{
  margin-bottom: 10px !important;
  transition: .4s all ease;
}
.d2c_Specialty .d2c_icon{
  width: 53px;
  height: 53px;
  border-radius: var(--border_radius);
  font-size: 24px;
  margin-bottom: 20px;
  transition: .4s all ease;
}
.d2c_Specialty:hover{
  background: var(--primary_color);
  cursor: pointer;
  transition: .4s all ease;
}
.d2c_Specialty:hover .d2c_icon{
  background: var(--default_color_one);
  color: var(--primary_color);
  transition: .4s all ease;
}
.d2c_Specialty:hover h3,.d2c_Specialty:hover p{
  color: var(--default_color_one);
  transition: .4s all ease;
}
/* working process card end */

/* call to action section start */

.d2c_CTA h2{
  color: var(--default_color_one);
}
.d2c_CTA .d2c_btn_invert{
  border-color: var(--default_color_one);
  color: var(--default_color_one);
}
.d2c_CTA .d2c_btn_invert:hover{
  background: var(--default_color_one);
  color: var(--primary_color);
}
/* call to action section end */

/* counter section start */
.d2c_counter{
  background: var(--primary_gradient),url(../images/counter_bg.jpg);
}
.d2c_counter h2,.d2c_counter p,.d2c_counter h3{
  color: var(--default_color_one);
}
.d2c_counter h2{
  margin-bottom: 10px !important;
}
.d2c_counter h3{
  text-transform: uppercase;
}
.d2c_counter .d2c_counter_wrapper{
  background: rgba(26, 51, 82, 0.5);
  backdrop-filter: blur(5px);
  border-radius: var(--border_radius);
  text-align: center;
  padding: 30px 20px;
}
/* counter section end */

/* blog card start */
.d2c_blog_card{
  background: var(--default_color_one);
  border: var(--primary_border);
  border-radius: var(--border_radius);
  height: 100%;
  transition: .4s all ease;
}
.d2c_blog_card .d2c_card_image{
  height: 300px;
  position: relative;
}
.d2c_blog_card h4{
  margin-bottom: 10px !important;
  font-size: 1.25rem;
}
.d2c_blog_card h4 a{
  color: var(--primary_color);
}
.d2c_card_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d2c_blog_image_overlay{
  position: absolute;
  background: linear-gradient(0deg, rgba(32, 64, 102, 0.2), rgba(32, 64, 102, 0.2));
  inset: 0;
  border-radius: var(--border_radius);
  transition: .4s all ease;
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.d2c_blog_card:hover .d2c_blog_image_overlay{
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(0deg, rgb(32 64 102 / 60%), rgb(32 64 102 / 60%));
  transition: .4s all ease;
}
.d2c_blog_card .d2c_post_details{
  display: inline-block;
  background: rgba(233, 236, 240, 0.4);
  border-radius: var(--border_radius);
  padding: 7px 20px;
  font-size: 13px;
  margin-bottom: 15px;
  font-family: var(--secondary_font);
  font-weight: 400;
  color: var(--text_color);
  margin-top: 20px;
  text-transform: capitalize;
}
.d2c_blog_card .d2c_name_date{
  font-size: 13px;
  margin-bottom: 15px;
  font-family: var(--secondary_font);
  font-weight: 500;
  color: var(--text_color);
}
.d2c_blog_card .d2c_card_text{
  margin-top: 10px;
}

.d2c_blog_card_v1{
  border: none;
  padding-bottom: 20px;
}
.d2c_blog_v2_card .d2c_blog_v2_body{
  padding: 0px 18px;
}
.d2c_blog_v2_body h4{
  margin-bottom: 0px !important;
}
.d2c_blog_v2_card .d2c_card_image{
  height: 250px;
}
.d2c_author:after{
  content: '.';
  margin: 5px;
  font-size: 25px;
}

/* blog card end */

/* services card version one start */
.d2c_services_v1_card{
  height: 380px;
  position: relative;
  background: var(--default_color_one);
  border: var(--primary_border);
  border-radius: var(--border_radius);
  transition: .4s all ease;
  overflow: hidden;
}
.d2c_services_v1_card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d2c_services_v1_card .d2c_services_body{
  position: absolute;
  bottom: 0px;
  background: var(--default_color_one);
  padding: 20px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  height: 125px;
  transition: .4s all ease;
  right: 0;
  left: 0;
}
.d2c_services_v1_card .d2c_services_body h3{
  margin-bottom: 10px !important;
}
.d2c_services_v1_card .d2c_services_image_overlay{
  position: absolute;
  background: var(--primary_gradient);
  inset: 0;
  opacity: 0;
  border-radius: var(--border_radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all ease;
}
.d2c_services_v1_card:hover .d2c_services_body{
  bottom: -125px;
  transition: .4s all ease;
}
.d2c_services_v1_card .d2c_btn_invert{
  color: var(--default_color_one);
  border-color: transparent;
  opacity: 0;
  transition: .4s all ease;
}
.d2c_services_v1_card .d2c_btn_invert:hover{
  background: transparent;
  border-color: var(--default_color_one);
}
.d2c_services_v1_card:hover .d2c_btn_invert{
  opacity: 1;
  transition: .4s all ease;
}
.d2c_services_v1_card:hover .d2c_services_image_overlay{
  opacity: 1;
  background: var(--primary_gradient);
  transition: .4s all ease;
}
/* services card version two end */

/* services card version two start */
.d2c_services_card_v2,.d2c_career_card{
  border: var(--primary_border);
  background: var(--default_color_one);
  border-radius: var(--border_radius);
  transition: .4s all ease;
}
.d2c_services_v2_body,.d2c_career_body{
  padding: 30px;
}
.d2c_services_v2_body .d2c_icon, .d2c_career_body .d2c_icon{
  width: 60px;
  height: 60px;
  background: var(--primary_shade);
  border-radius: var(--border_radius);
  color: var(--primary_color);
  margin-bottom: 20px;
  font-size: 30px;
  transition: .4s all ease;
}
.d2c_services_card_v2 .d2c_btn,.d2c_career_card .d2c_btn{
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  background: var(--primary_shade);
  border-color: transparent;
  color: var(--primary_color);
  text-align: left;
  padding: 20px 30px;
  transition: .4s all ease;
}
.d2c_services_card_v2 .d2c_btn i,.d2c_career_card .d2c_btn i{
  font-size: 12px;
}
.d2c_services_card_v2 .d2c_btn:hover,.d2c_career_card .d2c_btn:hover{
  background: var(--primary_color);
  color: var(--default_color_one);
}
.d2c_services_card_v2:hover .d2c_icon,.d2c_career_card:hover .d2c_icon{
  background: var(--primary_color);
  color: var(--default_color_one);
  transition: .4s all ease;
}

/* services card version two end */

/* doctors profile card start */
.d2c_doctors_profile_wrapper{
  height: 500px;
  border-radius: var(--border_radius);
  position: relative;
  overflow: hidden;
}
.d2c_doctors_profile_wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border_radius);
}
.d2c_doctors_profile_wrapper h5,.d2c_doctors_profile_wrapper h3{
  color: var(--default_color_one);
}
.d2c_doctors_profile_wrapper h5{
  margin-bottom: 7px !important;
  word-break: break-all;
}
.d2c_doctors_profile_wrapper h3 a{
  color: var(--default_color_one);
}
.d2c_doctors_profile_wrapper h3{
  margin-bottom: 15px !important;
}
.d2c_doctors_profile_wrapper .d2c_doctor_department{
  background: var(--primary_color);
  border-bottom-left-radius: var(--border_radius);
  width: max-content;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 89px;
  right: -89px;
  width: 228px;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all ease;
}
.d2c_doctors_profile_wrapper:hover .d2c_doctor_department{
  right: -139px;
  transition: .4s all ease;
}
.d2c_doctor_info{
  background: var(--primary_color);
  text-align: center;
  padding: 30px;
  border-bottom-left-radius: var(--border_radius);
  border-bottom-right-radius: var(--border_radius);
  position: absolute;
  width: 100%;
  right: 100%;
  bottom: -0px;
  transition: .4s all ease;
}
.d2c_doctor_info .d2c_social_link .d2c_icon{
  background: var(--default_color_one);
  color: var(--primary_color);
  font-size: 16px;
}
.d2c_doctors_profile_wrapper:hover .d2c_doctor_info{
  right: 0px;
  transition: .4s all ease;
}
/* doctors profile card end */

/*Table*/

.d2c_table_1.table-responsive{
	box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.05);
	border-radius: var(--border_radius);
	padding: 30px;
}
.d2c_table_1 > .table{
	margin-bottom: 0;
}
.d2c_table_1 > .table th{
	font-family: var(--primary_font);
	font-weight: 600;
	font-size: 18px;
	text-transform: capitalize;
	color: var(--primary_color);
  border: none;
}
.d2c_table_1 > .table td{
	font-family: var(--secondary_font);
	font-weight: 400;
	font-size: 16px;
	color: var(--primary_color);
	border-top: none;
}
.d2c_table_1 > .table-striped tbody tr:nth-of-type(odd){
	background-color: var(--primary_shade);
	border-radius: var(--border_radius);
}



/*Time Table*/
.d2c_time_table{
	background-color: var(--primary_shade);
	border-radius: var(--border_radius);
}
.d2c_time_table h3{
  padding: 20px 30px;
}

.d2c_time_table .table td{
	border-top: 1px solid #FFFFFF;
	font-family: var(--primary_font);
	font-weight: 400;
	font-size: 16px;
	color: var(--primary_color);
	padding: 15px 30px;
}
/*Time Table*/

/*Table*/

/* modal */
.modal-header{
  padding: .5rem;
}
.modal-header,.modal-footer{
  border: none;
}
.modal-content iframe{
  height: 315px;
  width: 100%;
}
.modal-footer{
  margin-bottom: 3rem;
}

/* Navbar */

.d2c_top_nav {
  padding: 0px 0px;
  background-color: var(--primary_color);
  border-bottom: 1px solid #ffffff0f;
}

.d2c_topnav_left a {
  color: var(--default_color_one);
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 16px;
  margin-right: 15px;
  padding: 25px 20px 25px 0px;
}
.d2c_top_nav .d2c_social_link .d2c_icon{
  background: transparent !important;
  border-radius: 0px;
  color: var(--default_color_one);
  margin-right: 0px;
  padding: 25px;
  border-right: 1px solid #ffffff0f;
  margin-right: -5px;
}
.d2c_top_nav .d2c_social_link .d2c_icon:hover{
  color: var(--default_color_one);
  background: #ffffff0f !important;
}
.d2c_top_nav .d2c_social_link a:last-child .d2c_icon{
  border-right: 0px;
}
.d2c_topnav_left a:first-child{
  border-right: 1px solid #ffffff0f;
}

.d2c_navbar {
  background-color: var(--primary_color);
}

.navbar {
  padding: 0px;
  box-shadow: 0px 1px 1px #ffffff0f;
}
.navbar .navbar-toggler {
  background: var(--primary_color);
  color: var(--default_color_one);
  padding: 5px 10px;
  width: 38px;
}

.navbar-brand {
  width: 150px;
}

.navbar .nav-item {
  font-family: var(--primary_font);
  margin-right: 0px;
  padding: 25px 0px;
}


.navbar .nav-item.active .nav-link {
  position: relative;
}
.navbar .nav-item.active .nav-link:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 95%;
  background-color: var(--default_color_one);
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.navbar .nav-link {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--default_color_one);
  padding: 5px 10px !important;
  border: 1px solid transparent;
  border-radius: 2px;
}
.navbar .nav-item:hover .nav-link{
  border: 1px solid #ffffff0f;
}

.navbar .nav-link .fa {
  color: var(--default_color_one);
  font-size: 16px;
  margin-left: 5px;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar .d2c_btn_invert {
  color: var(--default_color_one);
  border-color: var(--default_color_one);
  margin-left: 10px;
}

.navbar .d2c_btn_invert:hover {
  background-color: var(--default_color_one);
  color: var(--primary_color);
}

.navbar .dropdown-menu {
  text-align: left;
  z-index: 100;
  min-width: 200px;
  padding: 0px 0px;
  background-clip: padding-box;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 10px 1.25rem rgb(30 34 40 / 4%);
  width: 100%;
  margin-top: 0px;
}

.dropdown-menu.show {
  display: none !important;
}

.navbar .dropdown-hover:hover>.dropdown-menu {
  display: inline-block;
  top: 100%;
  animation: dropdown-animation;
  animation-duration: .5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out; 
  -webkit-animation: dropdown-animation;
  -webkit-animation-duration: .5s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
}


@-webkit-keyframes dropdown-animation {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes dropdown-animation {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dropdown-hover>.dropdown-toggle:active {
  pointer-events: none;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  border: 1px solid #ffffff0f;
  color: #ffffff;
  font-family: var(--primary_font);
  font-weight: 500;
  border-radius: 0;
  font-size: 14px;
  text-transform: capitalize;
  transition: 0.3s;
  background: #4a6483;
}

.navbar .dropdown-menu .dropdown-item:last-child {
  border-color: transparent;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--primary_color);
  color: var(--default_color_one);
  border: 1px solid #ffffff0f;
  transition: 0.4s;
}

.navbar .dropdown-menu .dropdown-item:active {
  background-color: var(--primary_color);
  color: var(--default_color_one);
  transition: 0.4s all ease;
  border: 1px solid #ffffff0f;
}

/* Mega Menu */


.navbar .dropdown-menu  {
  width: 100%;
  margin-top: 0px;
  background: #4a6483;
  border-radius: 2px;
}

.d2c_mega_block .d2c_list_title {
  color: var(--default_color_one);
  font-family: var(--primary_font);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 25px;
  padding-left: 10px;
}

.navbar .dropdown-menu .list-group-item {
  padding: 10px 10px;
  border-bottom: 1px solid #ffffff0a;
  color: var(--default_color_one);
  font-family: var(--primary_font);
  font-weight: 300;
  border-radius: 0;
  font-size: 14px;
  text-transform: capitalize;
  transition: 0.3s;
  margin-bottom: 0;
  display: block;
  background: #4a6483;
}

.navbar .dropdown-menu .list-group-item a {
  color: var(--default_color_one);
  transition: 0.3s;
  display: block;
}
.navbar .dropdown-menu .list-group-item:hover{
  background-color: var(--primary_color);
  color: var(--default_color_one);
  transition: 0.4s;
}
.navbar .dropdown-menu .list-group-item:hover a {
  color: var(--default_color_one);
  transition: 0.3s;
}
.navbar .list-group .list-group-item:last-child{
  border-bottom: 0px;
}

.navbar .d2c_medium_btn {
  background-color: var(--primary_color);
}

.navbar .d2c_medium_btn:hover {
  background-color: var(--primary_color);
}

/* Mega Menu */

/* Nav Item Show from Side */
body .d2c_mobile_view {
  position: fixed;
  height: 100vh;
  background-color: #162b4066;
  inset: 0;
  transition: 0s;
}

.navbar.d2c_mobile_view_body .navbar-nav {
  width: 100%;
}

.navbar.d2c_mobile_view_body .nav-item {
  margin-right: 0;
}

.d2c_mobile_view .show_width {
  max-width: 300px;
  width: 100%;
  height: 100vh;
  position: absolute;
  right: -380px;
  top: 0;
  transition: 0.10s;
  padding: 20px 15px;
  background-color: var(--primary_color);
  overflow: scroll;
  z-index: 9999;
}

.d2c_mobile_view.show .show_width {
  right: 0;
  transition: 0.5s;
}

.d2c_mobile_view .navbar-toggler {
  background: var(--primary_color);
  color: var(--default_color_one);
  padding: 5px 10px;
  width: 38px;
}

@media only screen and (min-width:991px) {
  body .d2c_mobile_view {
    display: none;
  }

}

/* ========================== home v1 page start ============================ */
/* hero section */
.d2c_hero_v1{
  height: 100vh;
  background: var(--primary_gradient),url(../images/hero_v1_bg.jpg);
}
.d2c_hero_v1 h2,.d2c_hero_v1 h4,.d2c_hero_v1 p{
  color: var(--default_color_one);
}
.d2c_hero_v1 .d2c_btn{
  background: var(--default_color_one);
  color: var(--primary_color);
  border-color: var(--default_color_one);
}
.d2c_hero_v1 .d2c_btn:hover{
  background: transparent;
  color: var(--default_color_one);
}
.d2c_hero_v1 .d2c_btn_invert{
  border-color: var(--default_color_one);
  color: var(--default_color_one);
  background: transparent;
}
.d2c_hero_v1 .d2c_btn_invert:hover{
  background: var(--default_color_one);
  color: var(--primary_color);
}
/* home doctor section */

.d2c_home_v1_doctor .d2c_image_left_angle{
  right: -10px;
  top: 50px;
  left: initial !important;
}
.d2c_home_v1_doctor .d2c_image_up_content{
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--default_color_one);
  border-radius: var(--border_radius);
  width: 65%;
  box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
  padding: 20px;
}
.d2c_home_v1_doctor h5{
  margin-bottom: 10px !important;
}
.d2c_home_v1_doctor .d2c_image_up_content p{
  font-size: 14px;
}
/* home v1 services */
.d2c_home_v1_services{
  background-image: url(../images/home_v1_services_bg.png);
}
.d2c_home_v1_services .d2c_explore_btn{
  background: #f3f5f7;
}
/* modern services section */
.d2c_modern_services h1{
  font-size: 2.5rem;
}
.d2c_modern_services .d2c_image_left_angle{
  right: -75px;
  top: 50px;
  left: initial !important;
}
.d2c_modern_services .d2c_image_up_content{
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--default_color_one);
  border-radius: var(--border_radius);
  width: 65%;
  box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
  padding: 20px;
}
.d2c_modern_services .d2c_percentage{
  background: var(--default_color_one);
  border-radius: var(--border_radius);
  box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
  padding: 20px;
  width: 200px;
  position: absolute;
  top: -35px;
  right: 0;
}
/* home call to action  */
.d2c_home_cta .d2c_btn{
  background: var(--default_color_one);
  color: var(--primary_color);
}
.d2c_home_cta .d2c_btn:hover{
  background: transparent;
  color: var(--default_color_one);
  border-color: var(--default_color_one);
}
/* home blog section */
.d2c_home_v1_blog .d2c_see_more{
  margin-top: 50px;
}
/* home v1 testimonial section */
.d2c_v1_testimonial_content{
  background: var(--default_color_one);
  box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
  border-radius: var(--border_radius);
  padding: 20px 40px;
}
.d2c_testimonial_v1{
  background-image: url(../images/testimonial_bg.png);
}
.d2c_testimonial_v1 .d2c_client_image{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  object-fit: cover;
}
.d2c_testimonial_v1 .d2c_testimonial_triangle{
  display: inline-block;
}
.d2c_testimonial_v1_slider{
  position: relative !important;
}
.d2c_testimonial_v1 .d2c_header{
  margin-bottom: 2rem;
}
.d2c_testimonial_v1_slider .slick-slide{
  padding: 17px;
}
.d2c_testimonial_v1_slider .d2c_carousel_btn.left{
  height: 250px;
  width: 190px;
  position: absolute;
  left: -185px;
  /* top: 37px; */
  border-radius: var(--border_radius);
  background: var(--primary_gradient),url(../images/testimonial_btn_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  color: var(--default_color_one);
}
.d2c_testimonial_v1_slider .d2c_carousel_btn.right{
  height: 250px;
  width: 190px;
  position: absolute;
  right: -185px;
  /* top: 37px; */
  border-radius: var(--border_radius);
  background: var(--primary_gradient),url(../images/testimonial_btn_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  color: var(--default_color_one);
}
.d2c_testimonial_v1_slider p{
  margin-top: 20px;
}

/* ========================== home v1 page end ============================ */

/* ========================== about page start ============================ */

.d2c_work_process{
  background: url(../images/timeline_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
}
.d2c_about_image_wrapper{
  width: 95%;
}
.d2c_about_image_wrapper .d2c_about_image_column:first-child img,.d2c_about_image_wrapper .d2c_about_image_column:nth-child(3) img{
  height: 300px;
  object-fit: cover;
}
.d2c_about_image_wrapper .d2c_about_image_column:nth-child(2) img,.d2c_about_image_wrapper .d2c_about_image_column:nth-child(4) img{
  height: 260px;
  object-fit: cover;
}
.d2c_about_image_wrapper .d2c_about_image_column:nth-child(2) img{
  margin-top: 40px;
}
.d2c_about_image_wrapper .d2c_about_image_column:nth-child(4) img{
  margin-bottom: 40px;
}
.d2c_about_list{
  background: var(--primary_color);
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
.d2c_about_list h2,.d2c_about_list .list-group-item {
  color: var(--default_color_one);
}
.d2c_about_list .list-group-item{
  background: transparent;
}
.d2c_about_list .list-group .d2c_icon_invert{
  border-color: var(--default_color_one);
}
.d2c_about_large_image{
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 45%;
}
.d2c_about_large_image img{
  object-fit: cover;
  border-radius: 0px;
}
.d2c_timeline_wrapper{
  text-align: center;
}
.d2c_timeline_wrapper .d2c_icon{
  border-radius: 50%;
  background: #E3E6EA;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
  transition: .4s all ease;
}
.d2c_timeline_wrapper:hover .d2c_icon{
  background: var(--primary_color);
  transition: .4s all ease;
}
.d2c_timeline_wrapper:hover h5{
  color: var(--default_color_one);
  transition: .4s all ease;
}
.d2c_timeline_wrapper .d2c_icon::after{
  content: '';
  position: absolute;
  width: 155px;
  height: 1px;
  background: rgba(97, 97, 97, 0.3);
  z-index: -1;
  left: 100px;
}
.d2c_timeline_column:last-child .d2c_icon::after{
  display: none;
}

.d2c_about_section{
  position: relative;
}
.d2c_about_section .d2c_image_up_angle{
  border-radius: 0px;
  position: absolute;
  top: 70px;
  left: -40px;
}
.d2c_about_section .d2c_triangle_right{
  border-radius: 0px;
  position: absolute;
  bottom: 0px;
  right: -100px;
}

.d2c_timeline{
  background-image: url(../images/timeline_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
}


/* ========================== about page end ============================ */

/* ========================== contact page start ============================ */
.d2c_contact .d2c_title::before{
  display: none;
}
.d2c_map_wrapper{
  width: 100%;
  line-height: 0;
}
.d2c_contact_details .d2c_contact_details_wrapper{
  padding: 15px 25px;
  border-radius: var(--border_radius);
}
.d2c_contact_details .d2c_contact_details_wrapper:nth-child(odd){
  background: var(--primary_shade);
}
.d2c_contact_details_wrapper h5{
  margin-bottom: 10px !important;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 700;
}
.d2c_map_wrapper iframe{
  filter: grayscale(60%);
}
.d2c_contact_details_wrapper p{
  font-weight: 600;
  color: var(--primary_color);
}
.d2c_contact_details_wrapper p a{
  color: var(--primary_color);
}
.d2c_contact_details_wrapper span i{
  font-size: 20px;
  color: var(--primary_color);
}
.d2c_contact_details_wrapper .col-2{
  border-right: 1px solid rgb(97 97 97 / 7%);
}
.d2c_contact_form .form-group{
  margin-bottom: 0px;
}
.d2c_contact_form .d2c_btn{
  margin-top: 10px;
}
/* ========================== contact page end ============================ */

/* ========================== department page start ============================ */
.d2c_department_right_image{
  height: 450px;
  position: relative;
}
.d2c_department_right_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d2c_department_right_image .d2c_overlay_department_image {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(32, 64, 102, 0.2), rgba(32, 64, 102, 0.2));
  border-radius: var(--border_radius);
}
.d2c_department_right_image .d2c_image_right_angle{
  position: absolute;
  right: -30px;
  bottom: 50px;
  width: 60px;
  height: auto;
  border-radius: 0px;
}
.d2c_features_card{
  border: var(--primary_border);
  border-radius: var(--border_radius);
  background: var(--default_color_one);
  padding: 20px;
  height: 100%;
}
.d2c_features_card hr{
  border-color: rgba(54, 83, 117, 0.15);
}
/* ========================== department page end ============================ */

/* ========================== single department page start ============================ */
.d2c_department_single .d2c_faq_v1 .btn{
  padding: 15px 35px 15px 15px;
}
.d2c_emergency_part{
  background: var(--primary_gradient),url(../images/emergency_background_image.jpg);
  border-radius: var(--border_radius);
  padding: 4.25rem 2rem;
}
.d2c_emergency_part h1,.d2c_emergency_part p,.d2c_emergency_part a{
  color: var(--default_color_one);
}
.d2c_emergency_part p{
  font-size: 1.5rem;
  font-weight: 600;
}
.d2c_emergency_part span{
  font-size: 1.25rem;
}
/* ========================== single department page end ============================ */

/* ========================== services page start ============================ */
.d2c_guideline{
  background: var(--primary_gradient),url(../images/guideline_bg.png);
}
.d2c_guideline h2,.d2c_guideline h4,.d2c_guideline p{
  color: var(--default_color_one);
}
.d2c_guideline_card{
  border: 1px solid #365375;
  border-radius: var(--border_radius);
  padding: 35px 30px;
  height: 100%;
}
.d2c_guideline hr{
  border-color: #365375;
}
.d2c_guideline_left_image{
  height: 450px;
  position: relative;
}
.d2c_guideline_left_image img{
  width: 95%;
  height: 100%;
  object-fit: cover;
}
.d2c_guideline_left_image .d2c_overlay_guideline_image{
  position: absolute;
  inset: 0;
  width: 95%;
  background: linear-gradient(0deg, rgba(32, 64, 102, 0.2), rgba(32, 64, 102, 0.2));
  border-radius: var(--border_radius);
}
.d2c_guideline_left_image .d2c_image_left_angle{
  position: absolute;
  left: -30px;
  bottom: 50px;
  width: 60px;
  height: auto;
  border-radius: 0px;
}
/* ========================== services page end ============================ */

/* ========================== services v2 page start ============================ */

.d2c_services_v2_doctors{
  background: var(--primary_color);
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
.d2c_services_v2_doctors h2,.d2c_services_v2_doctors p {
  color: var(--default_color_one);
}
.d2c_services_v2_doctors .list-group-item{
  background: transparent;
}
.d2c_services_v2_doctors .list-group .d2c_icon_invert{
  border-color: var(--default_color_one);
}
.d2c_services_v2_large_image{
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 45%;
}
.d2c_services_v2_large_image img{
  object-fit: cover;
  border-radius: 0px;
}
.d2c_services_v2_doctors .d2c_btn{
  color: var(--default_color_one);
  border-color: var(--default_color_one);
}
.d2c_services_v2_doctors .d2c_btn:hover{
  background: var(--default_color_one);
  color: var(--primary_color);
}
/* ========================== services v2 page end ============================ */

/* ========================== single services page start ============================ */
.d2c_single_services .d2c_medium_image{
  height: 250px;
}
.d2c_single_services .d2c_large_image{
  height: 380px;
}
.d2c_single_services .d2c_small_image{
  height: 120px;
}
.d2c_single_services .d2c_gallery:first-child .d2c_image_wrapper,.d2c_single_services .d2c_gallery:nth-child(3) .d2c_image_wrapper{
  margin-bottom: 20px;
}
.d2c_single_services .d2c_gallery:nth-child(2) .d2c_image_wrapper{
  margin-bottom: 10px;
}
.d2c_single_services .d2c_gallery:nth-child(2) .d2c_small_image_wrapper .col-md:first-child{
  padding-left: 15px;
}
.d2c_single_services .d2c_gallery:nth-child(2) .d2c_small_image_wrapper .col-md:last-child{
  padding-right: 15px;
}
.d2c_download_pdf{
  background: #E9ECF0;
  border-radius: var(--border_radius);
  text-align: center;
  padding: 85px 40px;
}
/* opening hours section */
.d2c_opening_hours{
  background: var(--primary_gradient),url(../images/guideline_bg.png);
}
.d2c_opening_hours h2,.d2c_opening_hours p{
  color: var(--default_color_one);
}
.d2c_opening_hours .d2c_time_table{
  background: transparent;
}
.d2c_opening_hours .d2c_time_table .table{
  width: 80%;
}
.d2c_opening_hours .d2c_time_table .table td{
  padding: 10px 0px;
  color: var(--default_color_one);
  border-color: #365375;
}
.d2c_opening_hours .d2c_btn_invert{
  color: var(--default_color_one);
  border-color: var(--default_color_one);
  margin-top: 20px;
}
.d2c_opening_hours .d2c_btn_invert:hover{
  background: var(--default_color_one);
  color: var(--primary_color);
}
/* question part */
.d2c_question{
  background: linear-gradient(0deg, rgba(32, 64, 102, 0.96), rgba(32, 64, 102, 0.96)), url(../images/question_bg.jpg);
  border-radius: var(--border_radius);
  padding: 78px 45px;
}
.d2c_question h2,.d2c_question p{
  color: var(--default_color_one);
}
.d2c_question .d2c_btn_invert{
  color: var(--default_color_one);
  border-color: var(--default_color_one);
  margin-top: 20px;
}
.d2c_question .d2c_btn_invert:hover{
  background: var(--default_color_one);
  color: var(--primary_color);
}

/* ========================== single services page end ============================ */

/* ========================== single services v2 page start ============================ */
.d2c_single_service_v2 .d2c_time_table p{
  padding: 0px 30px;
}
.d2c_single_service_v2 .d2c_appoint_btn{
  margin-top: 15px;
}
.d2c_single_service_v2 .d2c_opening_hours_wrapper{
  padding-bottom: 30px;
  padding-top: 15px;
}
.d2c_single_service_v2 .d2c_medium_image{
  height: 250px;
}
.d2c_single_service_v2 .d2c_gallery:nth-child(2) .d2c_image_wrapper, .d2c_single_service_v2 .d2c_gallery:nth-child(3) .d2c_image_wrapper{
  margin-bottom: 20px;
}
.d2c_single_service_v2 .d2c_gallery:nth-child(1) .d2c_image_wrapper{
  margin-bottom: 10px;
}
.d2c_single_service_v2 .d2c_gallery:nth-child(1) .d2c_large_image{
  height: 380px;
}
.d2c_single_service_v2 .d2c_gallery:nth-child(1) .d2c_small_image_wrapper .col-md:first-child {
  padding-left: 15px;
}
.d2c_single_service_v2 .d2c_gallery:nth-child(1) .d2c_small_image_wrapper .col-md:last-child {
  padding-right: 15px;
}
.d2c_single_service_v2 .d2c_small_image{
  height: 120px;
}
/* ========================== single services v2 page end ============================ */

/* =============== single event page css start =============== */
.d2c_event_single .d2c_event_large_image{
  height: 400px;
  position: relative;
  margin-bottom: 80px;
}
.d2c_event_single .d2c_time_table .table td{
  padding: 15px 20px;
}
.d2c_upcoming_event h3{
  padding: 20px 10px;
  border: var(--primary_border);
  border-radius: var(--border_radius);
}
.d2c_upcoming_event p span{
  color: var(--primary_color);
  font-size: 14px;
  margin-right: 5px;
}
.d2c_upcoming_event p a{
  color: var(--text_color);
}
.d2c_upcoming_event hr{
  border-color: #ececec82;
}
.d2c_event_single .d2c_entry_form {
  padding: 10px 0px 30px 0px;
}
.d2c_event_single .d2c_entry_form form{
  padding: 15px 20px 0px 20px;
  text-align: center;
}
.d2c_event_single .d2c_entry_form form .form-control{
  background: transparent;
}
.d2c_event_single .d2c_entry_form hr{
  border-color: var(--default_color_one);
  margin-top: 0px;
}
/* countdown timer css */
#timer {
  display: flex;
  font-size: 24px;
  color: var(--primary_color);
  font-family: var(--primary_font);
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  bottom: -50px !important;
  left: 75px;
}

#timer span {
  margin-left: 10px;
  font-size: 24px;
  font-family: var(--primary_font);
  font-weight: 500;
  text-transform: capitalize;
}

#timer .d2c_count_wrapper {
  background: #E9ECF0;
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.05);
  border-radius: var(--border_radius);
  margin-right: 10px;
  width: 140px;
  height: 100px;
}

#days,
#hours,
#minutes,
#seconds {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d2c_count_wrapper p{
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0px;
}
/* =============== single event page css end =============== */

/* =============== faq v1 css start =============== */

.d2c_faq_v1 .d2c_faq_content .card{
  border: none;
  margin-bottom: 20px;
}
.d2c_faq_v1 .d2c_faq_content .card-header{
  padding: 0px;
  border: none;
  border-radius: var(--border_radius);
  z-index: 11;
}
.d2c_faq_v1 .d2c_faq_content .card-body{
  border: var(--primary_border);
  background: var(--default_color_one);
  border-bottom-left-radius: var(--border_radius);
  border-bottom-right-radius: var(--border_radius);
  margin-top: -5px;
  padding-top: 25px;
  z-index: 1;
}
.d2c_faq_v1 .btn{
  width: 100%;
  padding: 20px 40px 20px 20px;
  background: #E9ECF0;
  font-family: var(--primary_font);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: capitalize;
  color: var(--primary_color);
  border-radius: var(--border_radius);
  text-align: left;
}
.d2c_faq_v1 .btn[aria-expanded="true"] {
  color: var(--default_color_one);
}
.d2c_faq_v1 .d2c_faq_content .card .card-header .btn[aria-expanded="true"] {
  background: var(--primary_color);
}
.d2c_faq_v1 .btn:focus{
  box-shadow: none;
  outline: none;
}
.d2c_faq_v1 .btn::after{
  content: url('../images/bottom.png');
  position: absolute;
  right: 15px;
  transition: .4s all ease;
  -webkit-transition: .4s all ease;
  -moz-transition: .4s all ease;
  -ms-transition: .4s all ease;
  -o-transition: .4s all ease;
}
.d2c_faq_v1 .btn:not(.collapsed)::after{
  content: url('../images/up.png');
}

.d2c_CTA p{
  color: var(--default_color_one);
}

/* =============== faq v1 css end =============== */

/* =============== faq v2 css start =============== */
.d2c_faq_v2 .d2c_question{
  padding: 50px 20px;
}
.d2c_faq_v2 .d2c_question h4{
  color: var(--default_color_one);
}
.d2c_faq_v2 .btn{
  padding: 20px 20px 20px 45px;
}
.d2c_faq_v2 .btn::after,.d2c_faq_v2 .btn:not(.collapsed)::after{
  display: none;
}
.d2c_faq_v2 .btn::before{
  content: url('../images/bottom.png');
  position: absolute;
  left: 15px;
  transition: .4s all ease;
  -webkit-transition: .4s all ease;
  -moz-transition: .4s all ease;
  -ms-transition: .4s all ease;
  -o-transition: .4s all ease;
}
.d2c_faq_v2 .btn:not(.collapsed)::before{
  content: url('../images/up.png');
}
/* =============== faq v2 css end =============== */


/* login system */
.d2c_login_system{
	background-color: var(--primary_color);
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
}

.d2c_bg_color{
	background-color: var(--default_color_one);
	border-radius: 0px 20px 20px 0px;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
	z-index: 2;
}
.d2c_login_content{
	position: relative;
	z-index: 4;
}
.d2c_login_content h1{
	text-transform: uppercase;
}
.d2c_login_content p{
	font-family: var(--primary_font);
}
.d2c_login_content .d2c_login_link{
	text-transform: uppercase;
	font-weight: 600;
}

.d2c_login_content .code-input{
	width: 35px;
    height: 35px;
    font-family: var(--primary_font);
    font-weight: 600;
	font-size: 21px;
    text-align: center;
    color: var(--primary_color);
    border: 1px solid rgba(97, 97, 97, 0.15);
    border-radius: var(--border_radius);
    display: inline-flex;
    align-items: center;
}

.d2c_maintenance .d2c_maintenance_heading{
	text-transform: uppercase;
}
.d2c_maintenance_contact{
	padding: 20px 0px;
}

.d2c_maintenance_contact .list-inline-item{
	margin-right: 20px;
}
.d2c_maintenance_contact .list-inline-item:last-child{
	margin-right: 0px;
}

/*Career Page start*/
.d2c_career_card h4{
	color: var(--text_color);
}
/* career page end */

/*Single Career Page start*/
.d2c_apply_form{
	background-color: var(--primary_shade);
}
.d2c_upload_btn{
	border: 1px dashed rgba(97, 97, 97, 0.15);
	border-radius: var(--border_radius);
	text-align: center;
}
.d2c_upload_btn label{
	padding: 20px;
	margin-bottom: 0;
}
/*Single Career Page end*/

/*Blog Page start*/
.d2c_featured_post .d2c_carousel_btn {
  position: absolute;
  top: -73px;
}

.d2c_featured_post .d2c_carousel_btn.right {
  right: 15px;
}

.d2c_featured_post .d2c_carousel_btn.left {
  left: calc(100% - 115px);
}

.d2c_carousel_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: var(--primary_border);
    background-color: var(--default_color_one);
    color: var(--primary_color);
    z-index: 100;
    padding: 0px 10px;
    font-size: 27px;
    border-radius: var(--border_radius);
    transition: 0.4s all;
}
.d2c_carousel_btn:hover {
    background-color: var(--primary_color);
    color: var(--default_color_one);
    transition: 0.4s all;
}
/*Blog Page end*/

/*Single Blog start*/
.d2c_sidebar{
	top: 100px;
}
.d2c_sidebar 
.d2c_card_image{
    height: 120px;
    position: relative;
    margin-bottom: 10px;
}

.d2c_sidebar 
.d2c_blog_card a,
.d2c_sidebar 
.d2c_blog_card a{
	font-family: var(--primary_font);
	color: var(--primary_color);
	text-transform: uppercase;
	font-weight: 600;
}

.d2c_sidebar 
.d2c_header{
	border: var(--primary_border);
	padding: 20px;
	text-align: center;
	border-radius: var(--border_radius);
	margin-bottom: 20px;
}
.d2c_sidebar 
.d2c_header *{
	margin-bottom: 0 !important;
}

.d2c_meta a{
	font-family: var(--secondary_font);
	color: var(--text_color);
}
.d2c_meta a:hover{
	color: var(--primary_color);
}
/*Single Blog end*/

/*Single Doctor page start*/
.d2c_doctor_details{
	padding: 20px;
	background-color: var(--primary_shade);
	border-radius: var(--border_radius);
}

.d2c_doctor_details
.d2c_doctor_img{
	max-width: 500px;
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--border_radius);
	margin-bottom: 20px;
}
.d2c_doctor_details h3{
	margin-bottom: 10px !important;
}
.d2c_doctor_details
.d2c_doctors_department{
	margin-bottom: 10px;
	font-family: var(--primary_font);
}
.d2c_doctor_details li{
	margin-bottom: 10px;
}
.d2c_doctor_details li a{
	color: var(--text_color);
	font-family: var(--primary_font);
	font-size: 16px;
}
.d2c_doctor_details li i{
	margin-right: 10px;
	color: var(--primary_color);
}

.d2c_emergency{
	background-color: var(--primary_color);
	padding: 20px;
	border-radius: var(--border_radius);
}
.d2c_emergency *{
	color: var(--default_color_one);
}
.d2c_emergency i{
	font-size: 60px;
}
.d2c_emergency a{
	font-family: var(--primary_font);
	color: var(--default_color_one);
}

.d2c_emergency .d2c_btn_invert{
	color: var(--default_color_one);
	border-color: var(--default_color_one);
}
.d2c_emergency .d2c_btn_invert:hover{
	background-color: var(--default_color_one);
	color: var(--primary_color);
}
/*Single Doctor page end*/

/*Doctors Page start*/

.d2c_doctors_hero{
	padding: 200px 0px;
}

.d2c_doctors_hero
.d2c_hero_title{
	color: var(--default_color_one);
}

.d2c_profileBy_department .shuffle-btn-group {
  display: inline-block;
  margin: 0px 0 50px;
  width: 100%;
}

.d2c_profileBy_department .shuffle-btn-group label {
  display: inline-block;
  color: var(--primary_color);
  font-family: var(--secondary_font);
  font-size: 16px;
  padding: 10px 25px;
  border-radius: var(--border_radius);
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0;
  transition: 0.4s all;
}

@media (max-width:1200px) {
  .d2c_profileBy_department .shuffle-btn-group label {
    padding: 3px 18px;
  }

}

@media (max-width:991px) {
  .d2c_profileBy_department .shuffle-btn-group label {
    padding: 3px 7px;
    font-size: 12px;
  }

}

.d2c_profileBy_department .shuffle-btn-group label:hover {
  color: var(--default_color_one);
  background: var(--primary_color);
  transition: 0.4s all;
}

.d2c_profileBy_department .shuffle-btn-group label.active {
  color: var(--default_color_one);
  background: var(--primary_color);
}

.d2c_profileBy_department .shuffle-btn-group label input {
  display: none;
}


.d2c_video_popup{
	position: relative;
}

.d2c_video_popup 
.d2c_btn{
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(32, 64, 102, 0.15), rgba(32, 64, 102, 0.15));
	border: none; 
}



.tdg_counter.card{
	align-items: center;
	background-color: transparent;
	border: none;
}

.circle_percent {
	font-size: 160px;
	width: 1em;
	height: 1em;
	position: relative;
	background: #eee;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
}

.circle_inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 1em;
	height: 1em;
	clip: rect(0 1em 1em .5em);
}

.round_per {
	position: absolute;
	left: 0;
	top: 0;
	width: 1em;
	height: 1em;
	background: var(--primary_color);
	clip: rect(0 1em 1em .5em);
	transform: rotate(180deg);
	transition: 1.05s;
}

.percent_more .circle_inner {
	clip: rect(0 .5em 1em 0em);
}

.percent_more:after {
	position: absolute;
	left: .5em;
	top: 0em;
	right: 0;
	bottom: 0;
	background: var(--primary_color);
	content: '';
}

.circle_inbox {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background: #fff;
	z-index: 3;
	border-radius: 50%;
}

.percent_text {
	position: absolute;
	font-family: var(--primary_font);
	font-size: 18px;
	text-transform: capitalize;
	color: var(--primary_color);
	font-weight: 600;
	text-align: center;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}


/*Blog V2*/

.d2c_blog_v2_hero
.d2c_content{
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0px 0px 27px rgb(0 0 0 / 8%);
    backdrop-filter: blur(25px);
    border-radius: var(--border_radius);
    padding: 50px 40px;
    position: relative;
    width: calc(100% + 50px);
    z-index: 100;
}
.d2c_blog_v2_hero
.d2c_content:hover a{
  text-decoration: underline;
}

.d2c_blog_v2_hero 
.d2c_carousel_btn {
    bottom: 0;
    top: initial;
    transform: initial;
}

.d2c_blog_v2_hero 
.d2c_carousel_btn.right{
	left: 50px;
}


.d2c_v2_popular_post_col
.d2c_blog_v2_card 
.d2c_card_image{
	height: 180px;
}

.d2c_v2_popular_post_col
.d2c_blog_v2_card 
.d2c_blog_v2_body{
	padding: 15px 10px;
}

.d2c_v2_popular_post_col
.d2c_blog_v2_card 
.d2c_blog_v2_body
h4{
	margin-bottom: 0;
}
.d2c_popular_post .d2c_blog_v2_card .d2c_popular_large_image{
  height: 320px;
}
.d2c_popular_large_image_col{
  padding: 20px 15px;
}
.d2c_blog_v2_carousel_item .blog_column{
  display: grid;
  align-items: center;
}

/*Contact Page V2*/
.d2c_contact_details_v2{
	background: var(--default_color_one);
	box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
	border-radius: var(--border_radius);
}
.d2c_contact_details_v2 p i{
	margin-right: 10px;
	color: var(--primary_color);
}
.d2c_contact_details_v2 p span{
	color: var(--primary_color);
}
.d2c_contact_details_v2 p a{
	color: var(--primary_color);
}


/*Event Page*/
.card.d2c_event_card{
	background: var(--default_color_one);
	border: 1px solid rgba(97, 97, 97, 0.1);
	border-radius: var(--border_radius);
}

.card.d2c_event_card
.card-img-top{
	border-radius: 8px 8px 0px 0px;
}
.card.d2c_event_card
.list-group-item i{
	margin-right: 10px;
	color: var(--primary_color);
}
.card.d2c_event_card
.list-group-item{
	font-size: 12px;
}

.card.d2c_event_card 
h5{
	margin-bottom: 10px !important;
	transition: 0.4s all;
}
.card.d2c_event_card:hover
h5{
	text-decoration: underline;
	transition: 0.4s all;
}

.card.d2c_event_card a{
	color: var(--primary_color);
	text-transform: capitalize;
	font-weight: 600;
}

.card.d2c_event_card a i{
	margin-left: 10px;
}

.d2c_CTA h4{
	color: var(--default_color_one);
}



/*Home Page V2*/

.d2c_home_v2_hero{
	padding: 270px 0px;
}
.d2c_home_v2_hero
.d2c_video_popup 
.d2c_btn{
 	border: transparent;
    background-color: transparent;
    position: absolute;
    background: transparent;
    border: transparent;
    inset: initial;
    right: -30px;
    bottom: -30px;
    padding: 0;
}

/* The circle */
.d2c_solid_wave {
  	position: relative;
	margin: 0 auto;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--default_color_one);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* the 'wave', same shape and size as its parent */
.d2c_animate_wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--default_color_one);
    opacity: 0;
    z-index: -10;
    pointer-events: none;
}

/*
  Animate!
  NOTE: add browser prefixes where needed.
*/
.d2c_animate_wave {
  animation: d2c_wev 2s linear infinite;
}

@keyframes d2c_wev {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

.d2c_home_v2_hero
.d2c_video_popup 
.d2c_btn i{
	color: var(--primary_color);
}



.d2c_hero_form{
	padding: 30px 0px;
	margin-top: -130px;
}
.d2c_hero_form form{
	background: #FFFFFF;
	box-shadow: 0px 0px 21px rgba(32, 64, 102, 0.08);
	border-radius: 8px;
	padding: 30px;
}

.d2c_hero_form label{
	font-family: var(--primary_font);
	font-style: normal;
	font-weight: 600;
	font-size: 21px;
	text-transform: capitalize;
	color: var(--primary_color);
}

.d2c_home_v2_testimonial{
	position: relative;
}

.d2c_home_v2_testimonial
.d2c_bg_shape{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	z-index: 0;
	background-color: var(--primary_color);
	border-radius: 8px 0px 0px 8px;
}

.d2c_home_v2_testimonial
.container{
	position: relative;
	z-index: 10;
}
.d2c_home_v2_testimonial
.d2c_title{
	color: var(--default_color_one);
}
.d2c_home_v2_testimonial
.d2c_testimonial_content
img{
	height: 100px;
	width: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 20px auto;
}
.d2c_home_v2_testimonial .d2c_testimonial_heading{
  color: var(--default_color_one);
  margin-bottom: 0px !important;
}

.d2c_home_v2_about .d2c_title::before{
  display: none;
}


/* 404 page css start */
.d2c_404{
	height: 90vh !important;
}
.d2c_404 *{
	color: var(--default_color_one);
}
.d2c_404 .d2c_content{
	font-size: 150px;
	color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--default_color_one);
    text-transform: uppercase;
}
.d2c_404 h1{
	margin-bottom: 65px !important;
	text-transform: uppercase;
}
.d2c_404 .d2c_btn_invert{
	color: var(--default_color_one);
	border-color: var(--default_color_one);
}
.d2c_404 .d2c_btn_invert:hover{
	background-color: var(--default_color_one);
	color: var(--primary_color);
}
/* 404 page css end */

/* =============== privacy policy and terms_condition page start =============== */
.d2c_privacy_policy_main ul li{
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 16px;
  color: var(--text_color);
}
/* =============== privacy policy and terms_condition page end =============== */

/*Footer*/
.d2c_footer{
	background-image: var(--primary_gradient),url('../images/footer_bg.jpg');
}
.d2c_footer h5{
	color: var(--default_color_one);
	margin-bottom: 0 !important;
}
.d2c_footer .d2c_text_devider{
	border-bottom: 2px solid var(--default_color_one);
	width: 60px;
	margin-top: 15px;
    margin-bottom: 15px;
}
.d2c_footer p{
	color: var(--default_color_one);
}
.d2c_footer .list-unstyled li{
	margin-bottom: 5px;
}
.d2c_footer .list-unstyled a{
	color: var(--default_color_one);
	font-family: var(--primary_font);
	font-size: 16px;
	text-transform: capitalize;
    display: inline-flex;
}

.d2c_footer i{
	margin-right: 8px;
}

.d2c_footer .d2c_copyright{
	border-top: 1px solid rgba(54, 83, 117, 0.6);
	padding-top: 15px; 
	padding-bottom: 15px; 
}
.d2c_copyright p{
	font-weight: 500;
}
.d2c_copyright p a{
	color: var(--default_color_one);
}
.d2c_copyright .d2c_social_link .d2c_icon{
  background: var(--default_color_one);
  color: var(--primary_color);
}
.d2c_copyright .d2c_social_link .d2c_icon:hover{
	background-color: #dcdcdc;
	color: var(--primary_color);
}
/*Footer*/

/* ========================== bottom to top scroll start ============================ */

#scrollToTopBtn a{
  text-decoration: none;
}
#scrollToTopBtn a i{
  background: #1b324e;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
  font-size: 20px;
  color: var(--default_color_one);
  border-radius: 4px;
  width: 35px;
  height: 35px;
  position: fixed;
  z-index: 9999;
  bottom: 5%;
  right: 4%;
  transition: 0.4s all ease;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================== bottom to top scroll end ============================ */

/* 
Template Name: Curetone
Template URI: https://www.designtocodes.com/product/curetone-bootstrap-medical-service-template/
Description: Curetone is a fully responsive Medical service website template inspired by a modern flat design.
Author: DesignToCodes
Author URI: https://www.designtocodes.com
Text Domain: Curetone
*/
