/* CSS Document */

body{ font-family: "Mulish", serif; margin:0px; padding:0px;}
img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.mini-heder {
    margin: 0px;
    padding: 8px 0px;
    background-color: #192335;
    width: 100%;
}
.call p {
    color: #fff;
    font-size: 15px;
    margin: 0px;
}
.social-media{width:100%; margin:0px; padding:0px; float:left;}

span.follow-links {
    color: #fff;
}
ul.social-share-transparent li {
    list-style: none;
    display: inline;
    padding: 0 7px;
    font-size: 14px;
}
ul.social-share-transparent li a {
    color: #fff;
}


ul.social-share-transparent {
    margin: 0px;
    float: right;
}

.header{width:100%; float:left; margin:0px; padding:0px;}

/**Menu-css**/

/* header */
.header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 99;
	padding:15px;
}
.header .item-left{
	flex:0 0 17%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center {
    flex: 0 0 100%;
}
.header .item-right {
    flex: 0 0 0%;
    display: flex
;
    justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a {
    font-size: 16px;
    font-weight: 600;
    color: #192335;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    text-decoration: none;
}
.header .menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 14px 10px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 14px 0;
    font-size: 15px;
    color: #000;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 21px;
}
.header .menu > ul > li .single-column-menu {
    min-width: 230px;
    max-width: 270px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #000;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 700;
}
.list-item img {
    border-radius: 9px;
}
.list-item ul {
    margin: 0px;
    padding: 0px;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font-size: 16px;
    color: #ea4636;
    font-weight: 800;
    line-height: 1;
    padding: 10px 0;
    text-transform: uppercase;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 300px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#eb7a16;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}



ul.menu-main {
    margin: 0px;
    padding: 12px 0px 10px 30px;
}


span.hero-title-vage {
    background-color: #fff;
    padding: 12px 22px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 700;
    color: #ec8021;
}

.hero-text {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 61px;
    padding: 14px 0 0 0;
}.hero-text p {
    font-size: 18px;
    line-height: 31px;
    padding: 10px 0 0 0;
}
a.btn-info-bell {
    background-color: #e5781d;
    color: #fff;
    padding: 16px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
	  transition: transform 0.3s ease-in-out;
}

a.btn-info-bell:hover {    transform: scale(1.1);}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #eb7a16!important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    transition: opacity 0.6s ease;
}


.our-statistics {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 70px 0px;
}
.section-title {
    text-align: center;
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}
span.mini-title {
    background-color: #ffe6d2;
    color: #e5781d;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 70px;
    font-size: 14px;
}
.section-title h2 {
    font-weight: 800;
    font-size: 34px;
    margin: 0px;
    padding: 12px 0px;
}.section-title p {
    color: #000;
    font-size: 16px;
    margin: 0px;
}
/***Statistics***/

.box-statistics {
    border: 1.2px solid #D4DCED;
    border-radius: 10px;
    display: flex
;
    align-items: center;
    padding: 30px 10px 30px 20px;
    /* min-width: 256px; */
    margin: 30px 0 0 0;
}
.icon-box-serve {
    font-size: 50px;
    line-height: 0;
    color: var(--tg-primary-color);
    position: relative;
    margin-right: 40px;
}
.icon-box-serve::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffeada;
    left: -10px;
    top: -12px;
    border-radius: 50%;
    z-index: -1;
}
.icon-box-serve::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 48px;
    background: #edeaea;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: -1;
}

.counting {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}
.number-of-stati p {
    font-weight: 500;
    font-size: 16px;
    margin: 0px;
}
.number-of-stati span {
    font-weight: 600;
    font-size: 20px;
}
.icon-box-serve img {
    width: 70px;
}




/****Our-Services***/

.our-services{background-color:#f9f9ff; width:100%; float:left; margin:0px; padding: 70px 0px;}
.service-one {
    width: 20%;
    margin: 0px;
    padding: 40px 30px 30px 30px;
    float: left;
    box-shadow: 3px 10px 10px 20px #ededed;
    border-radius: 10px;
    box-shadow: 0px 6px 34px rgb(221 221 221 / 41%);
    margin: 50px 0 0px 0;
     transition: transform 0.3s ease-in-out;
    background-color: #fff;
}
.service-one:hover{
transform: scale(1.1);}
.read-more-btn a {
    color: #e5781d;
    text-decoration: none;
}
span.icon-tag_views {
    height: 105px;
    float: left;
    width: 105px;
    background-color: #e5781d;
    border-radius: 50%;
    padding: 20px 20px;
    border: solid 4px #f5c7a1;
}
.info-servies {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}
.info-servies h2 {
    font-size: 24px;
    padding: 16px 0 16px 0;
    margin: 0px;
    color: #e5781d;
    min-height: 95px;
}
.info-servies p {
    color: #000;
    font-size: 16px;
}
.read-more-btn {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 30px 0px 0px 0px;
}


.service-one:hover {
    transform: scale(1.02);
}
.contact-us p {
    color: #fff;
    margin: 0px;
}
.contact-us h1 {
    color: #fff;
}

.header-pages {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 140px 0px;
}
.contact-us {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}



/**Join-us-section**/

.join-us-section {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 180px 0px;
    background-image: url(../images/fixed-bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.heding-title {
    text-align: center;
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}


.hero-and-desc{
    text-align: center;
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}


.heding-title span {
    background-color: #ffffff45;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 22px;
    display: inline-block;
    border-radius: 70px;
    font-size: 17px;
}



.hero-and-desc h2 {
    font-weight: 900;
    color: #fff;
    font-size: 42px;
    padding: 30px 0 0 0;
}
.hero-and-desc p {
    color: #fff;
}
.hero-and-desc p {
    color: #fff;
    line-height: 27px;
    font-size: 17px;
}

.contact-bnt {
    float: left;
    width: 100%;
    padding: 10px 0 0 0;
}



/***News*slider**/


#news-slider {
    margin-top: 40px;
}
.post-slide{
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}
.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* margin: -12px 15px 8px 15px; */
    /* margin-left: -10px; */
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
    transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:#fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}
.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#3498db;
}
.post-slide .post-description{
    line-height:24px;
    color:#808080;
    margin-bottom:25px;
}
.post-slide .post-date {
    color: #ff7e12;
    font-size: 14px;
}
.post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.post-slide .read-more {
    padding: 13px 22px;
    float: right;
    font-size: 12px;
    background: #e5781d;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #bd906a;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
}

.post-slide .read-more:hover{
    background: #192335;
    text-decoration:none;
    color:#fff;
}
.owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev {
    background: #ffffff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 4px 16px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
    height: 52px;
    width: 52px;
}
.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 5px 15px 10px 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
    height: 52px;
    width: 52px;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #333;
    font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}
@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}

.owl-controls.clickable {
    position: absolute;
    text-align: center;
    float: left;
    width: 100%;
    bottom: 350px;
    display: none;
}
h3.post-title a {
    color: #000 !important;
    font-size: 26px !important;
    text-decoration: none;
    line-height: 35px;
    padding: 20px 0 0 0;
}.post-slide .post-description {
    line-height: 29px;
    color: #000;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    line-height: 1.5;
}

/***Footer-css**/

.footer-section{width:100%; float:left; margin:0px; padding:0px; background-color:#141413;  padding: 70px 0px;}


.subscribe-section {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 50px 0px;
    background-color: #f3f6fd;
    border-top: solid 3px #dee4f1;
}
.icon-img span img {
    width: 120px;
    margin: 0 30px 0px 0px;
}
.info-news-box {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 28px 0 0 0;
}
input.newsletter-box {
    width: 63%;
}
input.newsletter-box {
    padding: 15px 80px 15px 30px;
    border: solid 1px #ccc;
    border-radius: 70px;
    outline: none;
    font-weight: 800;
}
button.subscribe-btn {
    background-color: #e5781d;
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 800;
    margin: 0 0 0 10px;
}
.info-details span {
    font-size: 18px;
    font-weight: 500;
}
.info-details p {
    font-size: 30px;
    font-weight: 900;
}
.info-details {
    padding: 26px 0 0 0;
}


.logo-info p {
    color: #fff;
    line-height: 26px;
    font-size: 15px;
    padding: 21px 0 0 0;
}

.footer-title h2 {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
}.logo-info span img {
    width: 260px;
}
.pin-address {
    float: left;
    width: 50px;
}

.pin-address span {
    background-color: #f7e6d9;
    width: 45px;
    float: left;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    border: solid 4px #f1c4a2;
}
.pin-address span i {
    color: #eb7a15;
    font-size: 25px;
    padding: 6px 0 0 0;
}
.addres-details p {
    color: #fff;
    padding: 0 0 0 12px;
    line-height: 25px;
    margin: 0px;
}.address-one {
    padding: 20px 0 0 0;
}
.addres-details h4 {
    color: #eb7a16;
    padding: 0 0 0 12px;
    font-weight: 600;
}
p.email a {
    color: #fff;
    text-decoration: none;
    padding: 8px 0 0 0px;
    display: block;
}
.menu-usefull ul {
    margin: 0px;
    padding: 0px;
}.menu-usefull ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    padding: 15px 0px 0px 0px;
}
.menu-usefull ul li a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 20px 0px;
    background-color: #222222;
}.copyright-info {
    text-align: left;
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}


.copyright-info p {
    color: #fff;
    font-size: 14px;
    color: #ccc;
    margin: 0px;
}


.inner-pages {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 60px 0px;
    background-color: #f6f8f9;
}
.inner-hero p {
    font-weight: 700;
    font-size: 20px;
}
.inner-hero h1 {
    font-weight: 900;
    font-size: 34px;
    line-height: 45px;
}
.hero-bg {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 40px 0 90px 0;
    background-image: url(../images/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.logo a img {
    width: 131px;
}


/***Inner-page-css**/



.service-one-data {
    width: 100%;
    margin: 0px;
    padding: 40px 30px 30px 30px;
    float: left;
    box-shadow: 3px 10px 10px 20px #ededed;
    border-radius: 10px;
    box-shadow: 0px 6px 34px rgb(221 221 221 / 41%);
    margin: 0px 0 0px 0;
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
 
}
.service-one-data .read-more-btn {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 10px 0px 0px 0px;
}

.service-one-data:hover {
    transform: scale(1.02);
}
.type-of-inner-services {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 70px 0px;
}

.service-one-data .info-servies h2 {
    font-size: 24px;
    padding: 16px 0 16px 0;
    margin: 0px;
    color: #e5781d;
    min-height: 90px;
}

.info-serction {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 70px 0px;
    background-color: #fef6e6;
}

.quantitative-analysis{width:100%; float:left; margin:0px; padding:0px;}
.quantitative-analysis p {
    font-size: 16px;
    color: #000;
    padding: 0px 0px;
    line-height: 29px;
}

.full-details-of-data {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 50px 0 0 0;
}


.info-serction-white-bg{
    width: 100%;
    float: left;
    margin: 0px;
    padding: 70px 0px;
    background-color: #fff;}
	
	span.prescriptive-modelling img {
    border-radius: 11px;
}


.showcase {
    position: relative;
    /* height: 100vh; */
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 440px 0px;
    color: white;
}


.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow:hidden;
  background: var(--primary-color) url("https://vpinedashares.imfast.io/files/cover.jpg") no-repeat center center/cover;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  object-fit:cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}

li.menu-item-has-children i {
    padding: 3px 0 0 10px;
}

.content {
  z-index:10;
  
}span.highlight-hero {
    color: #9620e8;
}
ul.active-tabviews li button.active {
    /* display: none; */
    background-color: #9620e8 !important;
}
.nav-link {
    color: #000;
    border: solid 1px #ccc;
    padding: 10px 30px;
    margin: 0 20px 0 0px;
}

.nav-link:hover, .nav-link:focus {
  color:#000;}
  
  .tabls-list-and-mapview ul {
    margin: 0px !important;
}
.tabls-list-and-mapview {
    padding: 20px 0 0 0;
    float: left;
}
a.filter_btn {
    background-color: #f7f5f2;
    padding: 10px 23px;
    border-radius: 5px;
    border: solid 1px #ccc;
    color: #000;
    text-decoration: none;
    margin: 0 0 0 13px;
}
.hero-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    opacity: 0.85;
}
.hero-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
li.signin-signup a {
    background-color: #9620e8;
    color: #ffff;
    padding: 14px 25px;
    border-radius: 3px;
}
li.signin-signup {
    padding: 10px 0 0 0;
}
.top_heading P {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
}

.top_heading {
    text-align: center;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.top_heading h1 {
    font-size: 70px;
    font-weight: 800;
    color: #fff;
}
.line {
    float: left;
    /* padding: 0 0 0 0px; */
    width: 100%;
    position: relative;
    left: -80px;
    top: -8px;
    text-align: right;
}span.tag-infobel {
    color: #262525;
    line-height: 23px;
    font-size: 16px;
}
ul.place-images ul {
    margin: 0px;
    padding: 0px;
}
ul.place-images li {
    list-style: none;
    display: inline;
}
ul.place-images li img {
    border-radius: 212px;
}

.place-images span img {
    border-radius: 18px;
    padding: 0px 10px;
}
span.img-top {
    position: relative;
    top: 70px;
}

.place-images span img {
    border-radius: 200px;
}

.box-search-text {
    background-color: #fff;
    border-radius: 70px;
    padding: 10px 0px 10px 30px;
    margin: 40px 0 0 0;
}
button.search-btn {
    background-color: #9620e8;
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 90px;
    margin: 32px 0 0 0;
    width: 100%;
}
input.search-box-fild {
    width: 70%;
    border: none;
    outline: none;
    font-size: 17px;
}
.search-box {
    width: 100%;
    /* float: left; */
    margin: 0px;
    padding: 0px 0 0 0;
}

/****Popular-Destinations***/

.heading-top h2 {
    font-weight: 600;
    font-size: 32px;
    padding: 0 0 5px 0;
}

.heading-top p {
    font-size: 16px;
    color: #5a5a5a;
    padding: 0 0 30px 0;
}

.view-all-bnt a {
    background-color: #fff;
    color: #9620e8;
    padding: 12px 25px 12px 25px;
    display: inline-block;
    text-decoration: none;
    border-radius: 7px;
}
.view-all-bnt a:hover {
    background-color: #9620e8;
    color: #fff;
	 transition: 0.3s;
}
.view-all-bnt a span i {
    transform: rotate(300deg);
    padding: 0 0 0 8px;
}
/**Contact-us-pages***/

/***Contact-us-css***/

.contact-page {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 70px 0px;
}
.adddress-info{width:100%; float:left; margin:0px; padding:0px;}
span.title-mini-info {
    background-color: #e9f3ff;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
}
.adddress-info h2 {
    font-weight: 700;
    font-size: 31px;
    padding: 20px 0 10px 0;
}
.adddress-info p {
    font-size: 16px;
    padding: 10px 0 26px 0;
}


.contact-details-info {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 16px 20px;
    background-color: #eff7ff;
    border-radius: 6px;
    margin: 0 0 20px 0;
}
.icon-info span {
    background-color: #e5781d;
    float: left;
    border-radius: 50%;
    padding: 10px 5px;
    width: 60px;
    height: 60px;
}
.info-number span {
    font-weight: 400;
    font-size: 16px;
}
.info-number p {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}.info-number {
    padding: 0 0 0 20px;
}

.query-form {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 6px;
    background-color: #1d2940;
    border-radius: 6px;
}
.inner-info{width:100%; float:left; margin:0px; padding:0px;}
.query-form {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 30px 24px;
    background-color: #192335;
    border-radius: 6px;
}
.inner-info h3 {
    color: #fff;
    font-size: 24px;
}
.inner-info p {
    color: #fff;
    font-size: 15px;
    padding: 0 0px 20px 0;
}

.input-5area input {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    padding: 15px 16px;
    outline: none;
    border: none;
    border-radius: 2px;
    background: #343E53;
    color: #fff;
    font-size: 15px;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.input-5area textarea {
    width: 100%;
    height: 140px;
    outline: none;
    padding: 20px 16px;
    border-radius: 2px;
    background: #343E53;
    border: none;
    color: #fff;
    font-size: 16px;
}
button.contcat5 {
    justify-content: right;
    border-radius: 5px;
    background-color: #e5781d;
    padding: 12px 16px;
    border: none;
    display: inline-block;
    transition: all .4s ease-in-out;
    margin: 11px 0 0 0;
}
.color {
    color: #fff;
}

.input-5area select {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    padding: 15px 16px;
    outline: none;
    border: none;
    border-radius: 2px;
    /* opacity: 0.1; */
    background: #343E53;
    color: #fff;
    font-size: 16px;
    margin: 0 0 16px 0;
}
label.lable-info-title {
    color: #fff;
    padding: 0 0px 4px 0px;
}

/***Login-page-css**/


.auth-page-section {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 130px 0px;
    background-image: url(../images/login-bg.jpg);
}
.login-bg {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-section {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 180px 0 100px 0px;
}
.bg-login-box {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 40px 50px;
    background-color: #fff;
    border-radius: 13px;
}

.login-bg .header {
    background-color: #9620e8;
    padding: 0px 0 0px 0;
    height: auto;
}

.bg-login-box h1 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}
.bg-login-box p {
    padding: 15px 0 0 0;
    font-size: 16px;
    text-align: center;
}

.fild-form {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 40px 0px 0px 0px;
}

.title-fild {
    font-size: 16px;
    font-weight: 500;
}

input.fild-formauth {
    float: left;
    width: 100%;
    padding: 10px 20px;
    border: solid 1px #ccc;
    border-radius: 8px;
    background-color: #f6f2f9;
    height: 56px;
    outline: none;
    margin: 0 0 20px 0;
}

.common_form_submit {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

button.btn.btn_theme.btn_md {
    background-color: #9620e8;
    color: #fff;
    padding: 11px 30px;
    font-size: 16px;
    font-weight: 600;
}

.formgot-password {
    float: right;
    margin: 0px;
    padding: 20px 0 20px 0;
    width: 100%;
}
.formgot-password p {
    font-size: 15px;
    padding: 0px;
}
.formgot-password p a {
    font-weight: 500;
    color: #9620e8;
}
.margin-bottom {
    margin: 0 0 12px 0 !important;
}
.no-have-account{width:100%; float:left; margin:0px; padding:0px; text-align:center;}
.no-have-account p {
    font-size: 16px;
}
.no-have-account p a {
    text-decoration: none;
    color: #ff3d00;
    font-weight: 500;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

ul.code-box {
    margin: 0px;
    padding: 0px;
    text-align: center;
}
.info-basic {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.info-basic p {
    color: #fff;
    font-size: 17px;
}

.breadcrumb_info {
    float: left;
    margin: 0px;
    padding: 80px 0 0 0;
}
.breadcrumb_info ul {
    margin: 0px;
    padding: 0px;
}
.breadcrumb_info ul li {
    list-style: none;
    display: inline;
}
.breadcrumb_info ul li a {
    color: #bfbfbf;
    text-decoration: none;
    font-size: 16px;
}
.breadcrumb_info ul li a img {
    float: left;
    margin: 0 10px 0px 0px;
}
.case-list{
    width: 100%;
    float: left;
    margin: 0px;
    padding: 70px 0px;
    background-color: #fef6e6;
}

.height-inner {
    min-height: 500px !important;
}
.height-inner .post-slide .post-date {
    float: left;
}span.post-date.left-info {
    float: left;
}

.info-title-box {
    min-height: 525px!important;
}

h4.info-modal-case {
    font-weight: 800;
    font-size: 22px;
    margin: 0px;
    color: #000;
}

/**Step-Process-css***/


.timeline-main {
  width: 100%;
  padding: 25px;
}
.timeline-main .timeline-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.timeline-main .timeline-wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 10px);
  background-color: #ec7b17;
  animation: line 3s linear;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap::before {
    left: 95%;
  }
}
.timeline-main .timeline-wrap .timeline-card {
  width: 50%;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card {
    width: 95%;
  }
}
.timeline-main .timeline-wrap .timeline-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #ff7c08;
  animation: fadeIn 1.5s;
  animation-fill-mode: both;
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
    height: 100%;
    margin-right: 35px;
    background-color: #192335;
    border-radius: 10px;
    position: relative;
    padding: 30px;
    animation: fadeInRight 2.5s;
    animation-fill-mode: both;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
    padding: 20px;
  }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #00283a;
  border-radius: 5px 5px 0 0;
  opacity: 0.3;
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: #00283a;
  border-radius: 5px;
  transform: rotate(45deg);
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
    font-size: 18px;
    line-height: 28px;
  }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #bdbdbd;
  margin-bottom: 0;
  font-style: italic;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
    font-size: 14px;
    line-height: 24px;
  }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin: 25px 0 0;
}
@media (max-width: 767px) {
  .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 768px) {
  .timeline-main .timeline-wrap .timeline-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  .timeline-main .timeline-wrap .timeline-card:nth-child(even)::after {
    right: unset;
    left: -10px;
    animation-delay: 2.6s;
  }
  .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap {
    margin-right: 0;
    margin-left: 35px;
    animation: fadeInLeft 1.5s;
    animation-fill-mode: both;
    animation-delay: 1.5s;
  }
  .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap::after {
    right: unset;
    border-left: none;
    left: -8px;
    border-right: 10px solid #00283a;
  }
}

@keyframes line {
  0% {
    height: 0;
  }
  100% {
    height: calc(100% - 10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.steps-aproch {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 50px 0 0 0;
}

/**Quikl-report*//
ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 24%;
  background: #fff;
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
    font-family: "maven pro", sans-serif;
    font-size: 9em;
    font-weight: 900;
    width: 0.9em;
    text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: #e5781d;
}
ul.infoGraphic li .number.fontColor2 {
 color: #e5781d;
}
ul.infoGraphic li .number.fontColor3 {
 color: #e5781d;
}
ul.infoGraphic li .number.fontColor4 {
 color: #e5781d;
}
ul.infoGraphic li .number.fontColor5 {
 color: #e5781d;
}
ul.infoGraphic li .number.fontColor6 {
  color: #e5781d;
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: #fff;
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
}
ul.infoGraphic li .content h2 {
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
   
}
ul.infoGraphic li .content p {
  line-height: 1.5em;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translatex(-50%);
}
.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "?";
}

.iconSocial:before {
  content: "?";
}

.iconAirplane:before {
  content: "?";
}

.iconMap:before {
  content: "?";
}

.iconBulb:before {
  content: "?";
}

.iconPeace:before {
  content: "?";
}

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}



.controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}

.sliderBox {
  text-align: center;
}
.sliderBox .range-value {
  font-weight: 500;
  font-size: 22px;
}

input[type=range] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px black;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #eee;
}

input[type=range]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}
ul.infoGraphic li {
    display: inline-block;
}


/**New-Step-css***/


.row-equal-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.p_column {
    background: #eb7a16;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 5px 30px 0px;
    padding: 11px 22px;
    border: solid 1px #d4d4d4;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    position: relative;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 20%;
    border-radius: 25px;
}
h3.title-of-steps {
    font-weight: 700;
    font-size: 20px;
    padding: 15px 0 0 0;
}
/* Change color of your first-child */

.p_column:first-child {
    background: #eb7a16;
    color: #fff;
    border: solid 1px #eb7a16;
}
/*Code for arrow*/

.p_column:before,
.p_column:before, .p_column:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 28%;
    bottom: 86px;
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* Stroke */

.p_column:before {
    right: -80px;
    border-left-color: #eb7a16;
    border-width: 40px;
}
/* Fill */

.p_column:after {
    right: -80px;
    border-left-color: #eb7a16;
    border-width: 40px;
}
.p_column p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0
}
.p_column:first-child:before {
    border-left-color: #c81f56;
}
.p_column:first-child:after {
    border-left-color: #eb7a16;
}
.p_column:last-child:before,
.p_column:last-child:after {
    display: none
}
/*color change hover*/

.p_column:hover {
    background: #ffffff;
    color: #000000;
    border: solid 1px #d3e3fd;
}
.p_column:hover:before {
    border-left-color: #b0b9c1;
}
.p_column:hover:after {
    border-left-color: #ffffff;
}
span.number-of-steps {
    background-color: #ffa14e;
    color: #fff;
    padding: 11px 9px;
    display: inline-block;
    height: 60px;
    border-radius: 50%;
    width: 60px;
    margin: 0 0 11px 0px;
    border: solid 4px #ffc088;
    font-size: 24px;
}
.img-exp-ibig {
    text-align: center;
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.img-exp-ibig span img {
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 20px;
}

/***Chat-css**/


.chart {
    display: table;
    table-layout: fixed;
    width: 100%;
    max-width: 90%;
    /* height: 200px; */
    /* margin: 0 auto; */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0) 2%);
    background-size: 100% 50px;
    background-position: left top;
}
.chart li {
  position: relative;
  display: table-cell;
  vertical-align: bottom;
  height: 500px;
}
.chart span {
    margin: 0 1em;
    display: block;
    background: #eb7a16;
    animation: draw 1s ease-in-out;
}
.chart span:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 5px 1em 0;
  display: block;
  text-align: center;
  content: attr(title);
  word-wrap: break-word;
}

@keyframes draw {
  0% {
    height: 0;
  }
}


/**New-step***/

p.text-info-left {
    text-align: left;
}
.new-width {
    width: 27%;
    margin-bottom: 30px;
}

.report-img {
    background-color: #fff;
    float: left;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px #CCD;
    margin: 40px 0 0 0;
}

.title-box-view {
    height: 200px;
    aspect-ratio: 3 / 2;
    clip-path: ellipse(85% 100% at 50% 0);
    background: #CC2A41;
    text-align: center;
}
.title-box-view p {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding: 60px 40px;
}

.market-mix-model {
    width: 100%;
    float: left;
    padding: 30px 30px;
    background-color: #e5781d;
    border-radius: 10px;
    margin: 40px 0 0 0;
}
.market-mix-model h3 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}
.market-mix-model ul li {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    list-style: none;
}
.market-mix-model ul  {
margin:0px; padding:0px;
   
}
.info-alge {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 30px 0 0 0;
}
.info-alge p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
p.title-of-infobel {
    font-size: 18px;
    font-weight: 600;
}
.down-arrow {
    float: left;
    width: 100%;
    text-align: center;
    padding: 20px 0 20px 0;
}
.output {
    text-align: center;
    background-color: #192335;
    float: left;
    width: 100%;
    border-radius: 5px;
}

.output p {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin: 0px;
    padding: 10px 0px;
}

.chat-of-sale {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 40px 0 0 0;
}

table.table-striped-info tr td {
    padding: 11px;
    border: solid 2px #CCD;
 
}
table.table-striped-info tr  {
    background-color: #fff;
}
tr.table-heading-bg {
    background-color: #eb7a16!important;
    color: #fff;
    font-size: 17px;
    line-height: 40px;
    padding: 0px 20px;
}
.row-max.v-center {
    display: flex
;
}

.quantitative-analysisabout p {
    font-size: 16px;
    color: #000;
    padding: 0px 0px;
    line-height: 34px;
}
span.title-key {
    font-size: 18px;
}
.model-base h4 {
    font-weight: 800;
    font-size: 22px;
}
.model-base p {
    margin: 0 0 9px 0;
    font-size: 16px;
}


.basic-info {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
}
.icon-of-team {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.basic-info h5 {
    font-weight: 800;
    font-size: 18px;
    float: left;
    width: 100%;
    padding: 20px 0 0 0;
}

.basic-info {
    margin: 0px;
    padding: 40px 30px 30px 30px;
    float: left;
    box-shadow: 3px 10px 10px 20px #ededed;
    border-radius: 10px;
    box-shadow: 0px 6px 34px rgb(221 221 221 / 41%);
    margin: 0px 0 0px 0;
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    min-height: 300px;
    margin: 20px 0 0 0;
}
.model-base {
    float: left;
    margin: 0px;
    padding: 30px 0 0 0;
    width: 100%;
}

.data-tools{width:100%; float:left; margin:0px; padding:0px;}
.data-tools ul {
    margin: 0px;
    padding: 0px;
}
.data-tools ul li {
    list-style: none;
    display: inline-block;
}
.data-tools ul li img {
    border: solid 1px #ccc;
    border-radius: 7px;
    width: 180px;
    box-shadow: 6px 7px 0px 0px #f1f1f1;
}
.data-tools ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 0px 10px 20px;
}
.learn-more-bnt a {
    background-color: #e5781d;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
}
ul.impect-list {
    margin: 0px;
    padding: 10px 0 0 0;
}

h2.title-of-heading-info {
    font-weight: 700;
}
img.border-radius {
    border-radius: 16px;
}
/**Scroll-to-top**/

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:#192335;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.img-view-socuch {
    text-align: center;
    width: 100%;
}

ul.impact-views li {
    padding: 10px 0 10px 0;
    color: #000;
}

.mini-services-info-cpg {
    margin: 20px 0px 20px 0;
    float: left;
}

.info-title-box-minheight {
    min-height: 435px !important;
}
a.go-home-back {
    background-color: #e5781d;
    color: #fff;
    padding: 11px 14px;
    text-decoration: none;
    border-radius: 5px;
}
.col-hlaf {
    width: 50%;
    float: left;
    border: solid 3px #e5781d;
    margin: 40px 0 0 0;
}

.table-of-current-openining{width:100%; float:left; margin:0px; padding:0px;}
thead.heading-title-of-opening tr {
    background-color: #e5781d !important;
    color: #fff !important;
}
table.table-job {
    width: 100%;
    line-height: 83px;
    padding: 0px 20px;
    color: #000;
    font-weight: 700;
}

table.table-job tr td {
    border: solid 1px #ccc;
    padding: 0px 27px;
}
table.table-job thead tr th {
    padding: 0px 20px;
    line-height: 60px;
}

a.apply-bnt {
    background-color: #e5781d;
    color: #fff;
    padding: 11px 20px;
    text-decoration: none;
    border-radius: 5px;
}

h3.name-of-job {
    font-weight: 800;
}

a.aply-bnt-now {
    background-color: #e5781d;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

.full-job-details{width:100%; float:left; margin:0px; padding:0px;}
.full-job-details h3 {
    font-weight: 700;
    font-size: 22px;
}
.full-job-details h6 {
    font-weight: 800;
    padding: 14px 0 0 0;
}

ul.list-of-requte {
    margin: 0px;
    padding: 0 0 0 16px;
    line-height: 28px;
}

span.btn-apply-now-submit {
    background-color: #e5781d;
    color: #fff;
    font-weight: 600;
    padding: 12px 17px;
    display: inline-block;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.bnt-applyjob {
    padding: 40px 0px 0px 0px;
    float: left;
    width: 100%;
}

.job-title h3 {
    font-size: 20px;
    font-weight: 800;
}
input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}

.btn.btn-default.browse-button {
    background-color: #e5781d;
    color: #fff;
    border-radius: 5px 0px 0px 3px;
}

button.btn.btn-default.clear-button {
    background-color: #fff;
    border-radius: 0px;
}
.bg-outerform {
    background-color: #f0f4fd;
    padding: 30px 30px;
    border-radius: 10px;
}


.legal-page{width:100%; float:left; margin:0px; padding:0px; text-align:right;}
.legal-page ul {
    margin: 0px;
    padding: 0px;
}
.legal-page ul li {
    display: inline-block;
    padding: 0px 0px 0px 20px;
 
}
.legal-page ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.top-container {
  background-color: #f1f1f1;
  padding: 30px;
  text-align: center;
}

.header {
    padding: 10px 16px;
    background: #fff;
    color: #f1f1f1;
    /* z-index: 999; */
}
.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 102px;
}