html {
  scroll-behavior: smooth;
}

body{
	overflow-x: hidden;
	margin: 0;
	font-family: "Raleway", sans-serif;
}

a{
	text-decoration: none;
}

/*preloader start*/
.preloader {
	position: fixed;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9991;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.preloader__image {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
/*preloader end*/

/*header start*/

#get-header-section{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.navbar-brand img{
	width: 100%;
	transition: all 300ms;
}

nav{
	background: transparent;
}

header .nav-link{
	color: #6F7A83;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	padding: 0 1rem !important;
}

header .nav-link.active{
	color: #084384 !important;
	font-weight: 600;
}

.sticky-top-header{
	background: #ffffff !important;
    box-shadow: 0px 0px 51px 0px rgba(31, 53, 158, 0.07);

    .navbar-brand img{
    	width: 120px;
    }
}

.offcanvas-body .nav-item{
	padding: 10px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
	display: block;
}

.nav-item .dropdown-menu{
	margin-top: 10px;
    border-radius: 3px;
    border: none;
}

.nav-item .dropdown-item{
	font-weight: 400;
	font-size: 15px;
	line-height: 13px;
	color: #6F7A83;
	padding: 13px 15px;
}

.nav-item .dropdown-item.active, .dropdown-item:active{
	color: #FFF;
}
/*header end*/

/*mobile header start*/


.navbar-toggler, .btn-close{
	border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0 !important;
    background-color: #e0f0ff;
    border: 0px solid #084384;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
}

.navbar-toggler-icon{
	background-size: 80%;
}

.btn-close{
	right: 10px;
	position: relative;
}

.navbar-toggler:focus{
	box-shadow: none;
}
/*mobile header end*/

.main-page{
	overflow: hidden;
}

section{
	overflow: hidden;
}

/*common css start*/
.box-shadow{
	box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
}
.sec-top-padding{
	padding-top: 80px;
}

.sec-bottom-padding{
	padding-bottom: 80px;
}

.lg-title{
	font-size: 36px;
	line-height: 42px;
	font-weight: 600;
}

.md-title{
	font-size: 32px;
	line-height: 40px;
	font-weight: 600;
}

.sm-title{
	font-size: 24px;
	line-height: 38px;
	font-weight: 600;
}

.lg-para{
	font-size: 28px;
	line-height: 39px;
	font-weight: 500;
}

.sm-para{
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	letter-spacing: 0.02rem;
}

.md-para{
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
}


.sm-sub-title{
	font-size: 16px;
	line-height: 25px;
	font-weight: 600;
}

.black-font{
	color: #171717;
}

.grey-font{
	color: #6F7A83;
}

.blue-font{
	color: #084384;
}

.white-font{
	color: #FFFFFF;
}

.light-blue-bg{
	background: #F8FBFF;
}

.blue-bg{
	background: #E3EFFF;
}

.dark-blue-bg{
	background: #084384;
}

.white-bg{
	background: #FFFFFF;
}

.grey-bg{
	background: #6F7A83;
}

.rounded-5 {
	border-radius: 15px;
}

.green-icon{
	font-size: 50px;
	color: #0db52e;
}

.bold-text{
	font-weight: 600;
}

.filled-btn{
	background: #084384;
	border: 1px solid #084384;
	display: inline-block;
	border-radius: 4px;
	padding: 10px 24px;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: all 300ms;
}

.filled-btn:hover{
	background: transparent;
	border: 1px solid #084384;
	color: #084384;
}

.outline-btn{
	background: transparent;
	border: 1px solid #084384;
	display: inline-block;
	border-radius: 4px;
	padding: 10px 24px;
	color: #084384;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: all 300ms;
}

.outline-btn:hover{
	color: #FFFFFF;
	background: #084384;
}

.btn-shadow{
	box-shadow: 0px 4px 4px 0px #00000040;
}

.visibility-hidden{
	visibility: hidden;
}
/*common css end*/



.powered-logo{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px 5px 5px 5px;
	border-radius: 10px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #FFFFFF;
}

.inner-pg-banner{
	background: #EEF5FF;
	padding: 90px 0 60px 0;
}

.inner-pg-banner-sub-title{
	font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.homepage-banner-section{
	background: url(../images/banner/home-banner.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	padding: 80px 0 60px 0;
	background-attachment: fixed;
}

.banner-circle{
	display: inline-block;
	position: absolute;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2); 
	overflow: hidden;
	border-radius: 50%;
	transition: all 500ms;
}

.b1{
	right: 7%;
    top: 34%;
	width: 80px;
	height: 80px;
	
	background: url(../images/homepage/b1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
}
.b2{
	width: 150px;
	height: 150px;
	right: 10%;
	bottom: 0;
	background: url(../images/homepage/b2.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}
.b3{
	left: 22%;
    bottom: 7%;
	width: 100px;
	height: 100px;
	background: url(../images/homepage/b3.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}
.b4{
	left: 19%;
    top: 5%;
    width: 200px;
    height: 200px;
	background: url(../images/homepage/b4.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

.homepage-banner-section:hover {
	.b1{
		right: 15%;
	    top: 5%;
	    width: 200px;
	    height: 200px;
	}
	.b2{
		width: 90px;
        height: 90px;
        right: 0%;
        bottom: 12%;
	}
	.b3{
		left: 38%;
        bottom: 0;
        width: 130px;
        height: 130px;
	}
	.b4{
		left: 8%;
        top: 41%;
        width: 100px;
        height: 100px;
	}
}


.floating-banner{
	position: relative;
	top: -80px;
	overflow: visible;
}

.floating-banner-box{
	padding: 50px 30px;
	background: #FFFFFF;
	box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
    border-radius: 15px;
    overflow: hidden;
}

.lightblue-box{
	display: block;
	position: relative;
	cursor: pointer;
	background: #F8FBFF;
	border-radius: 8px;
	padding: 20px 20px 30px 20px;
	border: 1px solid #08438480;
	transition: all 500ms;
}

.features-box:hover .lightblue-box{
	transform: scale(1.3);
}

.features-box:hover{
	z-index: 999;
}

.circle-ic{
	background: #E0F0FF;
	border-radius: 50%;
	padding: 15px;
	display: inline-block;
}

.lightblue-box p{
	font-size: 13px;
    line-height: 20px;
}

.lightblue-box:hover{
	background: #084384;

	*{
		color: #FFFFFF !important;
	}

	.circle-ic{
		background: #FFFFFF;
	}

	.powered-logo{
		/*filter: brightness(0) invert(1);*/
		background: #FFF;
	}
}

.features-box{
	width: 20%;
}

/*ad server section*/
.floating-blue-bg{
	position: absolute;
	background: #E0F0FF;
	background: linear-gradient(263deg,rgba(224, 240, 255, 1) 51%, rgba(255, 255, 255, 1) 87%);
	width: 70%;
	height: 100%;
	border-radius: 15px;
	z-index: -1;
	top: 50%;
    transform: translateY(-50%);
}

.feature-box{
	position: relative;
	padding-left: 10px;
	margin-left: 20px;
	margin-top: 50px;
}

.f-circle{
	z-index: -1;
	display: inline-block;
	position: absolute;
	left: -30px;
    top: -20px;
	background: #E0F0FF59;
	border-radius: 50%;
	width: 62px;
	height: 62px;
}

.f-line{
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	background: #084384;
	border-radius: 50%;
	width: 2px;
	height: 100%;
}

.redirect-link{
	display: inline-block;
	text-decoration: none;
	color: #084384;
	font-weight: 600;
	font-size: 16px;
	line-height: 23px;
}
/*ad server section*/

.strip-banner{
	background: url(../images/banner/strip-banner.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% 100%;
}

.monetization-section .nav-pills .nav-link{
	background: transparent;
	font-weight: 400;
	font-size: 20px;
	line-height: 38px;
	color: #252525;
	border-radius: 0;
	transition: all 100ms;
}

.monetization-section .nav-pills .nav-link.active{
	color: #084384;
	border-right: 3px solid #084384;
	font-weight: 600;
}

.monetization-section .nav-pills{
	border-right: 1px solid #E6E6E6;
}

.monetization-section .tab-pane{
 	transition: all 100ms;
}

.floting-title{
	color: white;
    font-size: 30px;
    letter-spacing: 1.2px;
    line-height: 40px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.vserv-product-bx img{
	filter: grayscale(1);
	transform: scale(0.9);
	transition: all 500ms;
}

.vserv-product-bx:hover img{
	transform: scale(1);
	filter: grayscale(0);
}

.floting-dark-bg{
	background: #084384;
	position: absolute;
	width: 60%;
	height: 100%;
	z-index: -1;
	right: 0;
	top: 0;
	border-bottom-left-radius: 15px;
	border-top-left-radius: 15px;
}

.logo-carousel img {
	cursor: pointer;
	filter: grayscale(1);
	width: 150px;
	flex-shrink: 0;
	object-fit: contain;
}

.logo-carousel img:hover{
	filter: grayscale(0);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*testimonial-section*/
.testimonial-section{
	background-color: #1A4582;
    padding: 60px 0 55px 0;
}

.testimonial-subtitle{
    font-size: 18px;
    line-height: 40px;
    color: #F0F4FD;
}
.testimonial-title{
    font-size: 40px;
    line-height: 50px;
    color: #FFFFFF;
}
.testimonial-txt{
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    margin-top: 14px;
}

.testimonial-block{
	background: #FFFFFF;
	border-radius: 15px;
	overflow: hidden;
}

.testimonial-block-img{
	padding: 20px 20px 0 20px;
}

.testimonial-block-text{
	padding: 40px;
}
/*testimonial-section*/

/*footer start*/
.top-footer{
	background: #084384;
}

.bottom-footer{
	padding: 20px 0;
	background: #003B7C;
}

.footer-title{
	color: #FFFFFF;
	font-weight: 600;
	font-size: 20px;
	line-height: 13px;
	margin-bottom: 22px;
}

.footer-link-list{
	padding-left: 0;
	list-style: none;
}

.footer-link-list li{
	padding-bottom: 10px;
}

.footer-link{
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 15px;
	line-height: 13px;
}

.footer-copyright{
	color: #FFFFFF;
	font-weight: 400;
	font-size: 15px;
}

.footer-social-media{
	color: #FFFFFF;
	font-weight: 400;
	font-size: 15px;
}

.social-media-icon{
	padding-left: 7px;
}

.social-media-icon li{
	list-style: none;
	width: 35px;
	height: 35px;
	margin-right: 7px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.9) translateY(0);
	transition: all 500ms;
}

.social-media-icon li .social-link{
	color: #FFFFFF;
}

.social-media-icon li:hover social-media-icon li{
	transform: scale(1) translateY(-2px);
}
/*footer end*/

/*Ad server page start*/
.ts-card{
	text-decoration: none;
	border-radius: 15px;
	border: 1px solid #5686CB;
	padding: 12% 16%;
	transition: all 500ms;
}

.ts-card:hover{
	transform: translateY(-5px);
	box-shadow: #102b54 0px 7px 29px 0px;
}

.container-border{
	border: 1px solid #C4C9D5;
	border-radius: 15px;
    padding: 3% 3%;
}

.adType .swiper-slide{
	height: 550px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*Ad server page end*/

/*ad experience page start*/
.page-section{
    padding: 80px 0;
}

.ae-img-box{
    padding: 30px;
    cursor: pointer;
}

.ae-img-box img{
    border-radius: 10px;
    overflow: hidden;
    transition: all 300ms;
}

.ae-img-box img:hover{
    transform: scale(1.05);
}

.ad-experience-bx{
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
}

.ae-txt-box{
    padding: 20px;
    background: #084384;
}

.ae-title{
    text-align: center;
    font-family: "Raleway", sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 0.28px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.light-bg{
    background: #eee;
}

.light-bg p{
    color: #181B31;
}

.ad-experience-bx{
    position: relative;
}

.ad-experience-txt{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.tab-container{
    position: relative;
    background-image: url(../images/banner/home-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    overflow: hidden;
    background-color: #F0F4FD;
    border-radius: 30px;
    padding: 40px 0;
}

.title-container{
    overflow-y: scroll;
    padding-left: 30px;
}

.tab-section{
    display: inline-block;
    position: relative;
    /*background: #5686CB;*/
    border: 1px solid #1A4582;
    /*background: #1b4482;*/
    padding: 7px 25px;
    border-radius: 30px;        
    cursor: pointer;
    width: calc(50% - 20px);
    margin-bottom: 15px;
    margin-right: 10px;
    transition: all 500ms;
}

.tab-section p{
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #1A4582;
    font-weight: 600;
    line-height: 25px;
    transition: all 500ms;
}

.active-tab{
    background: #1A4582;
}

.active-tab p{
    color: #FFFFFF;
}

.device-container{
    position: relative;
    /*background: #F0F4FD;*/
    padding: 30px;
}

.title-container::-webkit-scrollbar {
  display: none;
}


.tab-box-container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    /*display: none;*/
    transition: all 500ms;
}

.tab-box{
    pointer-events: auto;
    /*display: block;*/
    opacity: 1;
}

.hr-tabs-container .swiper-slide img{
    max-height: 100%;
}
.main-tab{
    cursor: pointer;
    padding: 15px 0;
    /*border-bottom: 2px solid #1A4582;*/
}
.center-border{
    border-left:1px solid #1A4582;
    border-right:1px solid #1A4582;
}
.hr-tab-block{
    overflow: hidden;
    border: 1px solid #1A4582;
    border-radius: 15px;
}
.hr-tabs-title {
    font-size: 20px;
}
.main-tab-active{
    /*border-bottom: 4px solid #1A4582;*/
    background: #1A4582;
    transition: all 500ms;
}
.main-tab-active .hr-tabs-title{
    color: #FFFFFF;
}
.main-tab-container{
    display: none;
}
.tab-container-active{
    display: block;
}
.hr-tabs-container{
    padding: 30px;
}
.tab-box-container .swiper-pagination{
    bottom: -7%;
}
.tab-box-container .swiper-pagination-bullet-active{
    background: #1A4582;
}

.mobile-tab-section .accordion-item{
	border: 1px solid #1a4582;
	/*border: 1px solid;
  	border-image: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(47, 148, 230, 0.54) 100%);
  	border-image-slice: 2*/;
	border-radius: 5px;
	margin-bottom: 8px;
	overflow: hidden;
	background-color: transparent;
}

.mobile-tab-section .accordion-header button{
	background-color: transparent;
	border: none;
	box-shadow: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #252525;
	padding: 5px var(--bs-accordion-body-padding-x);
}

.mobile-tab-section .accordion-body{
	padding: 0 var(--bs-accordion-body-padding-x) 8px var(--bs-accordion-body-padding-x);
}

.mobile-tab-section .accordion-button:not(.collapsed){
	color: #084384 !important;
	font-weight: 600 !important;
}

.mobile-tab-section .accordion-body p{
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #6F7A83;
}
/*ad experience page end*/

/*ad server page*/
.AdsAccordion .swiper-pagination-bullet-active{
	background:#084384;
}

.mediaAccordion .accordion-button{
	font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    background: transparent;
    box-shadow: none;
}

.mediaAccordion .accordion-item{
	border-radius: 0;
	border: none;
	border-bottom: 2px solid rgba(35, 45, 60, .17);
}

.mediaAccordion .accordion-button::after{
	border: 1px solid #084384;
	height: 35px !important;
    width: 35px !important;
    background-position: center;
    border-radius: 50%;
}

.media-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.media-item.show {
  display: block;
  opacity: 1;
}
/*ad server page*/

/*form css start*/
.form-banner{
	padding: 120px 0 60px 0;
}

.rq-mark{
	font-size: 23px;
	color: #FF0000;
}

.col-form-label{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #000000;
}

.form-row{
	margin-bottom: 36px;
}

.form-control, .form-select{
	height: 40px;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #000000;
	border-radius: 5px;
	padding: 0 12px;
	border: 1px solid #002C5C8F;
}

.form-check-input{
	border: 2px solid #002C5C8F;
}

.form-select:focus, .form-control:focus, .form-check-input:focus{
	border: 1px solid #002C5C8F;
	box-shadow:none;
}

.custom-tooltip{
	font-weight: 500;
	--bstooltip-font-size: 12px;
	--bstooltip-line-height:15px;
	--bstooltip-text-align: left;
	--bs-tooltip-bg: #FFFFFF;
	--bs-tooltip-color: #000000;
	border-radius: 10px;
}

.form-info-box{
	position: relative;
	display: block;
	cursor: pointer;
	padding: 18px;
	border: 1px solid #E6E6E6;
	background: #FFFFFF;
	box-shadow: none;
	border-radius: 5px;
	border: 1px solid #002C5C8F;
	transition:all 300ms;
}

.form-info-box:hover{
	border-color: transparent;
	box-shadow: 0px 0px 6px 0px #00000040;
}

.form-info-box .form-badge{
	display: inline-block;
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	color: #084384;
	background: #E0F0FF;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 3px 14px 3px 6px;
}

.form-list{
	font-weight: 500;
	font-size: 13px;
	padding-left: 17px;
}

.form-list li{
	margin-bottom: 5px;
}

.form-sticky-note{
	position: absolute;
	right: 0;
	top: 15px;
	display: inline-block;
	border: 1px solid #000000DE;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	font-weight: 600;
	font-size: 13px;
	padding: 3px 5px 3px 13px;
}

.tnc-form-label{
	font-weight: 400;
	font-size: 15px;
}

.error-input{
	border: 1px solid #dc3545;
}
/*form css end*/

/*privacy policy start*/
.privacy-policy-section{
    padding: 60px 0 60px 0;
}

.privacy-index-list, .numbered-list ol li {
    color: #181B31;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 300ms;
}

.privacy-index-list:hover{
    color: #084384;
}

.tick-list {
    list-style: none;
    padding-left: 0;
}

.tick-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    width: 15px;
    height: 15px;
    background: url(../images/tick-svg.svg) no-repeat;
}

.tick-list li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px;
}

.solution-list-ul{
    color: #6F7A83;
}
/*privacy policy end*/

/*product pages start*/
.floating-no{
	font-size: 85px;
    letter-spacing: 1.7px;
    line-height: 103px;
    color: #AFAFAF;
    position: absolute;
    opacity: 18%;
    font-weight: 200;
    top: -50px;
    left: -34px;
}
/*product pages end*/

/*team page start*/
.top-b-image-box{
	position: relative;
	overflow: hidden;
	border-radius: 32px;
}

.top-b-image-box img{
	border-radius: 32px;
	transition: all 400ms;
}

.top-b-image-box:hover img {
    transform: scale(1.05);
}

.fs-details-box1{
	position: absolute;
	bottom: 44px;
	left: 59px;
}

.fs-details-box2{
	position: absolute;
	bottom: 44px;
	right: 59px;
}

.fs-name{
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px; 
}

.fs-designation{
	color: #FFF;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

/*team block start*/
.team-section{
	height: 100vh;
	position: relative;
}

.team-circle-sm{
	transform: scale(0.9); 
}

.team-inner-block .swiper{
	pointer-events: none;
}

.our-team-circle{
	margin-top: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 300px;
	width: 300px;
	background: #F15A29;
	border-radius: 50%;
	padding: 50px 30px 50px 50px;
	background: #084384;
}

.team-title{
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px; 
/*	text-transform: uppercase;*/
	margin-bottom: 0;
}

.team-para{
	color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.team-arrow{
	margin-left: -18px;
}

.team-block {
	margin-top: 30px;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.9);
    width: 650px;
    height: 650px;
    border-radius: 50%;
    overflow: hidden;
}

.team-inner-block {
	cursor: pointer;
	overflow: hidden;
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url(../images/team/team-bg.png);
    background-position: center center;
    border-radius: 50%;
    top: 40.9%;
    left: 40.9%;
    transform: translate(-50%, -50%);
    transition: all 500ms;
}

.team-inner-block:nth-child(1)  { transform: rotate(36deg)  translate(250px) rotate(-36deg); }
.team-inner-block:nth-child(2)  { transform: rotate(72deg)  translate(250px) rotate(-72deg); }
.team-inner-block:nth-child(3)  { transform: rotate(108deg) translate(250px) rotate(-108deg); }
.team-inner-block:nth-child(4)  { transform: rotate(144deg) translate(250px) rotate(-144deg); }
.team-inner-block:nth-child(5)  { transform: rotate(180deg) translate(250px) rotate(-180deg); }
.team-inner-block:nth-child(6)  { transform: rotate(216deg) translate(250px) rotate(-216deg); }
.team-inner-block:nth-child(7)  { transform: rotate(252deg) translate(250px) rotate(-252deg); }
.team-inner-block:nth-child(8)  { transform: rotate(288deg) translate(250px) rotate(-288deg); }
.team-inner-block:nth-child(9)  { transform: rotate(324deg) translate(250px) rotate(-324deg); }
.team-inner-block:nth-child(10) { transform: rotate(360deg) translate(250px) rotate(-360deg); }

.team-circle{
	pointer-events: none;
	filter: grayscale(1);
	transition: all 500ms;
}

.team-inner-block:hover .team-circle{
	filter: grayscale(0);
}

/*team block end*/
/*team page end*/

/*blog page start*/
.blog-top-padding{
	padding-top: 20px;
}
.blog-list-container{
    padding: 80px 0;
}

.blog_main_section{
    margin: 60px 0;
}

.blog__main{
    border-radius: 8px;
    overflow: hidden;
}

.blog-details__meta {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(152, 172, 210, .22);
}

.blog-details__meta::before {
    content: '';
    width: 40px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgb(26, 69, 130) 0%, rgb(26, 69, 130) 100%);
}

.blog-details__content {
    border: 1px solid rgba(152, 172, 210, .22);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.blog_details__text{
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}

.blog__pointers li{
    margin-bottom: 8px;
}

.blog__pointers li::marker {
  color: #1A4582;
}

.numbered-list li::marker{
    color: #212529 !important;
    font-size: 19px;
}

.numbered-list-main li::marker{
    color: #1A4582;
    font-size: 22px;
    font-weight: 600;
}

.bold-text{
    font-weight: 600;
}

/*blog page end*/


.blog-outer-box{
	box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin: 0 5px;
}

.cs-rounded-thumb-img{
    border-radius: 50%;
    overflow: hidden;
}

.cs-title-txt{
	font-size: 17px;
	font-weight: 500;
	line-height: 24px; 
	margin-bottom: 23px;
}

.blog-txt-box{
	padding: 20px 30px;
	background: #FFFFFF;
	transition: all .30s;
}

.blog-outer-box:hover{
	span{
		color: #084384;
	}
}

.banner-chip{
	color: #FFF;
	background: #084384;
	display: inline-block;
	padding: 4px 13px;
	border-radius: 15px;
}