/*---------------------------------------------------
JQUERY FATEPICKER
----------------------------------------------------*/

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover .ui-icon,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next-hover .ui-icon {
    color: #FC624D !important;
}

.ui-datepicker .ui-datepicker-header .ui-icon {
    font-size: 14px !important;
    transition: .4s;
    top: 50%;
    transform: translatey(-4px);
}

div#ui-datepicker-div {
    border: blanchedalmond;
    width: 239px;
    border-radius: 0px;
    overflow: hidden;
    padding: 0 10px;
}

.ui-datepicker-header.ui-widget-header {
    background-color: #EFF0F4 !important;
    border-bottom: none !important;
}

td.ui-datepicker-days-cell-over.ui-datepicker-today,
td.ui-datepicker-days-cell-over.ui-datepicker-today a {
    background-color: #EFF0F4 !important;
}

td.ui-datepicker-days-cell-over.ui-datepicker-today a.ui-state-highlight {
    border: none;
}

td a.ui-state-default {
    font-size: 11px;
}

a.ui-state-default.ui-state-hover {
    background-color: transparent !important;
}

.ui-datepicker-calendar tbody td:hover {
    background: #EFF0F4;
}

.ui-datepicker th {
    font-size: 12px;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 12px;
}

.ui-datepicker .ui-datepicker-header .ui-icon:before {
    margin-bottom: 6px;
    display: block;
}

.ui-datepicker table {
    margin-bottom: 0 !important;
    border-top: none !important;
}

.ui-datepicker .ui-datepicker-header {
    border-radius: 0px !important;
    overflow: hidden;
    border: 0px !important;
}

table.ui-datepicker-calendar tr:first-child {
    border-top: none !important;
}

.ui-widget-content tr {
    height: 35px !important;
}


/*---------------------------------------------------
Elementor Css
----------------------------------------------------*/

.elementor-counter .elementor-counter-number-prefix,
.elementor-counter .elementor-counter-number-suffix {
    flex-grow: unset;
}

/* video button */
.elementor-custom-embed-play i.eicon-play:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

div.elementor-custom-embed-play i {
    font-size: 14px;
}

.elementor-custom-embed-play {
    width: 92px;
    height: 92px;
    line-height: 92px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.elementor-wrapper.elementor-open-lightbox {
    position: relative;
}

.elementor-wrapper.elementor-open-lightbox:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    content: "";
    border-radius: 10px;
    z-index: 1;
    opacity: 0.2;
}

.elementor-custom-embed-play {
    z-index: 2;
}


/* Video Butoon Animation  */
.elementor-open-lightbox {
    z-index: 99;
}

.elementor-custom-embed-play:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.elementor-icon {
    display: inline-flex !important;
}

.elementor-widget-text-editor .elementor-drop-cap {
    line-height: 0;
}

/* graditent text */
.redth-addons-feature-icon.icon-type-text .gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Search Icon css*/
div#search_icon {
    cursor: pointer;
}


/*Page Button hover css */
.redth-addons-btn span.icon-after.btn-icon {
    transform: translate(0px, 0px);
}

.redth-addons-btn:hover span.icon-after.btn-icon {
    transform: translate(10px, -5px);
}


/*Isotope Nav menu style*/
.pf-isotope-nav li {
    background-color: transparent;
    border-radius: 40px;
}
.pf-isotope-nav li:hover, 
.pf-isotope-nav li.active{
    background-color: #F9D783;
    color: #191919 !important;
}





/*Scroll To Top Css*/
.redth-scrolltotop-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 999;
	transition: all 0.5s linear;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}
.redth-scrolltotop-wrap.active{
	bottom: 80px;
	opacity: 1;
	visibility: visible;
}
.redth-scrolltotop-wrap .redth-scrolltotop {
    width: 50px;
    height: 50px;
    background-color: #0E1021;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
	color: #ffffff;
	border: 1px solid #44444d;
    font-weight: 700;
	overflow: hidden;
	
}
.redth-scrolltotop-wrap:after,.redth-scrolltotop-wrap:before {
    content: "";
    background-color: #44444d;
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
	animation: scroll_fade 3s linear infinite;
	opacity: 1;
	
}
@keyframes scroll_fade{
	60%{
		opacity: 0;
		transform: scale(2);
	}
	70%{
		opacity: 0;
		transform: scale(3);	
	}
	80%{
		opacity: 0;
		transform: scale(0.5);	
	}
	100%{
		opacity: 1;
		transform: scale(0.5);	
	}
}
.redth-scrolltotop-wrap:before{
	animation-delay: 1s;
}


.home2_video_popup:after,
.home2_video_popup:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "" !important;
    background-color: #5E5EEE;
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
    transform: scale(0.5);
	animation: scroll_fade 3s linear infinite;
}
.home2_video_popup:before{
	animation-delay: 1s;
}
.home2_video_popup2{
	background-color: #4589F4;
}





/*Team Single meta*/
.single_team_content_wraper {
    display: flex;
}

.single_team_content_wraper .team-thumbnail {
    min-width: 300px;
    max-width: 350px;
}

.single_team_content_wraper .team-thumbnail a {
    width: 100%;
    display: flex;
    height: 100%;
}

.single_team_content_wraper .team-thumbnail a img {
    object-fit: cover;
}




.home_sesarch form.redth-search-button-wrapper {
    border-radius: 10px;
}
.home_sesarch form.redth-search-button-wrapper button {
    transition: all 0.3s ease-in-out;
}
.home_sesarch form.redth-search-button-wrapper input {
    height: 68px;
}



/*Hero Animation css*/
.hero_animation1{
	animation: hero1_circle 4s linear infinite;
}
@keyframes hero1_circle{
	to{
		transform: rotate(360deg);
	}
}


.hero_animation2{
	animation: hero2_circle 4s linear infinite;
	transform: translate(-20px, 0px);
}
@keyframes hero2_circle{
	50%{
		transform: translate(2px, 0px);	
	}
}

.hero_animation3{
	animation: hero3_circle 6s linear infinite;
	transform: translate(0px, 20px);
}
@keyframes hero3_circle{
	50%{
		transform: translate(0px, -10px);	
	}
}


.home3_testimonials .user-identity-wrapper > div{
	gap: 25px !important;
}







/*
 * Button 1 Style
 * */

.button_style1 a, 
button.button_style1{
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button_style1 a:before,
button.button_style1:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 120%;
    background-color: var(--heading-color);
    border-radius: 40px 0 0 40px;
    z-index: -1;
    transform: translate(85%, 95%);
    transition: all 0.3s ease-in-out;
}

.button_style1 a:after,
button.button_style1:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 120%;
    background-color: var(--heading-color);
    border-radius: 0 40px 40px 0;
    z-index: -1;
    transform: translate(-85%, -95%);
    transition: all 0.3s ease-in-out;
}
button.button_style1:after{
    transform: translate(-95%, -105%);	
}
button.button_style1:before{
    transform: translate(95%, 105%);
}
.button_style1 a:hover:after, .button_style1 a:hover:before,
button.button_style1:hover:before, button.button_style1:hover:after{
/*     border-radius: 0; */
    transform: translate(0px, 0px);
}








/* Home2 Button Style */

.home2_button1,
.home2_button3{
  overflow: hidden;
  border-radius: 25px;
}

.home2_button2{
  overflow: hidden;
  border-radius: 5px;
}

.home2_button1 span.content,
.home2_button2 span.content,
.home2_button3 span.content {
    z-index: 3;
}

.home2_button1:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #5E5EEE;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -205px;
    border-radius: 25px;
    transition: 0.4s ease-in-out;
}



.home2_button2:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #4589F4;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -205px;
    border-radius: 5px;
    transition: 0.4s ease-in-out;
}

.home2_button3:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #2ac28e;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -205px;
    border-radius: 25px;
    transition: 0.4s ease-in-out;
}

.home2_button1:hover:after,
.home2_button2:hover:after,
.home2_button3:hover:after {
  left: 0;
}

.home2_button3:hover span.content {
  color: #ffffff !important;
	transition: 0.4s ease-in-out;
}


/*Video Modal Animation*/
.home2_modal_btn_custom {border-radius: 50% !important;overflow: hidden;height: 80px;}

.home2_modal_video_icon_animation {
    border-radius: 50% !important;
	animation: button_circle_fade 3s linear infinite;
	transform: scale(1);
	opacity: 0;
}

@keyframes button_circle_fade{
	20%{
		transform: scale(1.5);
		opacity: 0.5;
	}
	50%{
		transform: scale(2);
		opacity: 0;
	}
	70%{
		transform: scale(2.2);
		opacity: 0;
	}
	100%{
		transform: scale(1);
		opacity: 0;
	}
}















/*Scroll To Top Css*/
.fbth-scrolltotop-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 999;
	transition: all 0.5s linear;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}
.fbth-scrolltotop-wrap.active{
	bottom: 80px;
	opacity: 1;
	visibility: visible;
}
.fbth-scrolltotop-wrap .fbth-scrolltotop span svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
}
.fbth-scrolltotop-wrap .fbth-scrolltotop {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
    border: 1px solid var(--accent-color);
    font-weight: 700;
    overflow: hidden;
}
.fbth-scrolltotop-wrap:after,.fbth-scrolltotop-wrap:before {
    content: "";
    background-color:  var(--accent-color);
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
	animation: scroll_fade 3s linear infinite;
	opacity: 1;
	
}
@keyframes scroll_fade{
	60%{
		opacity: 0;
		transform: scale(2);
	}
	70%{
		opacity: 0;
		transform: scale(3);	
	}
	80%{
		opacity: 0;
		transform: scale(0.5);	
	}
	100%{
		opacity: 1;
		transform: scale(0.5);	
	}
}
.fbth-scrolltotop-wrap:before{
	animation-delay: 1s;
}




.wpcf7-not-valid-tip {
    bottom: -10px;
    padding: 2px 10px;
    margin: 0;
    position: absolute;
    right: 0;
}
.wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: 0;
    z-index: 3;
    padding: 3px 30px !important;
    transform: translate(0px, 110%);
}













/*Pricing Page css*/
.pricing_hero_wraper{
	position: relative;
	z-index: 1;
}
.pricing_page_hero_section, .pricing_page_hero_section > div {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
	overflow: hidden;
}

.pricing_page_left_hero,
.pricing_page_right_hero{
    position: absolute !important;
    left: 0;
    top: 0;
    width: 48% !important;
    height: 100%;
    z-index: 2;
}
.pricing_page_right_hero{
	left: auto;
	right: 0;
}
.pricing_page_right_hero:after,
.pricing_page_right_hero:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "" !important;
    background-color: #F9D783;
    opacity: 0.3;
    transform: rotate(-38deg) translate(-70px, 240px);
}
.pricing_page_right_hero:before {
    transform: rotate(-38deg) translate(-40px, 363px);
}
.pricing_page_left_hero:before,
.pricing_page_left_hero:after{
    width: 400px;
    height: 400px;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "" !important;
    background-color: #F9D783;
    opacity: 0.3;
    transform: rotate(45deg) translate(0px, 284px);
}

.pricing_page_left_hero:after {
    right: auto;
    left: 0;
    transform: rotate(45deg) translate(0px, 284px);
}
.pricing_page_left_hero:before{
	animation: pricing_shapes 4s linear infinite;
}
.pricing_page_right_hero:before{
	animation: pricing_shapes2 4s linear infinite;
}
@keyframes pricing_shapes{
	50%{
		right: 25px;
	}
}
@keyframes pricing_shapes2{
	50%{
		opacity: 0.1;
	}
}


.pricing_single_service a.elementor-button svg {
    transform: translate(80%, 0px);
    transition: all 0.3s ease-in-out;
}
.pricing_single_service.faq_ser2 a.elementor-button svg{
	fill: #191919;
}
.pricing_single_service a.elementor-button:hover svg {
    transform: translate(130%, 0px);
}

.contact-form-main span.wpcf7-not-valid-tip,
.pricing_newsletter_area .wpcf7-response-output,
.home4_hero_newsletter .wpcf7-response-output,
.home4_footer_forms .wpcf7-response-output {
    position: absolute;
	z-index: 3;
	display: none !important;
}
input.wpcf7-form-control.wpcf7-not-valid {
    border: 1px solid #b61c1c !important;
	transition: all 0.3s ease-in-out;
}
input.wpcf7-form-control.wpcf7-not-valid::placeholder {
    color: red !important;
	transition: all 0.3s ease-in-out;
}


.home2_video_popup.home2_video_popup2 {
    border-radius: 50%;
}



/*Home 1 Custom css*/
.home1_rotate_image {
    transform: translate(-50%, -50%);
}

.home1_rotate_image img {
    animation: home1_image_rotate 10s linear infinite;
}

@keyframes home1_image_rotate{
	from{
		transform: rotate(360deg);
	}
}

.home1_faq .redth-accordion-single-item {
    background: rgb(248,255,218);
    background: linear-gradient(45deg, rgba(248,255,218,1) 0%, rgba(205,255,241,1) 100%);
}
.home1_footer > p {
    display: flex;
}

.home1_service_section .service-icon {
    display: flex;
    justify-content: end;
    padding-right: 20px;
    z-index: 2;
    position: relative;
    transform: translate(0px, -50%);
	margin-bottom: -20px;
}
.home1_service_section .cs-title,
.home1_blog .post-title{
	transition: all 0.3s ease-in-out;
}
.home1_blog .post-btn-wrap a{
	position: relative;
	z-index: 1;
}
.home1_service_section .cs-btn-wrap a:after,
.home1_blog .post-btn-wrap a:after{
    content: "";
    position: absolute;
    right: -10px;
    bottom: 7px;
    width: 0px;
    height: 1px;
	transform: translate(100%,0);
    background-color: var(--heading-color) !important;
	transition: all 0.2s ease-in-out;
}
.home1_service_section .cs-btn-wrap a:hover:after,
.home1_blog .post-btn-wrap a:hover:after{
    width: 40px;
}
.home1_tyestimonials .testimonial-two-top-meta {
    overflow: unset;
}
.home1_blog .post-top-meta.post-category {
    background-color: var(--accent-color-2);
}
.home1_team_section .team-btn-details {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: translate(0px, -50%);
}

.home1_team_section .team-btn-details svg {
    margin: 0 !important;
    transition: all 0.5s ease-in-out;
}

.home1_team_section .team-content_wraper {
    position: relative;
}

.home1_team_section .team-btn-details:hover svg {
    transform: rotate(360deg);
}

.home1_blog .post-meta-bottom{
	gap: 25px;
}

.home1_service_section .service-thumbnail-img {
    border-radius: 5px;
}
.home1_blog .post-thumbnail{
	border-radius: 5px 5px 0 0;
}


.team-content_wraper{
	transition: all 0.3s ease-in-out;
}
.home1_appoinment .select2-container--default .select2-selection--single{
	background: #ffffff !important;
	height: 52px;
}
.home1_appoinment.single_team_appoinment .doctor_appoinment1 .col-md-6 {
    flex: unset;
    max-width: 100%;
    width: 100%;
}
.home1_appoinment.single_team_appoinment span.selection {
    margin-bottom: 20px !important;
    display: flex;
}






















































/*Home 2 Service Section*/
.home2_service .cs-btn {
    height: unset !important;
    width: unset !important;
}

.home2_service .cs-btn-wrap {
    justify-content: start !important;
}

.home2_service img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 100%;
}



.home2_service .service-thumbnail-img {
    border-radius: 8px 8px 0px 0px;
}

.home2_service .cs-widget-item{
  position: relative;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.home2_service h2.cs-title {
    margin-top: -25px;
}

.home2_service .service-icon {
    justify-content: end;
    transform: translate(-30px, -40px);
}

.home2_service .service-icon svg {
    z-index: 3 !important;
}

.home2_service .service-thumbnail-img:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #5e5eee4d;
    position: absolute;
    opacity: 0;
    z-index: 3;
    
}

.home2_service .service-widget-wrap:hover .service-thumbnail-img:before {
    opacity: 1;
    transition: all 0.5s;
}

.home2_service .service-widget-wrap:hover h2.cs-title {
    color: #5e5eee !important;
    transition: all 0.4s;
}

.home2_service .service-widget-wrap:hover a.cs-btn {
    background-color: #5e5eee !important;
    transition: all 0.4s;
}

.home2_service .cs-btn:before {
    display: none;
}





/*Home 2 About Section*/
.home2_about:after {
    content: "";
    width: 300px;
    height: 300px;
    border: 25px solid #5E5EEE;
    border-radius: 300px;
    position: absolute;
    right: 81px;
    bottom: 50px;
    z-index: -1;
}

/*Home 2 Workflow Section*/
.home2_workflow .redth-addons-feature-box-item {
    position: relative;
    overflow: hidden;
}

.home2_workflow .redth-addons-feature-box-item:after {
    content: "";
    width: 120px;
    height: 120px;
    background-image: url(https://redindex.net/demos/wp/medifix/wp-content/uploads/2024/02/Group-17.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    right: -120px;
    transition: 0.4s ease-in-out;
	opacity: 0.5;
}

.home2_workflow .redth-addons-feature-box-item:hover:after{
	right: -30px;
}




/*Home 2 Testimonial Section*/

.home2_testimonial .user-identity-wrapper {
    padding-top: 50px;
}


.home2_testimonial .rating_area {
    position: absolute;
    bottom: 105px;
    left: 30px;
}



/*Home 2 Team Section*/
.home2_team .team-card-single{
  position: relative;
}

.home2_team .team-thumbnail:after,
.home2_team .team-thumbnail:before{
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(3,29,54,0.5) 3%, rgba(255,255,255,0.0) 40%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
	transition: all 0.3s ease-in-out;
}

.home2_team .team-thumbnail:before{
  background: linear-gradient(0deg, #5E5EEE 3%, rgba(255,255,255,0.0) 40%) !important;
	opacity: 0;
}

.home2_team .team-card-single:hover .team-thumbnail:before{
	opacity: 1 ;
}
.home2_team .team-card-single:hover .team-thumbnail:after{
	opacity: 0 ;
}



.home2_team .team-content_wraper {
    position: absolute;
    bottom: 20px;
    left: 20px;
}


.home2_testimonial .slick-list.draggable {
    padding: 20px 10px;
}



/*Home 2 Blog Section*/
.home2_blog .post-thumbnail {
    border-radius: 10px 10px 0px 0px;
}

.home2_blog .post-category {
    background-color: #5E5EEE !important;
}

.home2_blog .post-content {
    display: flex;
    flex-direction: column !important;
}

.home2_blog .post-btn-wrap {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.home2_blog .redth-addons-post-widget-item {
    position: relative;
}

.home2_blog .post-meta-bottom {
    justify-content: flex-start !important;
    gap: 30px;
}

.home2_blog .redth-addons-post-widget-item:hover h3.post-title {
    color: #5e5eee !important;
}

.home2_blog .redth-addons-post-widget-item:hover .post-btn {
  background-color: #5e5eee !important;
}










/*Home 3 Service Section*/
.home3_about_animation {
    transform: rotate(-90deg);
}


/*Home 3 Service Section*/
.home2_service.home3_service .cs-btn-wrap {
    justify-content: center !important;
}

.home2_service.home3_service .service-widget-wrap:hover h2.cs-title {
    color: #4589F4 !important;
    transition: all 0.4s;
}

.home2_service.home3_service .service-widget-wrap:hover a.cs-btn {
    background-color: #4589F4 !important;
    transition: all 0.4s;
}

.home2_service.home3_service .service-thumbnail-img:before {
    background-color: #4589F44d;
}

.home2_service.home3_service .service-icon {
    justify-content: start;
    transform: translate(20px, -180px);
}

.home2_service.home3_service .service-icon svg rect{
    fill: #4589F4 !important;
}

/*Home 3 Portfolio Section*/

.home3_portfolio .medifix-portfolio-item-wrap, .home3_portfolio2 .medifix-portfolio-item-wrap {
    position: relative;
}

.home3_portfolio .port-date, .home3_portfolio2 .port-date {
    display: none;
}
.home3_portfolio .port-date-btn-wrapper {
  display: inline-flex !important;      
  position: absolute;
  top: -200px;
  right: -230px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.home3_portfolio2 .medifix-portfolio-content {
    position: absolute;
    margin-right: 20px;
    bottom: 30px;
    left: 25px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.home3_portfolio .medifix-portfolio-title, .home3_portfolio2 .medifix-portfolio-title {
    border: none !important;
}

.home3_portfolio .medifix-portfolio-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.home3_portfolio .category-wrapper,
.home3_portfolio2 .category-wrapper {
  z-index: 3;
    position: absolute;
    bottom: 45px;
    left: 45px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.home3_portfolio2 .port-date-btn-wrapper {
  display: inline-flex !important;      
  position: absolute;
  top: -170px;
  right: -35px;
}

.home3_portfolio .medifix-portfolio-item-wrap {
    padding-bottom: 0px !important;
}


.home3_portfolio .medifix-portfolio-item:hover .port-date-btn-wrapper,
.home3_portfolio2 .medifix-portfolio-item:hover .port-date-btn-wrapper,
.home3_portfolio2 .medifix-portfolio-item:hover .category-wrapper,
.home3_portfolio .medifix-portfolio-item:hover .category-wrapper,
.home3_portfolio2 .medifix-portfolio-item:hover .medifix-portfolio-content,
.home3_portfolio .medifix-portfolio-item:hover .medifix-portfolio-content {
  opacity: 1;
}


/*Home3 Team Section*/

.home3_team .team-content_wraper {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    text-align: center;
}

.home3_team .team-title {
    padding-bottom: 10px;
}




/*Home 3 Blog Section*/
.home2_blog.home3_blog .redth-addons-post-widget-item:hover .post-btn {
  background-color: unset !important;
}

.home2_blog.home3_blog .redth-addons-post-widget-item:hover h3.post-title {
    color: #4589F4 !important;
}

.home2_blog.home3_blog .post-category {
    background-color: #4589F4 !important;
	left: 20px !important;
    width: max-content;
}

.home3_blog span.byline svg path,
.home3_blog span.post-date svg path {
    stroke: #4589F4 !important;
}


/*Gallery Page */
.gallery_page a {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery_page a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    content: "";
    opacity: 0;
    transition: all 0.2s linear;
}

.gallery_page a:hover:before {
    opacity: 0.3;
}
.gallery_page a:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    background-image: url('https://redindex.net/demos/wp/medifix/wp-content/uploads/2024/02/unnamed-file.png');
    transition: all 0.5s ease-in-out;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
}
.gallery_page a:hover:after {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
}

.home1_faq .redth-active-inactive-icon {
    padding-left: 15px;
}










































































/*Custom Media Query Start*/


/*Tablet Devise 1200*/
@media (max-width: 1200px){
	
	.service-widget-wrap {
		margin-bottom: 30px;
	}
	
}



/*Tablet Devise 1024 2*/
@media (max-width: 1024px){

.redth-scrolltotop-wrap {
    bottom: 50px;
    right: 30px;
}	
	
.home1_faq .redth-active-inactive-icon {
    margin-left: 15px;
}
	
.home2_team .medifix-team-item-wrap {
    max-width: 400px;
}
	
.home2_service .service-icon {
    justify-content: end;
    transform: translate(-30px, -70px);
}
	
.home2_service h2.cs-title {
    margin-top: -55px !important;
}	


.home2_service .service-excerpt {
    max-width: 440px;
}

.home2_testimonial .user-identity-wrapper {
    padding-top: 20px;
}
	
.home2_testimonial .rating_area {
    bottom: 82px;
}

	
.home3_appointment .redth-addons-feature-box-item {
    flex-direction: column;
    width: 100%;
}

.home3_appointment .redth-iconbox-addons-feature-content {
    text-align: center;
}

.home2_service.home3_service .service-widget-wrap {
    max-width: 360px;
}

.home2_service.home3_service .row.justify-content-left {
    justify-content: center !important;
}

.home2_service.home3_service .service-icon {
    transform: translate(20px, -200px) !important;
}
	

	
.home3_team ul.redth-testimonial-slider-dot-list {
    bottom: -60px !important;
}

.home3_team .medifix-team-item-wrap {
    max-width: 240px !important;
}
	
	
}





/*Small Devise 767*/
@media (max-width: 767px){
	
	
.redth-scrolltotop-wrap {
    bottom: 30px;
    right: 20px;
}		
.redth-scrolltotop-wrap .redth-scrolltotop {
    width: 40px;
    height: 40px;
    font-size: 15px;
}	
	

.home1_service_section .service-card .row {
    justify-content: center;
    flex-wrap: wrap;
}
.home1_service_section .service-card .row .service-widget-wrap {
    max-width: 300px;
}
.home1_appoinment .select2-container--default .select2-selection--single {
    margin-bottom: 20px;
}	
.home1_appoinment.single_team_appoinment .select2-container--default .select2-selection--single {
    margin-bottom: 0;
}	
	
	

.home1_team_section .medifix-team-wrap .row {
    justify-content: center !important;
    flex-wrap: wrap;
}
.home1_team_section .medifix-team-wrap .row .medifix-team-item-wrap {
    max-width: 300px;
}
.home1_blog .redth-blog-wraper .redth-addons-post-widget-wrap {
    max-width: 300px;
}
.home1_service_section .service-icon svg {
    max-width: 50px;
}
	
.single_team_content_wraper {
    display: flex;
    flex-direction: column;
}
	
.home2_team .medifix-team-item-wrap {
    max-width: 400px;
}

.home2_service h2.cs-title {
    margin-top: -45px !important;
}
	
.home2_service .service-excerpt {
    max-width: 400px;
}
	
.home2_blog .redth-addons-post-widget-wrap {
    max-width: 400px;
}	
	
.home2_testimonial p.redth-testimonial__decription {
    max-width: 500px;
}
	
.home2_testimonial .user-identity-wrapper {
    padding-top: 20px;
}

.home2_testimonial .rating_area {
    bottom: 82px;
}	
	
	
.home3_about_image {
    max-width: 450px;
}

.home2_service.home3_service .service-widget-wrap {
    max-width: 330px !important;
}
	
.home2_service.home3_service .service-icon {
    transform: translate(20px, -185px) !important;
}	
	
.home3_portfolio2 .medifix-portfolio-wrap {
    justify-content: flex-end;
}
.home3_portfolio2 .medifix-portfolio-item-wrap {
    width: auto;
}

.home3_portfolio2.home3_portfolio2_bottom .medifix-portfolio-wrap {
    flex-direction: row;
}
.home3_portfolio2 .medifix-portfolio-wrap {
    justify-content: start;
}

.home3_portfolio2.home3_portfolio2_bottom .medifix-portfolio-wrap {
    justify-content: flex-end;
}
	
	
.home3_testimonials .redth-testimonial ul.redth-testimonial-slider-dot-list {
    bottom: -40px;
}	
	
	
	
	
	
	
	
	
	
	
	
}










