/*---------------------------------------------------
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;
}

.single_portfolio_thumbnail img {
    border-radius: 10px !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: 20px;
    bottom: 00px;
    z-index: 999;
	transition: all 0.5s linear;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}
.fbth-scrolltotop-wrap.active{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}
.fbth-scrolltotop-wrap .fbth-scrolltotop span svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
	padding-bottom: 5px;
}
.fbth-scrolltotop-wrap .fbth-scrolltotop {
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    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: 10px;
    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%);
}












.hero_image_Slider {
    height: 800px !important;
}

.hero_image_Slider div, .hero_image_Slider img {
    height: 100% !important;
}

.hero_image_Slider figure.swiper-slide-inner {
    height: 100% !important;
    object-fit: cover !important;
    object-position: right !important;
}
























/*Home 4 hero area css*/
.hero_line_animation1, .hero_line_animation2, .hero_line_animation3, .hero_line_animation4 {
    width: 1px !important;
    opacity: 0.5;
}
.hero_line_animation1:after, .hero_line_animation2:after, .hero_line_animation3:after, .hero_line_animation4:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 80px;
    border-radius: 10px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 31%, rgba(255,255,255,1) 100%);
    transform: translate(-2px, -100%);
	animation: hero4_animation 10s linear infinite;
	opacity: 0;
}
.hero_line_animation2:after{
	animation-delay: 2s;
}
.hero_line_animation3:after{
	animation-delay: 3s;
}
.hero_line_animation4:after{
	animation-delay: 4s;
}
@keyframes hero4_animation{
	10%{
		opacity: 1;
		top: 0;
	}
	50%{
		opacity: 1;
		top: 110%;
	}
	60%{
		opacity: 0;
		top: 110%;
	}
	100%{
		opacity: 0;
		top: 0;
	}
}



.news_ticker .spt-label {
    padding: 10px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    width: 200px !important;
    min-width: 200px;
    height: 61px;
	display: inline-flex !important;
    align-items: center !important;
}

.news_ticker .spt-container.spt-border {
    height: 60px;
    border: 0 !important;
    background-color: #f6f6f6;
    display: flex !important;
    align-items: center !important;
}
.news_ticker .spt-container.spt-border a {
    font-size: 24px;
    line-height: 130% !important;
}
























/*Custom Media Query Start*/


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

.hero_image_Slider {
    height: 700px !important;
}
	
	
	
	
}



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

	
	
	
	
	
}





/*Small Devise 767*/
@media (max-width: 767px){
	
	
.news_ticker .spt-container.spt-border a {
    font-size: 18px;
}

	
	
	
	
	
	
	
	
	
}


/*Small Devise 767*/
@media (max-width: 480px){
	
.news_ticker .spt-label {
    display: none !important;
}

	
	
	
	
	
	
	
	
}





















