:root {
	--brand-blue:rgba(113, 90, 255, 1);
	--brand-orange:rgba(253, 179, 33, 1);
	--brand-red:rgba(255, 89, 90, 1);
	--brand-black:rgba(12, 5, 32, 1);
	--brand-text:rgba(34, 23, 99, 1);
	--brand-green:rgba(33, 192, 192, 1);
	--brand-blue-hover:rgba(53, 14, 161, 1);
	--brand-yellow:rgba(253, 179, 33, 1)
;
}

/************
Transition
*************/
@keyframes bounce {
	0%, 100% {
		transform: translateX(-25%);
		animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
	}
	50% {
		transform: translateY(0);
		animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	}
}

@font-face {
	font-family: "Gilmer";
	font-style: normal;
	font-weight: 400;
	src: url("assets/fonts/gilmer-regular.woff2") format("woff2"), url("assets/fonts/gilmer-regular.woff") format("woff");
	font-display:swap;
}

@font-face {
	font-family: "Gilmer";
	font-style: normal;
	font-weight: 500;
	src: url("assets/fonts/gilmer-medium.woff2") format("woff2"), url("assets/fonts/gilmer-medium.woff") format("woff"); 
	font-display:swap;
}

@font-face {
	font-family: "Gilmer";
	font-style: normal;
	font-weight: 700;
	src: url("assets/fonts/gilmer-bold.woff2") format("woff2"), url("assets/fonts/gilmer-bold.woff") format("woff");
	font-display:swap;
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.container-s {
	max-width: 1114px;
	width: 100%;
}

.flex-item {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
}

.flex-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	flex-grow: 1;
	-webkit-flex-grow: 1;
}

.page-banner {
	background: linear-gradient(113.67deg, #562BCD -20.16%, #785CED 118.54%);
	mix-blend-mode: normal;
	padding: 0 0 32px;
	color: #fff;
}

.page-banner .container {
	padding-top: 136px;
}

@media (min-width: 991px) {
	.page-banner .container {
		padding-top: 163px;
		
		background: url(./assets/brand-art-banner.svg) no-repeat calc(100% - 31px) 120px;
	}
}

@media (max-width: 992px) {
	.page-banner .container {
		background: url(./assets/brand-art-banner-m.svg) no-repeat right 105px;
	}
}

.page-banner .back-btn {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
	color: #fff;
	font-family: "Gilmer", sans-serif;
}

@media (min-width: 768px) {
	.page-banner .back-btn {
		font-size: 1.125rem;
	}
}

.page-banner .back-btn span {
	margin-right: 1rem;
}

@media (max-width: 767px) {
	.page-banner .back-btn span {
		max-width: 26px;
		margin-right: 10px;
	}
}

.page-banner .back-btn span svg {
	max-width: 100%;
	height: auto;
}

.page-banner h1 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	max-width: 835px;
	margin: 0;
}

.page-banner h1 strong {
	font-weight: 700;
}

.page-banner h1:not(:last-child) {
	margin-bottom: 1.5rem;
}

@media (min-width: 991px) {
	.page-banner h1:not(:last-child) {
		margin-bottom: 2.0625rem;
		font-size: 2.625rem;
	}
}

.page-banner-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.single-post .page-banner-meta {
	align-items: flex-end;
}

@media (max-width: 767px) {
	.page-banner-meta {
		font-size: 10px;
	}
}

.page-banner-meta a {
	color: #fff;
	display: inline-flex;
	align-items: center;
}

.page-banner-meta a svg {
	margin-right: 13px;
}

@media (max-width: 767px) {
	.page-banner-meta a svg {
		margin-right: 6px;
		max-width: 9px;
		height: auto;
	}
}

.page-banner-meta-author {
	display: flex;
	align-items: center;
}

.page-banner-meta-author img {
	float: left;
	border-radius: 50%;
	max-width: 60px;
}

@media (max-width: 767px) {
	.page-banner-meta-author img {
		max-width: 40px;
	}
}

.page-banner-meta-author-in {
	overflow: hidden;
	width: calc(100% - 40px);
	padding-left: 11px;
	font-size: 12px;
	line-height: 1.355;
}

.page-banner-meta-author-in strong {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.1614;
	display: block;
}

@media (min-width: 767px) {
	.page-banner-meta-author-in {
		width: calc(100% - 60px);
		padding-left: 16px;
		font-size: 1rem;
	}
	.page-banner-meta-author-in strong {
		font-size: 1.125rem;
	}
}

.page-banner-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.page-banner-navigation li:not(:last-child) {
	margin-right: 8px;
}

@media (min-width: 991px) {
	.page-banner-navigation li:not(:last-child) {
		margin-right: 20px;
	}
}

.page-banner-navigation li a {
	display: flex;
	align-items: center;
	border: 1px solid #FFFFFF;
	border-radius: 90px;
	padding: 10px 12px 11px 18px;
	font-size: 0.75rem;
	line-height: 1.575;
	color: #fff;
	font-weight: 500;
}

.page-banner-navigation li a span {
	background: #E9F9F9;
	border-radius: 30px;
	padding: 3px 9px 4px;
	color: var(--brand-green);
	font-size: 0.625rem;
	line-height: 1.045;
	margin-left: 5px;
}

.page-banner-navigation li a:hover, .page-banner-navigation li afocus {
	background-color: rgba(255, 255, 255, 0.6);
	color: var(--brand-blue);
}

.page-banner-navigation li a.active {
	background-color: #fff;
	color: var(--brand-blue);
}

@media (min-width: 991px) {
	.page-banner-navigation li a {
		font-size: 1rem;
		padding: 10px 10px 10px 26px;
	}
	.page-banner-navigation li a span {
		font-size: 0.9375rem;
		line-height: 1.04533;
		padding: 7px 10px;
		margin-left: 12px;
	}
}

.single-casestudies .site-header, .page-template-page-case-studies .site-header, .page-id-434 .site-header, .page-id-543 .site-header, .page-template-page-blogs .site-header {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	width: 100%;
}

.single-casestudies .site-header .top-header, .page-template-page-case-studies .site-header .top-header, .page-id-434 .site-header .top-header, .page-id-543 .site-header .top-header, .page-template-page-blogs .site-header .top-header {
	padding-top: 3.125rem;
	padding-bottom: 1rem;
}

@media (min-width: 991px) {
	.single-casestudies .site-header .top-header, .page-template-page-case-studies .site-header .top-header, .page-id-434 .site-header .top-header, .page-id-543 .site-header .top-header, .page-template-page-blogs .site-header .top-header {
		padding-top: 3.3125rem;
	}
}

.single-casestudies .site-header .top-header a svg path, .page-template-page-case-studies .site-header .top-header a svg path, .page-id-434 .site-header .top-header a svg path, .page-id-543 .site-header .top-header a svg path, .page-template-page-blogs .site-header .top-header a svg path {
	fill: #fff;
}

.single-casestudies .site-header .top-header .btn-revel, .page-template-page-case-studies .site-header .top-header .btn-revel, .page-id-434 .site-header .top-header .btn-revel, .page-id-543 .site-header .top-header .btn-revel, .page-template-page-blogs .site-header .top-header .btn-revel {
	color: #fff;
}

.single-casestudies .site-header .top-header .btn-revel svg line, .page-template-page-case-studies .site-header .top-header .btn-revel svg line, .page-id-434 .site-header .top-header .btn-revel svg line, .page-id-543 .site-header .top-header .btn-revel svg line, .page-template-page-blogs .site-header .top-header .btn-revel svg line {
	stroke: #fff;
}

.cs-content-main {
	padding-top: 15px;
	padding-bottom: 84px;
	/*background: url("./assets/Light Gradient11-2.png") no-repeat center bottom;*/
	
	background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 20.4%, #E2F5FD 100%);
}

@media (min-width: 991px) {
	.cs-content-main {
		padding-top: 60px;
		padding-bottom: 110px;
	}
}

.cs-content-item {
	padding-top: 40px;
	font-size: 0.875rem;
	line-height: 1.645;
}

@media (min-width: 991px) {
	.cs-content-item {
		font-size: 1.125rem;
	}
}

.cs-content-item p, .cs-content-item .gallery {
	margin-bottom: 20px;
}

@media (min-width: 991px) {
	.cs-content-item p, .cs-content-item .gallery {
		margin-bottom: 40px;
	}
}

.cs-content-item-head h2 {
	font-size: 0.75rem;
	line-height: 1.0452;
	letter-spacing: 0.06em;
	margin: 0 0 12px;
	color: var(--brand-red);
	text-transform: uppercase;
	font-weight: 500;
}

@media (min-width: 991px) {
	.cs-content-item-head h2 {
		font-size: 1.125rem;
	}
	.cs-content-item-challenge .cs-content-item-head h2 {
		margin-top: 45px;
	}
	.cs-content-item-outcome .cs-content-item-head h2 {
		margin-top: 48px;
	}
}

.cs-content-item-content img {
	border-radius: 20px;
}

.cs-content-item-content .gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.cs-content-item-content .gallery-item {
	flex: 1 0 0%;
	padding: 0 10px;
}

.cs-content-item-challenges {
	counter-reset: number;
}

.cs-content-item-challenges-item {
	position: relative;
	padding-top: 68px;
	counter-increment: number;
}

@media (min-width: 991px) {
	.cs-content-item-challenges-item {
		padding-top: 82px;
		padding-left: 33px;
	}
}

.cs-content-item-challenges-item::before {
	content: counter(number, decimal-leading-zero);
	font-size: 60px;
	font-weight: 900;
	color: rgba(42, 214, 214, 0.1);
	line-height: 1.235;
	position: absolute;
	left: 0;
	top: 0;
	font-family: "Gilmer", sans-serif;
}

@media (min-width: 991px) {
	.cs-content-item-challenges-item::before {
		font-size: 100px;
	}
}

.cs-content-item-challenges-item p {
	position: relative;
}

.cs-content-item-outcome-main {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.cs-content-item-outcome-val {
	display: flex;
	align-items: flex-end;
	position: relative;
}

@media (min-width: 1200px) {
	.cs-content-item-outcome-val {
		max-width: 414px;
	}
}

.cs-content-item-outcome-val span {
	font-size: 159px;
	line-height: 0.85;
	font-family: "Gilmer", sans-serif;
	font-weight: 900;
	color: var(--brand-blue);
}

.cs-content-item-outcome-val p {
	max-width: 140px;
	margin-bottom: 0;
	font-size: 1.125rem;
	letter-spacing: 0.035em;
	line-height: 1.27778;
	position: relative;
	padding-top: 52px;
}

.cs-content-item-outcome-val p::before {
	content: '%';
	font-family: "Gilmer", sans-serif;
	font-weight: 900;
	line-height: 1.0452;
	color: var(--brand-blue);
	font-size: 47px;
	position: absolute;
	left: 0;
	top: 0;
}

.cs-content-item-outcome-val p strong {
	font-weight: 500;
}

.cs-content-item-outcome-desc {
	position: relative;
	margin-top: 60px;
	display: flex;
	align-items: flex-end;
	max-width: 457px;
}

@media (min-width: 1200px) {
	.cs-content-item-outcome-desc {
		max-width: calc(100% - 414px);
		margin-top: 0;
	}
}

.cs-content-item-outcome-desc img {
	max-width: 150px;
	border-radius: 50%;
}

.cs-content-item-outcome-desc p {
	font-size: 1.125rem;
	letter-spacing: 0.035em;
	line-height: 1.27778;
	margin-bottom: 0;
	margin-left: -51px;
}

.ev-tails-cs {
	padding: 0 0 98px;
}

@media (min-width: 991px) {
	.ev-tails-cs {
		padding: 0 0 116px;
	}
}

.ev-tails-cs h2 {
	text-align: center;
	margin: 0 0 30px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

@media (min-width: 991px) {
	.ev-tails-cs h2 {
		margin-bottom: 50px;
		text-align: left;
		font-weight: 400;
		font-size: 2.625rem;
	}
}

.featured-articles {
	padding: 0 0 92px;
}

@media (min-width: 991px) {
	.featured-articles {
		padding: 0 0 170px;
	}
}

.relateed-cs {
	padding: 80px 0 98px;
}

@media (min-width: 991px) {
	.relateed-cs {
		padding: 200px 0 116px;
	}
}

.relateed-cs h2 {
	text-align: center;
	margin: 0 0 30px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

@media (min-width: 991px) {
	.relateed-cs h2 {
		margin-bottom: 50px;
		text-align: left;
		font-weight: 400;
		font-size: 2.625rem;
	}
}

.cs-grid-item {
	border: 1px solid #EAEAEA;
	border-radius: 20px;
	margin-bottom: 8px;
	padding: 10px;
	color: var(--brand-black);
	text-decoration: none;
	transition: all 0.3s ease;
}

@media (min-width: 768px) {
	.cs-grid-item {
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	.cs-grid-item {
		margin-bottom: 44px;
	}
}

.cs-grid-item:hover, .cs-grid-item:focus {
	color: var(--brand-black);
	text-decoration: none;
	box-shadow: 0 5px 30px rgba(234, 234, 234, 0.4);
}

.cs-grid-item-thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0;
}

.cs-grid-item-thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	
	object-fit: cover;
}

@media (min-width: 768px) {
	.cs-grid-item-thumb {
		margin-bottom: 23px;
		padding-top: 56.72%;
	}
}

@media (max-width: 767px) {
	.cs-grid-item-thumb {
		max-width: 97px;
		min-height: 132px;
		
		width: 100%;
	}
}

@media (min-width: 992px) {
	.cs-grid-item-content {
		padding: 0 10px;
	}
}

.cs-grid-item-content h3 {
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	line-height: 1.2;
}

.cs-grid-item-content h3 strong {
	font-weight: 700;
	line-height: 1.345;
}

@media (min-width: 992px) {
	.cs-grid-item-content h3 {
		font-size: 1.125rem;
	}
}

.cs-grid-item-content p {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.cs-grid-item-content {
		max-width: calc(100% - 97px);
		padding-left: 12px;
	}
}

.cs-grid-item-foot {
	margin-top: auto;
	font-size: 12px;
	margin-bottom: 5px;
	color: var(--brand-blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.cs-grid-item-foot {
		font-size: 13px;
		padding: 0 10px;
	}
}

.cs-grid-item-foot span:last-child {
	margin-left: auto;
}

.cs-grid-item-in {
	margin-bottom: 22px;
}

@media (max-width: 767px) {
	.cs-grid-item-in {
		display: flex;
	}
}

@media (min-width: 992px) {
	.cs-grid-item-in {
		margin-bottom: 36px;
	}
}

.cs-list-item {
	display: block;
	color: var(--brand-black);
	border: 1px solid #EAEAEA;
	border-radius: 14px;
	padding: 10px;
	margin-bottom: 10px;
}

.cs-list-item:hover, .cs-list-item:focus {
	color: var(--brand-black);
	text-decoration: none;
	box-shadow: 0 5px 30px rgba(234, 234, 234, 0.4);
}

@media (min-width: 768px) {
	.cs-list-item {
		padding: 16px;
		margin-bottom: 30px;
		display: flex;
		align-items: flex-end;
	}
}

.cs-list-item-thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.cs-list-item-thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.cs-list-item-thumb {
		width: 34.108%;
		min-height: 275px;
	}
}

@media (max-width: 767px) {
	.cs-list-item-thumb {
		padding-top: 41.9%;
		margin-bottom: 11px;
	}
}

@media (min-width: 768px) {
	.cs-list-item-in {
		width: 65.892%;
		padding-left: 30px;
		padding-right: 9px;
	}
}

@media (min-width: 1200px) {
	.cs-list-item-in {
		padding-left: 41px;
		padding-right: 19px;
	}
}

.cs-list-item-content {
	margin-bottom: 12px;
	font-size: 0.875rem;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.cs-list-item-content {
		margin-bottom: 32px;
		font-size: 1.125rem;
	}
}

.cs-list-item-content p {
	margin: 0;
}

.cs-list-item-content h3 {
	color: var(--brand-blue-hover);
	font-size: 1rem;
	line-height: 1.34;
	margin: 0 0 8px;
}

@media (min-width: 768px) {
	.cs-list-item-content h3 {
		margin-bottom: 16px;
		font-size: 1.5rem;
	}
}

.cs-list-item-foot {
	font-size: 12px;
	margin-bottom: 4px;
	color: var(--brand-blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.cs-list-item-foot {
		font-size: 1rem;
		margin-bottom: 0;
	}
}

.cs-list-item-foot span:last-child {
	margin-left: auto;
}

.filter-tgr {
	background: var(--brand-yellow);
	width: 55px;
	height: 55px;
	position: fixed;
	right: 15px;
	top: calc(50% - 22px);
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(217, 152, 23, 0.65);
	box-shadow: 0px 7px 14px rgba(253, 179, 33, 0.55);
	border-radius: 12px;
	z-index: 100;
}

.filter-tgr span {
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	text-align: center;
	background: #FFFFFF;
	border: 1px solid var(--brand-yellow);
	color: var(--brand-yellow);
	font-size: 13px;
	line-height: 24px;
	font-weight: 500;
	position: absolute;
	right: -7px;
	top: -6px;
	transition: all 0.3s ease;
	border-radius: 50%;
}

.filter-tgr span:empty {
	opacity: 0;
}

@media (min-width: 768px) {
	.filter-wrap {
		padding: 20px 0 60px;
	}
}

@media (max-width: 767px) {
	.filter-wrap {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 100000;
		display: flex;
		align-items: flex-end;
		transition: all 0.3s ease 0.3s;
		opacity: 0;
		visibility: hidden;
	}
	.filter-open .filter-wrap {
		opacity: 1;
		visibility: visible;
		transition-delay: 0s;
	}
	.filter-wrap-in {
		background: #fff;
		max-height: calc(100% - 30px);
		overflow: auto;
		border-radius: 23px 23px 0 0;
		padding: 71px 15px 30px;
		border: 1px solid #EAEAEA;
		box-shadow: 0px -7px 16px rgba(0, 0, 0, 0.25);
		position: relative;
		width: 100%;
		transform: translateY(100%);
		transition: all 0.3s ease;
	}
	.filter-open .filter-wrap-in {
		transform: none;
	}
	.filter-wrap-in .close-filer {
		position: absolute;
		right: 10px;
		top: 15px;
		padding: 10px;
		align-items: center;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.filter-list {
		display: flex;
	}
}

@media (min-width: 768px) {
	.filter-list-item:not(:last-child) {
		margin-right: 30px;
	}
}

@media (max-width: 767px) {
	.filter-list-item {
		margin-bottom: 30px;
		width: 100%;
	}
}

.filter-list-item > label {
	font-size: 0.8125rem;
	line-height: 1.173;
	display: block;
	color: #B5B5B5;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.filter-list-item .dropdown {
	color: var(--brand-blue-hover);
	min-width: 170px;
}

.filter-list-item .dropdown-toggle {
	font-family: "Gilmer", sans-serif;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	font-weight: 500;
	padding-right: 31px;
	position: relative;
	border-bottom: 1px solid rgba(113, 90, 255, 0.1);
	padding-bottom: 10px;
	cursor: pointer;
	width: 100%;
}

@media (min-width: 768px) {
	.filter-list-item .dropdown-toggle {
		display: inline-flex;
	}
}

.filter-list-item .dropdown-toggle > .count {
	height: 24px;
	line-height: 24px;
	padding: 0 8px;
	min-width: 24px;
	border-radius: 12px;
	font-size: 0.8125rem;
	font-family: "Gilmer", sans-serif;
	color: var(--brand-green);
	background: #E9F9F9;
	margin: 0 15px 0 10px;
	text-align: center;
	transition: all 0.3s ease;
}

.filter-list-item .dropdown-toggle > .count:empty {
	opacity: 0;
}

@media (max-width: 767px) {
	.filter-list-item .dropdown-toggle .sort-val::before {
		content: 'Sort By - ';
	}
}

.filter-list-item .dropdown-toggle::after {
	background: url("./assets/drop-arrow.svg") no-repeat center;
	width: 14px;
	height: 10px;
	border: none;
	position: absolute;
	right: 7px;
	top: 12px;
	margin: 0;
	transition: all 0.3s ease;
}

.filter-list-item .dropdown-toggle.show::after {
	transform: rotate(180deg);
}

.filter-list-item .dropdown-menu {
	min-width: 100%;
	padding: 20px 0;
	border: 1px solid rgba(53, 14, 161, 0.1);
	box-shadow: 0px 4px 12px rgba(53, 14, 161, 0.12);
	border-radius: 4px;
	margin-top: 10px !important;
}

@media (max-width: 767px) {
	.filter-list-item .dropdown-menu {
		position: relative !important;
		transform: none !important;
	}
}

.filter-list-item .dropdown-menu li a, .filter-list-item .dropdown-menu li label {
	padding: 21px 22px;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--brand-blue-hover);
	line-height: 1.25;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.filter-list-item .dropdown-menu li.selected a, .filter-list-item .dropdown-menu li.selected label {
	background: rgba(113, 90, 255, 0.05);
	color: var(--brand-blue);
}

.filter-list-item .dropdown-menu li:hover, .filter-list-item .dropdown-menu li:focus {
	background: rgba(113, 90, 255, 0.05);
}

.filter-list-item .dropdown-menu li.custom-check label {
	cursor: pointer;
	position: relative;
}

.filter-list-item .dropdown-menu li.custom-check label span {
	padding-left: 27px;
	position: relative;
	background: url("./assets/check-default.svg") no-repeat 0 center;
}

.filter-list-item .dropdown-menu li.custom-check label input {
	position: absolute;
	opacity: 0;
}

.filter-list-item .dropdown-menu li.custom-check label input:checked + span {
	background-image: url("./assets/check-selected.svg");
}

.filter-list-item .dropdown-menu li.custom-radio label {
	cursor: pointer;
	position: relative;
}

.filter-list-item .dropdown-menu li.custom-radio label span {
	position: relative;
}

.filter-list-item .dropdown-menu li.custom-radio label input {
	position: absolute;
	opacity: 0;
}

@media (min-width: 768px) {
	.filter-list-item .dropdown-cs .dropdown-menu {
		max-width: 370px;
		width: 370px;
		max-height: 420px;
		overflow: auto;
	}
}

.selected-filters {
	margin-bottom: 42px;
}

.selected-filters-items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.selected-filters-item {
	display: inline-block;
	max-width: 181px;
	background: rgba(33, 192, 192, 0.05);
	border: 1px solid rgba(33, 192, 192, 0.26);
	border-radius: 90px;
	padding: 9px 40px 9px 20px;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: var(--brand-blue-hover);
	font-size: 0.875rem;
	line-height: 1.571;
}

.selected-filters-item a {
	position: absolute;
	right: 18px;
	top: calc(50% - 5px);
}

.selected-filters-item a svg {
	display: block;
}

.selected-filters .slick-slide > div {
	margin-right: 10px;
}

.selected-filters .slick-arrow {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

.selected-filters .slick-arrow.slick-disabled {
	display: none !important;
}

.selected-filters .slick-arrow span {
	width: 40px;
	height: 40px;
	background: rgba(53, 14, 161, 0.05);
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.selected-filters .slick-arrow::before {
	content: "";
	width: 117px;
	height: 200%;
	position: absolute;
	right: 0;
	top: -25%;
	background: linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 47.4%, rgba(255, 255, 255, 0) 100%);
}

.selected-filters .slick-arrow.slick-prev {
	left: 0;
	right: auto;
}

.selected-filters .slick-arrow.slick-prev span {
	transform: rotate(180deg);
}

.selected-filters .slick-arrow.slick-prev span::before {
	left: 0;
	right: auto;
}

.nothing-found {
	padding: 0 0 40px;
}

.featured-cs {
	padding-bottom: 60px;
}

@media (min-width: 991px) {
	.featured-cs {
		padding-bottom: 70px;
	}
}

@media (max-width: 767px) {
	.featured-cs {
		padding-top: 30px;
	}
}

@media (max-width: 767px) {
	.blog-listing-main {
		padding-top: 30px;
	}
}

.gobal-preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gobal-preloader span {
	display: block;
	width: 50px;
}

.gobal-preloader span svg {
	max-width: 100%;
	height: auto;
}

.loading .gobal-preloader {
	opacity: 1;
	visibility: visible;
}

.filter-open .loading .gobal-preloader {
	opacity: 0;
	visibility: hidden;
}

body.loading {
	height: 100%;
	overflow: hidden;
}

.load-more {
	padding: 20px 0;
}

.loadmore {
	display: inline-block;
	border: 1px solid var(--brand-blue);
	padding: 14px 40px;
	border-radius: 40px;
	color: var(--brand-blue);
	font-size: 1rem;
	font-weight: 500;
}

.single-content-main {
	padding: 50px 0 5px;
}

@media (min-width: 991px) {
	.single-content-main {
		padding: 90px 0 20px;
	}
}

.single-content-main-in {
	position: relative;
}

.single-content-main-in .share-it {
	position: absolute;
	right: calc((100vw - 1020px)/2);
	top: 35px;
}

.single-content-main-in .share-it.floating {
	position: fixed;
}

.single-content-main-in .share-it li {
	margin-bottom: 15px;
}

.single-content-main .post-thumbnail {
	margin-bottom: 20px;
}

@media (min-width: 991px) {
	.single-content-main .post-thumbnail {
		margin-bottom: 50px;
	}
}

.single-content-main .post-thumbnail img {
	border-radius: 20px;
}

.single-content-main .entry-content {
	font-size: 1rem;
	line-height: 1.5;
}

@media (min-width: 991px) {
	.single-content-main .entry-content {
		font-size: 1.25rem;
	}
}

.single-content-main .entry-content img {
	border-radius: 20px;
}

.single-content-main .entry-content p, .single-content-main .entry-content .wp-block-image, .single-content-main .entry-content ol, .single-content-main .entry-content ul, .single-content-main .entry-content .wp-block-quote, .single-content-main .entry-content blockquote {
	margin-bottom: 22px;
}

@media (min-width: 991px) {
	.single-content-main .entry-content p, .single-content-main .entry-content .wp-block-image, .single-content-main .entry-content ol, .single-content-main .entry-content ul, .single-content-main .entry-content .wp-block-quote, .single-content-main .entry-content blockquote {
		margin-bottom: 30px;
	}
}

.single-content-main .entry-content ol, .single-content-main .entry-content ul {
	padding-left: 20px;
}

.single-content-main .entry-content ol li, .single-content-main .entry-content ul li {
	padding-left: 6px;
}

.single-content-main .entry-content h2 {
	font-size: 1.5rem;
	line-height: 1.2;
	margin: 0 0 25px;
}

@media (min-width: 991px) {
	.single-content-main .entry-content h2 {
		margin-bottom: 35px;
		font-size: 2rem;
	}
}

.single-content-main .entry-content h3 {
	font-size: 1.125rem;
	line-height: 1.2;
	margin: 0 0 25px;
}

@media (min-width: 991px) {
	.single-content-main .entry-content h3 {
		margin-bottom: 35px;
		font-size: 1.5rem;
	}
}

.single-content-main .entry-content .wp-block-quote, .single-content-main .entry-content blockquote {
	position: relative;
	padding-top: 20px;
	font-size: 1rem;
	line-height: 1.6;
	font-family: "Gilmer", sans-serif;
	color: var(--brand-blue);
	padding-bottom: 20px;
}

.single-content-main .entry-content .wp-block-quote::before, .single-content-main .entry-content blockquote::before {
	content: '';
	background: url("./assets/quote.png") no-repeat;
	width: 61px;
	height: 41px;
	background-size: 61px 41px;
	position: absolute;
	left: -15px;
	top: 0;
}

.single-content-main .entry-content .wp-block-quote p, .single-content-main .entry-content blockquote p {
	margin-bottom: 0;
	position: relative;
}

.single-content-main .entry-content .wp-block-quote p:not(:last-child), .single-content-main .entry-content blockquote p:not(:last-child) {
	margin-bottom: 20px;
}

@media (min-width: 991px) {
	.single-content-main .entry-content .wp-block-quote, .single-content-main .entry-content blockquote {
		padding-left: 89px;
		padding-top: 40px;
		padding-bottom: 40px;
		font-size: 1.5rem;
	}
	.single-content-main .entry-content .wp-block-quote::before, .single-content-main .entry-content blockquote::before {
		left: 0;
		top: 0;
		background-size: 129px 82px;
		width: 129px;
		height: 82px;
	}
}

.article-share-wrap-in {
	padding: 25px 0;
	text-align: center;
	border-top: 1px solid rgba(34, 23, 99, 0.1);
	border-bottom: 1px solid rgba(34, 23, 99, 0.1);
}

@media (min-width: 991px) {
	.article-share-wrap-in {
		padding: 40px 0;
	}
}

.article-share-wrap-in h2 {
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.2;
	margin: 0 0 25px;
}

@media (min-width: 991px) {
	.article-share-wrap-in h2 {
		font-size: 1.5rem;
		margin: 0 0 25px;
	}
}

.article-share-wrap-in ul {
	font-size: 0;
}

.article-share-wrap-in ul li {
	margin: 0 8px;
	display: inline-block;
}

@media (min-width: 768px) {
	.article-share-wrap-in ul li {
		margin: 0 9px;
	}
}

.article-share-wrap-in ul li a {
	display: block;
}

@media (max-width: 767px) {
	.article-share-wrap-in ul li a {
		max-width: 29px;
	}
}

.article-share-wrap-in ul li a svg {
	max-width: 100%;
	height: auto;
}

.share-it {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-author-box-in {
	padding: 25px 0;
	border-bottom: 1px solid rgba(34, 23, 99, 0.1);
	display: flex;
}

@media (min-width: 991px) {
	.article-author-box-in {
		padding: 60px 0;
	}
}

@media (min-width: 768px) {
	.article-author-box-in {
		align-items: center;
	}
}

.article-author-box-img {
	width: 50px;
}

.article-author-box-img img {
	border-radius: 50%;
}

@media (min-width: 768px) {
	.article-author-box-img {
		width: 19.4%;
	}
}

.article-author-box-content {
	max-width: calc(100% - 50px);
	padding-left: 15px;
	font-size: 12px;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.article-author-box-content {
		padding-left: 40px;
		width: 80.6%;
		font-size: 1.125rem;
	}
}

.article-author-box-content > span {
	display: block;
	color: #B5B5B5;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 1.09;
	font-weight: 500;
}

@media (min-width: 768px) {
	.article-author-box-content > span {
		font-size: 1rem;
	}
}

.article-author-box-content h2 {
	font-size: 12px;
	font-weight: normal;
	line-height: 1.485;
	color: var(--brand-blue-hover);
	margin: 0 0 7px;
}

.article-author-box-content h2 strong {
	font-size: 1.3333em;
	font-weight: 700;
}

@media (min-width: 768px) {
	.article-author-box-content h2 {
		font-size: 1.5rem;
	}
}

.article-author-box-content p {
	margin-bottom: 0;
}

.single-post .site-main {
	padding-bottom: 90px;
}

@media (min-width: 991px) {
	.single-post .site-main {
		padding-bottom: 110px;
	}
}

.article-subscription {
	margin-top: 30px;
}

@media (min-width: 991px) {
	.article-subscription {
		margin-top: 60px;
	}
}

.article-subscription-main {
	background: var(--brand-blue);
	color: #fff;
	padding: 32px 25px;
	border-radius: 14px;
}

@media (min-width: 991px) {
	.article-subscription-main {
		padding: 37px 45px;
	}
}

.featured-articles .article-subscription-main {
	margin: 20px 0;
}

@media (min-width: 991px) {
	.featured-articles .article-subscription-main {
		margin-bottom: 40px;
	}
}

.article-subscription-main h2 {
	font-size: 1.125rem;
	margin: 0 0 25px;
	font-weight: 500;
	line-height: 1.2;
}

@media (min-width: 991px) {
	.article-subscription-main h2 {
		font-size: 1.5rem;
		max-width: 367px;
	}
}

@media (min-width: 768px) {
	.article-subscription-main h2 {
		margin-bottom: 0;
	}
}

.article-subscription-main .gform_wrapper {
	margin: 0;
	position: relative;
}

.article-subscription-main .gform_wrapper .gfield {
	margin: 0;
	padding: 0;
}

.article-subscription-main .gform_wrapper .gfield .gfield_label {
	display: none !important;
}

.article-subscription-main .gform_wrapper .gfield .ginput_container {
	margin: 0;
}

.article-subscription-main .gform_wrapper .gfield .validation_message {
	background: none !important;
	padding: 0 !important;
	border: none !important;
	font-size: 12px !important;
}

.article-subscription-main .gform_wrapper .gfield input {
	color: #fff;
	border-width: 0 0 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.6);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	font-size: 0.875rem !important;
	font-family: "Gilmer", sans-serif;
	line-height: 1.25;
	padding: 5px 30px 15px 5px !important;
	transition: all 0.3s ease;
	display: block;
	width: 100% !important;
	background: none;
}

@media (min-width: 991px) {
	.article-subscription-main .gform_wrapper .gfield input {
		font-size: 1.125rem !important;
	}
}

.article-subscription-main .gform_wrapper .gfield input ::placeholder {
	color: #fff;
	opacity: 0.6;
}

.article-subscription-main .gform_wrapper .gfield input :-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.article-subscription-main .gform_wrapper .gfield input ::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.article-subscription-main .gform_wrapper .gfield input:focus {
	border-color: #fff;
	outline: none;
	box-shadow: none;
}

.article-subscription-main .gform_wrapper .gform_footer {
	margin: 0 !important;
	padding: 0 !important;
}

.article-subscription-main .gform_wrapper .gform_footer .gform_button {
	background: url("./assets/submit.svg") no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	right: 5px;
	top: 14px;
	border: none;
	text-indent: -99999px;
}

.article-subscription-main .gform_wrapper .gform_validation_errors {
	display: none !important;
}

.relateed-blogs {
	padding-top: 30px;
}

@media (min-width: 991px) {
	.relateed-blogs {
		padding-top: 60px;
	}
}

.blog-grid-item {
	border: 1px solid #EAEAEA;
	border-radius: 20px;
	margin-bottom: 8px;
	padding: 10px;
	color: var(--brand-black);
	text-decoration: none;
	transition: all 0.3s ease;
}

@media (min-width: 768px) {
	.blog-grid-item {
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	.blog-grid-item {
		margin-bottom: 40px;
		padding: 16px;
	}
}

.blog-grid-item:hover, .blog-grid-item:focus {
	color: var(--brand-black);
	text-decoration: none;
	box-shadow: 0 5px 30px rgba(234, 234, 234, 0.4);
}

.blog-grid-item-thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.blog-grid-item-thumb {
		max-width: 40.49%;
		min-height: 350px;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.blog-grid-item-large .blog-grid-item-thumb {
		max-width: 50.3%;
	}
}

@media (max-width: 767px) {
	.blog-grid-item-thumb {
		padding-top: 41.9%;
		width: 100%;
		margin-bottom: 11px;
	}
}

.blog-grid-item-thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-grid-item-content {
	width: 100%;
	font-size: 0.875rem;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.blog-grid-item-content {
		max-width: 59.51%;
		padding-left: 30px;
		display: flex;
		flex-direction: column;
		font-size: 1.125rem;
	}
}

@media (min-width: 1200px) {
	.blog-grid-item-large .blog-grid-item-content {
		max-width: 49.7%;
		padding-left: 40px;
	}
}

.blog-grid-item-content h3 {
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 7px;
	line-height: 1.2;
}

@media (min-width: 992px) {
	.blog-grid-item-content h3 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
}

.blog-grid-item-large .blog-grid-item-content h3 {
	color: var(--brand-blue-hover);
}

.blog-grid-item-content h3 strong {
	font-weight: 700;
	line-height: 1.345;
}

.blog-grid-item-content p {
	margin-bottom: 20px;
}

.blog-grid-item-foot {
	margin-top: auto;
	font-size: 12px;
	margin-bottom: 5px;
	color: var(--brand-blue);
}

@media (min-width: 992px) {
	.blog-grid-item-foot {
		font-size: 13px;
	}
}

.blog-grid-item-foot span:not(:last-child)::after {
	content: ' | ';
	margin: 0 5px;
}

.blog-grid-item-in {
	display: flex;
	flex-wrap: wrap;
}

#downloadModal .modal-content {
	padding: 1.875rem;
	color: var(--brand-black);
}

#downloadModal .modal-content .modal-header {
	border-bottom: 0;
}

#downloadModal .modal-content .modal-header .btn-close {
	position: absolute;
	right: 20px;
	top: 20px;
	outline: none;
}

#downloadModal .modal-content .modal-body {
	max-width: 460px;
	margin: 0 auto;
	padding-bottom: 3rem;
	width: 100%;
}

#downloadModal .modal-content .modal-body h4 {
	margin-bottom: 2.25rem;
}

#downloadModal .form-block .gform_wrapper .gform_body .gform_fields .gfield {
	margin-bottom: 1rem;
}

.arch-logo {
	z-index: 0;
	width: 320px;
	height: 320px;
	position: absolute;
	top: 75px;
	left: 50%;
	transform: translateX(-50%);
	/* background-color: rgba(91, 176, 255, 0.575); */
	display: flex;
	align-items: center;
}

@media (min-width: 768px) {
	.arch-logo {
		top: 150px;
	}
}

.looking {
	padding-bottom: 200px;
}

.js-section-1,
.js-section-2,
.js-section-3,
.js-section-4,
.js-section-5,
.js-section-6,
.js-section-7 {
	min-height: 700px;
	padding: 250px 0;
}

.preloader {
	background-color: #350EA2;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 10000;
	top: 0;
}

.preloader-inner {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader h2 {
	font-size: 40px;
	text-align: center;
	font-weight: normal;
	color: #350EA2;
	letter-spacing: -0.02em;
	line-height: 1.11302;
	z-index: 1;
	position: relative;
}

@media (min-width: 768px) {
	.preloader h2 {
		font-size: 60px;
	}
}

@media (min-width: 1200px) {
	.preloader h2 {
		font-size: 86px;
	}
}

.spotlight {
	width: 60vh;
	height: 60vh;
	background-color: #fff;
	border-radius: 50%;
	z-index: 0;
	position: absolute;
	top: 50%;
	left: -60vh;
	transform: translateY(-50%);
}

.two-card .cc-image {
	max-width: 365px;
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons {
	display: none;
}

.cc-window {
	position: relative;
}

.cc-window .cc-close {
	font-family: var(--bs-font-sans-serif);
	color: var(--brand-blue);
}

/*# sourceMappingURL=custom.css.map */