:root {
    --dark-color: #31333C;
    --primary-color: #1661F2;
    --secondary-color: #FE79A2;
    --primary-hover-color: #1661F2; 
    --text-color: #616161;
    --light-color: #B1B8C9;
    --success-button-color: #1661F2;
    --text-size: 16px;
    --text-font-family: 'Lato', sans-serif;
  }


/* ===========
waring-message
===============*/
.waring-message {
	padding: 30px 0;
	background: #f8f8f8;
}

.before-import-warning-header p,
.before-import-warning-footer p{
	font-size: 28px;
    font-weight: 600;
    line-height: 1;
    font-family: "Lato", Sans-serif;
    color: var(--dark-color);
	line-height: 38px;
	padding: 0 20px;
	position: relative;
}


.before-import-warning-header p::before,
.before-import-warning-footer p::before{
	content: '';
	position: absolute;
	display: block;
	width: 0px;
	height: 40px;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;

	border-bottom: 50px solid var(--primary-color);
	top: 18px;
	left: -76px;
	line-height: 30px;
	animation: warninganim infinite 1s ease-in-out alternate;
}


@keyframes warninganim {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}

.before-import-warning-header p::after,
.before-import-warning-footer p::after{
	content: '!';
	position: absolute;
	display: block;
	width: 0px;
	height:30px;
	color: #fff;
	top: 31px;
	left: -39px;
	line-height: 30px;
	animation: warninganimcontent 1s ease-in-out 0.3s infinite alternate;
}

@keyframes warninganimcontent {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.7);
	}
}

.before-import-warning-header p a,
.before-import-warning-footer p a{
	text-decoration: none;
   	font-family: "Lato", Sans-serif;
   
    font-size: 28px !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

/* ===========
Global css
===============*/
/* breadcrumb */
.page-header .teco-breadcrumb {
    margin-top: 15px;
    position: relative;
}
.breadcrumbs .trail-items, .breadcrumbs .trail-items li {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    text-indent: 0;
}
.teco-breadcrumb ul li.trail-end {
    color: #31333C;
}
.page-header .page-title {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
}
.teco-breadcrumb a {
    color: #31333C;
}
.teco-breadcrumb a:hover, .teco-breadcrumb a:active, .teco-breadcrumb a:focus, .teco-breadcrumb a:visited {
    color: #31333C;
}
.teco-breadcrumb a:hover:hover, .teco-breadcrumb a:active:hover, .teco-breadcrumb a:focus:hover, .teco-breadcrumb a:visited:hover {
    color: #1661F2 !important;
}

a:hover{
	text-decoration: none !important;
}

.breadcrumbs .trail-items {
    list-style: none;
}
.trail-items li::after {
    content: "\002F";
    padding: 0 0.5em;
    color: #31333C;
}
.trail-items li:last-of-type::after {
    display: none;
}

/* =============
Banner
===================*/

.teco-banner-breadcrumb {
    padding: 150px 0 50px;
}

@media (min-width: 768px){
	.teco-banner-breadcrumb {
    padding: 150px 0 50px;
}

}

.teco-banner-breadcrumb {
/*     background-image: none !important; */
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    position: relative;
    height: auto;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    
}

/* Overly Default */
.teco-banner-breadcrumb {
    position: relative;
	margin-top: -115px !important;
  }
  
  .single-post .teco-banner-breadcrumb::before,
	.single-portfolio .teco-banner-breadcrumb::before,
	.blog .teco-banner-breadcrumb::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
	background: linear-gradient(8deg, rgba(235,198,254,1) 0%, rgba(255,230,230,1) 50%, rgba(255,247,216,1) 100%) !important;
	  opacity: 0.9;
  }

.page-header.error-404-main::before {
    background-image: none !important;
}

.error-404{
	 background-image: linear-gradient(38.38deg, #64a7f57d -17.48%, #ffb5ef9c 102.71%) !important;
	 height: 100vh !important;
}

  @media (min-width: 1440px){
    .teco-banner-breadcrumb {
        padding: 150px 100px 100px 100px;
        height: 400px;
    }
  
}

  /* ===========
    Page Title
  ===============*/

  .courses-template-default.single-courses .page-title {
    font-size: 22px;
    font-weight: 500;
	font-family: "Lato", Sans-serif !important;
  }

.page-title {
	font-family: "Lato", Sans-serif !important;
    font-size: 24px;
    font-weight: 900;
    color: #31333C;
    letter-spacing: 2px;
}

@media (min-width: 768px){
  .courses-template-default.single-courses .page-title,
    .page-title {
        font-size: 32px;
        font-weight: 900;
        color: #31333C;
        letter-spacing: 2px;
    }
}

@media (min-width: 1440px){
  .courses-template-default.single-courses .page-title,
    .page-title {
        font-size: 42px;
        font-weight: 900;
        color: #31333C;
        letter-spacing: 2px;
    }
}

body{
	margin-bottom: 0px !important;
}
a,
.elementor-widget-icon-box{
	transition: all 300ms ease-out !important;
}
/* ===========
Global css End
===============*/
/* Menu */
.bdt-navbar-parent-indicator-yes ul>li.bdt-parent>a:after{
/* 	top: 0px !important; */
    margin-left: 10px !important;
	font-size: 10px !important;
}

.bdt-navbar-dropdown-nav{
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.elementor-widget-cakelements-burger-menu{
	margin-bottom: 0px !important;
}


/* ===========
Global css
===============*/

/* Flip Box */

.bdt-flip-box-front,
.bdt-flip-box-back{
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

/* ===========
Animation css
===============*/

.animat_up_down {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
}

@keyframes alltuchtopdown {
0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
}
50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
}
100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
}
}

#loading {
		-webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}


/* ===========
About Us css
===============*/

/* Line Box */

.abut_ic_bx .elementor-icon-box-title{
    height: 3px;
    width: 70%;
    background: #efefef;
    position: relative;
}

.abut_ic_bx .elementor-icon-box-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    background: #1661F2;
    height: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}


 .elementor-widget-icon-box:hover .elementor-icon-box-title::after {
    left: 0;
    right: auto;
    width: 100%;
}
.abut_ic_bx .elementor-icon-box-title a{
	position: relative;
    top: 15px;
}


/* Img radius */

.abut_img img,
.abut_img svg{
	border-radius: 4px !important;
}


/* ===========
services css
===============*/
.service_sec{
	overflow: hidden;
}

/* ===========
Portfolio Carousel css
===============*/
#portfolio_1 .bdt-gallery-thumbnail img{
	height: 265px !important;
}
#portfolio_1 .bdt-portfolio-carousel.bdt-portfolio-carousel-skin-default .bdt-gallery-item-tags,#portfolio_1 .bdt-portfolio-carousel.bdt-portfolio-carousel-skin-default .bdt-gallery-content-inner{
	opacity:1 !important;
	transform: perspective(0px) rotateX(0deg) scale(1) !important;
}

#portfolio_1 .bdt-portfolio-carousel .bdt-gallery-item:hover{
	transform: translateY(0px) !important;
	box-shadow: none !important;
}
#portfolio_1 .bdt-link-icon .bdt-icon:after{
	content: "\f30b" !important;
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
#portfolio_1 .bdt-link-icon .bdt-icon svg{
	display:none !important;
}
#portfolio_1 .bdt-link-icon:hover{
	transform: none !important;
}

#portfolio_1 .bdt-portfolio-carousel .bdt-gallery-item{
	transition:none !important; 
}

#portfolio_1 .bdt-gallery-item,
#portfolio_1 .bdt-portfolio-inner,
#portfolio_1 .bdt-portfolio-content-inner{
	overflow: visible !important;
}
#portfolio_1 .bdt-gallery-item{
	height: 350px !important;
}

/* bullet */
#portfolio_1 .swiper-pagination-bullet-active{
	height: 12px !important;
    width: 12px !important;
}


#portfolio_1 .bdt-portfolio-desc{
	margin: 0px 20px;
	position: absolute;
	top: 80% !important;
	width: 285px !important;
	border-radius: 4px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}
@media (min-width: 425px) {
	#portfolio_1 .bdt-portfolio-desc{
		width: 340px !important;
	}
}
@media (min-width: 768px) {
	#portfolio_1 .bdt-portfolio-desc{
		width: 305px !important;
	}
}
@media (min-width: 992px) {
	#portfolio_1 .bdt-portfolio-desc{
		width: 265px !important;
	}
}
@media (min-width: 1200px) {
	#portfolio_1 .bdt-portfolio-desc{
		width: 330px !important;
	}
}
/* Arrows */
.bdt-navigation-type-arrows .bdt-position-center{
	top: 30%;
}

@media (min-width: 576px) {
	.bdt-navigation-type-arrows .bdt-position-center{
		top: 37% !important;
	}
}

@media (min-width: 1200px) {
	.bdt-navigation-type-arrows .bdt-position-center{
		top: 50% !important;
	}
}

/* ===========
 Our Team 
===============*/

.bdt-member-photo img{
	height: 350px !important;
}
.elementor-widget-bdt-member{
	transition: all 300ms ease-out !important;
}

.bdt-member-description{
	 width: 190px !important;
	 box-shadow: 16px 23px 52px rgba(0, 55, 119, 0.15);
	 border-radius: 4px;
	 position: absolute;
     bottom: -45px;
     background: #ffffff;
     left: 30px;
	 height: 95px !important;
	 text-align: center;
	 padding-top: 35px !important;
}
.bdt-member-description,
.bdt-member-name,
.bdt-member-role{
	transition: all 300ms ease-out !important;
}
.bdt-member-description:hover{
	 background: #1661F2 !important;
}
.bdt-member-description:hover:hover .bdt-member-name{
	color: #ffffff !important;
}
.bdt-member-description:hover:hover .bdt-member-role{
	color: #ffffff !important;
}

.elementor-widget-bdt-member .elementor-widget-container,
.bdt-member,
.bdt-member-photo-wrapper{
	overflow: visible !important;
}


.bdt-member-description {
    padding: 20px 5px 20px 15px !important;
	text-align: left;
}


/* ===========
Count css
===============*/

.cunt_sec{
	overflow: hidden;
}


/* ===========
Testimonial css
===============*/

.tstimnil_styl .bdt-testimonial-grid-item:last-child{
	margin-left: 0px !important;
	margin-top: 50px !important;
}

@media (min-width: 768px) {
.tstimnil_styl .bdt-testimonial-grid-item:last-child{
    margin-left: 0px !important;
    margin-top: 190px !important;
}
}
@media (min-width: 992px) {
	.tstimnil_styl .bdt-testimonial-grid-item:last-child{
		margin-left: -150px !important;
		margin-top: 70px !important;
	}
}


/* ===========
 Process
===============*/
.process .bdt-icon-wrapper{
	position: relative;
}
.process .bdt-icon-wrapper:after{
    z-index: 76 !important;
    opacity: 1 !important;
	transform: translate(0%, 35%) !important;
	font-family: Lato;
	font-style: normal;
	font-weight: 900;
	font-size: 30px;
	color: #fff;
}
.process .bdt-icon-wrapper{
	width: auto !important;
}
.process_1 .bdt-icon-wrapper:after{
  	content: '1' !important;
}
.process_2 .bdt-icon-wrapper:after{
  	content: '2' !important;
}
.process_3 .bdt-icon-wrapper:after{
  	content: '3' !important;
}
.bdt-indicator-svg{
	left: 85% !important;
    top: 15% !important;
}


/* ===========
 Indicator
===============*/

@media (max-width: 767.98px){
	.bdt-indicator-svg{
		display: none;
	}
}
@media (max-width: 1024px){
	.bdt-indicator-svg{
		width: 100px !important;
	}
}


/* ===========
 Flip Card
===============*/

.bdt-flip-box-layer-desc{
	margin-bottom: 10px !important;
}


/* ===========
 bdt-portfolio-gallery
===============*/

	
#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-portfolio-content-inner:after,
#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-gallery-item:hover .bdt-portfolio-content-inner:before{
	background: transparent !important;
	}
	
#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-portfolio-content-inner:before{
		background: transparent !important;
	}
	
 #portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-gallery-item .bdt-gallery-item-tags{
    transform: perspective(100px) rotateX(0deg) !important;
    opacity: 1;
}
 .bdt-portfolio-gallery .bdt-portfolio-inner{
		transform: translateY(0px) !important;
	}
 .bdt-portfolio-gallery .bdt-portfolio-inner:hover{
		transform: translateY(0px) !important;
	}

#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-gallery-item .bdt-gallery-content-inner {
    transform: perspective(100px) rotateX(0deg) !important;
    opacity: 1 !important;
}
#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-portfolio-content-inner:before,#portfolio_1 .bdt-portfolio-gallery.bdt-portfolio-gallery-skin-default .bdt-portfolio-content-inner:after{
	content: "";
    position: relative !important;
    width: 0% !important;
    height: 0% !important;
    padding-bottom: 0% !important;
    top: 0% !important;
    left: 0% !important;
    transform: translate(0%, 0%) scale(0, 0) !important;
    border-radius: 0% !important;
    box-sizing: border-box;
    z-index: 1;
}	
.bdt-link-icon{
	display: none !important;
}
/* ===========
Contact Form 
===============*/

.contact_1 input,
.contact_1 .wpcf7-textarea{
	box-shadow: 3px 9px 40px 0px rgba(0,0,0,.050980392156862744);
}


/* ===========
 Service Details Page Menu  
===============*/

.services-menu .bdt-navbar-nav{
	flex-direction: column !important;
	align-items: baseline;
	width: 100%;
}
.services-menu .bdt-navbar-nav li{
	width: 100%;
	margin-top: 20px;
}
.services-menu .bdt-navbar-nav li a{
	justify-content: flex-start !important;
	background: #F4F7FFAB;
	padding: 18px 0px 17px 20px !important;
	color: #1661F2;
	border-radius: 4px;
	display: block;
	font-size: 16px;
	font-family: "DM Sans", sans-serif;
	transition: all 300ms ease-out !important;
}

.services-menu .bdt-navbar-nav li a:hover{
		color: #ffffff;
		background: #1661F2;
	}

@media (min-width: 1600px){
	.services-menu .bdt-navbar-nav > li {
    	margin-left: 0px !important;
	}
}

	.elementor-widget-wp-widget-nav_menu h5 {
		font-size: 30px;
		font-weight: 800;
		line-height: 1;
		font-family: "DM Sans", sans-serif;
		color: #182333;
		margin: 20px 0 30px;
	}

	.download_btn .bdt-ep-button {
		width: 100%;
	}
	.opening_time .bdt-icon-wrapper svg{
		width: 24px !important;
		height: 24px !important;
	}

	.bdt-tabs .bdt-tab .bdt-active a:after {
		width: 0%;
		background: Transparent  !important;
	}

	.bdt-tabs-item a{
		min-height: 0px !important;
	}

/* ===========
Price Button
===============*/
.bdt-price-table-button {
    color: #1661F2 !important;
    background-color: #FFFFFF !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #1661F2 !important;
    border-radius: 4px 4px 4px 4px !important;
    font-family: "Lato", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.7px !important;
}

.bdt-price-table-button:hover {
    color: #FFFFFF !important;
    background-color: #1661F2 !important;
    border-color: #1661F2 !important;
}


/* ===========
Porfolio Gallary 
===============*/


@media (max-width: 430px){
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-dropdown{
		left: 18.675px !important; 
	}
}

@media (max-width: 768px){
	#portfolio_1 .bdt-ep-grid-filters-wrapper{
		text-align: center !important;
	}
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-button{
		font-family: "Lato", Sans-serif;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-dropdown{
		padding: 0px 0px !important
	}
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-dropdown-nav li{
		padding: 10px 10px !important;
	}
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-dropdown{
		width: 290px;
		text-align: left;
		box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
	}
	#portfolio_1 .bdt-ep-grid-filters-wrapper .bdt-dropdown .bdt-active{
		background: #1661F2 !important;
		color: #fff !important;
	}
}


/* ===========
 Scroll Button  
===============*/


	.bdt-scroll-button{
		opacity: 0;
  		visibility: hidden;
		position: absolute; 
		bottom: -60px;
		transition: all 300ms ease-out !important;
	}
	.bdt-scroll-button.show {
	  opacity: 1 !important;
	  visibility: visible !important;
	  bottom: -20px !important;
	}

/* Button */

.button .elementor-button-text{
	 padding: 0px 40px 0px 0px;
}

.button .elementor-button-text:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #1661F2;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  transition: all 0.3s ease;
  transform: translateX(10px);
  display: inline-block;
}

.button .elementor-button-text:hover:after {
  width: 30px;
}

.button .elementor-button-text:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #1661F2;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 14px;
  transition: all 0.3s ease;
}

.button .elementor-button-text:hover:before {
   right: 0px;
}

/* button 2 */
.button_2 a{
/* 	 padding: 0px 40px 0px 0px; */
	position: relative;
}

.button_2 a:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  transition: all 0.3s ease;
  transform: translateX(10px);
  display: inline-block;
}

.button_2 a:hover:after {
  width: 30px;
}

.button_2 a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 14px;
  transition: all 0.3s ease;
}

.button_2 a:hover:before {
   right: 0px;
}
