<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*** 

====================================================================
	Expert Section
====================================================================

***/

.expert-section{
	position: relative;
	padding: 0px 0px 100px;
}

.expert-section .sec-title{
	margin-bottom:30px;
}

.expert-section .counter-column{
	position: relative;
}

.expert-section .counter-column .inner-column{
	position: relative;
}

.expert-section .counter-column .inner-column .fact-counter{
	position:relative;
	padding-left: 50px;
}

.expert-section .counter-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	padding-left: 50px;
	line-height: 1.7em;
	margin-bottom: 55px;
}

.expert-section .counter-column .text:before{
    position: absolute;
    content: "\f1ac";
    left: 0px;
    top: 0px;
    color: var(--theme-color);
    line-height: 1em;
    font-size: 40px;
    font-family: "Flaticon";
}

.expert-section .blocks-column{
	position:relative;
}

.expert-section .blocks-column .inner-column{
	position:relative;
	margin-right: -185px;
}

.expert-section .blocks-column .inner-column .owl-nav{
	display:none;
}

.expert-section .blocks-column .inner-column .owl-dots{
	position:relative;
	text-align: center;
	margin-top: 20px;
}

.expert-section .blocks-column .inner-column .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.expert-section .blocks-column .inner-column .owl-dots .owl-dot:hover,
.expert-section .blocks-column .inner-column .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:var(--theme-color);
}

/*Expert Block*/

.expert-block{
	position: relative;
	margin-bottom: 30px;
}

.expert-block .inner-box{
	position: relative;
}

.expert-block .inner-box .image{
	position: relative;
	overflow: hidden;
}

.expert-block .inner-box .image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.expert-block .inner-box:hover .image::after {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.expert-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	transition: all 500ms ease;
}

.expert-block .inner-box:hover .image img{
	transform: scale(1.05);
}

.expert-block .inner-box .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,134,0.15);
}

.expert-block .inner-box .lower-content{
	position: relative;
	padding-top: 30px;
	text-align: center;
}

.expert-block .inner-box .lower-content h3{
	position: relative;
	color: #222222;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 4px;
}

.expert-block .inner-box .lower-content h3 a{
	position: relative;
	color:#222222;
	font-size: 18px;
	font-weight: 600;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.expert-block .inner-box .lower-content h3 a:hover{
	color:var(--theme-color);
}

.expert-block .inner-box .lower-content .designation{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	font-weight: 500;
}</pre></body></html>