body {
	background-color: #FFFFFF;
	font-family: 'Roboto';
	transition: all 0.50s linear;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
	background-clip: padding-box;
}

::-webkit-scrollbar-thumb {
	background-color: #D8D8D8;
	border-radius: 20px;
	background-clip: padding-box;
}

.custom-footer {
	display: "flex";
	width: 100%;
	background: "#F6F6F8";
	padding: "100px 0px";
	background-color: #F6F6F8;
}

.custom-footer-inner {
	width: 1240px;
	margin: 0px auto;
	display: "flex";
	justify-content: "space-between";
}

.bodyContainer {
	display: flex;
	flex-direction: column;
	width: 1240px;
	margin: 0px auto;
}


/* Header */

.blogDate {
	font-size: 10pt;
	font-weight: bold;
	margin-top: 25px;
}

.logo {
	display: flex;
	width: 250px;
	margin-left: 50px;
}

.hero-content {
	width: 100%;
	display: flex;
	padding: 0px;
	box-shadow: 0px 3px 40px #00000026;
	border-radius: 20px;
	overflow: hidden;
}

.first-post-wrapper {
	width: 100%;
	position: relative;
}

.post-blue-bg {
	display: flex;
	position: absolute;
	background: #072150;
	width: 100%;
	height: 50%;
	top: 0;
	z-index: -1;
}

.rightContainer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
	font-size: 12pt;
	color: #333333;
	background-color: #ffffff;
	font-weight: 600;
	line-height: 25pt;
	/* border-radius: 0 20px 20px 0; */
	position: relative;
	width: 350px;
	min-width: 350px;
	max-width: 350px;
}

.rightContainer .tag-wrapper{
  margin-bottom: 10px;
}

.leftContainer {
	width: 100%;
	box-shadow: 0px 3px 40px #00000026;
	/* border-radius: 20px 0 0 20px; */
	padding: 10px 10px 10px 0px;
	display: flex;
	justify-content: left;
	justify-items: left;
	align-items: center;
	position: relative;
	min-height: 405px;
	height: 100%;
	background-size: cover !important;
	background-position: center !important;
}

.leftContainer .c-card__image {
	width: 30%;
	height: auto;
	justify-content: right;
	justify-items: right;
	align-items: center;
}

.leftContainer .c-card__title {
	display: flex;
	flex: 1;
}

.leftContainer .hero-read-more a,
.leftContainer .hero-read-more a:hover {
	font-size: 2em;
	color: #FFFFFF;
}


/* Navbar Styles Start */

.navbarWrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	background: #ffffff;
	min-height: 70px;
	position: relative;
	z-index: 100;
}

.navbarContentWrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
	min-height: 70px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

a {
	color: #016CE8;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.navItemsWrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.navItemsWrapper .navItem {
	margin-right: 39px;
}

@keyframes fadein {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

.navItem {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: #040814;
	height: 100%;
	cursor: pointer;
	text-align: center;
	position: relative;
}

.navItem:hover .activeLine {
	display: block;
	-webkit-animation: fadein 200ms ease-out;
	/* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 200ms ease-out;
	/* Firefox < 16 */
	-ms-animation: fadein 200ms ease-out;
	/* Internet Explorer */
	-o-animation: fadein 200ms ease-out;
	/* Opera < 12.1 */
	animation: fadein 200ms ease-out;
}

.activeLine {
	display: none;
	position: absolute;
	height: 2px;
	background: rgb(244, 48, 85);
	bottom: 0;
	width: 100%;
	animation: 200ms fadeIn ease-out;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	min-width: 280px;
	max-width: 300px;
	overflow: auto;
	z-index: 1;
	top: 55px;
	left: -15px;
	background: 0% 0% no-repeat padding-box padding-box rgb(255, 255, 255);
	box-shadow: rgb(0 0 0 / 16%) 0px 3px 20px;
	border-radius: 10px;
	flex-direction: column;
	text-align: left;
	padding: 15px 0px;
}

.dropdown-content a {
	color: black;
	padding: 10px 16px;
	text-decoration: none;
	display: flex;
}

.dropdown-content a:hover {
	background: rgb(246, 246, 248);
}

.dropdown-content a:hover .navIcon {
	filter: grayscale(0);
	opacity: 1;
}

.dropdown-content img {
	display: block;
	margin-right: 20px;
  max-width: 15px;
}

.navIcon {
	filter: grayscale(1);
	opacity: 0.5;
}

.mobNavList .navIcon {
	filter: grayscale(0);
	opacity: 1;
  max-width: 15px;
}

.show {
	display: flex;
}


/* Navbar Styles End */


/* Button Styles Starts */

button {
	font-family: inherit;
	border: none;
}

.nav-button-link{
	height: 100%;
}

.flat-blue-button {
	background: #0E61D2;
	color: #FFFFFF;
	box-shadow: none;
	border-radius: 0px !important;
}

.flat-blue-button:hover {
	opacity: 0.9;
}

.general-button {
	font-size: 16px;
	font-weight: normal;
	min-width: 130px;
	min-height: 100%;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	border-radius: 25px;
	text-transform: capitalize;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.5px !important;
}


/* Button Styles Ends */

a.caseStudyLink {
	font-size: 16px;
	display: flex;
	align-items: center;
	padding-top: 10px;
	color: rgb(1, 108, 232);
	font-weight: 400;
	text-align: left;
}

.caseStudyLink .readMoreIcon {
	display: flex;
	position: relative;
	margin-left: 10px;
	left: 0px;
	transition: left 500ms ease 0s;
}

.caseStudyLink:hover .readMoreIcon {
	left: 3px;
}

.right-para-content {
	padding: 0 0 0 20px;
}

.right-para-content time {
	font-size: 10pt;
}

.right-para-content .readmore {
	font-size: 11pt;
	color: #0e61d2;
	font-weight: bold;
}

h1+*,
h2+*,
h3+*,
h4+*,
h5+*,
h6+* {
	margin: 0 !important;
	padding-top: 20px;
}


/* Footer Styles Starts */

.footerWrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	background: #F6F6F8;
	padding: 100px 0px;
	margin-top: 50px;
	background: rgb(246, 246, 248);
}

.footerContent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
}

.footerLogo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 15%;
}

.footerLogoWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: #016CE8;
	border-radius: 6px;
}

.footerLinks {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 85%;
}

.footerLinkSection {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 25%;
}

.footerSectionTitle {
	font-size: 16px;
	font-weight: 500;
	color: #040814;
	margin-top: 0px;
	margin-bottom: 20px;
}

.footerList {
	font-size: 14px;
	line-height: 20px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.footerList li {
	margin-bottom: 15px;
	padding: 0;
}

.footerList a {
	color: #040814;
	opacity: 0.56;
	text-transform: capitalize;
}

.footerList a:hover {
	opacity: 0.8;
}

.termsFooter {
	display: flex;
	width: 100%;
	background: #f0f0f0;
	min-height: 65px;
	align-items: center;
}

.termsFooterWrapper {
	display: flex;
	flex-flow: wrap;
}

.termsFooterSection {
	display: flex;
	width: 50%;
	padding: 10px 0px;
	line-height: 1;
}

.copyRightsSection span {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: rgb(4, 8, 20);
}

.TACSection {
	justify-content: flex-end;
}

.TACSection a {
	font-size: 14px;
	line-height: 20px;
	color: #040814;
	opacity: 0.56;
	text-transform: capitalize;
}

.TACSection a:hover {
	opacity: 0.8;
}

.divider {
	font-size: 14px;
	margin: 0px 15px;
	color: rgb(4, 8, 20);
}


/* Footer Styles Ends */

.wrapper .post {
	background-color: #ffffff;
	padding: 25px 30px 35px 30px;
	margin-top: 20px;
}

.post__inner {
	background-color: #ffffff;
	max-width: 100%;
	margin-top: 0 !important;
	padding: 20px 20px 20px 20px;
}

.post__inner h3 {
	margin-left: 35px;
}

.post__title {
	font-size: 2em;
	text-align: left;
}

.post__meta {
	text-align: left;
}

.featured-image-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
}

.featured-image-wrapper .tag-wrapper {
	position: absolute;
	top: 20px;
	right: 20px;
}

.c-card__header {
	height: 200px;
}

.c-card {
	min-height: 405px;
}

.c-card-wrapper {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 40px #00000026;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	opacity: 1;
	padding: 0 !important;
	box-sizing: border-box !important;
	overflow: hidden;
}

.container {
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: visible;
}

.filter__button-group {
	text-align: right !important;
}

.c-card__text {
	padding: 30px 20px;
}

.sub-heading {
	font-weight: bold;
	text-align: left;
	font-size: 20px;
  line-height: 1.5;
}

.c-card__link:hover {
	color: #333333 !important;
}

.c-card__title a {
	font-weight: 9pt;
}

.excerpt-content {
	min-height: 65px;
	font-weight: normal;
	font-size: 10pt;
	text-align: left;
}

.excerpt-content-desc {
	font-size: 16px;
	line-height: 26px;
}

.hero-banner {
	padding: 100px 0 100px 0;
	background: #072150;
}

.hero-banner h1 {
	font-family: Roboto;
	font-size: 72px;
}

.filter {
	padding: 15px 0px 0px 0px;
}

.l-col {
	margin-top: -40px;
}

.c-card__header img {
	height: 200px;
	border-radius: 10px 10px 0px 0px;
}

.tag-wrapper {
	display: flex;
	justify-content: flex-end;
}

.tag-label {
	background: #ff346b 0 0 no-repeat padding-box;
	border: 1px solid #ff346b;
	border-radius: 20px;
	opacity: 1;
	color: #fff;
	display: flex;
	width: auto;
	font-size: 12px;
	padding: 2px 10px 1px 10px;
	text-transform: uppercase;
	line-height: 20px;
}

.title-with-tag {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.footer-social-icons {
	display: flex;
}

.footer-social-icons a {
	margin-right: 22px;
}

.footer-social-icons a:hover {
	opacity: 0.8;
}

.wrapper {
	padding: 0px 40px;
}

.filter__button-group li {
	padding: 0 1rem 0 0;
}

.filter__button-group li:last-child {
	padding: 0 0 0 0;
}

.filter__item,
.filter__item:focus,
.filter__item:hover {
	font-size: 14px;
	font-weight: 400;
	color: rgb(17, 17, 17);
	border-bottom: 3px solid transparent;
	padding-bottom: 3px;
}

.filter__item.is-active {
	color: rgb(17, 17, 17);
	font-weight: bold;
	border-bottom: 3px solid #FF346B;
}

.single-post-title {
	background: #072150;
	padding: 40px 0px;
}

.go-back {
	display: flex;
	font-size: 18px;
	width: 100%;
	color: #ffffff;
	cursor: pointer;
}

.go-back img {
	margin-right: 10px;
}

.single-post-title h2 {
	font-size: 54px;
	line-height: 65px;
	font-weight: 500;
	color: #ffffff;
}

.single-featured-image {
	position: relative;
	margin-bottom: 30px;
}

.mobileOnly {
	display: none;
}

.hamButton {
	display: flex;
	width: 50px;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: rgb(14, 97, 210);
	cursor: pointer;
}

.menu-hamburger {
	width: 25px;
	height: 20px;
	position: relative;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
}

.menu-hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #ffffff;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-hamburger span:first-child {
	top: 0px;
}

.menu-hamburger span:nth-child(2) {
	top: 9px;
}

.menu-hamburger span:nth-child(3) {
	top: 18px;
}

.menu-hamburger.open-hamburger span:first-child {
	top: 9px;
	transform: rotate(135deg);
}

.menu-hamburger.open-hamburger span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menu-hamburger.open-hamburger span:nth-child(3) {
	top: 9px;
	transform: rotate(-135deg);
}

.mobileNavItems {
	position: fixed;
	background: #FFFFFF;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: calc(100vh - 50px);
	top: 50px;
	overflow-y: auto;
	z-index: 100;
	box-shadow: 0px 15px 20px #00000026;
	border-top: 1px solid #f6f6f8;
}

.open-navItems {
	display: flex;
}

.no-overflow {
	overflow: hidden;
}

.mobNavHeading {
	font-size: 16px;
	font-weight: bold;
	padding: 15px 20px;
	color: inherit;
}

.mobNavList {
	display: flex;
	flex-direction: column;
}

.mobNavList a {
	display: flex;
	font-size: 14px;
	padding: 12px 30px;
	color: inherit;
	-webkit-box-align: center;
	align-items: center;
	line-height: 1;
}

.mobNavList a img {
	width: auto;
	min-width: auto;
	max-width: none;
	height: auto;
	min-height: auto;
	margin: 0px 12px 0px 0px;
}

.mobNavButton {
	display: flex;
	width: 100%;
	height: 60px;
	margin: 10px 0px 0px;
}

.mobNavButton .flat-blue-button {
	width: 100%;
}

.cards-list-section {
	margin-top: 30px;
}

/* Restrict text to two lines and ellipsis starts */

.block-with-text {
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.8rem;
  max-height: 3.6rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Restrict text to two lines and ellipsis ends */


/* Responsive Style Starts */

@media (max-width: 1240px) {
	.bodyContainer {
		width: 100%;
		padding: 0 20px;
	}
}

@media (max-width: 1024px) {
	.footerContent {
		flex-flow: wrap;
	}
	.footerLogo {
		width: 100%;
	}
	.footerLinks {
		width: 100%;
		flex-flow: wrap;
		margin: 35px 0px 0px;
	}
	.newsletterWrapper {
		margin: 35px 0px 0px;
	}
	.footer-social-icons {
		margin-top: 25px;
	}
}

@media (max-width: 768px) {
	.hero-content {
		display: flex;
		flex-direction: column;
	}
  .logo {
    margin-left: 30px;
  }
  .logo img{
    height: 30px;
  }
	.rightContainer {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		border-radius: 0 0px 20px 20px;
	}
	.leftContainer {
		border-radius: 20px 20px 0px 0px;
		min-height: 300px;
	}
	.container {
		margin-top: 0px;
	}
	.hero-banner {
		padding: 80px 0px 80px 0px;
	}
	.hero-banner h1 {
		font-size: 48px;
		line-height: 58px;
	}
	.first-post-wrapper {
		margin: 50px 0px 0px 0px;
	}
	.first-post-wrapper .post-blue-bg {
		background: transparent;
	}
	.footerLinks {
		margin: 0px 0px 0px;
	}
	.footerLinkSection {
		width: 50%;
		margin: 35px 0px 0px;
	}
	.termsFooter {
		min-height: 90px;
	}
	.termsFooterSection {
		width: 100%;
		justify-content: center;
		padding: 5px 0px;
	}
	.webOnly {
		display: none;
	}
	.mobileOnly {
		display: flex;
	}
	.navbarContentWrapper,
	.navbarWrapper {
		min-height: 50px;
	}
	.cards-list-section {
		margin-top: 30px;
	}
}

@media (max-width: 500px) {
	.footerLinkSection {
		width: 100%;
	}
}


/* Responsive Style Ends */