
.row {
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex: 0 1 auto;
	flex-direction: row;
	flex-wrap: wrap;
}

.row.reverse {
	flex-direction: row-reverse;
}

.row.natural-height {
	align-items: flex-start;
}

.row.flex-column {
	flex-direction: column;
}

.col {
	box-sizing: border-box;
	flex-grow: 1;
	flex-basis: 0;
	max-width: 100%;
	padding: 1rem;
}

.col.reverse {
	flex-direction: column-reverse;
}

.first {
	order: -1;
}

.last {
	order: 1;
}

.align-start {
	align-self: flex-start;
}

.align-end {
	align-self: flex-end;
}

.align-center {
	align-self: center;
}

.align-baseline {
	align-self: baseline;
}

.align-stretch {
	align-self: stretch;
}

.col-xs {
	box-sizing: border-box;
	flex-grow: 1;
	flex-basis: 0;
	max-width: 100%;
	padding: 1rem;
}

.col-xs-1 {
	box-sizing: border-box;
	flex-basis: 8.33333%;
	max-width: 8.33333%;
	padding: 1rem;
}

.col-xs-offset-1 {
	margin-left: 8.33333%;
}

.col-xs-2 {
	box-sizing: border-box;
	flex-basis: 16.66667%;
	max-width: 16.66667%;
	padding: 1rem;
}

.col-xs-offset-2 {
	margin-left: 16.66667%;
}

.col-xs-3 {
	box-sizing: border-box;
	flex-basis: 25%;
	max-width: 25%;
	padding: 1rem;
}

.col-xs-offset-3 {
	margin-left: 25%;
}

.col-xs-4 {
	box-sizing: border-box;
	flex-basis: 33.33333%;
	max-width: 33.33333%;
	padding: 1rem;
}

.col-xs-offset-4 {
	margin-left: 33.33333%;
}

.col-xs-5 {
	box-sizing: border-box;
	flex-basis: 41.66667%;
	max-width: 41.66667%;
	padding: 1rem;
}

.col-xs-offset-5 {
	margin-left: 41.66667%;
}

.col-xs-6 {
	box-sizing: border-box;
	flex-basis: 50%;
	max-width: 50%;
	padding: 1rem;
}

.col-xs-offset-6 {
	margin-left: 50%;
}

.col-xs-7 {
	box-sizing: border-box;
	flex-basis: 58.33333%;
	max-width: 58.33333%;
	padding: 1rem;
}

.col-xs-offset-7 {
	margin-left: 58.33333%;
}

.col-xs-8 {
	box-sizing: border-box;
	flex-basis: 66.66667%;
	max-width: 66.66667%;
	padding: 1rem;
}

.col-xs-offset-8 {
	margin-left: 66.66667%;
}

.col-xs-9 {
	box-sizing: border-box;
	flex-basis: 75%;
	max-width: 75%;
	padding: 1rem;
}

.col-xs-offset-9 {
	margin-left: 75%;
}

.col-xs-10 {
	box-sizing: border-box;
	flex-basis: 83.33333%;
	max-width: 83.33333%;
	padding: 1rem;
}

.col-xs-offset-10 {
	margin-left: 83.33333%;
}

.col-xs-11 {
	box-sizing: border-box;
	flex-basis: 91.66667%;
	max-width: 91.66667%;
	padding: 1rem;
}

.col-xs-offset-11 {
	margin-left: 91.66667%;
}

.col-xs-12 {
	box-sizing: border-box;
	flex-basis: 100%;
	max-width: 100%;
	padding: 1rem;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

.row.start-xs {
	justify-content: flex-start;
}

.row.center-xs {
	justify-content: center;
}

.row.end-xs {
	justify-content: flex-end;
}

.row.top-xs {
	align-items: flex-start;
}

.row.middle-xs {
	align-items: center;
}

.row.bottom-xs {
	align-items: flex-end;
}

.row.around-xs {
	justify-content: space-around;
}

.row.between-xs {
	justify-content: space-between;
}

.first-xs {
	order: -1;
}

.last-xs {
	order: 1;
}

@media only screen and (min-width: 41rem) {
	.col-sm {
		box-sizing: border-box;
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-sm-1 {
		box-sizing: border-box;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
		padding: 1rem;
	}
	
	.col-sm-offset-1 {
		margin-left: 8.33333%;
	}
	
	.col-sm-2 {
		box-sizing: border-box;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
		padding: 1rem;
	}
	
	.col-sm-offset-2 {
		margin-left: 16.66667%;
	}
	
	.col-sm-3 {
		box-sizing: border-box;
		flex-basis: 25%;
		max-width: 25%;
		padding: 1rem;
	}
	
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	
	.col-sm-4 {
		box-sizing: border-box;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
		padding: 1rem;
	}
	
	.col-sm-offset-4 {
		margin-left: 33.33333%;
	}
	
	.col-sm-5 {
		box-sizing: border-box;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
		padding: 1rem;
	}
	
	.col-sm-offset-5 {
		margin-left: 41.66667%;
	}
	
	.col-sm-6 {
		box-sizing: border-box;
		flex-basis: 50%;
		max-width: 50%;
		padding: 1rem;
	}
	
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	
	.col-sm-7 {
		box-sizing: border-box;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
		padding: 1rem;
	}
	
	.col-sm-offset-7 {
		margin-left: 58.33333%;
	}
	
	.col-sm-8 {
		box-sizing: border-box;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
		padding: 1rem;
	}
	
	.col-sm-offset-8 {
		margin-left: 66.66667%;
	}
	
	.col-sm-9 {
		box-sizing: border-box;
		flex-basis: 75%;
		max-width: 75%;
		padding: 1rem;
	}
	
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	
	.col-sm-10 {
		box-sizing: border-box;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
		padding: 1rem;
	}
	
	.col-sm-offset-10 {
		margin-left: 83.33333%;
	}
	
	.col-sm-11 {
		box-sizing: border-box;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
		padding: 1rem;
	}
	
	.col-sm-offset-11 {
		margin-left: 91.66667%;
	}
	
	.col-sm-12 {
		box-sizing: border-box;
		flex-basis: 100%;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	
	.row.start-sm {
		justify-content: flex-start;
	}
	
	.row.center-sm {
		justify-content: center;
	}
	
	.row.end-sm {
		justify-content: flex-end;
	}
	
	.row.top-sm {
		align-items: flex-start;
	}
	
	.row.middle-sm {
		align-items: center;
	}
	
	.row.bottom-sm {
		align-items: flex-end;
	}
	
	.row.around-sm {
		justify-content: space-around;
	}
	
	.row.between-sm {
		justify-content: space-between;
	}
	
	.first-sm {
		order: -1;
	}
	
	.last-sm {
		order: 1;
	}
}

@media only screen and (min-width: 65rem) {
	.sitemapheading {
		padding-left: 1px !important;
	}
	
	.sitemainheading {
		margin: 0;
		padding-left: 29px !important;
	}
	
	.col-md {
		box-sizing: border-box;
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-md-1 {
		box-sizing: border-box;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
		padding: 1rem;
	}
	
	.col-md-offset-1 {
		margin-left: 8.33333%;
	}
	
	.col-md-2 {
		box-sizing: border-box;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
		padding: 1rem;
	}
	
	.col-md-offset-2 {
		margin-left: 16.66667%;
	}
	
	.col-md-3 {
		box-sizing: border-box;
		flex-basis: 25%;
		max-width: 25%;
		padding: 1rem;
	}
	
	.col-md-offset-3 {
		margin-left: 25%;
	}
	
	.col-md-4 {
		box-sizing: border-box;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
		padding: 1rem;
	}
	
	.col-md-offset-4 {
		margin-left: 33.33333%;
	}
	
	.col-md-5 {
		box-sizing: border-box;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
		padding: 1rem;
	}
	
	.col-md-offset-5 {
		margin-left: 41.66667%;
	}
	
	.col-md-6 {
		box-sizing: border-box;
		flex-basis: 50%;
		max-width: 50%;
		padding: 1rem;
	}
	
	.col-md-offset-6 {
		margin-left: 50%;
	}
	
	.col-md-7 {
		box-sizing: border-box;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
		padding: 1rem;
	}
	
	.col-md-offset-7 {
		margin-left: 58.33333%;
	}
	
	.col-md-8 {
		box-sizing: border-box;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
		padding: 1rem;
	}
	
	.col-md-offset-8 {
		margin-left: 66.66667%;
	}
	
	.col-md-9 {
		box-sizing: border-box;
		flex-basis: 75%;
		max-width: 75%;
		padding: 1rem;
	}
	
	.col-md-offset-9 {
		margin-left: 75%;
	}
	
	.col-md-10 {
		box-sizing: border-box;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
		padding: 1rem;
	}
	
	.col-md-offset-10 {
		margin-left: 83.33333%;
	}
	
	.col-md-11 {
		box-sizing: border-box;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
		padding: 1rem;
	}
	
	.col-md-offset-11 {
		margin-left: 91.66667%;
	}
	
	.col-md-12 {
		box-sizing: border-box;
		flex-basis: 100%;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-md-offset-12 {
		margin-left: 100%;
	}
	
	.row.start-md {
		justify-content: flex-start;
	}
	
	.row.center-md {
		justify-content: center;
	}
	
	.row.end-md {
		justify-content: flex-end;
	}
	
	.row.top-md {
		align-items: flex-start;
	}
	
	.row.middle-md {
		align-items: center;
	}
	
	.row.bottom-md {
		align-items: flex-end;
	}
	
	.row.around-md {
		justify-content: space-around;
	}
	
	.row.between-md {
		justify-content: space-between;
	}
	
	.first-md {
		order: -1;
	}
	
	.last-md {
		order: 1;
	}
}

@media only screen and (min-width: 91rem) {
	.col-lg {
		box-sizing: border-box;
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-lg-1 {
		box-sizing: border-box;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
		padding: 1rem;
	}
	
	.col-lg-offset-1 {
		margin-left: 8.33333%;
	}
	
	.col-lg-2 {
		box-sizing: border-box;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
		padding: 1rem;
	}
	
	.col-lg-offset-2 {
		margin-left: 16.66667%;
	}
	
	.col-lg-3 {
		box-sizing: border-box;
		flex-basis: 25%;
		max-width: 25%;
		padding: 1rem;
	}
	
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	
	.col-lg-4 {
		box-sizing: border-box;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
		padding: 1rem;
	}
	
	.col-lg-offset-4 {
		margin-left: 33.33333%;
	}
	
	.col-lg-5 {
		box-sizing: border-box;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
		padding: 1rem;
	}
	
	.col-lg-offset-5 {
		margin-left: 41.66667%;
	}
	
	.col-lg-6 {
		box-sizing: border-box;
		flex-basis: 50%;
		max-width: 50%;
		padding: 1rem;
	}
	
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	
	.col-lg-7 {
		box-sizing: border-box;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
		padding: 1rem;
	}
	
	.col-lg-offset-7 {
		margin-left: 58.33333%;
	}
	
	.col-lg-8 {
		box-sizing: border-box;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
		padding: 1rem;
	}
	
	.col-lg-offset-8 {
		margin-left: 66.66667%;
	}
	
	.col-lg-9 {
		box-sizing: border-box;
		flex-basis: 75%;
		max-width: 75%;
		padding: 1rem;
	}
	
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	
	.col-lg-10 {
		box-sizing: border-box;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
		padding: 1rem;
	}
	
	.col-lg-offset-10 {
		margin-left: 83.33333%;
	}
	
	.col-lg-11 {
		box-sizing: border-box;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
		padding: 1rem;
	}
	
	.col-lg-offset-11 {
		margin-left: 91.66667%;
	}
	
	.col-lg-12 {
		box-sizing: border-box;
		flex-basis: 100%;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	
	.row.start-lg {
		justify-content: flex-start;
	}
	
	.row.center-lg {
		justify-content: center;
	}
	
	.row.end-lg {
		justify-content: flex-end;
	}
	
	.row.top-lg {
		align-items: flex-start;
	}
	
	.row.middle-lg {
		align-items: center;
	}
	
	.row.bottom-lg {
		align-items: flex-end;
	}
	
	.row.around-lg {
		justify-content: space-around;
	}
	
	.row.between-lg {
		justify-content: space-between;
	}
	
	.first-lg {
		order: -1;
	}
	
	.last-lg {
		order: 1;
	}
}

@media only screen and (min-width: 121rem) {
	.col-xl {
		box-sizing: border-box;
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-xl-1 {
		box-sizing: border-box;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
		padding: 1rem;
	}
	
	.col-xl-offset-1 {
		margin-left: 8.33333%;
	}
	
	.col-xl-2 {
		box-sizing: border-box;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
		padding: 1rem;
	}
	
	.col-xl-offset-2 {
		margin-left: 16.66667%;
	}
	
	.col-xl-3 {
		box-sizing: border-box;
		flex-basis: 25%;
		max-width: 25%;
		padding: 1rem;
	}
	
	.col-xl-offset-3 {
		margin-left: 25%;
	}
	
	.col-xl-4 {
		box-sizing: border-box;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
		padding: 1rem;
	}
	
	.col-xl-offset-4 {
		margin-left: 33.33333%;
	}
	
	.col-xl-5 {
		box-sizing: border-box;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
		padding: 1rem;
	}
	
	.col-xl-offset-5 {
		margin-left: 41.66667%;
	}
	
	.col-xl-6 {
		box-sizing: border-box;
		flex-basis: 50%;
		max-width: 50%;
		padding: 1rem;
	}
	
	.col-xl-offset-6 {
		margin-left: 50%;
	}
	
	.col-xl-7 {
		box-sizing: border-box;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
		padding: 1rem;
	}
	
	.col-xl-offset-7 {
		margin-left: 58.33333%;
	}
	
	.col-xl-8 {
		box-sizing: border-box;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
		padding: 1rem;
	}
	
	.col-xl-offset-8 {
		margin-left: 66.66667%;
	}
	
	.col-xl-9 {
		box-sizing: border-box;
		flex-basis: 75%;
		max-width: 75%;
		padding: 1rem;
	}
	
	.col-xl-offset-9 {
		margin-left: 75%;
	}
	
	.col-xl-10 {
		box-sizing: border-box;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
		padding: 1rem;
	}
	
	.col-xl-offset-10 {
		margin-left: 83.33333%;
	}
	
	.col-xl-11 {
		box-sizing: border-box;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
		padding: 1rem;
	}
	
	.col-xl-offset-11 {
		margin-left: 91.66667%;
	}
	
	.col-xl-12 {
		box-sizing: border-box;
		flex-basis: 100%;
		max-width: 100%;
		padding: 1rem;
	}
	
	.col-xl-offset-12 {
		margin-left: 100%;
	}
	
	.row.start-xl {
		justify-content: flex-start;
	}
	
	.row.center-xl {
		justify-content: center;
	}
	
	.row.end-xl {
		justify-content: flex-end;
	}
	
	.row.top-xl {
		align-items: flex-start;
	}
	
	.row.middle-xl {
		align-items: center;
	}
	
	.row.bottom-xl {
		align-items: flex-end;
	}
	
	.row.around-xl {
		justify-content: space-around;
	}
	
	.row.between-xl {
		justify-content: space-between;
	}
	
	.first-xl {
		order: -1;
	}
	
	.last-xl {
		order: 1;
	}
}

.col-gutter-lr {
	padding: 0 1rem;
}

.col-no-gutter {
	padding: 0;
}

.show {
	display: block !important;
}

.row.show {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.hide {
	display: none !important;
}

.show-xs {
	display: block !important;
}

.row.show-xs {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.hide-xs {
	display: none !important;
}

@media only screen and (max-width: 40rem) {
	.show-xs-only {
		display: block !important;
	}
	
	.row.show-xs-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-xs-only {
		display: none !important;
	}
}

@media only screen and (min-width: 41rem) {
	.show-sm {
		display: block !important;
	}
	
	.row.show-sm {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-sm {
		display: none !important;
	}
}

@media only screen and (min-width: 41rem) and (max-width: 64rem) {
	.show-sm-only {
		display: block !important;
	}
	
	.row.show-sm-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-sm-only {
		display: none !important;
	}
}

@media only screen and (min-width: 65rem) {
	.show-md {
		display: block !important;
	}
	
	.row.show-md {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-md {
		display: none !important;
	}
}

@media only screen and (min-width: 65rem) and (max-width: 90rem) {
	.show-md-only {
		display: block !important;
	}
	
	.row.show-md-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-md-only {
		display: none !important;
	}
}

@media only screen and (min-width: 91rem) {
	.show-lg {
		display: block !important;
	}
	
	.row.show-lg {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-lg {
		display: none !important;
	}
}

@media only screen and (min-width: 91rem) and (max-width: 120rem) {
	.show-lg-only {
		display: block !important;
	}
	
	.row.show-lg-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-lg-only {
		display: none !important;
	}
}

@media only screen and (min-width: 121rem) {
	.show-xl {
		display: block !important;
	}
	
	.row.show-xl {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	
	.hide-xl {
		display: none !important;
	}
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display: block;
}

audio, canvas, video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden], template {
	display: none;
}

html {
	background: #fff;
	color: #000;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
	font-family: sans-serif;
}

body {
	margin: 0;
}

a {
	background: transparent;
	outline: 0;
}

a:focus {
	outline: 0;
}

a:hover, a:active {
	outline: 0;
}

h1 {
	font-size: 2rem;
	margin: .67rem 0;
}

h2 {
	font-size: 1.5rem;
	margin: .83rem 0;
}

h3 {
	font-size: 1.17rem;
	margin: 1rem 0;
}

h4 {
	font-size: 1rem;
	margin: 1.33rem 0;
}

h5 {
	font-size: .83rem;
	margin: 1.67rem 0;
}

h6 {
	font-size: .75rem;
	margin: 2.33rem 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b, strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

code, kbd, pre, samp {
	font-family: monospace, serif;
	font-size: 1em;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: "“" "”" "‘" "’";
}

q:before, q:after {
	content: "";
	content: none;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: .35em .625em .75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
}

button, input {
	line-height: normal;
}

button, select {
	text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled], input[disabled] {
	cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

.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;
}

.slick-loading .slick-list {
	background: #fff url("https://www.cyrilshroff.com/wp-content/themes/cam/css/./ajax-loader.gif") center center no-repeat;
}

.slick-prev, .slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before, .slick-next:before {
	font-family: "slick";
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: .75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir="rtl"] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir="rtl"] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: -25px;
}

.slick-loading .slick-list.nitro-lazy {
	background-image: none !important;
}

[dir="rtl"] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir="rtl"] .slick-next:before {
	content: "←";
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
	width: 20px;
	height: 20px;
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: #000;
	opacity: .25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: #000;
	opacity: .75;
}

.page-inner-decs {
	line-height: 1.85rem;
	font-weight: 500;
}

@media only screen and (min-width: 1025px) {
	.mob_view_off {
		display: block;
	}
}

@media only screen and (max-width: 1024px) {
	.mob_view_off {
		display: none;
	}
}

@media only screen and (min-width: 1025px) {
	.mob_view_on a {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {
	.mob_view_on a {
		font-size: 1.1rem !important;
		color: #631856 !important;
		margin-left: 15px;
	}
}

.page-decs-specific {
	letter-spacing: normal;
	font-size: 1.7rem;
	line-height: 2rem;
	margin-bottom: 0;
	margin-top: 1.2rem;
}

@media only screen and (max-width: 767px) {
	.page-decs-specific {
		font-size: 1.3rem;
		line-height: 1.8rem;
		margin-bottom: 15px;
	}
}

.page-decs-specific.cam_corporate {
	color: #009cde;
}

.page-decs-specific.cam_dispute_resolution {
	color: #f05a22;
}

.page-decs-specific.cam_finance {
	color: #ffc905;
}

.page-decs-specific.cam_market {
	color: #a2cb39;
}

.descriptions p img {
	margin: 15px 15px 10px 0px;
}

.align-left {
	float: left;
}

.align-right {
	float: right;
}

.acquisitions-content {
	padding-right: 50px;
}

@media only screen and (max-width: 767px) {
	.acquisitions-content {
		padding-right: 14px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.acquisitions-content {
		padding-right: 14px;
	}
}

.acquisitions-content .quote-desc {
	width: 98%;
}

@media only screen and (min-width: 1800px) {
	.acquisitions-content .descriptions p {
		font-size: .8rem;
	}
}

@media only screen and (min-width: 1800px) {
	.acquisitions-content .stand-out-deal {
		margin-top: 40px;
	}
	
	.acquisitions-content .stand-out-deal .stand-wrapper ul li {
		font-size: .7rem;
		line-height: 16.8px;
	}
	
	.acquisitions-content .stand-out-deal .stand-wrapper h4 {
		font-size: 1.2rem;
		line-height: 28px;
	}
}

@media only screen and (max-width: 600px) {
	.sector-mbl.social-contact {
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media only screen and (max-width: 655px) {
	.sector-mbl.mobile-device h2 {
		margin-bottom: 30px;
		font-size: 1.8rem;
		margin-top: 6px;
	}
}

@media only screen and (max-width: 655px) {
	.sector-mbl.mobile-device .contact_list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.sector-mbl.mobile-device .contact_list .profile {
		flex-basis: calc(50% - 10px);
	}
	
	.sector-mbl.mobile-device .contact_list .profile:first-child {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 500px) {
	.sector-mbl.mobile-device .contact_list {
		display: block;
	}
	
	.sector-mbl.mobile-device .contact_list .profile:first-child {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 655px) {
	.sector-mbl .tght_leadership {
		padding-top: 2px;
	}
}

@media only screen and (max-width: 655px) {
	.sector-mbl .tght_leadership .title {
		padding-top: 35px;
		margin-bottom: 5px;
	}
	
	.sector-mbl .tght_leadership .title.border-top:after {
		content: "";
		height: 2px;
		background-color: #621755;
		display: block;
		width: 79.5%;
		position: absolute;
		left: 0;
		top: 3px;
		opacity: .7;
	}
	
	.sector-mbl .tght_leadership .title.border-top:before {
		content: "";
		height: 3px;
		background-color: #621755;
		display: block;
		width: 20%;
		position: absolute;
		right: 0;
		top: 0;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.sector-mbl .tght_leadership .title {
		padding-left: 0;
		padding-right: 0;
	}
	
	.sector-mbl .tght_leadership .title.border-top:after {
		margin-left: 0;
		width: 79.7%;
	}
	
	.sector-mbl .tght_leadership .title.border-top:before {
		margin-right: 0;
	}
}

.pharmaceuticals-content>img {
	width: 100%;
}

@media only screen and (min-width: 1800px) {
	.pharmaceuticals-content p {
		font-size: .8rem;
		line-height: 26px;
	}
	
	.pharmaceuticals-content .stand-out-deal .stand-wrapper ul li {
		font-size: .7rem;
		line-height: 16.8px;
	}
	
	.pharmaceuticals-content .stand-out-deal .stand-wrapper h4 {
		font-size: 1.2rem;
		line-height: 28px;
	}
}

@media only screen and (max-width: 600px) {
	.stand-out-container ul>li {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}
}

@media only screen and (max-width: 1024px) {
	.stand-out-container ul>li .block-content {
		padding-top: 12px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.stand-out-container ul>li .block-content ul li {
		font-size: .7rem;
	}
}

@media only screen and (max-width: 600px) {
	.stand-out-container ul>li .block-content ul li:first-child {
		padding-left: 0px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.stand-out-container ul>li .block-content h2 {
		font-size: 1.2rem;
		line-height: 32px;
	}
	
	.stand-out-container ul>li .block-content p {
		font-size: .8rem !important;
		line-height: 26px;
	}
}

.quote-desc {
	width: 95%;
}

.quote-desc .quote {
	border: 6px solid #621755;
	padding: 25px;
	font-weight: 600;
	font-size: 1.4rem;
	font-style: italic;
	position: relative;
	color: #1a1a1a;
	line-height: 32px;
	margin-bottom: 30px;
	margin-top: 50px;
}

@media only screen and (min-width: 1200px) {
	.quote-desc .quote {
		padding: 40px 74px 45px 40px;
		font-size: 1.2rem;
		line-height: 30px;
		margin-bottom: 40px;
	}
}

@media only screen and (min-width: 1800px) {
	.quote-desc .quote {
		padding: 50px 84px 55px 50px;
		font-size: 1.2rem;
		line-height: 40px;
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.quote-desc .quote {
		font-size: 1.2rem;
		padding: 20px;
	}
}

.quote-desc .quote:before {
	content: "";
	position: absolute;
	right: -6px;
	top: -6px;
	border-top: 6px solid #fff;
	border-right: 6px solid #fff;
	width: 50px;
	height: 50px;
}

@media only screen and (max-width: 655px) {
	.quote-desc .quote:before {
		right: -7px;
		top: -7px;
		border-top: 8px solid #fff;
		border-right: 8px solid #fff;
		width: 70px;
		height: 70px;
	}
}

@media only screen and (min-width: 1200px) {
	.quote-desc .quote:before {
		right: -7px;
		top: -7px;
		width: 100px;
		height: 100px;
		border-top: 10px solid #fff;
		border-right: 10px solid #fff;
	}
}

@media only screen and (min-width: 1800px) {
	.quote-desc .quote:before {
		right: -7px;
		top: -7px;
		width: 120px;
		height: 118px;
		border-top: 10px solid #fff;
		border-right: 10px solid #fff;
	}
}

.quote-desc .quote:after {
	content: "";
	position: absolute;
	right: -20px;
	top: -20px;
	width: 60px;
	height: 60px;
	border-top: 8px solid #d0a56d;
	border-right: 8px solid #d0a56d;
}

@media only screen and (max-width: 655px) {
	.quote-desc .quote:after {
		width: 82px;
		height: 82px;
	}
}

@media only screen and (min-width: 1200px) {
	.quote-desc .quote:after {
		right: -28px;
		top: -26px;
		width: 120px;
		height: 120px;
		border-top: 8px solid #d0a56d;
		border-right: 8px solid #d0a56d;
	}
}

@media only screen and (min-width: 1800px) {
	.quote-desc .quote:after {
		right: -28px;
		top: -32px;
		width: 140px;
		height: 140px;
		border-top: 10px solid #d0a56d;
		border-right: 10px solid #d0a56d;
	}
}

.stand-out-deal {
	margin-bottom: 20px;
}

.stand-out-deal h1 {
	margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
	.stand-out-deal h1 {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 600px) {
	.stand-out-deal h1 {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.stand-out-deal h1 {
		margin-bottom: 0px;
		padding-bottom: 6px;
	}
}

.stand-out-deal ul li {
	display: inline-block;
	color: gray;
	padding-right: 6px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.stand-out-deal ul li {
		font-size: .9rem;
	}
}

.stand-out-deal ul li:nth-of-type(2n) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

@media only screen and (max-width: 655px) {
	.stand-out-deal ul li:nth-of-type(2n) {
		padding-left: 8px;
	}
}

.stand-out-deal .stand-wrapper {
	position: relative;
}

@media only screen and (max-width: 1024px) {
	.stand-out-deal .stand-wrapper {
		margin-bottom: 20px;
	}
}

.stand-out-deal .stand-wrapper span {
	cursor: pointer;
}

.stand-out-deal .stand-wrapper span:after {
	font-family: "icomoon";
	content: "";
	position: absolute;
	left: 10px;
	left: 13px;
	bottom: 0;
	top: auto;
	color: #f06638;
	font-size: .7rem;
	font-weight: 600;
}

@media only screen and (max-width: 1024px) {
	.stand-out-deal .stand-wrapper span:after {
		left: 0px;
		bottom: -4px;
	}
}

.stand-out-deal .stand-wrapper h4 {
	color: #1a1a1a;
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 10px;
	margin-top: 10px;
}

@media only screen and (max-width: 600px) {
	.stand-out-deal .stand-wrapper h4 {
		font-size: 1.2rem;
	}
}

.stand-out-deal .stand-wrapper:first-child {
	padding-left: 0;
}

.stand-out-deal .stand-wrapper:first-child span:after {
	left: 0;
}

@media only screen and (max-width: 1039px) {
	.stand-out-deal .stand-wrapper {
		padding-left: 0px;
	}
	
	.stand-out-deal .stand-wrapper span:after {
		left: 0px;
	}
}

.stand-out-deal .stand-wrapper:last-child {
	padding-right: 0;
}

.social-contact {
	padding-top: 14px;
}

@media (min-width: 768px) {
	.social-contact {
		order: 1;
	}
}

.social-contact .social-wrapper {
	display: flex;
	justify-content: flex-start;
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
}

.social-contact .social-wrapper .social {
	display: flex;
}

.social-contact .social-wrapper .social li a {
	color: #611754;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	background: #f1f1f1;
	box-sizing: border-box;
}

@media only screen and (min-width: 1800px) {
	.social-contact .social-wrapper .social li a {
		width: 35px;
		height: 35px;
	}
	
	.social-contact .social-wrapper .social li a:after {
		font-size: 16px;
	}
}

.social-contact .social-wrapper .social li a.linkedin:after {
	content: "";
}

.social-contact .social-wrapper .social li a.twitter:after {
	content: "";
}

.social-contact .social-wrapper .social li a.facebook:after {
	content: "";
}

.social-contact .social-wrapper .social li a.youtube:after {
	content: "";
}

.social-contact .social-wrapper .social li a.icon-instagram:after {
	content: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/uploads/2020/09/instagram-new.png");
}

.social-contact .social-wrapper .social li a.icon-instagram:hover:before {
	content: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/uploads/2020/09/ig.png");
}

.social-contact .social-wrapper .print-wrapper {
	display: flex;
	align-items: center;
	padding-left: 20px;
}

@media only screen and (max-width: 655px) {
	.social-contact .social-wrapper .print-wrapper {
		padding-left: 0;
	}
}

.social-contact .social-wrapper .print-wrapper li:first-child {
	padding-right: 20px;
}

.social-contact .social-wrapper .print-wrapper li a {
	width: 30px;
	display: inline-block;
}

@media only screen and (max-width: 655px) {
	.social-contact .social-wrapper .print-wrapper li a {
		border-radius: 50%;
		width: 30px;
		height: 30px;
		background: #f1f1f1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.social-contact .social-wrapper .print-wrapper li a img {
		width: 16px;
		color: #631856;
	}
}

.social-contact h2 {
	color: #621755;
	font-weight: 300;
	margin-top: 25px;
	margin-bottom: 25px;
}

@media only screen and (min-width: 1800px) {
	.social-contact h2 {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.download a {
	color: #ea8123;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 12px 0px;
	border-bottom: 2px solid #f1f1f1;
}

.download a span {
	font-weight: 700;
	font-style: normal;
	padding-left: 10px;
}

@media only screen and (min-width: 1800px) {
	.download a span {
		font-size: .7rem;
	}
}

.contact_list .profile {
	margin-bottom: 15px;
}

.contact_list .profile .profile_info {
	padding: 10px;
}

.contact_list .profile .profile_info a {
	display: block;
	color: #621755;
	font-weight: 700;
}

.contact_list .profile .profile_info a.email {
	color: #414042;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 15px;
	word-break: break-all;
}

.contact_list .profile .profile_img {
	width: 100%;
}

.contact_list .profile .profile_img a {
	display: inline-block;
	width: 100%;
}

.contact_list .profile .profile_img a picture img {
	width: 100%;
	height: intrinsic;
}

.pale-blue {
	background: rgba(211, 238, 251, .4);
}

.pale-blue .primary_btn:hover:before {
	background-color: #edf8fd;
}

.pale-blue-dk {
	background: #d3eefb;
}

.pale-blue-dk .primary_btn:hover:before {
	background-color: #d3eefb;
}

.cam-primary-color {
	background: rgba(98, 23, 85, .2);
}

.cam-primary-color .primary_btn:hover:before {
	background-color: #dfd0dd;
}

.cam-primary-color-lp {
	background: rgba(98, 23, 85, .1);
}

.cam-primary-color-lp .primary_btn:hover:before {
	background-color: #efe7ed;
}

.bg-dark-gray {
	background: rgba(99, 24, 86, .1);
}

.bg-dark-gray .primary_btn:hover:before {
	background-color: #efe7ee;
}

.bg-white {
	background: rgba(255, 255, 255, .9);
}

.cam-redish-green {
	background: rgba(227, 127, 38, .1);
}

.cam-redish-green .primary_btn:hover:before {
	background-color: #fcf2e9;
}

.cam-orange-banner {
	background: #ea8123 !important;
}

.award-recognition {
	padding: 30px 0 30px;
}

@media only screen and (max-width: 767px) {
	.award-recognition {
		padding: 15px 30px 20px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.award-recognition {
		padding: 60px 0 60px;
	}
}

.award-recognition .title {
	margin-bottom: 0 !important;
}

@media only screen and (max-width: 655px) {
	.award-recognition .title {
		margin-bottom: 10px !important;
	}
}

.award-recognition ul li {
	display: flex;
	align-items: flex-start;
}

@media only screen and (max-width: 767px) {
	.award-recognition ul li {
		display: inline-block;
	}
	
	.award-recognition ul li.slick-slide {
		display: inline-flex;
		outline: none;
	}
}

.award-recognition ul li img {
	padding-right: 15px;
}

@media only screen and (max-width: 767px) {
	.award-recognition ul li img {
		width: 35px;
		height: 35px;
	}
}

.award-recognition ul li .award-desc {
	flex-basis: 65%;
}

@media only screen and (max-width: 767px) {
	.award-recognition ul li .award-desc {
		flex-basis: auto;
	}
}

.award-recognition ul li .award-desc h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 700;
	color: #631856;
	letter-spacing: unset;
}

.award-recognition ul li .award-desc h3 a {
	color: #631856;
}

@media only screen and (min-width: 1800px) {
	.award-recognition ul li .award-desc h3 {
		font-size: 1.5rem;
	}
}

.award-recognition ul li .award-desc h4 {
	margin-bottom: 0px;
	margin-top: 15px;
	color: #1a1a1a;
	font-weight: 600;
}

@media only screen and (max-width: 1024px) and (min-width: 656px) {
	.award-recognition ul li .award-desc h4 {
		padding-top: 15px;
	}
}

@media only screen and (min-width: 1800px) {
	.award-recognition ul li .award-desc h4 {
		font-size: 1.2rem;
	}
}

.award-recognition ul li .award-desc p {
	margin-top: 8px;
}

@media only screen and (min-width: 1800px) {
	.award-recognition ul li .award-desc p {
		font-size: .8rem;
		line-height: 26px;
		font-weight: 300;
	}
}

.award-recognition ul li .award-desc .release-date {
	color: #1a1a1a;
	padding-bottom: 12px;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.award-recognition ul li .award-desc .release-date {
		font-size: .8rem;
		line-height: 16.8px;
	}
}

@media only screen and (max-width: 767px) {
	.award-recognition ul li .award-desc.border:before, .award-recognition ul li .award-desc.border-reverse:before, .award-recognition ul li .award-desc.border:after, .award-recognition ul li .award-desc.border-reverse:after {
		content: none;
	}
}

@media only screen and (max-width: 600px) {
	.award-recognition ul li {
		margin-bottom: 30px;
	}
	
	.award-recognition ul li:last-child {
		margin-bottom: 0;
	}
}

.award-recognition ul ul.slick-dots {
	bottom: -35px;
}

.award-recognition ul ul li {
	width: 10%;
	bottom: 0;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.award-recognition ul ul li button {
	background-color: #631856;
	height: 2px;
	width: 100%;
	padding: 0;
}

.award-recognition ul ul li.slick-active {
	bottom: 1px;
}

.award-recognition ul ul li.slick-active button {
	background-color: #16a8e0;
}

@media only screen and (max-width: 600px) {
	.award-recognition ul.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
}

.border-top {
	position: relative;
}

@media only screen and (min-width: 1800px) {
	.border-top {
		padding-top: 50px !important;
		margin-bottom: 0px;
	}
}

.border-top:before {
	content: "";
	height: 3px;
	background-color: #621755;
	display: block;
	width: 20%;
	position: absolute;
	right: 0;
	top: 0;
}

.border-top:after {
	content: "";
	height: 2px;
	background-color: #621755;
	display: block;
	width: 79.5%;
	position: absolute;
	left: 0;
	top: 3px;
	opacity: .7;
}

.border-top.border-reverse:before {
	content: "";
	width: 79.5%;
	height: 2px;
	opacity: .7;
	top: 3px;
}

.border-top.border-reverse:after {
	content: "";
	width: 20%;
	height: 3px;
	top: 0;
}

.border.border-reverse:before {
	width: 5%;
	bottom: 3px;
	height: 4px;
	background: #d0a56d;
}

.border.border-reverse:after {
	width: 95%;
	bottom: 0;
}

.banner-bottom {
	position: relative;
	margin-top: 30px;
	height: 400px;
}

@media (max-width: 640px) {
	.banner-bottom {
		height: 350px;
	}
}

.banner-bottom .overlay-wrapper {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/banner-merger.png");
}

.banner-bottom .overlay-wrapper.nitro-lazy {
	background-image: none !important;
}

.banner-bottom .overlay-content {
	width: calc(77% - 30px);
	width: -webkit-calc(77% - 30px);
	width: -moz-calc(77% - 30px);
	margin: 0 auto;
	position: relative;
	height: inherit;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom .overlay-content {
		width: 77%;
		max-width: 1400px;
	}
}

@media (max-width: 640px) {
	.banner-bottom .overlay-content {
		width: calc(90% - 30px);
		width: -webkit-calc(90% - 30px);
		width: -moz-calc(90% - 30px);
	}
}

.banner-bottom .overlay-content .banner-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	padding: 20px;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom .overlay-content .banner-content {
		padding: 30px 77px;
	}
}

.banner-bottom .overlay-content .banner-content h4 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: 300;
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom .overlay-content .banner-content h4 {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 767px) {
	.banner-bottom .overlay-content .banner-content h4 {
		font-size: 1.5rem;
	}
}

.banner-bottom .overlay-content .banner-content p {
	width: 65%;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom .overlay-content .banner-content p {
		width: 60%;
	}
}

@media only screen and (max-width: 767px) {
	.banner-bottom .overlay-content .banner-content p {
		width: 90%;
	}
}

@media only screen and (min-width: 1800px) {
	.banner-bottom .overlay-content .banner-content .primary_btn {
		padding: 16px 30px;
	}
}

.notification-banner {
	position: relative;
	height: 200px;
	width: 100%;
}

.notification-banner .overlay-wrapper {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/insight-banner.png");
}

.notification-banner .overlay-wrapper.nitro-lazy {
	background-image: none !important;
}

.notification-banner .overlay-content {
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
	height: inherit;
}

.notification-banner .overlay-content .banner-content {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	width: 100%;
	box-sizing: border-box;
}

.notification-banner .overlay-content .banner-content h4 {
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 1.7rem;
	font-weight: 600;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.notification-banner .overlay-content .banner-content h4 {
		font-size: 1.5rem;
	}
}

.notification-banner .overlay-content .banner-content form .primary_btn {
	background: #fff;
	color: #621755;
	font-weight: 500;
	cursor: pointer;
	padding: 15px 23px;
	display: inline-block;
}

.notification-banner .overlay-content .banner-content form .primary_btn:before, .notification-banner .overlay-content .banner-content form .primary_btn:after {
	content: none;
}

.padding-top-45 {
	padding-top: 45px;
}

.padding-top-30 {
	padding-top: 30px;
}

.padding-bottom-30 {
	padding-bottom: 30px;
}

.padding-left-0 {
	padding-left: 0;
}

.padding-top-0 {
	padding-top: 0;
}

.margin-bottom-30 {
	margin-bottom: 30px;
}

.margin-top-30 {
	margin-top: 30px;
}

.mb-0 {
	margin-bottom: 0;
}

.margin-0 {
	margin: 0px;
}

.page-decs {
	font-weight: 600;
	line-height: 30px;
}

.page-decs.large {
	letter-spacing: normal;
	font-size: 1.7rem;
	line-height: 2rem;
	margin-bottom: 0;
	margin-top: 1.2rem;
}

@media only screen and (min-width: 1800px) {
	.page-decs.large {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 991px) {
	.page-decs.large {
		font-size: 1.6rem;
		margin-bottom: 15px;
	}
}

@media (max-width: 1024px) {
	.page-decs {
		line-height: normal;
	}
}

.multiple-layout {
	margin-bottom: 40px;
}

.multiple-layout ul li {
	display: flex;
}

.multiple-layout ul li .blog-wrap {
	display: flex;
	flex-wrap: wrap;
}

.multiple-layout ul li .blog-wrap .block-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 991px) {
	.multiple-layout ul li .blog-wrap .block-content {
		padding: 0 10px;
	}
}

@media only screen and (max-width: 600px) {
	.multiple-layout ul li .blog-wrap .block-content {
		padding: 0 20px;
	}
}

.multiple-layout ul li .blog-wrap .block-content h2 {
	font-weight: 600;
	color: #621755;
}

@media only screen and (max-width: 991px) {
	.multiple-layout ul li .blog-wrap .block-content h2 {
		font-size: 1.3rem;
	}
}

.multiple-layout ul li .blog-wrap .block-content ul {
	margin-bottom: 20px;
	margin-top: auto;
}

.multiple-layout ul li .blog-wrap .block-content ul li {
	display: inline-block;
	color: gray;
	padding-right: 5px;
	font-weight: 600;
}

.multiple-layout ul li .blog-wrap .block-content ul li:nth-of-type(2n) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

@media only screen and (max-width: 991px) {
	.multiple-layout ul li .blog-wrap .block-content ul li {
		font-size: 1rem;
	}
}

@media only screen and (max-width: 655px) {
	.multiple-layout ul li .blog-wrap .block-content ul li {
		font-size: .78rem;
	}
}

.multiple-layout ul li .blog-wrap .block-content p {
	margin-top: 0;
	margin-bottom: 15px;
	word-break: break-word;
}

.multiple-layout ul li .blog-wrap .spacing {
	padding-top: 0;
	display: flex;
	flex-wrap: wrap;
}

.multiple-layout ul li .blog-wrap .spacing .block-content {
	padding: 0 0 0 20px;
}

@media only screen and (max-width: 600px) {
	.multiple-layout ul li .blog-wrap .spacing .block-content ul {
		margin-bottom: 6px;
	}
}

@media only screen and (max-width: 600px) {
	.multiple-layout ul li .blog-wrap .spacing .block-content {
		padding: 0px 6px;
	}
	
	.multiple-layout ul li .blog-wrap .spacing .block-content ul {
		margin-bottom: 0;
	}
}

.multiple-layout ul li .full-img {
	padding: 0 1rem 0 0;
}

.multiple-layout ul li .full-img.last {
	padding: 0 0 0 1rem;
}

@media only screen and (max-width: 1039px) {
	.multiple-layout ul li .full-img {
		padding: 0;
		height: auto;
	}
	
	.multiple-layout ul li .full-img.last {
		padding: 0;
		order: 0;
	}
	
	.multiple-layout ul li .full-img img {
		width: 100%;
	}
}

.multiple-layout .article_form {
	text-align: center;
}

.clearfix:after {
	content: "";
	clear: both;
	display: block;
}

p {
	font-weight: 500;
	color: #1a1a1a;
}

.equal-height {
	display: flex;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.two_coloum .filters {
		max-width: 97%;
	}
}

.two_coloum .filters .collapsible ul {
	display: none;
}

.two_coloum .filters .collapsible ul li {
	padding: 8px 10px;
	border-top: 1px solid #ddd;
	color: #666;
	cursor: pointer;
}

.two_coloum .filters .collapsible ul li:first-child {
	border-top: none;
}

.two_coloum .filters .collapsible ul li:hover {
	background: #f1f1f1;
}

.personal-details {
	padding-top: 30px;
}

@media only screen and (min-width: 1200px) {
	.personal-details {
		padding-top: 40px !important;
	}
}

@media only screen and (max-width: 655px) {
	.personal-details {
		padding-top: 25px;
	}
}

.personal-details .page-decs.large {
	margin-top: 0px;
}

@media only screen and (min-width: 1800px) {
	.personal-details .page-decs.large {
		margin-bottom: 20px;
	}
}

.personal-details p {
	line-height: 1.8rem;
	color: #000;
}

@media only screen and (max-width: 655px) {
	.personal-details p {
		font-weight: 500;
		font-size: 1.2rem;
	}
}

@media only screen and (min-width: 1800px) {
	.personal-details p {
		font-size: .8rem;
		line-height: 1.3rem;
	}
}

.personal-details h2 {
	color: #621755;
	font-weight: 300;
}

.personal-details h2.title {
	margin-top: 33px;
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.personal-details h2 {
		font-size: 2rem !important;
		line-height: 48px;
	}
}

.personal-details .listing li {
	display: flex;
	font-size: .8rem;
	line-height: 1.3rem;
	font-weight: 500;
}

.personal-details .listing li a {
	color: #000;
	font-weight: 500;
	line-height: 1.3rem;
	font-size: 1.2rem;
}

@media only screen and (min-width: 1800px) {
	.personal-details .listing li a {
		/*font-size: 1.5rem;*/
		line-height: 1.3rem;
	}
}

.personal-details .listing li:before {
	color: #000;
}

@media only screen and (min-width: 1800px) {
	.personal-details .listing li:before {}
}

@media only screen and (max-width: 1366px) {
	.personal-details p {
		font-weight: 500;
		font-size: 1rem;
		line-height: 1.3;
	}
	
	.personal-details .listing li {
		font-weight: 500;
		font-size: 1rem !important;
		line-height: 1.3;
	}
}

@media only screen and (min-width: 1200px) {
	.personal-details .personal-info {
		margin-top: 10px;
	}
}

.personal-info {
	padding: 18px 10px 18px 25px;
}

@media only screen and (min-width: 656px) {
	.personal-info {
		background-color: #fff;
		box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
		border: 1px solid #f2f2f2;
	}
}

@media only screen and (max-width: 655px) {
	.personal-info {
		padding-left: 0;
		padding-top: 0;
	}
}

.personal-info ul li {
	padding-bottom: 20px;
}

.personal-info ul li a {
	display: flex;
	align-items: center;
	color: #621755;
	font-weight: 700;
	word-break: break-all;
}

@media only screen and (min-width: 1800px) {
	.personal-info ul li a {
		font-size: .7rem;
	}
}

.personal-info ul li a img {
	padding-right: 15px;
}

@media only screen and (min-width: 601px) {
	.personal-info ul li:last-child {
		padding-bottom: 0px;
	}
}

@media only screen and (min-width: 656px) {
	.personal-info h2 {
		display: none;
	}
}

.qualification {
	padding: 20px 10px;
}

@media only screen and (max-width: 655px) {
	.qualification {
		padding-left: 0;
	}
}

.qualification h2 {
	color: #621755;
	font-weight: 300;
	margin-top: 0;
}

.qualification ul li {
	color: #1a1a1a;
	padding-bottom: 15px;
	font-weight: 500;
	display: flex;
}

.qualification ul li span {
	font-weight: 700;
	padding-right: 10px;
}

@media only screen and (min-width: 601px) {
	.qualification ul li:last-child {
		padding-bottom: 0;
	}
}

.expertise {
	padding: 10px;
	padding-top: 30px;
}

@media only screen and (max-width: 655px) {
	.expertise {
		padding-top: 10px;
		padding-left: 0;
	}
}

.expertise .title-wrapper {
	display: block;
}

@media only screen and (max-width: 600px) {
	.expertise {
		padding-left: 0;
	}
}

.expertise h2 {
	color: #621755;
	font-weight: 300;
	margin-top: 12px;
}

@media only screen and (max-width: 600px) {
	.expertise h2 {
		margin-top: 10px;
	}
}

.expertise h4 {
	margin-bottom: 5px;
	margin-top: 5px;
	font-weight: 700;
}

.expertise ul li {
	font-weight: 500;
	padding-bottom: 3px;
}

.podcast-info {
	margin-bottom: 30px;
}

.podcast-info h6 {
	color: gray;
	padding-left: 14px;
	font-weight: 600;
	font-size: 1rem;
	margin: 15px 0;
}

.podcast-info .podcast-container {
	background-color: #fff;
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	border-top: none;
	border-right: none;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container {
		padding-bottom: 0px;
	}
}

.podcast-info .podcast-container .podcast-wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap {
		flex-wrap: initial;
		flex-direction: row;
	}
}

@media only screen and (max-width: 600px) {
	.podcast-info .podcast-container .podcast-wrap {
		display: block;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-img {
	width: 100%;
	min-height: 255px;
	background: #f1f1f1;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-img {
		flex-basis: 45%;
		min-height: 220px;
		object-fit: cover;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-img img {
	width: 100%;
	height: 100%;
}

.podcast-info .podcast-container .podcast-wrap .pod-content {
	padding: 12px 15px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content {
		flex-basis: 45%;
		padding-bottom: 12px;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-content small {
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content small {
		font-size: .7rem;
	}
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content small {
		font-size: 1rem;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content {
	margin-top: auto;
}

.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content small {
	font-weight: 600;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content small {
		font-size: 1rem;
	}
}

@media only screen and (min-width: 1800px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content small {
		font-size: .7rem;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content p {
	font-size: .8rem;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content p {
		display: none;
	}
}

@media only screen and (min-width: 1800px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content p {
		line-height: 26px;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content form.article_form {
	padding: 10px;
	padding-left: 0;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content form.article_form {
		margin-top: 15px;
	}
	
	.podcast-info .podcast-container .podcast-wrap .pod-content .inner-content form.article_form button {
		padding: 14px 26px;
	}
}

.podcast-info .podcast-container .podcast-wrap .pod-content h2 {
	font-weight: 600;
	color: #621755;
}

.podcast-info .podcast-container .podcast-wrap .pod-content h2 a {
	color: #621755;
}

@media only screen and (max-width: 655px) {
	.podcast-info .podcast-container .podcast-wrap .pod-content h2 {
		font-size: 1.6rem;
		line-height: 28px;
	}
}

@media only screen and (max-width: 655px) {
	.accordian>ul {
		display: none;
		padding-top: 14px;
		padding-bottom: 20px;
	}
	
	.accordian>ul li br {
		display: none;
	}
}

@media only screen and (max-width: 655px) {
	.accordian.border {
		padding-bottom: 5px;
		padding-right: 0;
		padding-top: 5px;
	}
	
	.accordian h2 {
		color: #631856;
		font-weight: 600;
	}
}

@media only screen and (min-width: 656px) {
	.accordian:not(.qualification).border:before, .accordian:not(.qualification).border-reverse:before, .accordian:not(.qualification).border:after, .accordian:not(.qualification).border-reverse:after {
		content: none;
	}
}

@media only screen and (max-width: 655px) {
	.accordian .expert-wrap {
		display: none;
		padding-bottom: 20px;
	}
}

.accordian .title-wrapper {
	display: flex;
}

.accordian .title-wrapper img {
	padding-right: 10px;
}

@media only screen and (min-width: 656px) {
	.accordian .title-wrapper img {
		display: none;
	}
}

@media only screen and (max-width: 655px) {
	.accordian .title-wrapper h2 {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		font-size: 1.3em;
	}
	
	.accordian .title-wrapper h2 span:after {
		content: "";
		font-weight: 600;
	}
}

.accordian.expertise .title-wrapper {
	display: block;
}

@media only screen and (max-width: 655px) {
	.accordian.expertise {
		padding-right: 0;
	}
	
	.accordian.expertise .title-wrapper {
		display: flex;
	}
}

.accordian.expertise .title-wrapper img {
	display: block;
}

.two_coloum.search-results {
	margin-top: 10px;
	margin-bottom: 40px;
}

.two_coloum.search-results.search-result-title {
	margin-bottom: 0;
	margin-top: 15px;
}

@media only screen and (min-width: 1800px) {
	.two_coloum.search-results.search-result-title {
		margin-top: 30px;
	}
}

.two_coloum.search-results.search-result-title .title {
	margin-bottom: 0;
}

.two_coloum.search-results .title {
	margin-bottom: 1em;
}

.two_coloum.search-results .filter_result {
	display: flex;
	align-items: center;
}

.two_coloum.search-results .filter_result p {
	color: #1a1a1a;
	font-weight: 600;
	padding-right: 30px;
	font-size: 1rem;
	margin-top: 0;
}

.two_coloum.search-results .filter_result .total_results {
	align-self: baseline;
	padding-top: 2px;
	width: 30%;
}

.two_coloum.search-results .search_list>.border {
	padding-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.two_coloum.search-results .search_list>.border {
		padding-left: 14px;
	}
}

.two_coloum.search-results .search_list>.border small {
	color: #333;
}

.two_coloum.search-results .search_list>.border p {
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.two_coloum.search-results .search_list>.border p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.two_coloum.search-results .search_list>.border h2 {
	color: #621755;
	font-weight: 600;
	margin: 10px 0;
}

.two_coloum.search-results .search_list>.border h2 a {
	color: #621755;
}

.two_coloum.search-results .search_list>.border small {
	font-weight: 600;
}

.two_coloum.search-results .search_list>.border p {
	margin-bottom: 6px;
}

.two_coloum.search-results .search_list>.border.border-reverse:before {
	background: #621755;
	width: 30%;
}

.two_coloum.search-results .search_list>.border.border-reverse:after {
	width: 69.6%;
	opacity: .6;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.two_coloum.search-results .search_list>.border.border-reverse:after {
		margin-left: 14px;
		width: 66%;
	}
}

@media only screen and (max-width: 1039px) {
	.two_coloum.search-results>div {
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (max-width: 655px) {
	.two_coloum.search-results>div {
		padding-left: 14px;
		padding-right: 14px;
	}
}

.two_coloum.search-results>div .filters div[data-filter]>span {
	border-bottom: 1px solid #ddd;
}

.two_coloum.search-results>div .filters ul li label {
	display: flex;
	align-items: center;
}

.two_coloum.search-results>div .filters ul li label span {
	padding: 2px 10px;
}

.two_coloum.search-results>div .filters ul li label span:after {
	content: none;
}

.search-not-found>div {
	padding-left: 0;
	padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.search-not-found>div {
		padding-left: 14px;
	}
}

.search-not-found>div h2 {
	color: #621755;
	margin-bottom: 10px;
	margin-top: 0;
	font-weight: 600;
}

@media only screen and (max-width: 767px) {
	.search-not-found>div .big_search input[type="text"] {
		min-height: 40px;
		line-height: 40px;
	}
}

.about-us {
	margin-bottom: 10px;
}

@media only screen and (min-width: 1800px) {
	.about-us .page-decs.large {
		font-size: 1.7rem;
		margin-bottom: 10px;
	}
}

.about-us h4 {
	margin-top: 0;
	color: #621755;
	font-weight: 600;
	margin-bottom: 8px;
	margin-bottom: 0;
	font-size: 1.2rem;
	line-height: 28px;
}

@media (max-width: 480px) {
	.about-us h4 {
		line-height: inherit;
		margin-bottom: 5px;
	}
}

.about-us p {
	margin-top: 0px;
}

@media only screen and (min-width: 1800px) {
	.about-us p {
		font-size: .8rem;
		line-height: 36px;
	}
}

.about-us .bench-mark h4 {
	margin-top: 15px;
	line-height: 22px;
}

@media only screen and (min-width: 1800px) {
	.about-us .bench-mark h4 {
		line-height: 26px;
	}
}

.about-us .bench-mark img {
	height: 60px;
}

@media (max-width: 640px) {
	.about-us .bench-mark img {
		width: 60px;
	}
}

.about-us .bench-mark p {
	margin-bottom: 0;
	margin-top: 8px;
}

@media only screen and (min-width: 1800px) {
	.about-us .bench-mark p {
		line-height: 24px;
	}
}

.about-us .teach-wrapper {
	background: rgba(227, 127, 38, .1);
	padding: 20px 30px;
	align-items: center;
}

@media (max-width: 768px) {
	.about-us .teach-wrapper {
		padding: 20px;
	}
}

@media (max-width: 640px) {
	.about-us .teach-wrapper {
		box-sizing: content-box;
	}
}

.about-us .teach-wrapper ul li {
	display: flex;
	margin: 6px 0;
}

.about-us .teach-wrapper ul li a {
	color: #1a1a1a;
	font-weight: 300;
	font-size: 1.1rem;
}

@media only screen and (min-width: 1800px) {
	.about-us .teach-wrapper ul li {
		line-height: 35px;
		font-size: 1.2rem;
	}
}

.about-us .teach-wrapper h4 {
	margin-bottom: 15px;
}

.about-us .info-wrapper p {
	margin: 3px 0 6px;
}

@media (max-width: 656px) {
	.about-us>div {
		order: 1;
	}
}

@media only screen and (max-width: 656px) {
	.about-us .social-contact {
		order: 0;
	}
}

.about-us .social-contact .social-wrapper {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 8px;
}

@media only screen and (max-width: 655px) {
	.about-us .social-contact .social-wrapper .print-wrapper {
		display: none;
	}
}

.select-wrapper {
	width: 100%;
	margin: 10px 14px;
}

.select-wrapper .select {
	box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 10px;
	display: inline-block;
	width: calc(25% - 20px);
	width: -webkit-calc(25% - 20px);
	width: -moz-calc(25% - 20px);
	max-width: 25%;
	vertical-align: top;
	margin-right: 20px;
	position: relative;
}

@media only screen and (min-width: 1800px) {
	.select-wrapper .select {
		width: calc(25% - 22px);
		width: -webkit-calc(25% - 22px);
		width: -moz-calc(25% - 22px);
	}
}

.select-wrapper .select:last-child {
	margin-right: 0;
}

@media only screen and (max-width: 767px) {
	.select-wrapper .select {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
	}
}

.select-wrapper .select .dropdownbox {
	padding: 10px 15px;
	cursor: pointer;
	background: #fff;
}

.select-wrapper .select .dropdownbox span {
	color: #666;
	font-size: .9rem;
}

@media only screen and (min-width: 1800px) {
	.select-wrapper .select .dropdownbox span {
		font-size: .8rem;
	}
}

.select-wrapper .select .dropdownbox span:after {
	font-family: "icomoon";
	content: "";
	position: absolute;
	right: 10px;
	color: #e37f26;
	font-size: .7rem;
	font-weight: 600;
	top: 14px;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
}

.select-wrapper .select .dropdownbox span.rotate:after {
	transform: rotate(180deg);
}

.select-wrapper .select ul {
	position: relative;
}

.select-wrapper .select ul.menu {
	overflow: hidden;
	height: 0;
	position: absolute;
	z-index: 9;
	width: 100%;
	background: #fff;
	box-shadow: 1px 2px 4px -1px rgba(0, 0, 0, .5);
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
}

.select-wrapper .select ul.menu::-webkit-scrollbar {
	width: 8px;
}

.select-wrapper .select ul.menu::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

.select-wrapper .select ul.menu::-webkit-scrollbar-thumb {
	background: #656565;
	border-radius: 10px;
}

.select-wrapper .select ul.menu::-webkit-scrollbar-thumb:hover {
	background-color: gray;
}

.select-wrapper .select ul.menu.showMenu {
	max-height: 200px;
	overflow: auto;
	height: auto;
}

.select-wrapper .select ul li {
	padding: 8px 10px;
	border-top: 1px solid #ddd;
	color: #666;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1.4em;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	border-bottom: 1px dotted #feeedf;
}

.select-wrapper .select ul li:hover {
	padding-left: 20px;
	color: #816f7f;
	background: #feeedf;
}

.video-wrapper .video-container {
	background-color: #fff;
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	border-top: none;
	border-right: none;
}

.video-wrapper .video-container .video-wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	flex: 1;
}

.video-wrapper .video-container .video-wrap .video {
	width: 100%;
	min-height: 255px;
	background: #f1f1f1;
}

@media only screen and (max-width: 600px) {
	.video-wrapper .video-container .video-wrap .video {
		min-height: auto;
	}
}

.video-wrapper .video-container .video-wrap .video iframe {
	min-height: 390px;
}

@media only screen and (max-width: 767px) {
	.video-wrapper .video-container .video-wrap .video iframe {
		min-height: 300px;
	}
}

.video-wrapper .video-container .video-wrap .video-content {
	padding: 10px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	flex-wrap: wrap;
}

@media only screen and (min-width: 1800px) {
	.video-wrapper .video-container .video-wrap .video-content {
		padding: 30px 25px 0;
	}
}

.video-wrapper .video-container .video-wrap .video-content h2 {
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

@media only screen and (min-width: 1800px) {
	.video-wrapper .video-container .video-wrap .video-content h2 {
		font-size: 1.7rem;
	}
}

.video-wrapper .video-container .video-wrap .video-content h2 a {
	color: #1a1a1a;
}

.video-wrapper .video-container .video-wrap .video-content .inner-content {
	margin-top: auto;
}

.video-wrapper .video-container .video-wrap .video-content p {
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.video-wrapper .video-container .video-wrap .video-content p {
		font-size: .9rem;
		line-height: 24px;
	}
}

.video-wrapper .video-container .video-wrap .video-content small {
	font-weight: 600;
}

.video-wrapper .video-container .video-wrap .video-content ul li {
	display: inline-block;
	font-weight: 600;
	padding-right: 6px;
	font-size: .8rem;
}

@media only screen and (min-width: 1800px) {
	.video-wrapper .video-container .video-wrap .video-content ul li {
		font-size: .7rem;
	}
}

.video-wrapper .video-container .video-wrap .video-content ul li:nth-of-type(2n) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

@media only screen and (max-width: 655px) {
	.video-wrapper .video-container .video-wrap .video-content ul li:nth-of-type(2n) {
		padding-left: 8px;
	}
}

.video-wrapper .select-wrapper {
	margin: 24px 0 0 0;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.video-wrapper .select-wrapper {
		margin: 20px 0 0 0;
	}
}

@media only screen and (max-width: 655px) {
	.video-wrapper .select-wrapper .select-video {
		transition: all .1s ease-in;
		opacity: 0;
		height: 0;
	}
	
	.video-wrapper .select-wrapper .select-video.open {
		opacity: 1;
		height: auto;
		margin-top: 15px;
	}
}

@media only screen and (min-width: 1800px) {
	.video-wrapper .select-wrapper.border {
		padding-bottom: 30px !important;
	}
}

.video-wrapper .select-wrapper.border-reverse:before {
	width: 25%;
	background: #621755;
}

.video-wrapper .select-wrapper.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.video-wrapper .select.select-sm {
	position: relative;
}

.video-wrapper .select.select-sm .dropdownbox {
	display: none;
}

@media only screen and (max-width: 767px) {
	.video-wrapper .select.select-sm .dropdownbox {
		display: block;
		padding: 10px 8px;
		cursor: pointer;
	}
}

.video-wrapper .select.select-sm .dropdownbox span {
	color: #666;
}

@media only screen and (max-width: 767px) {
	.video-wrapper .select {
		box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
		border: 1px solid #f2f2f2;
		margin-bottom: 10px;
		display: inline-block;
		vertical-align: top;
		width: 100%;
		padding: 0;
		max-width: 100%;
	}
	
	.video-wrapper .select.select-sm .dropdownbox span:after {
		font-family: "icomoon";
		content: "";
		position: absolute;
		right: 10px;
		color: #f06638;
		font-size: .7rem;
		font-weight: 600;
		top: 14px;
	}
	
	.video-wrapper .select.select-sm .dropdownbox span.rotate:after {
		transform: rotate(180deg);
	}
	
	.video-wrapper .select ul {
		position: relative;
	}
	
	.video-wrapper .select ul li {
		padding: 8px 10px;
		border-top: 1px solid #ddd;
		color: #666;
		cursor: pointer;
		width: 100%;
		box-sizing: border-box;
	}
}

.video-wrapper .banner-bottom .overlay-content .banner-content h4 {
	color: #621755;
}

@media only screen and (max-width: 655px) {
	.video-wrapper .filter-select {
		margin-top: 15px;
	}
}

.tabs {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.tabs {
		display: block;
	}
	
	.tabs.menu {
		height: 0;
		overflow: hidden;
	}
	
	.tabs.menu.showMenu {
		height: auto;
	}
}

.tabs .tab-link {
	padding-right: 20px;
	color: #666;
	font-weight: 600;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.tabs .tab-link {
		font-weight: 300;
	}
	
	.tabs .tab-link:hover {
		padding-left: 20px;
		color: #816f7f;
		background: #feeedf;
	}
}

.tabs .tab-link.current {
	color: #cea46d;
}

.tab-content {
	display: none;
}

.tab-content.current {
	display: block;
}

.collapsible {
	box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 10px;
	max-width: 25%;
	width: 25%;
}

@media only screen and (max-width: 767px) {
	.collapsible {
		width: 100%;
		max-width: 100%;
	}
}

.collapsible span {
	display: block;
	padding: 10px;
	cursor: pointer;
	color: #666;
	font-size: .9rem;
	position: relative;
}

.collapsible span:after {
	font-family: "icomoon";
	content: "";
	position: absolute;
	right: 10px;
	color: #ea8123;
	font-size: .9rem;
	font-weight: 600;
	top: 12px;
}

.collapsible ul {
	display: none;
}

.collapsible ul li {
	padding: 8px 10px;
	border-top: 1px solid #ddd;
	color: #666;
	cursor: pointer;
}

.collapsible ul li:hover {
	background: #f1f1f1;
}

.filter-select {
	display: none;
	width: 100%;
	position: relative;
	margin-top: 6px;
	margin-bottom: 6px;
}

.filter-select span {
	color: #ea8123;
	font-weight: 600;
	font-size: 1.2rem;
}

.filter-select .close {
	position: absolute;
	right: 0px;
}

.filter-select .close:after {
	font-family: "icomoon";
	content: "+";
	color: #ea8123;
	font-size: 2rem;
	font-weight: 700;
	top: 0px;
	transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
}

.filter-select.show .close:after {
	content: "";
	font-size: 1rem;
}

@media only screen and (max-width: 767px) {
	.filter-select {
		display: flex;
		align-items: center;
	}
}

.multiple-layout.published-articles .title {
	margin-top: 10px;
	margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
	.multiple-layout.published-articles .title {
		font-size: 1.6rem;
	}
}

.multiple-layout.published-articles #recent_news .form-btn .article_form {
	margin-top: 0;
}

@media only screen and (min-width: 1800px) {
	.multiple-layout.published-articles #recent_news .form-btn .article_form .primary_btn {
		padding: 16px 38px;
	}
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .published-img {
		max-height: 310px;
	}
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .published-img img {
	width: 100%;
}

@media only screen and (max-width: 655px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .published-img img {
		height: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content {
		padding: 15px;
	}
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content .readmore_btn {
	font-size: .8rem;
	float: right;
	font-weight: 600;
	color: #621755;
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content h2 {
	margin-top: 0;
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content h2 a {
	color: #621755;
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content ul {
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content ul {
		margin-bottom: 12px;
	}
}

@media only screen and (min-width: 1800px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content ul li a {
		font-size: .7rem;
		vertical-align: top;
	}
}

@media only screen and (max-width: 600px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content ul li {
		font-size: .9rem;
	}
}

@media only screen and (min-width: 1800px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content ul li:first-child {
		height: 18px;
	}
}

.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content .view-pdf {
	margin-bottom: 0;
}

@media only screen and (max-width: 655px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content .view-pdf {
		font-size: .8rem;
	}
}

@media only screen and (mim-width: 1800px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (max-width: 600px) {
	.multiple-layout.published-articles ul li .blog-wrap .published-wrap .block-content .view-pdf a {
		font-size: .9rem;
	}
}

.multiple-layout.published-articles .select-wrapper {
	width: 100%;
	margin: 0 0 10px 0;
}

.multiple-layout.published-articles .select-wrapper.border-reverse:before {
	width: 25%;
	background: #621755;
}

.multiple-layout.published-articles .select-wrapper.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.multiple-layout.published-articles .select-wrapper .select {
	margin-top: 10px;
}

.multiple-layout.publications {
	margin-bottom: 15px;
}

@media (max-width: 640px) {
	.multiple-layout.publications {
		margin-bottom: 0;
	}
}

.multiple-layout.publications .select-wrapper {
	margin: 0;
}

.multiple-layout.publications .select-wrapper.border-reverse:before {
	width: 25%;
	background: #621755;
}

.multiple-layout.publications .select-wrapper.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.multiple-layout.publications .select-wrapper .title {
	margin-bottom: 18px;
}

@media (max-width: 640px) {
	.multiple-layout.publications .select-wrapper .title {
		margin-bottom: 12px;
	}
}

@media (max-width: 640px) {
	.multiple-layout.publications .select-wrapper .select {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.multiple-layout.publications ul li {
		padding-top: 25px;
	}
}

.multiple-layout.publications ul li .blog-wrap {
	flex-direction: inherit;
}

.multiple-layout.publications ul li .blog-wrap .full-img img {
	width: 100%;
}

.multiple-layout.publications ul li .blog-wrap .block-content {
	padding-left: 0;
}

.multiple-layout.publications ul li .blog-wrap .block-content ul.download li {
	border-right: none;
	border-left: none;
}

.multiple-layout.publications ul li .blog-wrap .block-content ul.download li a {
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.multiple-layout.publications .article_form {
	margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
	.multiple-layout.publications .article_form {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 600px) {
	.published-articles.news ul li {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}
}

.published-articles.news ul li .blog-wrap .block-content {
	padding-top: 10px;
	padding-bottom: 15px;
}

.published-articles.news ul li .blog-wrap .block-content small {
	margin-top: auto;
	font-weight: 600;
}

@media only screen and (max-width: 600px) {
	.published-articles.news ul li .blog-wrap .block-content ul li {
		font-size: .8rem !important;
	}
	
	.published-articles.news ul li .blog-wrap .block-content ul li:first-child {
		padding-left: 0 !important;
	}
}

@media (min-width: 1800px) {
	.published-articles.news ul li .blog-wrap .block-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.published-articles.news .spacing {
	padding-bottom: 0;
}

@media only screen and (max-width: 655px) {
	.padding-xs-0 {
		padding: 0;
	}
	
	.padding-left-xs-0 {
		padding-left: 0 !important;
	}
	
	.padding-right-xs-0 {
		padding-right: 0;
	}
	
	.padding-bottom-xs-0 {
		padding-bottom: 0;
	}
	
	.padding-top-xs-0 {
		padding-top: 0;
	}
	
	.pl-xs-14 {
		padding-left: 14px !important;
	}
	
	.pr-xs-14 {
		padding-left: 14px;
	}
	
	.pt-xs-14 {
		padding-top: 14px;
	}
	
	.pb-xs-14 {
		padding-bottom: 14px !important;
	}
	
	.pt-xs-0 {
		padding-top: 0px !important;
	}
	
	.pt-xs-30, .cam-innovations .mobile-device.contact-us {
		padding-top: 30px;
	}
	
	.pb-xs-30, .cam-innovations .mobile-device.contact-us {
		padding-bottom: 30px;
	}
	
	.margin-top-xs-20 {
		margin-top: 20px;
	}
	
	.margin-left-xs-14 {
		margin-left: 14px;
	}
	
	.margin-right-xs-14 {
		margin-right: 14px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.mt-md-50 {
		margin-top: 50px;
	}
	
	.pl-md-14 {
		padding-left: 14px !important;
	}
	
	.pl-md-0 {
		padding-left: 0 !important;
	}
	
	.pb-md-0 {
		padding-bottom: 0;
	}
	
	.pr-md-14 {
		padding-right: 14px;
	}
	
	.pl-md-14 {
		padding-left: 14px;
	}
}

.view-pdf {
	margin-bottom: 15px;
}

.view-pdf a {
	color: #ea8123;
	font-weight: 700;
}

@media only screen and (min-width: 1800px) {
	.view-pdf a {
		font-size: .7rem;
	}
}

.form-btn {
	text-align: center;
	margin: 20px 0;
}

.pacific-blue {
	background: #00a6e0;
}

.iris-blue {
	background: #00a9e2;
}

.cam-purple {
	background: #621755;
}

.fig-bg {
	background: #f8f4db;
}

.snuff {
	background: #f3efd4;
}

.outregeous-orange-bg {
	background-color: #f05a22;
}

.outregeous-orange, .cam_dispute_resolution {
	color: #f05a22;
}

.vivid-blue, .cam_corporate {
	color: #3fa8f4;
}

.golden {
	color: #e37f26;
}

.pink {
	color: #b2b2b2;
}

.pumpkin {
	color: #f26522;
}

.gray {
	color: gray;
}

.atlantis, .cam_market {
	color: #a6ce39;
}

.cam-orange, .cam_finance {
	color: #ea8123;
}

.gray20 {
	color: #333;
}

.cam-bg-primary {
	background: rgba(98, 23, 85, .1);
}

body {
	position: relative;
}

body.open {
	height: 100%;
	overflow: hidden;
	width: 100%;
	position: fixed;
}

.overlay-container {
	opacity: 0;
	top: 0%;
	left: 0%;
	position: fixed;
	background-color: #000;
	z-index: 999;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.overlay-container.open {
	width: 100%;
	height: 100%;
	opacity: .7;
}

.popup-wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 5px;
	width: 50%;
	box-sizing: border-box;
	z-index: 99999;
	display: none;
}

.popup-wrapper.open {
	display: block;
}

@media only screen and (max-width: 1024px) {
	.popup-wrapper {
		width: 90%;
	}
}

.popup-wrapper .form {
	border: 3px solid #621755;
	padding: 30px 25px;
}

.popup-wrapper .form .overlay-content h2 {
	color: #621755;
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	.popup-wrapper .form .overlay-content h2 {
		font-size: 1.5rem;
	}
}

.popup-wrapper .form .overlay-content h6 {
	color: #621755;
	font-size: 1rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
}

.popup-wrapper .form .overlay-content p {
	margin-top: 0;
	font-size: .9rem;
	color: #1a1a1a;
}

.popup-wrapper .form .overlay-content .input-wrapper {
	width: 300px;
	box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 12px;
	display: inline-block;
	box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
	.popup-wrapper .form .overlay-content .input-wrapper {
		width: 100%;
	}
}

.popup-wrapper .form .overlay-content .input-wrapper input {
	border: none;
	width: 100%;
	color: #1a1a1a;
}

.popup-wrapper .form .overlay-content .input-wrapper input::placeholder {
	color: #1a1a1a;
	opacity: 1;
}

.popup-wrapper .form .overlay-content .input-wrapper input:-ms-input-placeholder {
	color: #1a1a1a;
}

.popup-wrapper .form .overlay-content .input-wrapper input::-ms-input-placeholder {
	color: #1a1a1a;
}

.popup-wrapper .form .overlay-content .input-wrapper.password {
	display: flex;
	align-items: center;
	padding-right: 5px;
}

.popup-wrapper .form .overlay-content .input-wrapper.password input {
	width: 90%;
	padding-right: 5px;
}

.popup-wrapper .form .overlay-content .input-wrapper.password img {
	width: 8%;
}

.popup-wrapper .form .overlay-content .btn-wrapper {
	margin-top: 20px;
}

.popup-wrapper .form .overlay-content .btn-wrapper button.forgot-pass {
	background-color: #fff;
	color: #ea8123;
}

.popup-wrapper .form.sign-in {
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.popup-wrapper .form.sign-in {
		display: block;
	}
}

.popup-wrapper .form.sign-in .overlay-content {
	flex-basis: calc(50% - 50px);
	flex-basis: -webkit-calc(50% - 50px);
	flex-basis: -moz-calc(50% - 50px);
}

.popup-wrapper .form.sign-in .overlay-content:first-child {
	padding-right: 50px;
}

@media only screen and (max-width: 767px) {
	.popup-wrapper .form.sign-in .overlay-content:first-child {
		padding-right: 0px;
	}
}

@media only screen and (max-width: 767px) {
	.popup-wrapper .form.sign-in .overlay-content.right-content {
		margin-top: 15px;
	}
}

.popup-wrapper .form.check-mail p {
	color: #621755;
}

.popup-wrapper .form.check-mail h6 {
	margin-top: 20px;
	margin-bottom: 5px;
}

.popup-wrapper .form.check-mail ul li {
	color: #621755;
	line-height: 20px;
	font-size: .9rem;
}

.popup-wrapper .form.check-mail ul li a {
	color: #ea8123;
}

.popup-wrapper .form.reset-password p {
	margin-bottom: 20px;
}

.popup-wrapper .form.reg-complete .btn-wrapper {
	margin-top: 30px;
}

.popup-wrapper .form .checkbox-container {
	margin-bottom: 20px;
}

.popup-wrapper .form .checkbox-container .checkbox-wrapper {
	margin-bottom: 6px;
}

.popup-wrapper .form .checkbox-container .checkbox-wrapper .wpcf7-list-item {
	display: block;
	margin: 0 0 8px 0;
}

.popup-wrapper .form .checkbox-container .checkbox-wrapper .topics .wpcf7-not-valid-tip {
	position: inherit;
	bottom: inherit;
}

.popup-wrapper .form .checkbox-container .checkbox-wrapper label {
	font-size: .9rem;
	color: #621755;
}

.popup-wrapper .form .checkbox-container .checkbox-wrapper label sup {
	font-size: .9rem;
}

.popup-wrapper .form.subscribe {
	position: fixed;
	width: calc(100% - 10px);
	width: -webkit-calc(100% - 10px);
	width: -moz-calc(100% - 10px);
	height: calc(100% - 10px);
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	overflow-y: auto;
}

.popup-wrapper .cancel-popup {
	cursor: pointer;
}

.popup-wrapper .cancel-popup:before {
	font-family: "icomoon";
	content: "";
	position: absolute;
	right: 12px;
	color: #ea8123;
	font-size: 1rem;
	font-weight: 700;
	top: 12px;
	z-index: 2;
}

.popup-wrapper .cancel-popup:after {
	content: "";
	position: absolute;
	right: -6px;
	top: -6px;
	width: 50px;
	height: 50px;
	border-top: 4px solid #d0a56d;
	border-right: 4px solid #d0a56d;
	background: #fff;
}

.our-firm .page-decs {
	margin-top: 0;
	color: #1a1a1a;
	line-height: 26px;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.our-firm .page-decs {
		padding-right: 14px;
		padding-left: 14px;
	}
}

@media only screen and (min-width: 1800px) {
	.our-firm p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (min-width: 768px) {
	.our-firm .equal-height:first-child {
		padding-left: 0;
	}
}

.our-firm .firm-container {
	display: flex;
	flex-direction: column;
	background: #fcf2e9;
	padding-bottom: 18px;
	align-content: flex-start;
}

@media (max-width: 1024px) {
	.our-firm .firm-container {
		flex: 0 0 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 655px) {
	.our-firm .firm-container {
		padding-bottom: 0;
	}
}

.our-firm .firm-container .firm-wrap .firm-img img {
	min-height: 230px;
	width: 100%;
}

@media (max-width: 1024px) {
	.our-firm .firm-container .firm-wrap .firm-img img {
		height: auto;
		min-height: auto;
		width: 100%;
	}
}

@media only screen and (max-width: 500px) {
	.our-firm .firm-container .firm-wrap {
		display: block;
	}
}

.our-firm .firm-container .firm-wrap .firm-content {
	padding: 12px 22px;
}

@media only screen and (max-width: 655px) {
	.our-firm .firm-container .firm-wrap .firm-content {
		flex-basis: 50%;
	}
}

.our-firm .firm-container .firm-wrap .firm-content h2 {
	color: #621755;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 12px;
}

@media only screen and (min-width: 1800px) {
	.our-firm .firm-container .firm-wrap .firm-img img {
		width: 100%;
		max-height: 325px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 600px) {
	.our-firm .firm-container .firm-wrap .firm-img img {
		width: 100%;
	}
}

.our-firm .firm-container .article_form {
	margin-top: auto;
	padding: 10px 22px;
}

@media (max-width: 1024px) {
	.our-firm .firm-container .article_form {
		display: none;
	}
}

.our-firm .firm-img {
	min-height: 230px;
}

.our-firm .firm-img img {
	height: 230px;
	width: 100%;
}

@media (min-width: 1800px) {
	.our-firm .firm-img img {
		height: 300px;
	}
}

@media (max-width: 1024px) {
	.our-firm .firm-img img {
		height: auto;
		min-height: auto;
		width: 100%;
	}
}

.our-firm .tght_leadership {
	padding-bottom: 60px;
	padding-top: 25px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.our-firm .tght_leadership .title {
		padding-right: 0px;
		padding-left: 0px;
	}
}

.our-firm .tght_leadership .tght_leadershi_lst li {
	display: flex;
}

.our-firm .tght_leadership .tght_leadershi_lst li .block-content {
	padding: 40px 20px;
}

@media only screen and (max-width: 655px) {
	.our-firm .tght_leadership .tght_leadershi_lst li .block-content {
		padding: 20px;
	}
}

.our-firm .tght_leadership .tght_leadershi_lst li .block-content small {
	color: #333;
}

.our-firm .tght_leadership .tght_leadershi_lst li .block-content .inner-content small {
	color: gray;
}

.our-firm .tght_leadership .tght_leadershi_lst li .block-content h2 {
	margin-bottom: 23px;
}

@media only screen and (max-width: 655px) {
	.our-firm .tght_leadership .tght_leadershi_lst li .block-content h2 {
		margin-bottom: 15px;
	}
}

.our-firm .tght_leadership h1 {
	margin-bottom: 0px;
}

@media only screen and (max-width: 655px) {
	.our-firm .tght_leadership {
		padding-bottom: 30px;
	}
}

@media only screen and (max-width: 655px) {
	.our-firm .social-contact {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 2px solid #ccc;
		margin-left: 14px;
		margin-right: 14px;
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}
	
	.our-firm .social-contact .download a {
		border: none;
		margin-top: 0;
		padding: 0;
	}
	
	.our-firm .social-contact .print-wrapper {
		display: none;
	}
}

@media only screen and (min-width: 656px) {
	.our-firm .social-contact {
		order: 1;
	}
}

.our-firm .contact-us.mobile-device {
	margin-bottom: 30px;
	margin-top: 30px;
}

.our-firm .contact-us.mobile-device h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.our-firm .contact-us .page-decs {
		font-size: 1.7rem;
		margin-bottom: 25px;
	}
}

.our-firm .contact-us p {
	color: #000;
}

.our-firm .contact-us form {
	margin-top: 20px;
}

.our-firm .contact-us form .input-wrapper {
	padding: 17px 15px;
}

.our-firm .contact-us form .input-wrapper input {
	font-weight: 100;
}

.our-firm-contact h3 {
	padding-top: 0;
}

.offer-wrapper {
	margin-bottom: 15px;
}

.offer-wrapper.offer-wrapper {
	margin-bottom: 5px;
}

.offer-wrapper .title {
	margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.offer-wrapper .title {
		padding-left: 14px;
	}
}

@media only screen and (max-width: 767px) {
	.offer-wrapper .title {
		margin-bottom: 15px;
	}
}

.offer-wrapper .offer h4 {
	margin-top: 0;
	color: #621755;
	font-weight: 600;
	margin-bottom: 14px;
}

@media only screen and (max-width: 767px) {
	.offer-wrapper .offer h4 {
		font-size: 1.2rem;
	}
}

@media only screen and (min-width: 1800px) {
	.offer-wrapper .offer h4 {
		font-size: 1.2rem;
	}
}

.offer-wrapper .offer p {
	margin-bottom: 2px;
	font-weight: 500;
	color: #000;
}

@media only screen and (min-width: 1800px) {
	.offer-wrapper .offer p {
		font-size: 1.2rem;
		line-height: 28px;
	}
}

.offer-wrapper .view {
	color: #ea8123;
	font-weight: 500;
}

@media only screen and (min-width: 1025px) {
	.offer-wrapper .row>div:first-child {
		padding-left: 0;
	}
}

@media only screen and (max-width: 767px) {
	.offer-wrapper .row>div {
		margin-bottom: 10px;
	}
}

.contact-us .page-decs {
	font-weight: 300;
	margin-top: 0;
	padding-left: 0;
}

.contact-us p {
	font-weight: 500;
}

.contact-us .input-wrapper {
	width: 100%;
	box-shadow: 2px -2px 1.5px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	padding: 10px;
	margin-bottom: 12px;
	box-sizing: border-box;
}

@media only screen and (min-width: 1800px) {
	.contact-us .input-wrapper {
		padding: 33px 30px;
		margin-bottom: 20px;
	}
}

.contact-us .input-wrapper input, .contact-us .input-wrapper textarea {
	border: none;
	width: 100%;
	color: #621755;
	font-weight: 300;
}

.contact-us .input-wrapper textarea {
	outline: none;
	resize: none;
	overflow-y: auto;
}

.contact-us .btn-wrapper button {
	background-color: #621755;
	border: none;
	line-height: 1rem;
	padding: 10px 30px;
	color: #fff;
	font-size: .9rem;
	position: relative;
}

@media only screen and (min-width: 1800px) {
	.contact-us .btn-wrapper button {
		padding: 16px 40px;
	}
}

.contact-us.form {
	padding-bottom: 30px;
}

.contact-us.form .page-decs {
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 30px;
}

@media only screen and (min-width: 1800px) {
	.contact-us.form .page-decs {
		margin-top: 30px;
	}
}

.contact-us.form form .input-wrapper {
	background: #fff;
}

.contact-us.form form .input-wrapper input {
	height: 30px;
	line-height: 30px;
}

.contact-us.form form .checkbox-container {
	margin-bottom: 20px;
	margin-top: 20px;
}

.contact-us.form form .checkbox-container .checkbox-wrapper {
	display: flex;
}

.contact-us.form form .checkbox-container .checkbox-wrapper label {
	color: #999;
	font-weight: 300;
}

.contact-us.form form .checkbox-container .checkbox-wrapper label:before {
	border: 1px solid #999;
	top: 2px;
}

.contact-us.form form .checkbox-container .checkbox-wrapper label:after {
	background-color: #999;
	color: #999;
}

.contact-us.form .title {
	margin-bottom: 10px;
	margin-top: 20px;
}

@media only screen and (max-width: 655px) {
	.contact-us.form .title {
		margin-top: 15px;
	}
}

@media only screen and (min-width: 1800px) {
	.contact-us.form .title {
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 600px) {
	.contact-us.form ul li.equal-height {
		padding: 14px 14px;
	}
}

.blog-wrap {
	box-shadow: 3px -3px 2px rgba(0, 0, 0, .2);
	width: 100%;
}

.blog-wrap .contact-wrap .contact-img {
	padding: 0;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .contact-img {
		padding: 30px 30px 25px;
	}
}

.blog-wrap .contact-wrap .contact-img iframe {
	width: 100%;
}

.blog-wrap .contact-wrap .block-content {
	padding: 0 20px 20px 20px;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content {
		padding: 0 30px 30px;
	}
}

.blog-wrap .contact-wrap .block-content h1 {
	color: #621755;
	font-weight: 600;
	margin: 0px 0px 12px;
	font-size: 1.7rem;
	letter-spacing: -.34px;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content h1 {
		margin: 0px 0px 15px;
	}
}

.blog-wrap .contact-wrap .block-content address {
	font-style: normal;
}

.blog-wrap .contact-wrap .block-content address ul li {
	margin-bottom: 0;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content address ul li {
		font-size: .9rem;
		line-height: 24px;
	}
}

.blog-wrap .contact-wrap .block-content address ul li a {
	color: #1a1a1a;
}

.blog-wrap .contact-wrap .block-content .contact-head {
	font-weight: 300;
	margin: 12px 0 18px;
	color: #621755;
	font-size: 1.7rem;
	letter-spacing: -.3px;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content .contact-head {
		font-size: 1.5rem;
		line-height: 56px;
		margin: 3px 0 12px;
	}
}

.blog-wrap .contact-wrap .block-content .contact-person {
	display: flex;
	align-items: center;
	background: rgba(208, 165, 109, .4);
}

@media only screen and (min-width: 1366px) {
	.blog-wrap .contact-wrap .block-content .contact-person {
		height: 165px;
		max-height: 165px;
	}
}

.blog-wrap .contact-wrap .block-content .contact-person .contact-img {
	padding: 0 30px 0 0;
}

@media only screen and (min-width: 1366px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-img {
		height: 165px;
		max-height: 165px;
	}
}

@media only screen and (max-width: 991px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-img {
		padding: 0;
	}
	
	.blog-wrap .contact-wrap .block-content .contact-person .contact-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-info {
		padding: 10px;
	}
}

.blog-wrap .contact-wrap .block-content .contact-person .contact-info h4 a {
	font-size: 1.4rem;
	color: #621755;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 4px;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-info h4 a {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 600px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-info h4 a {
		font-size: 1.3rem;
	}
}

.blog-wrap .contact-wrap .block-content .contact-person .contact-info h5 {
	font-size: 1.2rem;
	color: #621755;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 8px;
}

@media only screen and (max-width: 600px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-info h5 {
		font-size: 1.1rem;
	}
}

.blog-wrap .contact-wrap .block-content .contact-person .contact-info a {
	color: #414042;
	display: block;
	padding-bottom: 4px;
	font-weight: 300;
	word-break: break-all;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .contact-wrap .block-content .contact-person .contact-info a {
		font-size: .8rem;
	}
}

.awards-accolades {
	margin-bottom: 40px;
}

@media only screen and (min-width: 1800px) {
	.awards-accolades {
		margin-bottom: 100px;
	}
}

@media only screen and (max-width: 767px) {
	.awards-accolades .big_search input[type="text"] {
		min-height: 40px;
		line-height: 40px;
		padding: 10px 20px;
	}
}

.awards-accolades .select-wrapper {
	margin: 0;
}

.awards-accolades .select-wrapper.border-reverse:before {
	width: 25%;
	background: #621755;
}

.awards-accolades .select-wrapper.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

@media only screen and (max-width: 655px) {
	.awards-accolades .select-wrapper .select-award {
		transition: all .1s ease-in;
		opacity: 0;
		height: 0;
	}
	
	.awards-accolades .select-wrapper .select-award.open {
		opacity: 1;
		height: auto;
		margin-top: 15px;
	}
}

.awards-accolades .filter_result {
	color: #1a1a1a;
	font-size: .9rem;
}

.awards-accolades .filter_result .total_results {
	width: 15%;
	display: inline-flex;
}

@media only screen and (max-width: 600px) {
	.awards-accolades .filter_result .total_results {
		width: 30%;
	}
}

.awards-accolades .filter_result ul {
	display: inline-flex;
}

.awards-accolades .filter_result ul li {
	margin-right: 15px;
}

.awards-accolades .filter_result ul li span {
	cursor: pointer;
}

.awards-accolades .filter_result ul li span:after {
	content: "";
	font-size: .5rem;
	color: #e37f26;
	font-weight: 600;
	padding-left: 3px;
}

.awards-accolades .bench-mark {
	background-color: #fff;
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	padding: 25px 20px;
}

@media only screen and (max-width: 767px) {
	.awards-accolades .bench-mark {
		padding: 10px;
		box-shadow: 4px -4px 2px rgba(0, 0, 0, .2);
	}
}

.awards-accolades .bench-mark h4 {
	font-weight: 700;
	font-size: 1.6rem;
}

@media only screen and (min-width: 1800px) {
	.awards-accolades .bench-mark h4 {
		font-size: 1.5rem !important;
	}
}

@media only screen and (max-width: 767px) {
	.awards-accolades .bench-mark h4 {
		font-size: 1.4rem;
	}
}

.awards-accolades .bench-mark p {
	font-weight: 500;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

@media only screen and (min-width: 1800px) {
	.awards-accolades .bench-mark p {
		margin-top: 16px;
	}
}

.awards-accolades .bench-mark ul {
	margin-top: 15px;
}

.awards-accolades .bench-mark ul li {
	padding-bottom: 8px;
	position: relative;
	display: flex;
	align-items: baseline;
	line-height: 20px;
}

@media only screen and (min-width: 1800px) {
	.awards-accolades .bench-mark ul li {
		font-size: .8rem;
	}
}

.awards-accolades .bench-mark ul li:before {
	content: "";
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/icons/award.svg");
	width: 10px;
	height: 10px;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 10px;
}

.awards-accolades .filter-select {
	margin: 0;
}

.awards-accolades .filter-select p {
	margin: 0;
}

.awards-accolades .filter-select p .close {
	right: 12px;
}

.banner-bottom.insight-banner {
	margin-bottom: 20px;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom.insight-banner {
		min-height: 600px;
	}
}

.banner-bottom.insight-banner .overlay-wrapper {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/banner-15.png");
}

.banner-bottom.insight-banner .overlay-wrapper.nitro-lazy {
	background-image: none !important;
}

.banner-bottom.insight-banner .overlay-content {
	width: 90%;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom.insight-banner .overlay-content {
		height: 100%;
	}
}

.banner-bottom.insight-banner .overlay-content .banner-content {
	padding: 10px 30px 30px;
	background: rgba(255, 255, 255, .9);
}

@media only screen and (min-width: 1800px) {
	.banner-bottom.insight-banner .overlay-content .banner-content {
		padding: 10px 30px 30px 50px;
	}
}

.banner-bottom.insight-banner .overlay-content .banner-content small {
	font-weight: 600;
}

.banner-bottom.insight-banner .overlay-content .banner-content h4 {
	margin-top: 15px;
	font-size: 2rem;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom.insight-banner .overlay-content .banner-content h4 {
		font-size: 2.5rem;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-bottom.insight-banner .overlay-content .banner-content h4 {
		font-size: 1.5rem;
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.banner-bottom.insight-banner .overlay-content .banner-content p {
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.banner-bottom.insight-banner .overlay-content .banner-content p {
		font-size: 1.2rem;
		line-height: 30px;
		font-weight: 300;
	}
	
	.banner-bottom.insight-banner .overlay-content .banner-content small {
		font-size: .7rem;
	}
}

.insight-wrapper .multiple-layout {
	margin-bottom: 5px;
}

.insight-wrapper .multiple-layout .title {
	margin-bottom: 0px;
	margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
	.insight-wrapper .multiple-layout .title {
		margin-top: 15px;
	}
}

@media only screen and (max-width: 600px) {
	.insight-wrapper .multiple-layout ul>li {
		padding-left: 14px;
		padding-right: 14px;
	}
}

.insight-wrapper .multiple-layout ul>li .blog-wrap {
	flex-direction: inherit;
}

@media only screen and (max-width: 600px) {
	.insight-wrapper .multiple-layout ul>li .blog-wrap {
		box-shadow: 4px -4px 2px rgba(0, 0, 0, .2);
	}
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .multiple-layout ul>li .blog-wrap .full-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	.insight-wrapper .multiple-layout ul>li .blog-wrap .block-content {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.insight-wrapper .multiple-layout ul>li .blog-wrap .block-content ul li:first-child {
		padding-left: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .multiple-layout ul>li .blog-wrap .block-content p {
		font-size: .8rem;
	}
}

.insight-wrapper .multiple-layout ul>li .blog-wrap .block-content ul.download li {
	border-right: none;
}

.insight-wrapper .multiple-layout ul>li .blog-wrap .block-content ul.download li a {
	border: none;
	padding: 0;
	margin: 0;
}

.insight-wrapper .multiple-layout .form-btn {
	margin-bottom: 30px;
}

.insight-wrapper .multiple-layout .form-btn .article_form {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
}

@media only screen and (max-width: 1024px) {
	.insight-wrapper .multiple-layout .insight-published-article .blog-wrap .spacing {
		padding-left: 0px;
		padding-right: 0px;
	}
}

@media only screen and (max-width: 1024px) {
	.insight-wrapper .multiple-layout .insight-published-article .blog-wrap .block-content.spacing {
		padding-right: 14px;
		padding-left: 14px;
	}
}

@media only screen and (max-width: 655px) {
	.insight-wrapper .multiple-layout .insight-published-article .blog-wrap .block-content ul {
		margin-bottom: 10px;
	}
}

.insight-wrapper .bg-gray .multiple-layout .spacing .block-content ul {
	margin-bottom: 20px;
}

.insight-wrapper .video-wrapper {
	margin-bottom: 14px;
}

@media only screen and (max-width: 600px) {
	.insight-wrapper .video-wrapper .video-container {
		box-shadow: 4px -4px 2px rgba(0, 0, 0, .2);
	}
}

.insight-wrapper .video-wrapper .video-container .video-wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	flex: 1;
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video {
	min-height: 414px;
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video img {
	width: 100%;
	max-height: 414px;
	object-fit: cover;
	height: 100%;
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.insight-wrapper .video-wrapper .video-container .video-wrap .video-content {
		padding: 18px 18px 0px 20px;
	}
	
	.insight-wrapper .video-wrapper .video-container .video-wrap .video-content h2 {
		margin-bottom: 10px;
	}
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video-content .inner-content {
	margin-top: auto;
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video-content .inner-content p {
	margin-top: 5px;
	margin-bottom: 0px;
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .video-wrapper .video-container .video-wrap .video-content .inner-content p {
		font-size: .8rem;
		line-height: 24px;
	}
}

.insight-wrapper .video-wrapper .video-container .video-wrap .video-content h2 {
	margin-top: 10px;
	margin-bottom: 16px;
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .video-wrapper .video-container .video-wrap .video-content h2 {
		line-height: 36px;
	}
}

.insight-wrapper .video-wrapper small {
	color: #333;
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .video-wrapper small {
		font-size: .7rem;
	}
}

.insight-wrapper .video-wrapper small.date {
	color: gray;
}

@media only screen and (min-width: 1800px) {
	.insight-wrapper .multi-column-layout .block-content ul li {
		font-size: .7rem;
	}
}

@media only screen and (max-width: 655px) {
	.insight-wrapper .multi-column-layout .block-content {
		padding-left: 20px !important;
	}
}

.publications.event-listing .spacing {
	display: block !important;
}

.publications.event-listing>.row>div {
	padding-bottom: 5px;
}

.publications.event-listing .title {
	margin-bottom: 0;
}

.publications.event-listing .blog-wrap {
	box-shadow: 3px -3px 2px rgba(0, 0, 0, .2);
	border-top: none;
	border-right: none;
}

@media only screen and (max-width: 600px) {
	.publications.event-listing .blog-wrap {
		box-shadow: 4px -4px 2px rgba(0, 0, 0, .2);
	}
}

.publications.event-listing .blog-wrap .block-content .event-icon {
	margin-top: 15px;
}

.publications.event-listing .blog-wrap .block-content h2 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.publications.event-listing .blog-wrap .block-content h2 a {
	color: #000;
}

.publications.event-listing .blog-wrap .block-content h4 {
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1.1rem;
}

.publications.event-listing .blog-wrap .block-content h4 a {
	color: #000;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content h4 {
		font-size: 1.2rem;
		line-height: 28px;
	}
}

.publications.event-listing .blog-wrap .block-content .time-location li {
	display: flex;
	align-items: center;
	border: none;
	font-size: .9rem;
	color: #621755;
	margin-bottom: 8px;
	font-weight: 600;
	padding-top: 0;
}

.publications.event-listing .blog-wrap .block-content .time-location li span {
	padding-left: 10px;
}

.publications.event-listing .blog-wrap .block-content .time-location li:first-child {
	padding-top: 20px;
}

.publications.event-listing .blog-wrap .block-content .time-location li:nth-of-type(2) {
	padding-left: 0;
}

.publications.event-listing .blog-wrap .block-content .time-location li:before {
	content: "";
	width: 20px;
	height: 20px;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 10px;
}

@media only screen and (max-width: 655px) {
	.publications.event-listing .blog-wrap .block-content .time-location li:before {
		width: 22px;
		height: 22px;
	}
}

@media only screen and (max-width: 500px) {
	.publications.event-listing .blog-wrap .block-content .time-location li:before {
		width: 26px;
		height: 26px;
	}
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .time-location li:before {
		width: 24px;
		height: 30px;
	}
}

.publications.event-listing .blog-wrap .block-content .time-location li.time:before {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/icons/clock.svg");
}

.publications.event-listing .blog-wrap .block-content .time-location li.location:before {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/icons/location-sm.svg");
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper {
	margin-top: 12px;
	margin-bottom: 12px;
	display: flex;
	text-align: center;
	position: relative;
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn {
	padding: 5px 6px;
	margin-right: 5px;
	font-weight: 600;
	width: 104px;
	box-sizing: border-box;
	max-height: 36px;
	line-height: 26px;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn {
		max-height: 60px;
		line-height: 42px;
		width: 150px;
	}
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn:last-child {
	margin-right: 0;
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
	background-color: #fff;
	color: #ea8123;
	font-weight: 700;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
		width: 114px;
	}
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover span {
	opacity: 0;
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover .event-calender-listing {
	top: 50%;
	opacity: 1;
	z-index: 1;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover .event-calender-listing {
		right: 0px;
	}
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover:before {
	content: none;
}

.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover:after {
	content: none;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
		font-size: .7rem;
		margin-left: 0px;
	}
}

.publications.event-listing .blog-wrap .block-content .events-calender {
	display: flex;
}

.publications.event-listing .blog-wrap .block-content .events-calender .event-calender-listing {
	z-index: -1;
	margin-bottom: 0;
	position: absolute;
	top: 100%;
	transition: all .2s ease-in;
	opacity: 0;
	transform: translateY(-50%);
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .events-calender .event-calender-listing {
		margin-left: 20px;
	}
}

.publications.event-listing .blog-wrap .block-content .events-calender .event-calender-listing li {
	border: none;
	cursor: pointer;
	display: inline-block;
	padding-top: 6px;
}

@media only screen and (min-width: 1800px) {
	.publications.event-listing .blog-wrap .block-content .events-calender .event-calender-listing li {
		margin-right: 12px;
		padding-top: 0;
	}
}

.bg-white:hover span {
	display: none;
}

.bg-white:hover>.event-calender-listing {
	display: block;
}

.practices-wrapper p {
	margin-top: 18px;
}

@media only screen and (min-width: 1800px) {
	.practices-wrapper p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.practices-wrapper p a {
	color: #ea8123;
}

.practices-wrapper>div {
	padding-left: 0;
}

.practices-wrapper .collapsible-pract {
	padding-left: 0;
	padding-right: 0;
}

.practices-wrapper .collapsible-pract h2 {
	margin: 0;
	font-weight: 600;
	color: #621755;
	font-size: 1.6rem;
	cursor: pointer;
	position: relative;
	display: flex;
}

.practices-wrapper .collapsible-pract h2.open {
	margin-bottom: 20px;
}

@media only screen and (min-width: 1800px) {
	.practices-wrapper .collapsible-pract h2 {
		font-size: 2rem;
	}
}

.practices-wrapper .collapsible-pract h2 span {
	padding-right: 8px;
}

@media only screen and (max-width: 767px) {
	.practices-wrapper .collapsible-pract h2 {
		font-size: 1.4rem;
	}
}

.practices-wrapper .collapsible-pract h2:after {
	content: "+";
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 700;
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.practices-wrapper .collapsible-pract h2:after {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 767px) {
	.practices-wrapper .collapsible-pract h2:after {
		font-size: 20px;
	}
}

.practices-wrapper .collapsible-pract h2.open:after {
	content: "-";
}

.practices-wrapper .collapsible-pract .accord-content {
	display: none;
}

@media only screen and (max-width: 767px) {
	.practices-wrapper .collapsible-pract .accord-content {
		margin-top: 18px;
	}
}

.practices-wrapper .collapsible-pract .accord-content p {
	color: #656565;
	margin-top: 14px;
	font-weight: 300;
}

.practices-wrapper .collapsible-pract .accord-content p:last-child {
	margin-bottom: 0;
}

.practices-wrapper .collapsible-pract .accord-content ul {
	margin-top: 10px;
}

.practices-wrapper .collapsible-pract .accord-content ul li {
	margin-bottom: 8px;
	display: flex;
}

.practices-wrapper .collapsible-pract .accord-content ul li a {
	color: #656565;
}

@media only screen and (min-width: 1800px) {
	.practices-wrapper .collapsible-pract .accord-content ul li {
		font-size: 1.2rem;
		line-height: 48px;
	}
}

.practices-wrapper .collapsible-pract .accord-content ul li:last-child {
	margin-bottom: 0;
}

.practices-wrapper .collapsible-pract .accord-content ul li:before {
	content: "•";
	color: #656565;
}

.practices-wrapper .collapsible-pract.border.border-reverse:before {
	width: 25%;
	background: #621755;
	height: 3px;
}

.practices-wrapper .collapsible-pract.border.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.practices-wrapper .collapsible-pract:last-child {
	margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.blog .page-decs {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.blog .blog-wrapper .select.select-sm {
		box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
		border: 1px solid #f2f2f2;
		margin-bottom: 10px;
		display: inline-block;
		vertical-align: top;
		width: 100%;
		padding: 0;
		max-width: 100%;
		position: relative;
	}
	
	.blog .blog-wrapper .select.select-sm .dropdownbox span:after {
		font-family: "icomoon";
		content: "";
		position: absolute;
		right: 10px;
		color: #f06638;
		font-size: .7rem;
		font-weight: 600;
		top: 14px;
	}
	
	.blog .blog-wrapper .select.select-sm .dropdownbox span.rotate:after {
		transform: rotate(180deg);
	}
}

.blog .blog-wrapper .select.select-sm .dropdownbox {
	display: none;
}

.blog .blog-wrapper .select.select-sm .dropdownbox span {
	color: #666;
}

@media only screen and (max-width: 767px) {
	.blog .blog-wrapper .select.select-sm .dropdownbox {
		display: block;
		padding: 10px 8px;
		cursor: pointer;
		background: #fff;
	}
}

@media only screen and (max-width: 767px) {
	.blog .blog-wrapper .select.select-sm .tabs {
		background: #fff;
	}
	
	.blog .blog-wrapper .select.select-sm .tabs li {
		padding: 8px 10px;
		border-top: 1px solid #ddd;
		color: #666;
		cursor: pointer;
		font-size: 1rem;
		line-height: 1.4em;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
		border-bottom: 1px dotted #feeedf;
	}
	
	.blog .blog-wrapper .select.select-sm .tabs li:hover {
		padding-left: 20px;
		color: #816f7f;
		background: #feeedf;
	}
}

.blog .select-wrapper {
	margin: 24px 0 10px;
}

@media only screen and (min-width: 1800px) {
	.blog .select-wrapper {
		margin: 34px 0 15px;
		padding-bottom: 25px;
	}
}

@media only screen and (max-width: 767px) {
	.blog .select-wrapper {
		margin: 12px 0 10px;
	}
}

.blog .select-wrapper.border.border-reverse:before {
	width: 25%;
	background: #621755;
}

.blog .select-wrapper.border.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.blog.blog-wrapper .blog-wrap {
	border-top: 0;
	border-right: 0;
	display: flex;
	flex-direction: column;
}

.blog.blog-wrapper .blog-wrap .block-content {
	padding-top: 20px;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	flex: 1;
}

.blog.blog-wrapper .blog-wrap .block-content .readmore_btn {
	font-size: .8rem;
	font-weight: 600;
	color: #621755;
	line-height: 20px;
	float: left;
	margin-top: 20px;
}

@media only screen and (min-width: 1800px) {
	.blog.blog-wrapper .blog-wrap .block-content {
		padding: 32px 20px 36px;
	}
}

.blog.blog-wrapper .blog-wrap .block-content ul li {
	display: inline-block;
	font-weight: 600;
	padding-right: 6px;
	font-size: .85rem;
}

.blog.blog-wrapper .blog-wrap .block-content ul li:nth-of-type(2n) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

.blog.blog-wrapper .blog-wrap .block-content h2 {
	font-weight: 600;
	margin: 15px 0 5px;
}

.blog.blog-wrapper .blog-wrap .block-content h2 a {
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.blog.blog-wrapper .blog-wrap .block-content h2 {
		font-size: 1.7rem;
		line-height: 36px;
	}
}

.blog.blog-wrapper .blog-wrap .block-content .info {
	margin-top: auto;
}

.blog.blog-wrapper .blog-wrap .block-content .info h2 a {
	color: #1a1a1a;
}

.blog.blog-wrapper .blog-wrap .block-content .info p {
	font-weight: 300;
	line-height: 24px;
}

.blog.blog-wrapper .blog-wrap .block-content .info small {
	font-weight: 600;
}

.blog.blog-wrapper.cam-primary-color {
	margin-bottom: 20px;
	padding-bottom: 40px;
}

.blog.blog-wrapper .title {
	margin-bottom: 0;
}

@media only screen and (min-width: 1800px) {
	.blog .form-btn {
		margin: 40px 0;
	}
	
	.blog .form-btn .primary_btn {
		padding: 16px 26px;
	}
}

@media only screen and (min-width: 768px) {
	.trending-topics {
		margin-bottom: 15px;
	}
}

.trending-topics li {
	display: inline-block;
	width: 100%;
	padding-bottom: 10px;
}

@media only screen and (min-width: 1800px) {
	.trending-topics li {
		font-size: 1.2rem;
	}
}

.trending-topics li a {
	color: #656565;
}

@media only screen and (max-width: 767px) {
	.trending-topics li {
		width: 100%;
		display: block;
	}
}

.trending-topics li:before {
	content: "•";
	color: #656565;
}

.newsletter .title {
	margin-bottom: 0;
}

.newsletter ul li .blog-wrap {
	box-shadow: 2px -2px 1px rgba(0, 0, 0, .2);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

@media only screen and (max-width: 600px) {
	.newsletter ul li .blog-wrap {
		box-shadow: 2px -2px 2px rgba(0, 0, 0, .2);
	}
}

.newsletter ul li .blog-wrap .block-content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	flex-grow: 1;
}

.newsletter ul li .blog-wrap .block-content .event-icon {
	margin-bottom: 25px;
}

.newsletter ul li .blog-wrap .block-content small {
	font-weight: 600;
	color: #333;
}

.newsletter ul li .blog-wrap .block-content h4 {
	font-size: 1.4rem;
	color: #621755;
	margin-top: 10px;
	font-weight: 600;
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.newsletter ul li .blog-wrap .block-content h4 {
		font-size: 1.5rem;
		line-height: 36px;
	}
}

.newsletter ul li .blog-wrap .block-content .align-bottom {
	margin-top: auto;
}

.newsletter ul li .blog-wrap .block-content .align-bottom ul {
	margin-bottom: 15px;
}

.newsletter ul li .blog-wrap .block-content .align-bottom ul li {
	font-weight: 600;
	color: #1a1a1a;
}

.newsletter ul li .blog-wrap .block-content .align-bottom ul li:first-child {
	border-right: none;
}

.newsletter ul li .blog-wrap .block-content .align-bottom>a {
	display: inline-block;
}

.newsletter .form-btn {
	margin-top: 10px;
}

.newsletter .form-btn .article_form {
	margin-top: 0px;
}

.newsletter .form-btn .article_form .primary_btn {
	padding: 10px 30px;
}

@media only screen and (min-width: 1800px) {
	.newsletter .form-btn .article_form .primary_btn {
		padding: 16px 36px;
	}
}

.newsletter.multiple-layout {
	margin-bottom: 0px;
}

.bg-icon {
	max-height: 115px;
	height: 115px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding-left: 14px;
	padding-right: 14px;
}

@media only screen and (max-width: 767px) {
	.bg-icon {
		margin: 0;
	}
}

.profile-wrapper .tab-container {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.profile-wrapper .tab-container {
		display: block;
	}
}

.profile-wrapper .tab-container .tab-list {
	flex-basis: 25%;
	background: rgba(98, 23, 85, .1);
}

@media only screen and (min-width: 1025px) and (max-width: 1399px) {
	.profile-wrapper .tab-container .tab-list {
		flex-basis: 30%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.profile-wrapper .tab-container .tab-list {
		flex-basis: 25%;
	}
}

@media only screen and (max-width: 767px) {
	.profile-wrapper .tab-container .tab-list {
		padding: 20px 10px;
	}
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-list {
		padding: 40px 10px 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-list {
		flex-basis: 22%;
	}
}

.profile-wrapper .tab-container .tab-list .tabs {
	padding-left: 32%;
	padding-top: 40px;
	display: block;
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-list .tabs {
		display: flex;
	}
}

@media only screen and (max-width: 767px) {
	.profile-wrapper .tab-container .tab-list .tabs {
		padding-top: 0;
		padding-left: 20px;
	}
}

.profile-wrapper .tab-container .tab-list .tabs .tab-link {
	font-weight: 300;
	font-size: 1.2rem;
	margin-bottom: 15px;
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-list .tabs .tab-link {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
}

.profile-wrapper .tab-container .tab-list .tabs .tab-link:hover {
	padding: 0;
}

@media only screen and (max-width: 767px) {
	.profile-wrapper .tab-container .tab-list .tabs .tab-link {
		margin-bottom: 10px;
	}
}

.profile-wrapper .tab-container .tab-list .tabs .tab-link:last-child {
	margin-bottom: 0;
}

.profile-wrapper .tab-container .tab-list .tabs .tab-link.current {
	font-weight: 700;
	background: none;
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-list .tabs .tab-link.current {
		border-bottom: 2px solid #ccc;
		padding-bottom: 6px;
		padding-right: 0;
		margin-right: 15px;
	}
	
	.profile-wrapper .tab-container .tab-list .tabs .tab-link.current:last-child {
		margin-right: 0;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper {
	flex-basis: 75%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.profile-wrapper .tab-container .tab-content-wrapper {
		flex-basis: 70%;
	}
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-content-wrapper {
		margin-top: 20px;
		margin-bottom: 30px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content {
	padding-left: 30px;
	display: none;
	background: #fff;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.current {
	display: block;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form {
		padding-top: 20px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form {
		padding-top: 70px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper {
	background: #fff;
	width: 50%;
	box-shadow: 2px -2px 1px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	padding: 10px;
	margin-bottom: 16px;
	box-sizing: border-box;
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper {
		width: 41%;
		padding: 24px 14px;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper {
		width: 70%;
	}
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper {
		width: 96%;
	}
}

@media only screen and (max-width: 500px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper {
		width: 92%;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper input {
	border: none;
	width: 100%;
	color: #1a1a1a;
	height: 30px;
	line-height: 30px;
	font-weight: 300;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper.password {
	display: flex;
	align-items: center;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper.password .input {
	width: 90%;
	padding-right: 10px;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .input-wrapper.password img {
	width: 5%;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .btn-wrapper {
	margin-top: 30px;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .btn-wrapper button {
	outline: none;
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.profile-info form .btn-wrapper button {
		padding: 15px 28px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark {
	width: 88%;
	padding-left: 20px;
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark {
		padding-left: 30px;
	}
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark {
		padding-left: 30px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark h2 {
	padding-top: 40px;
}

@media only screen and (max-width: 655px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark h2 {
		padding-top: 20px;
	}
	
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark h2:first-child {
		padding-top: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark h2 {
		margin-bottom: 24px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li.border.border-reverse:before {
	width: 25%;
	background: #621755;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li.border.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li h3 {
	color: #621755;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 30px;
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li h3 {
		font-size: 1.5rem;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li p {
	margin-top: 10px;
}

@media only screen and (min-width: 1800px) {
	.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.profile-wrapper .tab-container .tab-content-wrapper .tab-content.bookmark ul li a {
	display: inline-block;
}

.video-detail-container .video iframe {
	min-height: 500px;
}

@media only screen and (min-width: 1800px) {
	.video-detail-container .video iframe {
		min-height: 780px;
	}
}

@media only screen and (max-width: 767px) {
	.video-detail-container .video iframe {
		min-height: 300px;
	}
}

@media only screen and (min-width: 768px) {
	.video-detail-container .video-wrapper .social-contact {
		order: 1;
	}
}

.video-detail-container .video-wrapper .page-decs.large {
	margin-top: 0;
}

.video-detail-container .video-wrapper ul:not(.social):not(.comment-list):not(.video) li {
	display: inline-flex;
	color: gray;
	padding-right: 5px;
	font-weight: 600;
}

.video-detail-container .video-wrapper ul:not(.social):not(.comment-list):not(.video) li:first-child {
	border-right: 1px solid gray;
}

.video-detail-container .video-wrapper ul:not(.social):not(.comment-list):not(.video).date-time {
	padding-top: 15px;
}

.video-detail-container .video-wrapper ul:not(.social):not(.comment-list):not(.video).date-time li a {
	color: gray;
}

.video-detail-container .video-wrapper h2 {
	color: #621755;
	font-weight: 300;
}

.video-detail-container .video-wrapper.border.border-reverse:before {
	width: 25%;
	background: #621755;
}

@media only screen and (min-width: 768px) {
	.video-detail-container .video-wrapper.border.border-reverse:before {
		margin-right: 14px;
	}
}

.video-detail-container .video-wrapper.border.border-reverse:after {
	width: 74.98%;
	opacity: .7;
}

@media only screen and (min-width: 768px) {
	.video-detail-container .video-wrapper.border.border-reverse:after {
		margin-left: 14px;
		width: 71.98%;
	}
}

.video-detail-container .video-wrapper.cam-bg-primary {
	padding-bottom: 30px;
}

.video-detail-container .video-wrapper.cam-bg-primary .title {
	margin-bottom: 10px;
	margin-top: 20px;
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li:first-child {
	border-right: none;
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap {
	border-top: none;
	border-right: none;
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-video iframe {
	min-height: 400px;
}

@media only screen and (max-width: 767px) {
	.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-video iframe {
		min-height: 300px;
	}
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-content {
	padding: 20px;
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-content ul li:first-child {
	border-right: 1px solid gray;
}

@media only screen and (max-width: 600px) {
	.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-content ul li {
		font-size: .95rem;
	}
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-content h2 {
	font-weight: 600;
	color: #1a1a1a;
}

.video-detail-container .video-wrapper.cam-bg-primary ul>li .blog-wrap .block-content p {
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.video-detail-container .video-wrapper.cam-bg-primary ul li .blog-wrap .block-content ul li {
		font-size: .7rem;
	}
}

@media only screen and (min-width: 1800px) {
	.video-detail-container .video-wrapper p {
		font-size: .9rem;
		line-height: 30px;
	}
}

@media only screen and (max-width: 655px) {
	.video-detail-container .video-wrapper .social-contact.mobile-device {
		border-bottom: 1px solid #f1f1f1;
		display: flex !important;
		justify-content: space-between;
		align-items: center;
	}
}

.video-detail-container .video-wrapper .social-contact.mobile-device .social-wrapper {
	border: none;
}

.video-detail-container .video-wrapper .social-contact.mobile-device .download a {
	border: none;
	padding: 10px 0;
	margin-top: 0;
}

@media only screen and (max-width: 655px) {
	.video-detail-container .video-wrapper .contact_list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.video-detail-container .video-wrapper .contact_list .profile {
		flex-basis: calc(50% - 10px);
		flex-basis: -webkit-calc(50% - 10px);
		flex-basis: -moz-calc(50% - 10px);
	}
	
	.video-detail-container .video-wrapper .contact_list .profile:first-child {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 500px) {
	.video-detail-container .video-wrapper .contact_list {
		display: block;
	}
	
	.video-detail-container .video-wrapper .contact_list .profile:first-child {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 655px) {
	.video-detail-container .video-wrapper .border-top {
		margin-top: 15px;
		padding-bottom: 15px;
	}
}

@media only screen and (min-width: 656px) {
	.video-detail-container .video-wrapper .border-top:before {
		content: none;
	}
}

.video-detail-container .video-wrapper .border-top:after {
	height: 3px;
}

@media only screen and (min-width: 656px) {
	.video-detail-container .video-wrapper .border-top:after {
		content: none;
	}
}

.comments .title {
	margin-bottom: 5px;
}

.comments .page-decs {
	margin-bottom: 25px;
	color: #1a1a1a;
	line-height: 28px;
	font-size: 1.5rem;
}

@media only screen and (min-width: 1800px) {
	.comments .page-decs {
		line-height: 40px !important;
		font-size: 1.7rem;
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 768px) {
	.comments .page-decs {
		padding-right: 100px;
	}
}

.comments form .input-wrapper {
	width: 100%;
	box-shadow: 2px -2px 1px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	padding: 10px;
	margin-bottom: 12px;
	box-sizing: border-box;
}

.comments form .input-wrapper textarea {
	width: 100%;
	outline: none;
	resize: none;
	border: none;
}

.comments form .btn-wrapper {
	text-align: right;
}

.comments form .btn-wrapper .primary_btn {
	padding: 10px 30px;
}

@media only screen and (min-width: 1800px) {
	.comments form .btn-wrapper .primary_btn {
		padding: 15px 40px;
	}
}

.comments h4 {
	color: #621755;
	font-size: 1.3rem;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: 700;
}

@media only screen and (min-width: 1800px) {
	.comments h4 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
}

.comments .comment-list>li {
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.comments .comment-list>li {
		font-size: .7rem;
	}
}

.comments .comment-list>li:first-child {
	border-right: none !important;
}

.comments .comment-list>li.border.border-reverse:after {
	width: 94.6%;
}

.comments .comment-list>li:last-child.border:before {
	content: none;
}

.comments .comment-list>li:last-child.border:after {
	content: none;
}

@media only screen and (min-width: 1800px) {
	.comments p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (max-width: 655px) {
	.blog-detail-container .contact_list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.blog-detail-container .contact_list .profile {
		flex-basis: calc(50% - 10px);
		flex-basis: -webkit-calc(50% - 10px);
		flex-basis: -moz-calc(50% - 10px);
	}
	
	.blog-detail-container .contact_list .profile:first-child {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 500px) {
	.blog-detail-container .contact_list {
		display: block;
	}
	
	.blog-detail-container .contact_list .profile:first-child {
		margin-right: 0px;
	}
}

.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li {
	display: inline-block;
	color: gray;
	padding-right: 5px;
	font-weight: 600;
	border-right: 1px solid gray;
}

@media only screen and (max-width: 655px) {
	.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li {
		line-height: 21px;
		border-right: 2px solid gray;
	}
}

.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li ul li {
	border-right: none;
}

.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li ul li:nth-of-type(2n) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li {
		font-size: .7rem;
	}
}

.blog-detail-container .blog-wrapper ul:not(.social):not(.print-wrapper) li:last-child {
	border-right: none;
}

@media only screen and (min-width: 768px) {
	.blog-detail-container .blog-wrapper .social-contact {
		order: 1;
	}
}

@media only screen and (max-width: 767px) {
	.blog-detail-container .blog-wrapper .social-contact {
		margin-top: 20px;
	}
}

.blog-detail-container .blog-wrapper h5 {
	margin-bottom: 5px;
	font-size: 1rem;
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper h5 {
		font-size: .8rem;
	}
}

.blog-detail-container .blog-wrapper .trending-wrapper {
	margin-top: 36px;
}

@media only screen and (max-width: 655px) {
	.blog-detail-container .blog-wrapper .trending-wrapper {
		display: none;
	}
}

.blog-detail-container .blog-wrapper .trending-wrapper h3 {
	font-weight: 300;
	font-size: 1.7rem;
	color: #621755;
	margin-bottom: 30px;
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper .trending-wrapper h3 {
		font-size: 1.5rem;
	}
}

.blog-detail-container .blog-wrapper .trending-wrapper .trending-topics li {
	width: 100%;
	display: block !important;
	border-right: none !important;
	font-weight: 300 !important;
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper .trending-wrapper .trending-topics li {
		font-size: 1.2rem !important;
	}
}

.blog-detail-container .blog-wrapper.comments {
	margin-top: 15px;
	margin-bottom: 15px;
}

@media only screen and (max-width: 655px) {
	.blog-detail-container .blog-wrapper.comments {
		margin-bottom: 30px;
	}
}

.blog-detail-container .blog-wrapper.comments .page-decs {
	margin-top: 12px;
}

.blog-detail-container .blog-wrapper.comments .comment-list>li {
	margin-bottom: 20px;
	border-right: none !important;
}

.blog-detail-container .blog-wrapper.comments .comment-list>li:last-child {
	margin-bottom: 0px;
}

.blog-detail-container .blog-wrapper.comments .comment-list>li a {
	color: gray;
}

.blog-detail-container .blog-wrapper.comments h4 {
	margin-bottom: 20px;
}

.blog-detail-container .blog-wrapper.comments .article_form {
	text-align: right;
}

.blog-detail-container .blog-wrapper.comments .article_form .primary_btn {
	padding: 10px 30px;
}

.blog-detail-container .blog-wrapper .quote-desc .quote {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper .quote-desc .quote {
		margin-top: 40px;
		margin-bottom: 50px;
	}
}

@media only screen and (min-width: 1800px) {
	.blog-detail-container .blog-wrapper p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.blog-detail-container .blog.border.border-reverse:before {
	width: 25%;
	background: #621755;
	height: 3px;
	margin-right: 14px;
}

@media only screen and (max-width: 767px) {
	.blog-detail-container .blog.border.border-reverse:before {
		margin-right: 0px;
		width: 27% !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.blog-detail-container .blog.border.border-reverse:before {
		width: 23% !important;
	}
}

.blog-detail-container .blog.border.border-reverse:after {
	width: 71.98%;
	opacity: .7;
	height: 2px;
	margin-left: 14px;
}

@media only screen and (max-width: 767px) {
	.blog-detail-container .blog.border.border-reverse:after {
		margin-left: 0px;
	}
}

.author {
	margin-top: 60px;
}

@media only screen and (max-width: 655px) {
	.author {
		margin-top: 15px;
	}
}

.author .contact_list .profile .profile_img {
	width: 100%;
}

.author .contact_list .profile .profile_img img {
	width: 100%;
}

.author h2 {
	font-weight: 300;
	color: #621755;
	margin-top: 0;
	font-size: 1.7rem;
}

@media only screen and (min-width: 1800px) {
	.author h2 {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
}

.related-article {
	padding-top: 30px;
	padding-bottom: 60px;
}

@media only screen and (max-width: 655px) {
	.related-article {
		padding-top: 15px;
		padding-bottom: 30px;
	}
}

.related-article .title {
	margin-bottom: 10px;
}

@media only screen and (max-width: 655px) {
	.related-article .title {
		margin-bottom: 0px;
	}
}

.related-article ul li .blog-wrap {
	border-top: none;
	border-right: none;
}

.related-article ul li .blog-wrap .block-content {
	padding-top: 20px;
	padding-bottom: 30px;
}

.related-article ul li .blog-wrap .block-content h2 {
	margin: 14px 0px;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.related-article ul li .blog-wrap .block-content h2 {
		font-size: 1.7rem;
		line-height: 36px;
		margin-bottom: 22px;
	}
}

.related-article ul li .blog-wrap .block-content h2 a {
	color: #1a1a1a;
}

.related-article ul li .blog-wrap .block-content small {
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
}

.related-article ul li .blog-wrap .block-content small.date {
	color: gray;
}

.related-article ul li .blog-wrap .block-content p {
	font-weight: 300;
	font-size: 1.1rem;
}

@media only screen and (min-width: 1800px) {
	.related-article ul li .blog-wrap .block-content p {
		font-size: .9rem;
		line-height: 24px;
		margin-bottom: 8px;
	}
}

.related-article ul li .blog-wrap .block-img img {
	width: 100%;
}

.img-tb {
	margin: 30px 0 30px;
}

@media only screen and (max-width: 655px) {
	.img-tb {
		margin: 40px 0 40px;
	}
}

.custom-wrapper {
	padding: 40px;
	margin-left: 14px;
	margin-right: 14px;
}

@media only screen and (max-width: 767px) {
	.custom-wrapper {
		margin-left: 0;
		margin-right: 0;
		padding: 20px;
	}
	
	.custom-wrapper .title {
		margin-bottom: 15px;
	}
}

.custom-wrapper p {
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.custom-wrapper p {
		font-size: .8rem;
	}
}

.custom-wrapper ul {
	margin-left: 16px;
}

.custom-wrapper ul li {
	list-style: lower-alpha;
	padding-bottom: 4px;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.custom-wrapper ul li {
		font-size: .8rem;
	}
}

.blog-wrap {
	border-top: none;
	border-right: none;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

@media only screen and (max-width: 767px) {
	.blog-wrap .block-img {}
}

.blog-wrap .block-img img {
	width: 100%;
}

.blog-wrap .block-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-wrap .block-content .inner-content {
	margin-top: auto;
}

.blog-wrap .block-content .inner-content p {
	margin-top: 0;
}

.video_load_more {
	margin-bottom: 30px;
}

@media only screen and (min-width: 1800px) {
	.video_load_more .primary_btn {
		padding: 19px 26px;
	}
}

.contact-us p span.first.wpcf7-list-item {
	margin-left: 0;
}

.contact-us p label {
	display: flex;
	align-items: center;
}

.contact-us p label span {
	padding-left: 6px;
	font-weight: 500;
	color: #999;
}

.contact-us p label span a {
	color: #999;
}

@media only screen and (min-width: 1800px) {
	.contact-us p label input {
		width: 20px;
		height: 20px;
		margin-right: 8px;
	}
}

button {
	outline: none;
}

.title-left {
	padding-top: 30px;
}

.title-left .title {
	padding-left: 14px;
}

.mobile-device {
	display: none !important;
}

@media only screen and (max-width: 655px) {
	.mobile-device {
		display: block !important;
	}
	
	.mobile-device .social-wrapper {
		align-items: center;
		justify-content: space-between;
		border-bottom: 2px solid #f1f1f1;
	}
	
	.mobile-device .social-wrapper .download a {
		border: none;
		padding: 0 0 10px;
	}
	
	.mobile-device.author.border.border-reverse:before {
		width: 25%;
		height: 3px;
		background: #621755;
	}
	
	.mobile-device.author.border.border-reverse:after {
		width: 71.98%;
		opacity: .7;
		height: 2px;
	}
}

.mobile-device .qualification {
	padding-top: 15px;
}

.mobile-device .qualification .title-wrapper h2 {
	margin-top: 0;
	margin-bottom: 0;
}

.mobile-device .qualification ul {
	margin-top: 15px;
}

.mobile-device .qualification ul li {
	font-size: 1.3rem;
	color: #000;
	margin-bottom: 0;
	padding-bottom: 5px;
}

.mobile-device.qualification .title-wrapper h2 {
	margin-top: 0;
	margin-bottom: 0;
}

.mobile-device.qualification .title-wrapper h2 .icon {
	display: none;
}

.mobile-device.qualification ul {
	margin-top: 15px;
}

.mobile-device.qualification ul li {
	font-size: 1.3rem;
	color: #000;
	margin-bottom: 0;
	padding-bottom: 15px;
}

.mobile-device .personal-info ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 20px;
	padding-top: 15px;
}

@media only screen and (max-width: 500px) {
	.mobile-device .personal-info ul {
		display: block;
		padding-bottom: 10px;
	}
}

.mobile-device .personal-info ul li {
	flex-basis: 50%;
	word-break: break-all;
}

@media only screen and (max-width: 655px) {
	.web-view {
		display: none !important;
	}
}

.burger-menu .bar-1, .burger-menu .bar-2, .burger-menu .bar-3 {
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	width: 28px;
}

.burger-menu.change .bar-1 {
	-webkit-transform: rotate(-45deg) translate(-8px, 7px);
	transform: rotate(-45deg) translate(-8px, 7px);
	width: 30px;
}

.burger-menu.change .bar-2 {
	opacity: 0;
}

.burger-menu.change .bar-3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
	width: 28px;
}

.navigation-header {
	background: #fff;
	padding-bottom: 0;
}

@media only screen and (min-width: 1025px) {
	.navigation-header {
		position: fixed;
		width: 100%;
		width: 100vw;
		height: 100%;
		z-index: 1;
		top: 0;
		left: 0;
		left: -100vw;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 0;
		pointer-events: none;
		-webkit-transition: opacity .4s ease-in-out;
		-webkit-transition: all .3s ease-in-out;
		transition: opacity .4s ease-in-out;
		transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		padding-top: 0;
	}
	
	.navigation-header.open {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		left: 0;
		z-index: 2;
	}
}

@media only screen and (max-width: 1024px) {
	.navigation-header {
		opacity: 1;
	}
}

.navigation-header.home-header {
	background: rgba(98, 23, 85, .9);
}

.navigation-header.home-header.open {
	background: #fff;
}

.navigation-header.home-header .navigation-wrapper .menu_search button.search:after {
	color: #fff;
}

.navigation-header .header-container {
	border-bottom: 1px solid #ccc;
	position: relative;
}

@media only screen and (max-width: 1024px) {
	.navigation-header .header-container {
		border-bottom: none;
	}
	
	.navigation-header .header-container.open {
		box-shadow: 0px 2px 4px rgba(0, 0, 0, .4);
		z-index: 2;
		position: relative;
	}
}

.navigation-header .header-container .social {
	display: none;
	position: absolute;
	right: 13px;
	top: 10px;
}

.navigation-header .header-container .social.close {
	display: none;
}

@media only screen and (max-width: 1024px) {
	.navigation-header .header-container .social {
		display: block;
		right: 0;
	}
	
	.navigation-header .header-container .social li {
		display: inline-block;
	}
	
	.navigation-header .header-container .social li a {
		width: 18px;
		height: 18px;
	}
	
	.navigation-header .header-container .social li a:after {
		font-size: 10px;
	}
}

@media only screen and (max-width: 320px) {
	.navigation-header .header-container .social li a {
		margin-right: 3px;
	}
}

.navigation-header .navigation-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 0px;
	position: relative;
}

.navigation-header .navigation-wrapper .burger-logo {
	display: flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.navigation-header .navigation-wrapper .burger-logo {
		width: 100%;
		left: 0;
		position: absolute;
	}
	
	.navigation-header .navigation-wrapper .burger-logo.close {
		left: -100%;
	}
	
	.navigation-header .navigation-wrapper .burger-logo .logo {
		margin-left: 10px;
	}
}

@media (max-width: 1024px) {
	.navigation-header .navigation-wrapper .burger-logo .logo {
		flex: 0 0 100%;
		margin-left: -28px;
	}
	
	.navigation-header .navigation-wrapper .burger-logo .logo a.logo {
		margin: 0 auto;
	}
}

.navigation-header .navigation-wrapper .menu_search {
	width: 85%;
}

@media only screen and (max-width: 1024px) {
	.navigation-header .navigation-wrapper .menu_search {
		height: 100%;
		width: 100%;
	}
	
	.navigation-header .navigation-wrapper .menu_search.open .cross {
		display: block;
	}
	
	.navigation-header .navigation-wrapper .menu_search.open form {
		display: flex;
	}
}

.navigation-header .navigation-wrapper .menu_search input[type="text"] {
	min-height: 40px;
	line-height: 40px;
	border: none;
	width: 100%;
	padding: 10px 81px 10px 20px;
	box-sizing: border-box;
	font-weight: 600;
	color: #b6b6b6;
}

@media only screen and (max-width: 1024px) {
	.navigation-header .navigation-wrapper .menu_search input[type="text"] {
		transform: scaleY(0);
		transition: all .3s ease-in-out;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
	}
	
	.navigation-header .navigation-wrapper .menu_search input[type="text"].open {
		display: inline-flex;
		padding: 10px 68px 10px 10px;
		overflow: hidden;
		transition: transform .3s ease-out;
		height: auto;
		transform: scaleY(1);
		transform-origin: top;
	}
}

.navigation-header .navigation-wrapper .menu_search button {
	line-height: 40px;
	position: absolute;
	background-color: transparent;
	border: none;
}

.navigation-header .navigation-wrapper .menu_search button.search {
	right: 14px;
	min-height: 60px;
	min-width: 30px;
	top: 42px;
}

@media (max-width: 1024px) {
	.navigation-header .navigation-wrapper .menu_search button.search {
		right: 0;
		top: 22px;
		padding: 0;
		min-width: auto;
	}
	
	.navigation-header .navigation-wrapper .menu_search button.search.open {
		right: 44px;
	}
}

@media only screen and (max-width: 655px) {
	.navigation-header .navigation-wrapper .menu_search button.search {
		top: 18px;
	}
}

.navigation-header .navigation-wrapper .menu_search button.search:after {
	content: "";
	font-size: 1.4rem;
	font-weight: 300;
	color: #621755;
	line-height: 60px;
}

@media only screen and (max-width: 655px) {
	.navigation-header .navigation-wrapper .menu_search button.search.open {
		right: 36px;
	}
}

.navigation-header .navigation-wrapper .menu_search button.cross {
	right: 6px;
	min-height: 40px;
	min-width: 30px;
	display: none;
}

.navigation-header .navigation-wrapper .menu_search button.cross:after {
	content: "";
	font-size: 1.4rem;
	font-weight: 700;
	color: #621755;
	line-height: 60px;
}

.navigation-header .navigation-wrapper .burger-menu {
	width: 30px;
	margin-top: 6px;
	padding: 0;
	position: relative;
	z-index: 1;
}

@media only screen and (max-width: 655px) {
	.navigation-header .navigation-wrapper .burger-menu {
		margin-right: 0px;
	}
}

.navigation-header .navigation-wrapper .logo {
	margin-right: 20px;
}

.navigation-header .nav-container {
	position: fixed;
	width: 100%;
	width: 100vw;
	height: 100%;
	z-index: 1;
	top: 144px;
	left: 0;
	left: -100vw;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity .4s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: opacity .4s ease-in-out;
	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	padding-top: 0;
}

.navigation-header .nav-container.open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	left: 0;
	top: auto;
}

@media only screen and (min-width: 1025px) {
	.navigation-header .nav-container {
		height: calc(100% - 120px);
		height: -webkit-calc(100% - 120px);
		height: -moz-calc(100% - 120px);
		overflow: auto;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.navigation-header .nav-container {
		height: auto;
		top: auto;
	}
}

.navigation-header .nav-container .hamburger-bg {
	max-height: 120px;
	height: 120px;
	background: #631856;
	width: 100%;
	display: none;
}

.navigation-header .nav-container .hamburger-menu {
	width: 100%;
	overflow-y: auto;
}

@media only screen and (min-width: 1025px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu {
		padding-left: 62px;
	}
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li {
	display: flex;
	font-weight: 300;
	font-size: 1.1rem;
	padding-bottom: 20px;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li:first-child {
	padding-top: 35px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li.active {
	font-weight: 600;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li>a {
	color: #cea46d;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item h4 {
	font-weight: 600;
	font-size: 1.1rem;
	color: #631856;
	margin-bottom: 36px;
	margin-top: 0;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item h4 a {
	color: #631856;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info.align-bottom {
	display: flex;
	flex-direction: column;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info.align-bottom .bottom-content {
	margin-top: auto;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info.align-bottom .bottom-content h4 {
	text-transform: lowercase;
}

@media only screen and (min-width: 1025px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info.align-bottom .bottom-content h4 {
		margin-bottom: -10px;
	}
}

@media only screen and (min-width: 1800px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info.align-bottom .bottom-content h4 {
		margin-bottom: -26px;
	}
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info .list_title {
	max-width: 120px;
	min-height: 20px;
	display: block;
	margin-bottom: 8px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul {
	padding-bottom: 20px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul li {
	font-weight: 300;
	font-size: 1rem;
	padding-bottom: 8px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul li a {
	color: #1a1a1a;
	font-weight: 300;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold {
	padding-bottom: 0;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li {
	font-weight: 700;
	padding-bottom: 16px;
	text-transform: lowercase;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li:last-child {
	padding-bottom: 5px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li a {
	color: #631856;
	font-weight: 700;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li img {
	margin-bottom: 15px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li ul {
	padding: 0 10px;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li ul li {
	font-weight: 300;
	line-height: 20px;
	text-transform: none;
}

.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-list .menu-item-info ul.bold li ul li a {
	color: #1a1a1a;
	font-weight: 300;
}

@media only screen and (min-width: 1025px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li:first-child {
		padding-top: inherit;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper {
		display: none;
		position: absolute;
		left: 25%;
		top: 0px;
		background: #f2f2f2;
		padding: 20px 20px 40px 20px;
		box-sizing: border-box;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li.active .submenu-wrapper {
		display: block;
		width: 73%;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li.active a {
		color: #631856;
		font-weight: 600;
	}
}

@media only screen and (max-width: 1024px) {
	body.open {
		overflow: hidden;
	}
	
	.navigation-header .nav-container {
		height: calc(100vh - 140px);
		height: -webkit-calc(100vh - 140px);
		height: -moz-calc(100vh - 140px);
		overflow: auto;
		background-color: #fff;
	}
	
	.navigation-header .nav-container .container {
		height: calc(100% - 120px);
		height: -webkit-calc(100% - 120px);
		height: -moz-calc(100% - 120px);
		overflow: scroll;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper {
		transition: all .5s ease;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		-o-transition: all .5s ease;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu {
		transition: all .5s ease;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		-o-transition: all .5s ease;
		position: relative;
		left: 0%;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul {
		padding-top: 25px;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li {
		display: flex;
		font-weight: 600;
		font-size: 1.1rem;
		color: #631856;
		padding: 0 20px 20px;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper {
		display: none;
		width: 100%;
		position: absolute;
		left: 100%;
		top: 0;
		background: #f2f2f2;
		padding: 0px 15px 20px;
		height: 100vh;
		box-sizing: border-box;
		overflow: auto;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .selected-menu-heading {
		display: flex;
		align-items: center;
		border-bottom: 1px solid #ccc;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .selected-menu-heading .selected-menu {
		padding-left: 20px;
		color: #621755;
		text-transform: capitalize;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .selected-menu-heading .go-back .left-arrow:before {
		content: "";
		font-size: 1.3rem;
		font-weight: 700;
		color: #1a1a1a;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item {
		padding-bottom: 0;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item h4 {
		margin-bottom: 15px;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper .sub-hamburger-menu .menu-item .menu-item-info {
		padding-left: 0;
		padding-bottom: 0;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li>a {
		align-items: center;
		opacity: 1;
		visibility: visible;
		transition: all .5s ease-in-out;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		height: 100%;
		width: 100%;
		color: #cea46d;
		position: relative;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li>a.submenu-show+.submenu-wrapper {
		display: block !important;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 1025px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li.active a {
		color: #631856;
		font-weight: 600;
	}
}

@media only screen and (max-width: 1024px) {
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li:hover a {
		color: #631856;
		font-weight: 600;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li.has-submenu>a:after {
		content: "";
		font-family: "icomoon" !important;
		font-style: normal;
		font-weight: normal;
		font-weight: 600;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		right: 5px;
		position: absolute;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu.submenu-open {
		left: -100%;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu.submenu-open>ul>li>a {
		opacity: 0;
		visibility: hidden;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu .login li a:after {
		content: none;
	}
}

@media only screen and (min-width: 1025px) {
	.selected-menu-heading .selected-menu {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.navigation-header {
		position: relative;
		z-index: 2;
	}
	
	.navigation-header .nav-container {
		top: auto;
		height: calc(100vh - 80px);
		overflow: auto;
		background: #fff;
	}
	
	.navigation-header .nav-container .container {
		height: calc(100% - 40px);
		padding: 0;
		margin: 0;
		width: 100% !important;
	}
	
	.navigation-header .nav-container .hamburger-bg {
		height: 40px !important;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper {
		height: 100vh;
		overflow-y: auto;
	}
	
	.navigation-header .nav-container .hamburger-menu .mega-menu-wrapper .mega-menu>ul>li .submenu-wrapper h4 {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 655px) {
	.bg-dark-gray .tght_leadership .title {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 655px) {
	.tght_leadership .title {
		padding-top: 0;
	}
	
	.tght_leadership .title.border-top:before {
		content: none;
	}
	
	.tght_leadership .title.border-top:after {
		content: none;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 655px) {
	.tght_leadership .title {
		padding-right: 14px;
	}
	
	.tght_leadership .title.border-top:after {
		content: "";
		width: 74.5%;
		margin-left: 14px;
	}
	
	.tght_leadership .title.border-top:before {
		content: "";
		margin-right: 14px;
	}
}

small.date-time {
	text-transform: uppercase;
}

@media only screen and (max-width: 655px) {
	small.date-time {
		text-transform: capitalize;
	}
}

.no-available-cls {
	padding: 15px;
}

.thought-leadership-pg.cam-primary-color-lp {
	padding-bottom: 40px;
}

.thought-leadership-pg.cam-primary-color-lp .title {
	margin-bottom: 10px;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.cam-primary-color-lp .title {
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.cam-primary-color-lp .page-decs {
		margin-top: 0;
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content {
		padding: 30px 30px 40px;
	}
}

.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content small {
	color: #333;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content small {
		font-size: .7rem;
	}
}

.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content small.date {
	color: gray;
}

.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content h2 {
	margin-top: 10px;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content h2 {
		font-size: 1.7rem;
		font-weight: 600;
		line-height: 36px;
	}
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.cam-primary-color-lp .blog-wrap .block-content p {
		font-weight: 300;
		line-height: 24px;
	}
}

.thought-leadership-pg .notification-banner {
	height: 450px;
}

.thought-leadership-pg .notification-banner .overlay-wrapper {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/fic.png");
}

.thought-leadership-pg .notification-banner .overlay-wrapper.nitro-lazy {
	background-image: none !important;
}

.thought-leadership-pg .notification-banner .overlay-content {
	width: 95%;
}

.thought-leadership-pg .notification-banner .overlay-content .banner-content {
	background: rgba(235, 225, 234, .9);
	padding: 10px 30px 30px 30px;
	box-sizing: border-box;
}

.thought-leadership-pg .notification-banner .overlay-content .banner-content h4 {
	color: #1a1a1a;
	margin-bottom: 17px;
	margin-top: 15px;
	line-height: 30px;
	font-weight: 300;
	font-size: 2rem;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg .notification-banner .overlay-content .banner-content h4 {
		font-size: 2.5rem;
		line-height: 54px;
	}
}

.thought-leadership-pg .notification-banner .overlay-content .banner-content p {
	margin-bottom: 10px;
	width: 66%;
	font-weight: 300;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg .notification-banner .overlay-content .banner-content p {
		font-size: 1.2rem;
		line-height: 30px;
	}
}

.thought-leadership-pg .notification-banner .overlay-content .banner-content small {
	color: #1a1a1a;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg .notification-banner .overlay-content .banner-content small {
		font-size: .7rem;
	}
}

.thought-leadership-pg .notification-banner .overlay-content .banner-content small.date {
	color: gray;
}

.thought-leadership-pg.multiple-layout {
	margin-bottom: 0;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.multiple-layout.publications ul li {
		display: block;
	}
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots {
	bottom: -35px;
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots li {
	display: inline-block;
	width: 30px;
	margin: 0 2px;
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots li.slick-active {
	bottom: 3px;
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots li.slick-active button {
	background-color: #cea46d;
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots li button {
	background-color: #631856;
	height: 2px;
	width: 100%;
	padding: 0;
}

.thought-leadership-pg.multiple-layout.publications ul ul.slick-dots li.slick-slide {
	outline: none;
}

.thought-leadership-pg.multiple-layout .title {
	margin-bottom: 0;
}

.thought-leadership-pg.multiple-layout .page-decs {
	margin: 15px 0;
	line-height: inherit;
}

.thought-leadership-pg.multiple-layout ul li .blog-wrap {
	flex-direction: inherit;
}

.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content {
	padding-left: 15px;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content {
		padding-left: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content h2 {
		line-height: 36px;
	}
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content .download li {
	border: none;
}

.thought-leadership-pg.multiple-layout ul li .blog-wrap .block-content .download li a {
	border: none;
	cursor: pointer;
}

.thought-leadership-pg.multiple-layout.event-listing {
	margin-bottom: 0;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots {
	bottom: -35px;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li {
	display: inline-block;
	width: 30px;
	margin: 0 2px;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li.slick-active {
	bottom: 3px;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li.slick-active button {
	background-color: #cea46d;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li button {
	background-color: #631856;
	height: 2px;
	width: 100%;
	padding: 0;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li.slick-slide {
	outline: none;
}

.thought-leadership-pg.multiple-layout.event-listing ul.slick-dots li .blog-wrap .spacing {
	display: block;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap {
		box-shadow: 2px -2px 1px rgba(0, 0, 0, .2);
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .full-img img {
	width: 100%;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .spacing {
		display: block;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content {
	padding-left: 0;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .event-icon {
	margin-top: 15px;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .event-icon {
		margin-top: 25px;
	}
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content h2 {
		margin: 17px 0;
		font-size: 1.7rem;
		line-height: 36px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content h4 {
	font-weight: 600;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content h4 a {
	color: #000;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content h4 {
		font-size: 1.2rem;
		line-height: 28px;
		font-weight: 600;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper {
	margin-top: 12px;
	margin-bottom: 12px;
	display: flex;
	text-align: center;
	position: relative;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn {
	padding: 5px 6px;
	margin-right: 5px;
	font-weight: 600;
	width: 104px;
	box-sizing: border-box;
	max-height: 36px;
	line-height: 26px;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn {
		max-height: 60px;
		line-height: 42px;
		width: 150px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn:last-child {
	margin-right: 0;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
	background-color: #fff;
	color: #ea8123;
	font-weight: 700;
	width: 100px;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
		width: 114px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover span {
	opacity: 0;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover .event-calender-listing {
	top: 50%;
	opacity: 1;
	z-index: 1;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover .event-calender-listing {
		right: 0px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover:before {
	content: none;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white:hover:after {
	content: none;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .btn-wrapper .primary_btn.bg-white {
		font-size: .7rem;
		margin-left: 0px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .events-calender {
	display: flex;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .events-calender .event-calender-listing {
	z-index: -1;
	margin-bottom: 0;
	position: absolute;
	top: 100%;
	transition: all .2s ease-in;
	opacity: 0;
	transform: translateY(-50%);
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .events-calender .event-calender-listing {
		margin-left: 20px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .events-calender .event-calender-listing li {
	border: none;
	cursor: pointer;
	display: inline-block;
	padding-top: 6px;
}

@media only screen and (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .events-calender .event-calender-listing li {
		margin-right: 0px;
		padding-top: 0;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li {
	display: flex;
	align-items: center;
	border: none;
	font-size: .9rem;
	color: #621755;
	margin-bottom: 8px;
	font-weight: 600;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li span {
	padding-left: 10px;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li:first-child {
	padding-top: 10px;
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li:before {
	content: "";
	width: 20px;
	height: 20px;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 10px;
}

@media (min-width: 1800px) {
	.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li:before {
		width: 24px;
		height: 30px;
	}
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li.time:before {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/icons/clock.svg");
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content .time-location li.location:before {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/icons/location-sm.svg");
}

.thought-leadership-pg.multiple-layout.event-listing .blog-wrap .block-content h4 {
	margin-top: 0;
	margin-bottom: 15px;
}

.thought-leadership-pg .form-btn {
	margin-top: 0px;
	margin-bottom: 30px;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg .form-btn {
		margin-bottom: 10px;
	}
}

.thought-leadership-pg .form-btn .article_form {
	margin-top: 20px;
}

@media only screen and (max-width: 655px) {
	.thought-leadership-pg .form-btn .article_form {
		margin-top: 0px;
	}
}

.newsletter-details ul li .blog-wrap .block-content {
	padding: 30px 15px;
}

@media only screen and (max-width: 655px) {
	.newsletter-details ul li .blog-wrap .block-content {
		padding: 15px;
	}
}

.newsletter-details .form-btn {
	margin-top: 30px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 655px) {
	.newsletter-details .form-btn {
		margin-top: 15px;
		margin-bottom: 0px;
	}
}

.newsletter-details .form-btn .article_form .primary_btn {
	padding: 10px 23px;
}

@media only screen and (max-width: 655px) {
	.newsletter-details .search-wrapper {
		margin-left: 14px;
		margin-right: 14px;
	}
}

@media only screen and (max-width: 500px) {
	.newsletter-details .search-wrapper {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.newsletter-details .select-wrapper {
	margin-left: 0;
}

.newsletter-details .select-wrapper.border {
	margin-bottom: 30px;
	margin-top: 60px;
}

@media only screen and (max-width: 655px) {
	.newsletter-details .select-wrapper.border {
		margin-bottom: 6px;
		padding-bottom: 14px;
	}
}

.newsletter-details .select-wrapper.border.border-reverse:before {
	width: 25%;
	background: #621755;
	height: 3px;
}

.newsletter-details .select-wrapper.border.border-reverse:after {
	width: 74.6%;
	height: 2px;
}

.sm-search {
	position: relative;
	display: inline-block;
	width: calc(25% - 20px);
	width: -webkit-calc(25% - 20px);
	width: -moz-calc(25% - 20px);
	max-width: 25%;
	margin-right: 12px;
}

@media only screen and (max-width: 655px) {
	.sm-search {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
	}
}

.sm-search input[type="text"] {
	box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 10px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 10px 34px 10px 8px;
	width: 100%;
	font-weight: 300;
	color: #666;
	box-sizing: border-box;
}

@media only screen and (max-width: 655px) {
	.sm-search input[type="text"] {
		padding: 10px 40px 10px 8px;
	}
}

@media only screen and (min-width: 1800px) {
	.sm-search input[type="text"] {
		padding: 10px 40px 10px 8px;
	}
}

.sm-search button {
	min-height: 35px;
	min-width: 26px;
	line-height: 35px;
	position: absolute;
	right: 3px;
	background-color: transparent;
	border: none;
}

@media only screen and (min-width: 1800px) {
	.sm-search button {
		min-height: 44px;
	}
}

.sm-search button:after {
	content: "";
	font-size: 1.3rem;
	color: #621755;
	line-height: 35px;
}

@media only screen and (min-width: 1800px) {
	.sm-search button:after {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 500px) {
	.col-xxs-12 {
		box-sizing: border-box;
		flex-basis: 100%;
		max-width: 100%;
		padding: 1rem;
	}
}

.law-awards .img-title {
	margin-bottom: 15px;
}

.law-awards .img-title h2 {
	margin-top: 0;
	margin-bottom: 18px;
}

@media only screen and (max-width: 655px) {
	.law-awards .img-title h2 {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.law-awards p {
	margin-top: 30px;
	font-weight: 500;
}

@media only screen and (min-width: 1800px) {
	.law-awards p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (max-width: 600px) {
	.law-awards .social-contact {
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media only screen and (min-width: 656px) {
	.law-awards .social-contact.order-1 {
		order: 1;
	}
}

.law-awards .social-contact.border-top:before {
	margin-right: 14px;
}

.law-awards .social-contact.border-top:after {
	margin-left: 14px;
	width: 74.3%;
}

@media only screen and (max-width: 500px) {
	.law-awards .social-contact.border-top:after {
		width: 71.3%;
	}
}

@media only screen and (min-width: 656px) {
	.law-awards .social-contact.border-top:before {
		content: none;
	}
	
	.law-awards .social-contact.border-top:after {
		content: none;
	}
}

@media only screen and (max-width: 655px) {
	.law-awards .social-contact.border-top>h2 {
		margin: 20px 0 25px;
	}
}

.law-awards .social-contact .social-wrapper {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 8px;
}

@media only screen and (max-width: 655px) {
	.law-awards .social-contact .social-wrapper .print-wrapper {
		display: none;
	}
}

@media only screen and (max-width: 655px) {
	.law-awards .social-contact .contact_list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.law-awards .social-contact .contact_list .profile {
		flex-basis: calc(50% - 10px);
	}
	
	.law-awards .social-contact .contact_list .profile:first-child {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 500px) {
	.law-awards .social-contact .contact_list {
		display: block;
	}
	
	.law-awards .social-contact .contact_list .profile:first-child {
		margin-right: 0px;
	}
}

.career-detail .title {
	margin-top: 25px;
	margin-bottom: 0px;
	font-size: 1.5rem;
}

@media only screen and (max-width: 655px) {
	.career-detail .title {
		margin-top: 10px;
	}
}

.career-detail p {
	margin-top: 8px;
	margin-bottom: 5px;
	font-weight: 500;
}

@media only screen and (max-width: 655px) {
	.career-detail p {
		font-weight: 300;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.career-detail .opportunities {
	padding: 35px 35px 20px 85px;
}

@media only screen and (max-width: 655px) {
	.career-detail .opportunities {
		padding: 20px 30px;
	}
}

@media only screen and (max-width: 500px) {
	.career-detail .opportunities {
		padding-right: 0;
		padding: 20px 12px 10px;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail .opportunities {
		padding: 35px 35px 40px 85px;
	}
}

.career-detail .opportunities h4 {
	color: #621755;
	margin-top: 0;
	font-weight: 600;
	font-size: 1.5rem;
}

@media only screen and (max-width: 655px) {
	.career-detail .opportunities h4 {
		margin-bottom: 15px;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail .opportunities h4 {
		font-size: 1.7rem;
		line-height: 26px;
	}
}

@media only screen and (max-width: 655px) {
	.career-detail .opportunities .form-btn {
		display: block;
		text-align: center;
	}
}

.career-detail .opportunities .form-btn .article_form .primary_btn {
	margin-right: 15px;
	float: left;
}

@media only screen and (max-width: 655px) {
	.career-detail .opportunities .form-btn .article_form .primary_btn {
		margin-bottom: 10px;
		margin-right: 0;
		display: inline-block;
		width: 100%;
	}
	
	.career-detail .opportunities .form-btn .article_form .primary_btn:last-child {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail .opportunities .form-btn .article_form .primary_btn {
		font-weight: 500;
	}
}

.career-detail .opportunities .form-btn .article_form .primary_btn:before {
	width: 28px;
	height: 7px;
	top: -2px;
}

.career-detail .opportunities .form-btn .article_form .primary_btn:after {
	width: 28px;
	height: 6px;
}

@media only screen and (min-width: 1800px) {
	.career-detail .careers {
		padding: 20px 0px 0px;
	}
}

.career-detail .careers .video_quts h3 {
	color: #1a1a1a;
}

.career-detail .notification-banner {
	height: 450px;
}

@media only screen and (max-width: 655px) {
	.career-detail .notification-banner {
		height: 400px;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail .notification-banner {
		margin-top: 20px;
	}
}

.career-detail .notification-banner .overlay-wrapper {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/diversity-inclusion-banner-new.png");
}

.career-detail .notification-banner .overlay-wrapper.nitro-lazy {
	background-image: none !important;
}

.career-detail .notification-banner .overlay-content {
	width: 95%;
}

.career-detail .notification-banner .overlay-content .banner-content {
	background: #fcf9fc;
	padding: 20px 30px 30px 50px;
	box-sizing: border-box;
	opacity: .9;
}

@media only screen and (max-width: 655px) {
	.career-detail .notification-banner .overlay-content .banner-content {
		padding: 20px 30px;
	}
}

.career-detail .notification-banner .overlay-content .banner-content h4 {
	color: #621755;
	margin-bottom: 10px;
	margin-top: 15px;
	line-height: 30px;
	font-weight: 300;
	font-size: 1.8rem;
}

@media only screen and (min-width: 1800px) {
	.career-detail .notification-banner .overlay-content .banner-content h4 {
		font-size: 2.5rem;
		line-height: 54px;
	}
}

.career-detail .notification-banner .overlay-content .banner-content p {
	margin-bottom: 10px;
	width: 60%;
	font-weight: 300;
}

@media only screen and (max-width: 655px) {
	.career-detail .notification-banner .overlay-content .banner-content p {
		width: 100%;
	}
}

@media only screen and (min-width: 1800px) {
	.career-detail .notification-banner .overlay-content .banner-content p {
		font-size: 1.2rem;
		line-height: 30px;
	}
}

.culture-row {
	margin-top: 15px;
	margin-bottom: 15px;
}

.culture-row .blog-wrap {
	flex-direction: inherit;
	background: rgba(98, 23, 85, .1);
	box-shadow: none;
}

.culture-row .blog-wrap .full-img {
	display: flex;
	height: 100%;
	padding: 0 1rem 0 0;
}

@media only screen and (max-width: 1024px) {
	.culture-row .blog-wrap .full-img {
		padding: 0;
	}
}

.culture-row .blog-wrap .full-img img {
	width: 100%;
	height: intrinsic;
}

.culture-row .blog-wrap .block-content {
	padding: 0;
	padding-right: 20px;
}

@media only screen and (max-width: 655px) {
	.culture-row .blog-wrap .block-content {
		padding-right: 0;
		padding-bottom: 10px;
	}
}

@media only screen and (min-width: 1800px) {
	.culture-row .blog-wrap .block-content {
		padding-left: 40px;
		padding-right: 40px;
	}
}

.culture-row .blog-wrap .block-content h2 {
	color: #621755;
	font-weight: 300;
	font-size: 1.8rem;
	margin-bottom: 5px;
}

@media only screen and (max-width: 655px) {
	.culture-row .blog-wrap .block-content h2 {
		margin-top: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.culture-row .blog-wrap .block-content h2 {
		font-size: 2.5rem;
		line-height: 54px;
	}
}

.culture-row .blog-wrap .block-content p {
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.culture-row .blog-wrap .block-content p {
		font-size: 1.2rem;
		line-height: 30px;
	}
}

.legal-pro {
	margin-bottom: 30px;
}

@media only screen and (min-width: 1800px) {
	.legal-pro {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 655px) {
	.legal-pro li {
		padding-left: 14px;
	}
}

.legal-pro li .blog-wrap .block-content {
	padding-right: 10%;
}

@media only screen and (min-width: 655px) {
	.legal-pro li .blog-wrap .block-content {
		padding-right: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.legal-pro li .blog-wrap .block-content {
		padding-right: 30%;
		padding-left: 30px;
	}
}

.legal-pro li .blog-wrap .block-content h2 {
	color: #621755;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0;
}

@media only screen and (min-width: 1800px) {
	.legal-pro li .blog-wrap .block-content h2 {
		font-size: 2rem;
	}
}

@media only screen and (min-width: 1800px) {
	.legal-pro li .blog-wrap .block-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.legal-pro li .blog-wrap .block-content ul {
	margin: 15px 0;
}

@media only screen and (min-width: 1800px) {
	.legal-pro li .blog-wrap .block-content ul {
		margin: 20px 0;
	}
}

.legal-pro li .blog-wrap .block-content ul li {
	display: inline-block;
	border-right: 2px solid #ccc;
	padding-right: 8px;
	padding-left: 8px;
	color: #621755;
	font-weight: 600;
}

@media only screen and (max-width: 655px) {
	.legal-pro li .blog-wrap .block-content ul li {
		display: block;
		display: flex;
		margin-bottom: 10px;
		padding-left: 0;
		border: none;
		align-items: center;
		color: #1a1a1a;
	}
}

@media only screen and (min-width: 1800px) {
	.legal-pro li .blog-wrap .block-content ul li {
		font-size: .9rem;
	}
}

.legal-pro li .blog-wrap .block-content ul li:first-child {
	padding-left: 0;
}

.legal-pro li .blog-wrap .block-content ul li:last-child {
	border-right: none;
}

.legal-pro li .blog-wrap .block-content ul li .prop {
	color: rgba(98, 23, 85, .5);
	font-weight: 100;
}

@media only screen and (max-width: 655px) {
	.legal-pro li .blog-wrap .block-content ul li .prop {
		flex-basis: 30%;
		color: #631856;
	}
}

@media only screen and (max-width: 500px) {
	.legal-pro li .blog-wrap .block-content ul li .prop {
		flex-basis: 50%;
	}
}

.legal-pro li .blog-wrap .block-content form .primary_btn {
	font-weight: 600;
}

@media only screen and (max-width: 655px) {
	.cam-innovations.move-element-mb {
		display: flex;
		flex-direction: column;
	}
	
	.cam-innovations.move-element-mb .content-mb {
		order: 1;
	}
}

.cam-innovations.move-element-mb .download a {
	padding: 12px 0px 12px 0;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (min-width: 768px) {
	.cam-innovations .social-contact {
		order: 1;
	}
}

@media only screen and (max-width: 600px) {
	.cam-innovations .social-contact {
		padding-left: 14px;
		padding-right: 14px;
	}
}

.cam-innovations .social-contact .contact-us {
	margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.cam-innovations .social-contact .contact-us {
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .social-contact .contact-us h3 {
		font-size: 1.5rem;
		margin-top: 30px;
	}
}

.cam-innovations .social-contact .contact-us .input-wrapper input {
	color: gray;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .social-contact .contact-us .input-wrapper {
		padding: 15px 20px;
	}
}

.cam-innovations .social-contact .social-wrapper {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
}

.cam-innovations .trending-topics {
	margin-top: -10px;
}

.cam-innovations .trending-topics li {
	width: 100%;
	display: flex;
	font-weight: 500;
	color: #1a1a1a;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .trending-topics li {
		font-size: .8rem;
		line-height: 26px;
	}
}

.cam-innovations .tght_leadership {
	padding-bottom: 30px;
	padding-top: 20px;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .tght_leadership {
		padding-bottom: 60px;
	}
}

.cam-innovations .tght_leadership .title {
	margin-bottom: 12px;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .tght_leadership .title {
		margin-bottom: 18px;
	}
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img {}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
	width: 100%;
	aspect-ratio: 100/60;
	object-fit: cover;
	height: 100%;
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content {
	padding-top: 15px;
	padding-bottom: 15px;
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
	color: #621755;
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
		font-size: 1.5rem;
		line-height: 36px;
	}
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 a {
	color: #621755;
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content p {
	margin-top: 10px;
	font-weight: 500;
}

@media only screen and (min-width: 1800px) {
	.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .download {
	display: flex;
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .download li:first-child {
	padding-right: 10px;
}

.cam-innovations .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .download li a {
	border: none;
}

.cam-innovations .mobile-device.contact-us h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.cam-innovations .mobile-device.contact-us .input-wrapper {
	padding: 15px 10px;
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap {
	flex-direction: inherit;
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .full-img {
	display: flex;
	padding: 0 1rem 0 0;
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content {
	padding-bottom: 0;
}

@media only screen and (max-width: 600px) {
	.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content {
		padding: 5px;
	}
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content h2 {
	margin-top: 0;
	color: #621755;
	line-height: 35px;
	margin-bottom: 6px;
}

@media only screen and (max-width: 600px) {
	.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content h2 {
		line-height: 20px;
		font-size: 1.2rem;
	}
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content h2 a {
	color: #621755;
}

.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content .inner-content {
	padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
	.cam-innovations .mobile-device.multi-column-layout li .blog-wrap .block-content .inner-content {
		padding-bottom: 5px;
		padding-top: 20px;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation .video {
		max-height: 350px;
		height: 300px;
	}
	
	.tech-innovation .video iframe {
		height: 300px !important;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.tech-innovation .tght_leadership .title {
		padding-left: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (min-width: 768px) {
	.tech-innovation .social-contact {
		order: 1;
	}
}

@media only screen and (max-width: 600px) {
	.tech-innovation .social-contact {
		padding-left: 14px;
		padding-right: 14px;
	}
}

.tech-innovation .social-contact .contact-us {
	margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.tech-innovation .social-contact .contact-us {
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .social-contact .contact-us {
		margin-top: 0px;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .social-contact .contact-us h3 {
		font-size: 1.5rem;
		margin-top: 30px;
	}
}

.tech-innovation .social-contact .contact-us .input-wrapper input {
	color: gray;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .social-contact .contact-us .input-wrapper {
		padding: 15px 20px;
	}
}

.tech-innovation .social-contact .social-wrapper {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
}

.tech-innovation .social-contact .download a {
	border-top: none;
	padding-top: 0;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .social-contact .download {
		display: none;
	}
}

.tech-innovation .social-contact .faqs-wrapper {
	padding-bottom: 15px;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .social-contact .faqs-wrapper {
		display: none;
	}
}

.tech-innovation .social-contact .faqs-wrapper h4 {
	color: #621755;
	font-weight: 300;
	margin-bottom: 8px;
	font-size: 1.3rem;
	margin-top: 18px;
}

.tech-innovation .social-contact .faqs-wrapper a {
	color: #ea8123;
	font-weight: 500;
	font-size: .9rem;
}

.tech-innovation .social-contact .faqs-wrapper a span {
	color: #000;
}

.tech-innovation .trending-topics {
	margin-bottom: 25px;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .trending-topics {
		display: flex;
		flex-wrap: wrap;
	}
}

.tech-innovation .trending-topics li {
	width: 30%;
	font-weight: 500;
	display: inline-block;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .trending-topics li {
		display: flex;
		width: 45%;
	}
}

@media only screen and (max-width: 500px) {
	.tech-innovation .trending-topics li {
		width: 48%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.tech-innovation .trending-topics li {
		width: 45%;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .trending-topics li {
		font-size: .8rem;
		line-height: 26px;
		padding-bottom: 5px;
	}
}

.tech-innovation.prarambh-program {
	padding-top: 30px;
	padding-bottom: 40px;
	margin-top: 30px;
}

.tech-innovation.prarambh-program img {
	padding-top: 15px;
}

.tech-innovation .tght_leadership .page-decs {
	margin-top: 0px;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info {
	padding: 8px 14px 10px 18px;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info .profile_heading {
	padding-bottom: 10px;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info .profile_heading h2 {
		font-size: 1.2rem;
	}
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info .profile_heading p {
	color: #631856;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info .profile_heading p {
		font-size: .9rem;
	}
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info p {
	color: #414042;
	padding-bottom: 2px;
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info p {
		font-size: .7rem;
	}
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info p span {
	color: #631856;
	font-weight: 700;
	padding-right: 5px;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .contact_list .profile_info p a {
	display: inline-block;
	padding: 0;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .blog-wrap .block-content small {
	color: #333;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .blog-wrap .block-content small.date {
	color: gray;
}

.tech-innovation .tght_leadership .tght_leadershi_lst .blog-wrap .block-content h2 {
	margin-top: 10px;
}

@media only screen and (max-width: 655px) {
	.tech-innovation.video-wrapper li {
		display: block;
	}
}

.tech-innovation.video-wrapper li .video-container .video-wrap .video-content {
	padding-top: 23px;
}

.tech-innovation.video-wrapper li .video-container .video-wrap .video-content h2 {
	margin-top: 10px;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation.video-wrapper li .video-container .video-wrap .video-content .inner-content small {
		font-size: .7rem;
	}
}

.tech-innovation.video-wrapper.slider ul.slick-dots {
	bottom: -35px;
}

.tech-innovation.video-wrapper.slider ul.slick-dots li {
	display: inline-block;
	width: 35px;
	margin: 0 2px;
}

.tech-innovation.video-wrapper.slider ul.slick-dots li.slick-active {
	bottom: 3px;
}

.tech-innovation.video-wrapper.slider ul.slick-dots li.slick-active button {
	background-color: #cea46d;
}

.tech-innovation.video-wrapper.slider ul.slick-dots li button {
	background-color: #631856;
	height: 3px;
	width: 100%;
	padding: 0;
}

.tech-innovation.video-wrapper.slider ul.slick-dots li.slick-slide {
	outline: none;
}

.tech-innovation .vichar-winner {
	display: table;
}

.tech-innovation .vichar-winner .title {
	margin-top: 25px;
	margin-bottom: 28px;
}

.tech-innovation .vichar-winner ul {
	display: flex;
	flex-wrap: wrap;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .vichar-winner ul {
		display: block;
	}
}

.tech-innovation .vichar-winner ul li {
	flex-basis: calc(48% - 30px);
	margin-bottom: 20px;
}

.tech-innovation .vichar-winner ul li:nth-child(odd) {
	margin-right: 30px;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .vichar-winner ul li .blog-wrap .block-content {
		padding: 30px 20px;
	}
}

.tech-innovation .vichar-winner ul li .blog-wrap .block-content h3 {
	margin-top: 0;
	color: #621755;
	font-weight: 600;
	margin-bottom: 0;
	letter-spacing: -.3px;
	font-size: 1.4rem;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .vichar-winner ul li .blog-wrap .block-content h3 {
		font-size: 1.5rem;
		line-height: 36px;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .vichar-winner ul li .blog-wrap .block-content p {
		font-size: .8rem;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation .vichar-winner ul li {
		margin-bottom: 20px;
	}
	
	.tech-innovation .vichar-winner ul li:nth-child(odd) {
		margin-right: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tech-innovation .vichar-winner ul li {
		flex-basis: calc(100%);
	}
	
	.tech-innovation .vichar-winner ul li:nth-child(odd) {
		margin-right: 0px;
	}
}

.tech-innovation.gallery-wrapper .title {
	padding-bottom: 10px;
}

.tech-innovation.gurukul-tech p a {
	color: #ea8123;
}

.tech-innovation.gurukul-tech .video.lg-video {
	margin-top: 30px;
	margin-bottom: 20px;
}

@media only screen and (min-width: 1800px) {
	.tech-innovation.gurukul-tech .video.lg-video {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 655px) {
	.tech-innovation.gurukul-tech .tght_leadership .title {
		padding-left: 0;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation {
		margin-top: 190px;
	}
	
	.tech-innovation .tght_leadership {
		margin-bottom: 0px;
	}
	
	.article_form {
		margin-top: 160px;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation .tght_leadership .tght_leadershi_lst li .block-content h2 {
		margin-bottom: 12px;
	}
}

.tech-innovation .quote-desc {
	width: 95%;
}

@media only screen and (max-width: 655px) {
	.tech-innovation .quote-desc .quote {
		margin-top: 20px;
		padding: 40px 65px 45px 40px;
	}
}

@media only screen and (max-width: 600px) {
	.tech-innovation .quote-desc .quote {
		padding: 20px;
	}
}

.tech-innovation .quote-desc .quote:before {
	border-top: 7px solid #efe7ed;
	border-right: 7px solid #efe7ed;
}

@media only screen and (max-width: 600px) {
	.tech-innovation .quote-desc .quote:before {
		border-top: 8px solid #efe7ed;
		border-right: 8px solid #efe7ed;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation .quote-desc .quote:before {
		width: 100px;
		height: 100px;
	}
}

@media only screen and (min-width: 1401px) and (max-width: 1600px) {
	.tech-innovation .quote-desc .quote:before {
		border-top: 8px solid #efe7ed;
		border-right: 8px solid #efe7ed;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .quote-desc .quote:before {
		border-top: 10px solid #efe7ed;
		border-right: 10px solid #efe7ed;
	}
}

@media only screen and (max-width: 655px) {
	.tech-innovation .quote-desc .quote:after {
		width: 112px;
		height: 114px;
	}
}

@media only screen and (min-width: 1800px) {
	.tech-innovation .quote-desc .quote {
		padding: 60px 60px 120px 60px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.tech-innovation .quote-desc .quote {
		padding: 40px 40px 80px 40px;
	}
}

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.upload-btn-wrapper .file_lmt {
	margin-left: 10px;
	font-weight: 300;
	color: #999;
}

.upload-btn-wrapper .btn {
	color: #fff;
	background-color: #ea8123;
	padding: 12px 20px;
	font-size: 1rem;
	outline: none;
	border: none;
	font-weight: 500;
	cursor: pointer;
}

@media only screen and (min-width: 1800px) {
	.upload-btn-wrapper .btn {
		padding: 26px 60px;
		font-size: 1.2rem;
	}
}

.upload-btn-wrapper input[type=file] {
	font-size: 25px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.legal-detail .title.role {
	margin-bottom: 0px;
}

.legal-detail p {
	margin-top: 6px;
}

@media only screen and (min-width: 1800px) {
	.legal-detail p {
		font-size: .8rem;
	}
}

.legal-detail .social-wrapper {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 8px;
}

.legal-detail .info {
	margin-bottom: 15px;
}

.legal-detail .info li {
	display: inline-block;
	border-right: 2px solid #ccc;
	padding-right: 8px;
	padding-left: 8px;
	color: #621755;
	font-weight: 600;
}

@media only screen and (max-width: 1024px) {
	.legal-detail .info li {
		margin-bottom: 10px;
		padding-left: 0;
		border: none;
		display: flex;
		align-items: center;
		font-size: 1.1rem;
	}
}

@media (max-width: 640px) {
	.legal-detail .info li {
		color: #1a1a1a;
	}
}

.legal-detail .info li:first-child {
	padding-left: 0;
}

.legal-detail .info li:last-child {
	border-right: none;
}

@media only screen and (min-width: 1800px) {
	.legal-detail .info li {
		font-size: .9rem;
	}
}

.legal-detail .info li .prop {
	color: rgba(98, 23, 85, .5);
	font-weight: 100;
}

@media only screen and (max-width: 640px) {
	.legal-detail .info li .prop {
		flex-basis: 40%;
		color: #631856;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 601px) {
	.legal-detail .info li .prop {
		flex-basis: 25%;
	}
}

@media only screen and (min-width: 1800px) {
	.legal-detail.contact-us.form {
		padding-bottom: 50px;
	}
}

.legal-detail.contact-us.form .title {
	margin-bottom: 25px;
	margin-top: 20px;
}

@media only screen and (min-width: 1800px) {
	.legal-detail.contact-us.form .title {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}

.legal-detail.contact-us.form .input-wrapper input {
	color: #656565;
}

.legal-detail.contact-us.form .label-container {
	padding: 15px 0 18px;
}

.legal-detail.contact-us.form .label-container label {
	padding-left: 0px;
	font-weight: 300;
	color: #999;
}

@media only screen and (min-width: 1800px) {
	.legal-detail.contact-us.form .label-container label {
		font-size: .8rem;
	}
}

.legal-detail.contact-us.form .upload-btn-wrapper {
	margin-top: 10px;
}

.description-wrapper {
	padding: 20px 30px;
	margin: 30px 0 20px;
}

@media only screen and (max-width: 655px) {
	.description-wrapper {
		padding: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.description-wrapper {
		margin: 40px 0;
		padding: 30px 30px 40px 30px !important;
	}
}

.description-wrapper .title {
	margin-bottom: 20px;
}

.description-wrapper ul li {
	display: flex;
	color: #656565;
	font-weight: 300;
	margin-bottom: 12px;
}

@media only screen and (min-width: 1800px) {
	.description-wrapper ul li {
		line-height: 28px;
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 655px) {
	.gallary-container {
		position: relative;
	}
}

@media only screen and (max-width: 655px) {
	.gallary-container .image-gallary {
		overflow: hidden;
	}
	
	.gallary-container .image-gallary p {
		margin: 15px;
	}
	
	.gallary-container .image-gallary.slick-slider {
		position: static;
	}
	
	.gallary-container .image-gallary .slick-slide img {
		width: 100%;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots {
		bottom: -6px;
		left: 50%;
		transform: translateX(-50%);
		width: auto;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots li {
		display: inline-block;
		width: 35px;
		margin: 0 2px;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots li.slick-active {
		bottom: 3px;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots li.slick-active button {
		background-color: #cea46d;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots li button {
		background-color: #631856;
		height: 3px;
		width: 100%;
		padding: 0;
	}
	
	.gallary-container .image-gallary.slider ul.slick-dots li.slick-slide {
		outline: none;
	}
}

@media only screen and (min-width: 656px) {
	.gallary-container .image-gallary.grid-row-3 {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 40px 30px;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 {
		grid-area: 1/1/3/3;
		position: relative;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 p {
		direction: ltr;
		line-height: 12px;
		line-height: 22px;
		font-weight: 600;
		position: absolute;
		margin: 0;
		padding: 10px;
		bottom: 0;
		background: rgba(255, 255, 255, .9);
	}
}

@media only screen and (min-width: 656px) and (max-width: 767px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 p {
		line-height: 18px;
	}
}

@media only screen and (min-width: 656px) and (max-width: 500px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 p {
		font-size: .8rem;
		line-height: 14px;
	}
}

@media only screen and (min-width: 656px) and (max-width: 1400px) and (min-width: 1025px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 p {
		line-height: 18px;
	}
}

@media only screen and (min-width: 656px) and (min-width: 1800px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 p {
		line-height: 26px;
		font-size: .8rem;
		width: 100%;
		padding: 20px 10px;
	}
}

@media only screen and (min-width: 656px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-2 {
		grid-area: 1/3/2/4;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-2 img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-3 {
		grid-area: 2/3/3/4;
	}
	
	.gallary-container .image-gallary.grid-row-3 .grid-col-3 img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
}

@media only screen and (min-width: 1401px) and (max-width: 1799px) {
	.gallary-container .image-gallary.grid-row-3 .grid-col-1 img {
		height: 94%;
	}
}

.gallery-blog-container {
	margin-top: 60px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 655px) {
	.gallery-blog-container {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 500px) {
	.gallery-blog-container {
		margin-top: 50px;
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 1800px) {
	.gallery-blog-container {
		margin-top: 80px;
		margin-bottom: 60px;
	}
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 40px 30px;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3.rtl {
	direction: rtl;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 {
	grid-area: 1/1/3/3;
	position: relative img;
	position-object-fit: cover;
	position-height: 100%;
	position-width: 100%;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
	padding-left: 10px;
	padding-right: 10px;
	direction: ltr;
	line-height: 12px;
	line-height: 22px;
	font-weight: 600;
	position: absolute;
	bottom: 0;
	background: rgba(255, 255, 255, .9);
}

@media only screen and (max-width: 767px) {
	.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
		line-height: 18px;
	}
}

@media only screen and (max-width: 500px) {
	.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
		font-size: .8rem;
		line-height: 14px;
	}
}

@media only screen and (max-width: 1400px) and (min-width: 1025px) {
	.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
		line-height: 18px;
	}
}

@media only screen and (min-width: 1800px) {
	.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
		line-height: 26px;
		font-size: .8rem;
	}
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-2 {
	grid-area: 1/3/2/4;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-2 img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-3 {
	grid-area: 2/3/3/4;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-3 img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 {
	display: flex;
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-1 {
	flex-basis: calc(50% - 20px);
	margin-right: 40px;
}

@media only screen and (max-width: 655px) {
	.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-1 {
		margin-right: 20px;
	}
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-1 img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-1 p {
	padding-left: 10px;
	padding-right: 10px;
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-2 {
	flex-basis: 50%;
}

.gallery-blog-container .gallary-blog.two-colum-gallery .img-gallary-wpr.grid-row-2 .grid-col-2 img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.law-service-table {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
	.law-service-table {
		display: block;
	}
}

.law-service-table>li {
	flex-basis: calc(20% - 7px);
	margin-right: 8px;
}

@media only screen and (max-width: 1024px) {
	.law-service-table>li {
		width: 100%;
		margin-bottom: 7px;
	}
}

@media only screen and (max-width: 1024px) {
	.law-service-table>li .detail-info-wrapper {
		display: flex;
	}
	
	.law-service-table>li .detail-info-wrapper h2 {
		flex-basis: 30%;
		margin-right: 6px;
		max-width: 30%;
		word-break: break-all;
		height: auto !important;
	}
	
	.law-service-table>li .detail-info-wrapper .detail-info-tp {
		flex-basis: 68%;
		margin-right: 6px;
		height: auto !important;
	}
	
	.law-service-table>li .detail-info-wrapper .detail-info-bt {
		flex-basis: 30%;
		max-width: 30%;
	}
}

.law-service-table>li:last-child {
	margin-right: 0;
}

.law-service-table>li:nth-child(odd) .detail-info {
	background: #fff1e2;
}

.law-service-table>li:nth-child(even) .detail-info {
	background: #e6d6df;
}

.law-service-table>li h2 {
	background: #621755;
	padding: 10px;
	color: #fff;
	font-weight: 600;
	font-size: .8rem;
	display: flex;
	align-items: center;
	margin: 0;
}

@media only screen and (min-width: 1025px) {
	.law-service-table>li h2 {
		margin-bottom: 8px;
	}
}

@media only screen and (max-width: 1024px) {
	.law-service-table>li h2 {
		align-items: baseline;
		margin-right: 10px;
	}
}

.law-service-table>li .detail-info {
	padding: 10px 12px;
	margin-bottom: 7px;
}

@media only screen and (max-width: 1024px) {
	.law-service-table>li .detail-info {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.law-service-table>li .detail-info {
		padding-bottom: 30px;
	}
}

.law-service-table>li .detail-info p {
	font-weight: 300;
	font-size: .9rem;
	color: #414042;
	margin-top: 0;
}

@media only screen and (min-width: 1800px) {
	.law-service-table>li .detail-info p {
		font-size: .8rem;
		line-height: 19px;
	}
}

.law-service-table>li .detail-info ul li {
	padding-bottom: 12px;
	display: flex;
	font-weight: 300;
	font-size: .9rem;
	color: #414042;
}

@media only screen and (max-width: 680px) {
	.law-service-table>li .detail-info ul li {
		word-wrap: anywhere;
	}
}

@media only screen and (min-width: 1800px) {
	.law-service-table>li .detail-info ul li {
		font-size: .8rem;
		line-height: 19px;
	}
}

.law-service-table>li .detail-info ul li:before {
	content: "•";
	color: #656565;
}

.form-overlay-content {
	border: 3px solid #621755;
	padding: 30px 25px;
}

.podcast-landing .title {
	margin-bottom: 20px;
}

@media only screen and (min-width: 1800px) {
	.podcast-landing .title {
		margin-bottom: 30px;
	}
}

.podcast-landing .select-wrapper {
	margin-left: 0;
	margin-top: 0;
}

@media only screen and (max-width: 655px) {
	.podcast-landing .select-wrapper .select-pod {
		transition: all .1s ease-in;
		opacity: 0;
		height: 0;
	}
	
	.podcast-landing .select-wrapper .select-pod.open {
		opacity: 1;
		height: auto;
		margin-top: 15px;
	}
}

.podcast-landing .select-wrapper.border-reverse:before {
	width: 25%;
	background: #621755;
}

.podcast-landing .select-wrapper.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.podcast-landing .tght_leadership {
	padding-top: 35px;
}

@media only screen and (min-width: 1800px) {
	.podcast-landing .tght_leadership {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img {
	min-height: auto;
}

@media only screen and (min-width: 1800px) {
	.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img {
		/*min-height: 405px;*/
		aspect-ratio: 100/60;
		min-height: intrinsic;
	}
}

.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
	width: 100%;
	max-height: none;
	object-fit: contain;
	height: auto;
}

@media only screen and (max-width: 500px) {
	.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
		max-height: 330px;
		object-fit: cover;
		height: 100%;
	}
}

@media only screen and (min-width: 1800px) {
	.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
		/* max-height: 405px; */
		aspect-ratio: 100/60;
		object-fit: cover;
		height: 100%;
	}
}

.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
	margin-top: 0;
}

@media only screen and (max-width: 655px) {
	.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
		margin-bottom: 15px;
	}
}

.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .episode {
	font-size: .8rem;
	color: gray;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .episode {
		font-size: .7rem;
	}
}

.podcast-landing .tght_leadership .tght_leadershi_lst li .blog-wrap .block-content p {
	margin-bottom: 10px;
}

.podcast-landing.podcast-info {
	margin-bottom: 10px;
}

.podcast-landing .filter-select {
	margin-bottom: 15px;
}

.podcast-detail-wrapper {
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.podcast-detail-wrapper p {
		font-size: .8rem;
		line-height: 26px;
	}
}

@media only screen and (max-width: 655px) {
	.podcast-detail-wrapper .social-contact {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 2px solid #f1f1f1;
		padding: 30px 0 10px 0;
		margin-bottom: 30px;
	}
	
	.podcast-detail-wrapper .social-contact .download a {
		border: none;
		margin: 0;
		padding: 0;
	}
	
	.podcast-detail-wrapper .social-contact .social-wrapper {
		border: none;
	}
}

.podcast-detail .by-whom li {
	display: inline-block;
	padding-right: 5px;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.podcast-detail .by-whom li {
		font-size: .8rem;
	}
}

.podcast-detail .by-whom li a {
	color: #e37f26;
}

.podcast-detail .by-whom li a span {
	color: #333;
}

.podcast-detail .date {
	margin-top: 15px;
}

.podcast-detail .date li {
	display: inline-block;
	padding-right: 5px;
	font-weight: 600;
	color: gray;
}

@media only screen and (min-width: 1800px) {
	.podcast-detail .date li {
		font-size: .9rem;
	}
}

.podcast-detail .date li a {
	color: gray;
}

.podcast-detail .date li:nth-child(2) {
	border-left: 1px solid gray;
	padding-left: 5px;
}

.podcast-detail.comments.border-top {
	padding-top: 20px;
}

.podcast-detail.comments.border-top:before {
	margin-right: 14px;
}

.podcast-detail.comments.border-top:after {
	margin-left: 14px;
	width: 77.2%;
}

@media only screen and (max-width: 655px) {
	.podcast-detail.comments.border-top:after {
		width: 75%;
	}
}

@media only screen and (max-width: 600px) {
	.podcast-detail.comments.border-top:after {
		width: 71%;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 656px) {
	.podcast-detail.comments.border-top:after {
		width: 70%;
	}
}

.podcast-detail.comments .page-decs {
	margin-top: 10px;
}

.podcast-detail.comments h4 {
	margin-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.podcast-detail.comments h4 {
		margin-bottom: 25px;
	}
}

.podcast-detail.comments .comment-list .date-time li {
	display: inline-block;
	color: gray;
	padding-right: 5px;
	font-weight: 600;
}

.podcast-detail.comments .comment-list .date-time li a {
	color: gray;
}

.podcast-detail.comments .comment-list .date-time li:nth-of-type(2) {
	border-left: 1px solid gray;
	padding-left: 6px;
}

.podcast-detail .related-podcast {
	padding-top: 25px;
	padding-bottom: 20px;
	margin-top: 15px;
}

@media only screen and (min-width: 1800px) {
	.podcast-detail .related-podcast {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.podcast-detail .social-contact.mobile-device {
	padding-top: 10px;
}

.select-wrapper .select.checkbox {
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.select-wrapper .select.checkbox .thought-dropdown span {
	display: block;
	padding: 10px;
	cursor: pointer;
	color: #666;
	font-size: .9rem;
	position: relative;
}

.select-wrapper .select.checkbox .thought-dropdown span:after {
	font-family: "icomoon";
	content: "";
	position: absolute;
	right: 10px;
	color: #f06638;
	font-size: .7rem;
	font-weight: 600;
	top: 14px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.select-wrapper .select.checkbox .thought-dropdown span.rotate:after {
	transform: rotate(180deg);
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.select-wrapper .select.checkbox .check-menu {
	display: none;
}

.select-wrapper .select.checkbox.is-active .check-menu {
	display: block;
}

@media only screen and (min-width: 1800px) {
	.event-detail p {
		font-size: .8rem;
	}
}

.event-detail .event-date {
	display: flex;
	align-items: end;
}

@media only screen and (max-width: 655px) {
	.event-detail .event-date {
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 1800px) {
	.event-detail .event-date {
		margin-top: -14px;
	}
}

.event-detail .event-date li {
	display: flex;
	align-items: end;
	color: #621755;
	font-weight: 600;
	font-size: 1.2rem;
}

@media only screen and (min-width: 1800px) {
	.event-detail .event-date li {
		font-size: 1.5rem;
	}
}

.event-detail .event-date li:first-child {
	padding-right: 30px;
}

.event-detail .event-date li a {
	color: #621755;
}

.event-detail .event-date li a img {
	padding-right: 6px;
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact {
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media only screen and (min-width: 656px) {
	.event-detail .social-contact {
		order: 1;
	}
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .social-wrapper {
		justify-content: space-between;
		border-bottom: 2px solid #f1f1f1;
	}
}

@media only screen and (min-width: 656px) {
	.event-detail .social-contact .social-wrapper {
		display: block;
	}
}

.event-detail .social-contact .social-wrapper .social-container {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .social-wrapper .social-container {
		border: none;
		margin-bottom: 0;
		padding-bottom: 20px;
	}
	
	.event-detail .social-contact .social-wrapper .social-container .print-wrapper {
		display: none;
	}
}

@media only screen and (min-width: 1800px) {
	.event-detail .social-contact .social-wrapper .social-container {
		padding-bottom: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.event-detail .social-contact .social-wrapper form .primary_btn {
		padding: 15px 20px;
	}
}

.event-detail .social-contact .location-wrapper {
	margin-top: 25px;
}

@media only screen and (max-width: 500px) {
	.event-detail .social-contact .location-wrapper {
		display: block;
	}
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .location-wrapper {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .location-wrapper.border {
		padding-bottom: 10px;
	}
}

@media only screen and (min-width: 656px) {
	.event-detail .social-contact .location-wrapper.border:after {
		content: none;
	}
}

@media only screen and (min-width: 656px) {
	.event-detail .social-contact .location-wrapper.border:before {
		content: none;
	}
}

.event-detail .social-contact .location-wrapper .location-info {
	padding-bottom: 10px;
}

@media only screen and (max-width: 360px) {
	.event-detail .social-contact .location-wrapper .location-info {
		padding-right: 10px;
	}
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .location-wrapper .location-info.border:after {
		content: none;
	}
}

@media only screen and (max-width: 655px) {
	.event-detail .social-contact .location-wrapper .location-info.border:before {
		content: none;
	}
}

.event-detail .social-contact .location-wrapper .location-info .title-wrapper h2 {
	margin-bottom: 15px;
}

.event-detail .social-contact .location-wrapper .location-info address {
	font-weight: 500;
	font-style: normal;
	line-height: 26px;
}

.event-detail .social-contact .location-wrapper .location-info address h4 {
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 15px;
}

@media only screen and (min-width: 1800px) {
	.event-detail .social-contact .location-wrapper .location-info address h4 {
		font-size: .8rem;
	}
}

.event-detail .social-contact .location-wrapper .location-info address p {
	margin-top: 0;
	margin-bottom: 5px;
	line-height: 26px;
}

.event-detail .social-contact .location-wrapper .contact-info .title-wrapper h2 {
	margin-bottom: 15px;
	margin-top: 25px;
}

.event-detail .social-contact .location-wrapper .contact-info .personal-detail h4 {
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 15px;
	line-height: 26px;
}

@media only screen and (min-width: 1800px) {
	.event-detail .social-contact .location-wrapper .contact-info .personal-detail h4 {
		font-size: .8rem;
	}
}

.event-detail .social-contact .location-wrapper .contact-info .personal-detail p {
	margin: 0;
	font-weight: 500;
	line-height: 26px;
}

.event-detail .social-contact .location-wrapper .contact-info .personal-detail p a {
	color: #1a1a1a;
}

.event-detail.description-wrapper {
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
}

.event-detail.pannel-list {
	padding-top: 25px;
}

@media only screen and (min-width: 1800px) {
	.event-detail.pannel-list {
		padding-top: 40px;
		padding-bottom: 30px;
	}
}

.event-detail.pannel-list .title {
	margin-bottom: 10px;
}

.event-detail.pannel-list .contact_list .profile .profile_info {
	padding-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.event-detail.pannel-list .contact_list .profile .profile_info {
		padding-bottom: 25px;
	}
}

@media only screen and (min-width: 1800px) {
	.event-detail.pannel-list .contact_list .profile .profile_info h2 {
		font-size: 1.2rem;
		line-height: 28px;
		margin-bottom: 5px;
	}
}

@media only screen and (min-width: 1800px) {
	.event-detail.pannel-list .contact_list .profile .profile_info p {
		line-height: 21px;
	}
}

.view-map a {
	color: #ea8123;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 6px 0px;
	font-weight: 600;
}

.view-map a span {
	padding-left: 15px;
}

@media only screen and (min-width: 1800px) {
	.view-map a span {
		font-size: .7rem;
	}
}

.guest-column.tght_leadership {
	padding-bottom: 30px;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership {
		padding-top: 0px;
	}
}

@media only screen and (min-width: 1800px) {
	.guest-column.tght_leadership {
		padding-top: 0px;
		padding-bottom: 50px;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
	object-fit: fill;
}

.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-content small {
	color: #333;
}

.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
	margin-top: 10px;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-content h2 {
		margin-bottom: 15px;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .inner-content p {
	font-weight: 300;
}

.guest-column.tght_leadership .tght_leadershi_lst li .blog-wrap .block-content .inner-content small {
	color: gray;
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container {
	background-color: #fff;
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	border-top: none;
	border-right: none;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container {
		padding-bottom: 0;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap {
		flex-wrap: initial;
		flex-direction: row;
	}
}

@media only screen and (max-width: 600px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap {
		display: block;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-img {
	width: 100%;
	min-height: 255px;
	background: #f1f1f1;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-img {
		flex-basis: 45%;
		min-height: 220px;
		object-fit: cover;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-img img {
	width: 100%;
	height: 100%;
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content {
	padding: 12px 15px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (max-width: 655px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content {
		flex-basis: 45%;
		padding-bottom: 12px;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content small {
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content small {
		font-size: .7rem;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content h2 {
	font-weight: 600;
	color: #621755;
	margin-bottom: 5px;
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content h2 a {
	color: #621755;
}

@media only screen and (min-width: 1800px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content h2 {
		line-height: 36px;
		margin-bottom: 15px;
	}
}

.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content .inner-content {
	margin-top: auto;
}

@media only screen and (min-width: 1800px) {
	.guest-column.tght_leadership .tght_leadershi_lst .podcast-container .podcast-wrap .pod-content .inner-content p {
		font-size: .8rem;
		line-height: 26px;
	}
}

.rss-blog {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media only screen and (max-width: 767px) {
	.rss-blog .rss-feed {
		display: none;
	}
}

.rss-blog .rss-feed a img {
	width: 35px;
}

.dummy-text {
	margin-top: 20px;
	width: 95%;
}

.role-container {
	padding-left: 28px !important;
	padding-right: 28px !important;
}

@media only screen and (max-width: 655px) {
	.role-container {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.role-container {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}
}

.skills-container {
	padding-left: 42px !important;
	padding-right: 42px !important;
}

@media only screen and (max-width: 655px) {
	.skills-container {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.skills-container {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.gurukul-video-container {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}

.tech-thought .tght_leadership {
	padding-top: 0;
}

.loader-overlay {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, .5);
	display: none;
	z-index: 99999;
}

.loader-overlay .overlay-inner {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.loader-overlay .overlay-inner .overlay-content {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.loader-overlay .overlay-inner .overlay-content .spinner {
	width: 75px;
	height: 75px;
	display: inline-block;
	border-width: 3px;
	border-color: #621755;
	border-top-color: #fff;
	animation: spin 2s infinite linear;
	border-radius: 100%;
	border-style: solid;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.insight-published {
	padding-top: 30px;
	padding-bottom: 15px;
}

.user-registration-MyAccount-navigation {
	padding-top: 26px !important;
}

.user-registration-MyAccount-navigation ul li a {
	font-weight: 300 !important;
}

@media only screen and (min-width: 1800px) {
	.user-registration-MyAccount-navigation ul li a {
		font-size: 1.5rem !important;
		line-height: 36px;
	}
}

.user-registration-MyAccount-navigation ul li.is-active a {
	font-weight: 700 !important;
}

.user-registration-MyAccount-content .user-bookmark .border.border-reverse:before {
	width: 25%;
	background: #621755;
}

.user-registration-MyAccount-content .user-bookmark .border.border-reverse:after {
	width: 74.7%;
	opacity: .7;
}

.favourited-item {
	border-radius: 50%;
	background: #611754;
}

#show-thankyou-registered form.reg-complete {
	border: none;
}

.form-overlay-content h2 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	color: #621755;
}

.form-overlay-content p {
	margin-top: 0;
	font-size: .9rem;
	color: #1a1a1a;
}

.success-stories .contact_list .profile .profile_img a img {
	min-height: 580px;
}

@media (max-width: 767px) {
	.success-stories .contact_list .profile .profile_img a img {
		min-height: auto;
	}
}

.success-stories .contact_list .profile .profile_info {
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	min-height: auto;
	max-height: none;
}

.success-stories .slick-dots li {
	width: 35px;
	bottom: 0;
	transition: all .3s ease;
	-ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	display: inline-block !important;
}

.success-stories .slick-dots li button {
	background-color: #621755;
	height: 3px;
	width: 100%;
	padding: 0;
}

.success-stories .slick-dots li.slick-active {
	bottom: 6px;
}

.success-stories .slick-dots li.slick-active button {
	background-color: #d0a56d;
	height: 5px;
}

.ur-frontend-form .ur-form-row .ur-form-grid input {
	margin-bottom: 0 !important;
	min-height: 30px !important;
	color: #1a1a1a;
}

@media (min-width: 1800px) {
	.ur-frontend-form .ur-form-row .ur-form-grid .popinp {
		padding: 18px;
		width: 50%;
		box-sizing: border-box;
	}
}

#login h2 {
	margin-bottom: 10px;
}

#login p {
	margin-top: 0;
}

#login .input-wrapper {
	width: 270px !important;
	box-sizing: border-box;
}

@media (min-width: 1800px) {
	#login .input-wrapper {
		width: 380px !important;
		padding: 20px 10px !important;
	}
}

#login .input-wrapper input {
	color: #1a1a1a;
}

.contact-us .input-wrapper {
	width: 100%;
	box-shadow: 2px -2px 1.5px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 12px;
	box-sizing: border-box;
	display: inline-block;
}

.contact-us .input-wrapper input, .contact-us .input-wrapper textarea {
	border: none;
	width: 100%;
	color: #621755;
	font-weight: 300;
	padding: 10px;
}

.wpcf7-form-control-wrap {
	position: relative;
	padding: 10px;
	display: inline-block;
	width: 100%;
}

.wpcf7-not-valid-tip {
	font-size: .8em;
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	display: inline-block;
	line-height: 20px;
}

.social-contact .wpcf7-form-control-wrap {
	position: relative;
	padding: 10px;
	display: inline-block;
}

.user-registration-profile-fields__field-wrapper .input-text {
	padding: 4px 0 !important;
}

.kc-title-wrap .kc_title.title, .kc_title.page-decs.large {
	padding-left: 10px;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 img {
	width: 100%;
	height: 100%;
}

.kc_title.page-decs.large.padding-bottom-0 {
	padding-bottom: 0;
}

.inner_big_banner picture img {
	height: intrinsic;
	width: 100%;
}

.inner_big_banner .banner_title.banner-icon img {
	width: 220px;
}

.inner_big_banner .banner_title {
	min-height: 100px;
}

.page-id-242 .inner_small_banner .padding-bottom-0 {
	padding-left: 0;
}

@media (min-width: 1020px) and (max-width: 1024px) {
	.hexa_blog .hexa_txt_005 {
		left: 26%;
		bottom: 16%;
	}
	
	.hexa_blog .hexa_txt_004 {
		right: 23%;
		bottom: 13%;
	}
}

html {
	font-size: 14px;
}

@media (min-width: 1800px) {
	html {
		font-size: 20px;
	}
}

@media (max-width: 1200px) {
	html {
		font-size: 14px;
	}
}

body {
	font-family: "Kohinoor";
	font-weight: 300;
	font-style: normal;
}

ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

p, h3 {
	line-height: 1.5rem;
}

h3 {
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 1px;
}

h6 {
	font-weight: normal;
}

input {
	outline: none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/source/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/down-arrow.svg");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position-x: 100%;
	background-position-y: 7px;
	border: 1px solid #dfdfdf;
	border-radius: 2px;
	padding: 1rem;
	padding-right: 2rem;
}

select.nitro-lazy {
	background-image: none !important;
}

picture {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

[class^="icon-"], [class*=" icon-"], [class*="icon"] {
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.text_center {
	text-align: center;
}

.primary_btn {
	background-color: #621755;
	border: none;
	line-height: 1rem;
	padding: 10px 20px;
	color: #fff;
	font-size: .9rem;
	position: relative;
}

@media only screen and (min-width: 1800px) {
	.primary_btn {
		font-weight: 100;
		padding: 15px 37px;
	}
}

.primary_btn:after, .primary_btn:before {
	content: "";
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	top: 5px;
	opacity: 0;
}

.primary_btn:hover:after {
	opacity: 1;
	content: "";
	width: 35%;
	height: 7px;
	position: absolute;
	right: -.1px;
	top: -7px;
	background-color: #d0a56d;
}

@media only screen and (min-width: 1800px) {
	.primary_btn:hover:after {
		height: 10px;
		top: -10px;
	}
}

.primary_btn:hover:before {
	opacity: 1;
	content: "";
	width: 35%;
	height: 7px;
	position: absolute;
	right: -.1px;
	top: 0;
	background-color: #fff;
}

@media only screen and (min-width: 1800px) {
	.primary_btn:hover:before {
		height: 10px;
	}
}

h1 {
	font-weight: normal;
}

.container, .kc-container {
	width: 77% !important;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 1;
}

@media (max-width: 768px) {
	.container, .kc-container {
		width: 87% !important;
	}
}

@media (max-width: 640px) {
	.container, .kc-container {
		width: 95% !important;
	}
}

@media (max-width: 480px) {
	.container, .kc-container {
		width: 100% !important;
	}
}

.margin-0 {
	margin: 0;
}

.padding-0 {
	padding: 0;
}

.padding-top-0 {
	padding-top: 0;
}

.padding-bottom-0 {
	padding-bottom: 0;
}

.padding-right-0 {
	padding-right: 0;
}

.padding-left-0 {
	padding-left: 0;
}

.padding-bottom-14 {
	padding-bottom: 14px;
}

.listing li {
	margin: 8px 0;
	display: flex;
}

@media only screen and (max-width: 655px) {
	.listing li:last-child {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1800px) {
	.listing li {
		margin-bottom: 12px;
	}
}

.listing li:before {
	content: "•";
	color: #656565;
}

.listing li:hover:before {
	color: #444;
}

.listing li a {
	color: #656565;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

@media only screen and (min-width: 1800px) {
	.listing li a {
		font-size: 1.2rem;
	}
}

.listing li a:hover {
	color: #444;
}

.listing.corporate li {
	min-height: 20px;
	text-transform: capitalize;
}

.listing.corporate li:hover:before {
	color: #35a8e0;
	font-size: 1.1rem;
	font-weight: 500;
}

.listing.corporate a:hover {
	font-weight: 500;
	color: #35a8e0;
	font-size: 1.1rem;
}

.listing.finance li {
	min-height: 20px;
}

.listing.finance li:hover:before {
	color: #fcca40;
	font-size: 1.1rem;
	font-weight: 500;
}

.listing.finance a:hover {
	font-weight: 500;
	color: #fcca40;
	font-size: 1.1rem;
}

.listing.dispute li {
	min-height: 20px;
}

.listing.dispute li:hover:before {
	color: #f06638;
	font-size: 1.1rem;
	font-weight: 500;
}

.listing.dispute a:hover {
	font-weight: 500;
	color: #f06638;
	font-size: 1.1rem;
}

.listing.market li {
	min-height: 20px;
}

.listing.market li:hover:before {
	color: #a2cb39;
	font-size: 1.1rem;
	font-weight: 500;
}

.listing.market a:hover {
	font-weight: 500;
	color: #a2cb39;
	font-size: 1.1rem;
}

.listing_org li {
	color: #ea8123;
	padding: 4px 0 10px;
}

.listing_org li a {
	color: #ea8123;
	font-weight: 700;
	font-size: .9rem;
}

.border {
	position: relative;
	padding-bottom: 20px;
}

.border:after {
	content: "";
	height: 3px;
	background-color: #621755;
	display: block;
	width: 20%;
	position: absolute;
	left: 0;
	bottom: 3px;
}

@media (max-width: 480px) {
	.border:after {
		height: 2px;
	}
}

.border:before {
	content: "";
	height: 2px;
	background-color: #621755;
	display: block;
	width: 79.5%;
	position: absolute;
	right: 0;
	bottom: 0;
}

@media (max-width: 480px) {
	.border:before {
		height: 1px;
	}
}

.hrz_listing li {
	display: inline-flex;
	color: #1a1a1a;
}

.hrz_listing li a {
	color: #1a1a1a;
}

.hrz_listing li a:hover {
	color: #444;
}

header {
	padding-top: 30px;
	padding-bottom: 30px;
	background: rgba(98, 23, 85, .9);
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	header {
		position: relative;
	}
}

@media (max-width: 1366px) {
	header {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width: 1024px) {
	header {
		padding-top: 0px;
	}
	
	header:not(.navigation-header) {
		display: none;
	}
}

header.ex_header {
	position: inherit;
	background-color: #fff;
}

header.ex_header .menus li a {
	color: #621755;
}

@media only screen and (max-width: 600px) {
	header.ex_header .menu-list {
		display: none;
	}
}

header.ex_header .menu-list .menu-first .selet-lang select {
	color: #707070;
	-webkit-filter: grayscale(100%) brightness(500%) brightness(50%);
	filter: grayscale(100%) brightness(500%) brightness(50%);
}

header .logo {
	padding-left: 15px;
	padding-right: 15px;
}

@media (max-width: 1366px) {
	header .logo {
		display: block;
	}
}

header .logo a {
	width: 200px;
	display: block;
}

@media (max-width: 1200px) {
	header .logo a {
		width: 180px;
	}
}

@media (max-width: 1124px) {
	header .logo a {
		width: 160px;
	}
}

@media only screen and (max-width: 600px) {
	header .logo a {
		width: 150px;
	}
}

header .logo img {
	max-width: 100%;
}

header .social {
	display: flex;
}

header .social li a {
	display: block;
	display: flex;
	color: #611754;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	background: #fff;
	box-sizing: border-box;
	font-size: 16px;
}

header .social li a:hover {
	color: #cea46d;
}

@media only screen and (min-width: 1800px) {
	header .social li a {
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 1680px) {
	header .social li a {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}
}

@media (max-width: 640px) {
	header .social li a {
		margin-right: 5px;
	}
}

header .social li a.linkedin:after {
	content: "";
}

header .social li a.twitter:after {
	content: "";
}

header .social li a.facebook:after {
	content: "";
}

header .social li a.icon-instagram:before {
	content: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/uploads/2020/09/instagram-new.png");
}

header .social li a.icon-instagram:hover:before {
	content: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/uploads/2020/09/ig.png");
}

header .social li a.youtube:after {
	content: "";
}

header .social li:last-child a {
	margin-right: 0;
}

header .mega-menu {
	flex-grow: 1;
}

@media (min-width: 1200px) {
	header .mega-menu .menu {
		margin-top: 35px;
	}
}

header .menu {
	flex-grow: 1;
}

header .menus {
	display: flex;
	padding-top: 15px;
	height: 150%;
}

@media only screen and (min-width: 1400px) {
	header .menus {
		height: 150%;
	}
}

@media only screen and (min-width: 1800px) {
	header .menus {
		height: 155%;
	}
}

header .menus>li {
	position: relative;
	margin: 0 .9%;
}

@media (max-width: 1680px) {
	header .menus>li {
		margin: 0 2.2%;
	}
}

@media (max-width: 1537px) {
	header .menus>li {
		margin: 0 .9%;
	}
}

@media (max-width: 1440px) {
	header .menus>li {
		margin: 0 .7%;
	}
}

@media (max-width: 1419px) {
	header .menus>li {
		margin: 0 .5%;
	}
}

@media (max-width: 1366px) {
	header .menus>li {
		margin: 0 .1%;
	}
}

@media (max-width: 1325px) {
	header .menus>li {
		margin: 0 0;
	}
}

header .menus>li.active>a {
	color: #d5a46c;
	top: -8px;
}

header .menus>li.current-menu-parent>a {
	color: #d5a46c;
	top: -8px;
}

header .menus>li:hover>a {
	color: #d5a46c;
	top: -8px;
}

header .menus>li a {
	padding: 5px 15px;
	color: #fff;
	position: relative;
	top: 0;
	text-transform: lowercase;
	transition: all .2s ease-out;
}

@media (min-width: 1080px) {
	.career-detail .notification-banner {
		height: 350px;
	}
}

@media (min-width: 1080px) and (max-width: 1280px) {
	header .menus>li a {
		padding: 5px 12px;
	}
	
	.career-detail .notification-banner {
		height: 350px;
	}
}

@media (min-width: 1281px) and (max-width: 1440px) {
	.career-detail .notification-banner {
		height: 380px;
	}
}

@media (min-width: 1441px) and (max-width: 1650px) {
	.career-detail .notification-banner {
		height: 450px;
	}
}

@media (min-width: 1651px) and (max-width: 1920px) {
	.career-detail .notification-banner {
		height: 600px;
	}
}

@media (max-width: 1256px) {
	header .menus>li a {
		padding: 5px 10px;
	}
}

@media (max-width: 1220px) {
	header .menus>li a {
		padding: 5px 8px;
	}
}

@media (max-width: 1171px) {
	header .menus>li a {
		padding: 5px 7px;
	}
}

header .menus>li.search {
	margin-left: auto;
	margin-top: 4px;
	position: relative;
}

header .menus>li.search.blue-search .search-btn:after {
	color: #621755;
}

header .menus>li.search .search-btn {
	padding-right: 0;
	cursor: pointer;
	width: auto;
	display: block;
}

header .menus>li.search .search-btn:after {
	content: "";
	color: #fff;
}

header .menus>li.search .search-btn:hover {
	top: 0px;
}

header .menus>li.search .search-form .search-wrapper {
	position: absolute;
	right: 0;
	top: -6px;
	display: flex;
	width: 0px;
	transform: translateX(100%);
	opacity: 0;
	transition: all .3s ease;
	z-index: -1;
}

header .menus>li.search .search-form .search-wrapper button {
	border: 0;
	position: absolute;
	z-index: 2;
	right: 4px;
	top: 3px;
	background: transparent;
	color: #611754;
	outline: none;
	cursor: pointer;
}

@media only screen and (min-width: 1800px) {
	header .menus>li.search .search-form .search-wrapper button {
		right: 8px;
	}
}

header .menus>li.search .search-form .search-wrapper input {
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 5px 20px 5px 5px;
	border-radius: 3px;
	border: 1px solid #d5a46c;
}

@media only screen and (min-width: 1800px) {
	header .menus>li.search .search-form .search-wrapper input {
		padding: 5px 30px 5px 5px;
	}
}

header .menus>li.search .search-form.open .search-wrapper {
	transform: translateX(0);
	opacity: 1;
	width: 230px;
	z-index: 1;
}

@media only screen and (min-width: 1800px) {
	header .menus>li.search .search-form.open .search-wrapper {
		width: 300px;
	}
}

header .menus>li.search .search-form.open .search-wrapper .search-btn {
	top: 7px;
}

header .menus>li.search .search-form.open .search-wrapper .search-btn:after {
	color: #621755;
}

header .menus>li .sub-menu {
	position: absolute;
	z-index: 1;
	display: none;
	padding-top: 10px;
	padding-bottom: 15px;
	background: #fff;
	top: 68px;
	width: 165px;
	box-shadow: 0px 0px -1px #d5a46c;
}

@media (max-width: 1440px) {
	header .menus>li .sub-menu {
		top: 78px;
	}
}

@media (max-width: 1366px) {
	header .menus>li .sub-menu {
		top: 69px;
	}
}

@media (max-width: 1200px) {
	header .menus>li .sub-menu {
		top: 58px;
	}
}

@media (max-width: 1100px) {
	header .menus>li .sub-menu {
		top: 46px;
	}
}

@media only screen and (min-width: 1800px) {
	header .menus>li .sub-menu {
		width: 270px;
	}
}

header .menus>li .sub-menu li {
	position: static;
}

header .menus>li .sub-menu li.active>a {
	top: 0;
	font-weight: 600;
}

header .menus>li .sub-menu li:hover .sub-menu {
	display: block;
}

header .menus>li .sub-menu li a {
	display: block;
	color: #d5a46c;
	padding: 8px 20px;
}

@media only screen and (min-width: 1800px) {
	header .menus>li .sub-menu li a {
		padding: 8px 20px 8px 30px;
		font-size: .9rem;
	}
}

header .menus>li .sub-menu li a:hover {
	top: 0;
	color: #611754;
	font-weight: 600;
}

header .menus>li .sub-menu li>.sector-menu {
	position: absolute;
	left: 100%;
	top: 0;
	min-height: 100%;
	box-sizing: border-box;
	background: #b6b6b6;
	box-shadow: 0px 0px 1px #b6b6b6;
	display: none;
	padding: 18px 0px 18px 30px;
	max-width: 700px;
	width: 550px;
}

@media only screen and (min-width: 1800px) {
	header .menus>li .sub-menu li>.sector-menu {
		max-width: 1000px;
		width: 980px;
		padding: 24px 0px 18px 50px;
		box-sizing: border-box;
	}
}

@media only screen and (min-width: 1300px) {
	header .menus>li .sub-menu li>.sector-menu {
		max-width: 800px;
		width: 700px;
		padding: 24px 0px 18px 50px;
		box-sizing: border-box;
	}
}

header .menus>li .sub-menu li>.sector-menu .menu-item {
	width: calc(35% - 20px);
	width: -webkit-calc(35% - 20px);
	width: -moz-calc(35% - 20px);
	padding-right: 20px;
	box-sizing: border-box;
}

header .menus>li .sub-menu li>.sector-menu .menu-item:last-child {
	padding-right: 0;
}

header .menus>li .sub-menu li>.sector-menu .menu-item img {
	height: 17px;
}

header .menus>li .sub-menu li>.sector-menu .menu-item .list-info .list_title img {
	height: 17px;
}

header .menus>li .sub-menu li>.sector-menu .menu-item .multi-menu-item:last-child img {
	height: 32px;
}

header .menus>li .sub-menu li>.sector-menu ul {
	padding-top: 5px;
}

header .menus>li .sub-menu li>.sector-menu ul li a {
	color: #fff;
	padding-left: 0;
}

header .menus>li .sub-menu li:hover .sector-menu {
	display: flex;
}

header .menus>li .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	min-height: 100%;
	box-sizing: border-box;
	background: #b6b6b6;
	box-shadow: 0px 0px 1px #b6b6b6;
	display: none;
}

header .menus>li .sub-menu .sub-menu li a {
	color: #fff;
}

header .menus>li .sub-menu .sub-menu li a:hover {
	color: #611754;
}

header .menus>li:hover>.sub-menu {
	display: block;
}

header .menu-list {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

@media (max-width: 1280px) {
	header .menu-list {
		width: 70%;
	}
}

@media (max-width: 1280px) {
	header .menu-list {
		width: 65%;
	}
}

header .menu-list .menu-first {
	margin-left: auto;
	display: flex;
	align-items: center;
}

header .menu-list .menu-first .selet-lang select {
	border: 0;
	outline: none;
	color: #fff;
	appearance: none;
	cursor: pointer;
	padding: 2px 11px 2px 5px;
	text-transform: uppercase;
}

header .menu-list .menu-first .selet-lang select option {
	color: #611754;
	padding: 2px 5px;
}

header .top-search {
	position: absolute;
	left: 0;
	top: 0;
	top: -100%;
	background: #fff;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .4);
}

header .top-search.open {
	opacity: 1;
	top: 0;
}

header .top-search .menu_search {
	width: 100%;
	height: 100%;
}

header .top-search .menu_search form {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	width: 80%;
	margin: 0 auto;
}

header .top-search .menu_search form input {
	width: 100%;
	min-height: 40px;
	outline: none;
	border: none;
	padding-right: 90px;
	color: #b6b6b6;
}

header .top-search .menu_search form .btn-wrapper {
	position: absolute;
	right: 20px;
}

header .top-search .menu_search form .btn-wrapper button {
	line-height: 40px;
	background-color: transparent;
	border: none;
}

header .top-search .menu_search form .btn-wrapper button.search {
	top: 18px;
	right: 36px;
}

header .top-search .menu_search form .btn-wrapper button.search:after {
	content: "";
	font-size: 1.4rem;
	font-weight: 300;
	color: #621755;
	line-height: 40px;
}

header .top-search .menu_search form .btn-wrapper .cross {
	line-height: 40px;
	background-color: transparent;
	border: none;
}

header .top-search .menu_search form .btn-wrapper .cross:after {
	content: "";
	font-size: 1.2rem;
	font-weight: 700;
	color: #621755;
	line-height: 40px;
}

.burger-menu {
	width: 40px;
	box-sizing: border-box;
	cursor: pointer;
	padding: 0 3px;
	margin-top: 25px;
}

.burger-menu span {
	width: 100%;
	height: 3px;
	margin-bottom: 8px;
	display: block;
	background-color: #d5a46c;
}

.title {
	font-weight: 300;
	color: #621755;
	font-size: 2rem;
	margin-top: 0;
}

@media (max-width: 1024px) {
	.title {
		font-size: 1.6rem;
	}
}

.title::first-letter {
	font-family: "cam kohinoor";
}

.two_coloum .title {
	font-weight: 300;
	font-size: 1.5rem;
}

@media only screen and (max-width: 655px) {
	.two_coloum .accordian .title {
		display: none;
	}
}

@media only screen and (max-width: 655px) {
	.two_coloum .filters {
		transition: all .1s ease-in;
		opacity: 0;
		height: 0;
	}
	
	.two_coloum .filters.open {
		opacity: 1;
		height: auto;
		margin-top: 15px;
	}
}

.two_coloum .filters .select-wrapper {
	margin: 0;
}

.two_coloum .filters .select-wrapper .select {
	width: 100%;
	max-width: inherit;
}

.two_coloum .filters .select-wrapper .select ul.menu {
	position: inherit;
}

.two_coloum .filters div[data-filter] {
	box-shadow: 2px -2px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	margin-bottom: 10px;
	width: 100%;
	max-width: inherit;
}

.two_coloum .filters div[data-filter] span {
	display: block;
	padding: 10px;
	cursor: pointer;
	color: #666;
	font-size: .9rem;
	position: relative;
}

.two_coloum .filters div[data-filter] span:after {
	font-family: "icomoon";
	content: "";
	position: absolute;
	right: 10px;
	color: #f06638;
	font-size: .7rem;
	font-weight: 600;
	top: 14px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.two_coloum .filters div[data-filter] span.rotate:after {
	transform: rotate(180deg);
}

.two_coloum .filter_result {
	color: #1a1a1a;
	font-size: .9rem;
	padding: 0 14px;
}

@media only screen and (max-width: 655px) {
	.two_coloum .filter_result {
		padding-bottom: 10px;
	}
}

.two_coloum .filter_result .total_results {
	width: 15%;
	display: inline-flex;
}

@media only screen and (max-width: 600px) {
	.two_coloum .filter_result .total_results {
		width: 25%;
	}
}

.two_coloum .filter_result .total_results label {
	margin-right: 2px;
}

.two_coloum .filter_result ul {
	display: inline-flex;
}

.two_coloum .filter_result ul li {
	margin-right: 15px;
}

.two_coloum .filter_result ul li span {
	cursor: pointer;
	margin-left: 5px;
}

.two_coloum .filter_result ul li span:after {
	content: "";
	font-size: .5rem;
	color: #ea8123;
	font-weight: 600;
}

.profile {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	background-color: rgba(208, 165, 109, .4);
}

.profile .profile_info {
	padding: 10px;
	display: flex;
	align-self: flex-end;
	flex-direction: column;
	width: 100%;
}

.profile .profile_info h2 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #621755;
	margin: 0;
}

@media only screen and (min-width: 1800px) {
	.profile .profile_info h2 {
		font-size: 1.2rem;
	}
}

.profile .profile_info h2 a {
	color: #621755;
}

.profile .profile_info p {
	color: #621755;
	margin: 0;
}

@media only screen and (min-width: 1800px) {
	.profile .profile_info p {
		font-size: .9rem;
	}
}

.profile .profile_info small {
	color: #000;
	font-weight: 600;
}

.profile .profile_info>a {
	font-weight: 300;
}

.profile .profile_info>a.small {
	color: #621755;
	font-weight: 700 !important;
}

@media only screen and (min-width: 1800px) {
	.profile .profile_info>a {
		font-size: .8rem;
		font-weight: 300 !important;
	}
}

.big_search {
	position: relative;
}

.big_search input[type="text"] {
	min-height: 60px;
	line-height: 60px;
	box-shadow: 4px -4px 2px rgba(206, 164, 109, .2);
	border: 1px solid #f2f2f2;
	width: 100%;
	padding: 10px 81px 10px 20px;
	box-sizing: border-box;
}

@media only screen and (max-width: 655px) {
	.big_search input[type="text"] {
		min-height: 40px;
		line-height: 40px;
	}
}

@media only screen and (min-width: 1800px) {
	.big_search input[type="text"] {
		padding: 20px 81px 20px 20px;
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.big_search.people_list {
		max-width: 97%;
	}
}

.big_search button {
	min-height: 81px;
	min-width: 81px;
	line-height: 60px;
	position: absolute;
	right: 14px;
	background-color: transparent;
	border: none;
}

@media only screen and (max-width: 655px) {
	.big_search button {
		min-height: 40px;
		min-width: 40px;
		line-height: 40px;
		padding-right: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.big_search button {
		min-height: 104px;
		right: 20px;
		line-height: 81px;
		min-width: 100px;
	}
}

.big_search button:after {
	content: "";
	font-size: 2rem;
	color: #621755;
	line-height: 81px;
}

@media only screen and (max-width: 655px) {
	.big_search button:after {
		line-height: 60px;
	}
}

.bg-gray {
	background-color: #efe7ee;
}

.bg-gray .primary_btn:hover:before {
	background-color: #efe7ee;
}

img {
	max-width: 100%;
	height: auto;
}

.blog-wrap {
	background-color: #fff;
	box-shadow: 4px -4px 3px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	border-top: none;
	border-right: none;
}

.blog-wrap .block-img {}

.blog-wrap .block-img img {
	width: 100%;
	max-height: 414px;
	object-fit: cover;
	height: 100%;
}

@media only screen and (max-width: 655px) {
	.blog-wrap .block-img img {
		max-height: 330px;
	}
}

.blog-wrap .block-content {
	padding: 20px;
}

.blog-wrap .block-content p {
	margin-bottom: 0;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .block-content p {
		font-size: .9rem;
	}
}

.blog-wrap .block-content small {
	font-size: .8rem;
	color: #808080;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.blog-wrap .block-content small {
		font-size: .7rem;
	}
}

.tght_leadership {
	padding-top: 15px;
	padding-bottom: 15px;
}

@media only screen and (min-width: 1800px) {
	.tght_leadership {
		margin-bottom: 10px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media only screen and (min-width: 1800px) {
	.tght_leadership h1 {
		margin-bottom: 10px;
	}
}

.tght_leadership .tght_leadershi_lst li {
	display: flex;
}

.tght_leadership .tght_leadershi_lst li .blog-wrap {
	border-top: none;
	border-right: none;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
	width: 100%;
	aspect-ratio: 100/60;
	object-fit: cover;
	height: 100%;
}

@media only screen and (max-width: 655px) {
	.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
		max-height: 330px;
	}
}

@media only screen and (max-width: 655px) {
	.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img iframe {
		max-height: 330px;
	}
}

.tght_leadership .tght_leadershi_lst li .block-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media only screen and (min-width: 1800px) {
	.tght_leadership .tght_leadershi_lst li .block-content {
		padding: 40px 20px;
	}
}

.tght_leadership .tght_leadershi_lst li .block-content h2 {
	font-weight: 600;
	color: #1a1a1a;
}

@media only screen and (max-width: 655px) {
	.tght_leadership .tght_leadershi_lst li .block-content h2 {
		margin-bottom: 15px;
	}
}

@media only screen and (min-width: 1800px) {
	.tght_leadership .tght_leadershi_lst li .block-content h2 {
		font-size: 1.7rem;
		margin-top: 10px;
	}
}

.tght_leadership .tght_leadershi_lst li .block-content h2 a {
	color: #1a1a1a;
}

.tght_leadership .tght_leadershi_lst li .block-content .inner-content {
	margin-top: auto;
}

.tght_leadership .tght_leadershi_lst li .block-content .inner-content p {
	margin-top: 0;
}

@media only screen and (min-width: 1800px) {
	.tght_leadership .tght_leadershi_lst li .block-content .inner-content p {
		font-weight: 300;
		line-height: 24px;
	}
}

.practice_streams {
	padding-top: 20px;
}

.practice_streams .list_title {
	max-width: 180px;
	min-height: 60px;
	display: block;
}

@media only screen and (max-width: 655px) {
	.practice_streams .list_title {
		min-height: 35px;
	}
}

.sector {
	padding-bottom: 20px;
}

@media only screen and (min-width: 1800px) {
	.sector {
		padding-bottom: 40px;
	}
}

.sector .title {
	margin-bottom: 0;
}

@media only screen and (max-width: 655px) {
	.sector .title {
		padding-bottom: 0;
	}
}

@media only screen and (max-width: 655px) {
	.careers .title {
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 768px) {
	.careers {
		padding: 55px 0px 40px 0px !important;
	}
}

@media (max-width: 1280px) and (min-width: 764px) {
	.sitemainheading {
		margin: 0;
		padding-left: 38px !important;
	}
	
	.sitemapheading {
		padding-left: 25px !important;
	}
}

.careers p {
	color: #1a1a1a;
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.careers p {
		font-size: 1.2rem;
		line-height: 34px;
	}
}

@media only screen and (min-width: 1500px) {
	.careers p {
		padding-right: 30px;
	}
}

.careers .video_block {
	margin: 20px 0;
	box-shadow: 4px -4px 1px rgba(0, 0, 0, .2);
	border: 1px solid #f2f2f2;
	border-top: none;
	border-right: none;
}

@media only screen and (max-width: 655px) {
	.careers .video_block {
		margin-top: 0px;
	}
	
	.careers .video_block iframe {
		height: 330px;
	}
}

.careers .video_quts {
	background-color: #fff;
	padding: 20px;
	margin-top: -2px;
}

@media only screen and (min-width: 1800px) {
	.careers .video_quts {
		padding: 40px 30px;
	}
}

.careers .video_quts h3 {
	margin-top: 0;
	color: #000;
	font-weight: 600;
	letter-spacing: inherit;
}

@media only screen and (min-width: 1800px) {
	.careers .video_quts h3 {
		font-size: 1.7rem;
		line-height: 36px;
	}
}

.careers .video_quts small {
	color: #1a1a1a;
}

@media only screen and (max-width: 655px) {
	.careers .video_quts small {
		font-size: 1rem;
	}
}

.home_banner .item {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #621755;
}

.home_banner .item video {
	width: 100%;
	height: 100%;
}

.home_banner .slick-dots {
	bottom: 0;
}

@media only screen and (max-width: 655px) {
	.home_banner .slick-dots {
		bottom: 14px;
	}
}

@media only screen and (min-width: 1800px) {
	.home_banner .slick-dots {
		bottom: 16px;
	}
}

.home_banner .slick-dots li {
	width: 4%;
	bottom: 0;
	transition: all .3s ease;
	-ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

@media only screen and (max-width: 655px) {
	.home_banner .slick-dots li {
		width: 7%;
	}
}

@media only screen and (max-width: 600px) {
	.home_banner .slick-dots li {
		width: 10%;
	}
}

.home_banner .slick-dots li button {
	background-color: #fff;
	height: 3px;
	width: 100%;
	padding: 0;
}

.home_banner .slick-dots li button:before {
	display: none;
}

.home_banner .slick-dots li.slick-active {
	bottom: 10px;
}

.home_banner .slick-dots li.slick-active button {
	background-color: #d0a56d;
	height: 5px;
}

@media only screen and (max-width: 655px) {
	.home_banner .slick-list {
		height: 650px !important;
	}
	
	.home_banner .slick-list .slick-track {
		height: 100%;
	}
	
	.home_banner .slick-list .slick-track .item {
		height: 100%;
	}
}

@media only screen and (max-width: 600px) {
	.home_banner .slick-list {
		height: 460px !important;
	}
}

.about-us-banner .item {
	position: relative;
	max-height: 560px;
	height: 560px;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #efe7ee;
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item {
		max-height: 430px;
		height: 430px;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item {
		max-height: 580px;
		height: 580px;
	}
}

.about-us-banner .item .hexa_blog {
	height: 100%;
	top: 46%;
	left: 46%;
	transform: translate(-46%, -46%);
	-webkit-transform: translate(-46%, -46%);
	-moz-transform: translate(-46%, -46%);
	-ms-transform: translate(-46%, -46%);
}

.about-us-banner .item .hexa_blog .hexa_logo {
	max-width: 350px;
	top: 50%;
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_logo {
		max-width: 220px;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_logo {
		max-width: 150px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_logo {
		max-width: 220px;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_logo {
		top: 48%;
	}
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] {
	color: #631856;
	position: absolute;
	cursor: pointer;
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] strong {
	font-size: 1.4rem;
	font-weight: 600;
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] strong {
		font-size: 1.2rem;
	}
}

@media (max-width: 655px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] strong {
		font-size: 1.2rem;
	}
}

@media (max-width: 600px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] strong {
		font-size: 1.1rem;
	}
}

@media (max-width: 640px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] strong {
		font-size: 1rem;
	}
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] p {
	margin: 0;
	color: #631856;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

@media (max-width: 640px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] p {
		line-height: normal;
	}
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] p.active {
	color: #d5a46c;
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] p.active span {
	color: #d5a46c;
}

.about-us-banner .item .hexa_blog [class*="hexa_txt"] p span {
	color: #000;
	font-weight: 300;
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] p span {
		font-size: 1.2rem;
	}
}

@media (max-width: 640px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] p span {
		font-size: .9rem;
	}
}

@media (max-width: 480px) {
	.about-us-banner .item .hexa_blog [class*="hexa_txt"] p span {
		font-size: .8rem;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_001 {
	top: 10%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		top: 12%;
		left: 19%;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		width: 30%;
		top: 22%;
		left: 8%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		width: 230px;
		top: 22%;
		left: -3%;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		width: 30%;
		top: 14%;
		left: 10%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		width: 50%;
		top: 20%;
		left: -16%;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_001 {
		top: 7%;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_002 {
	top: 10%;
	right: 17%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		top: 12%;
		right: 16%;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		width: 34%;
		top: 22%;
		right: 2%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		width: 230px;
		top: 22%;
		right: -8%;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		width: 40%;
		top: 14%;
		right: -5%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		width: 55%;
		top: 20%;
		right: -21%;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_002 {
		top: 7%;
		right: 20%;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_005 {
	bottom: 6%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 8%;
		left: 27%;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 20%;
		width: 20%;
		left: 18%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 16%;
		width: 230px;
		left: -3%;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 9%;
		width: 25%;
		left: 10%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 18%;
		width: 38%;
		left: -9%;
	}
}

@media only screen and (max-width: 320px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 23%;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_005 {
		bottom: 6%;
		width: 15%;
		left: 28%;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_004 {
	bottom: 9%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 5%;
		right: 23%;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 17%;
		width: 26%;
		right: 13%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 20%;
		width: 230px;
		right: -3%;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 12%;
		right: 5%;
		width: 31%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 20%;
		right: -16%;
		width: 50%;
	}
}

@media only screen and (max-width: 320px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 26%;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_004 {
		bottom: 3%;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_003 {
	right: -16px;
	top: 45%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 6%;
	}
}

@media (max-width: 1680px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 7%;
	}
}

@media (max-width: 1280px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 50px;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 11%;
		top: 44%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: -20%;
		width: 230px;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		top: 52%;
		right: -87px;
		width: 40%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		top: 44%;
		right: -54px;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 10%;
		top: 39%;
	}
}

.about-us-banner .item .hexa_blog .hexa_txt_006 {
	left: -16px;
	top: 47%;
}

@media only screen and (max-width: 1600px) and (min-width: 1025px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 6%;
		width: 21%;
	}
}

@media (max-width: 1680px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 11%;
	}
}

@media (max-width: 1366px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 72px;
	}
}

@media (max-width: 1024px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 10%;
		width: 20%;
	}
}

@media (max-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: -20%;
		width: 230px;
	}
}

@media only screen and (max-width: 655px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		top: 52%;
		left: -18%;
		width: 38%;
	}
}

@media only screen and (max-width: 600px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		top: 43%;
		left: -19%;
	}
}

@media only screen and (max-width: 320px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: -22%;
	}
}

@media only screen and (min-width: 1800px) {
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 13%;
		top: 44%;
		width: 21%;
	}
}

.hexa_blog {
	position: absolute;
	width: 70vw;
	height: 100vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
	.hexa_blog {
		height: 100%;
	}
}

.hexa_blog .hexa_logo {
	max-width: 250px;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_logo {
		max-width: 220px;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_logo {
		max-width: 150px;
		top: 50%;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_logo {
		max-width: 400px;
	}
}

.hexa_blog [class*="hexa_txt"] {
	color: #fff;
	position: absolute;
	cursor: pointer;
}

.hexa_blog [class*="hexa_txt"] strong {
	font-size: 1.4rem;
	font-weight: 600;
}

@media only screen and (max-width: 655px) {
	.hexa_blog [class*="hexa_txt"] strong {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog [class*="hexa_txt"] strong {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.hexa_blog [class*="hexa_txt"] strong {
		font-size: 1rem;
	}
}

.hexa_blog [class*="hexa_txt"] p {
	margin: 0;
	color: #fff;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.hexa_blog [class*="hexa_txt"] p.active {
	color: #d5a46c;
}

.hexa_blog [class*="hexa_txt"] p span {
	font-weight: 300;
}

@media (max-width: 480px) {
	.hexa_blog [class*="hexa_txt"] p {
		font-size: .7rem;
	}
}

.hexa_blog .hexa_txt_001 {
	width: 20%;
	top: 29%;
	left: 24%;
	text-align: right;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_001 {
		width: 30%;
		top: 37%;
		left: 3%;
	}
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_001 {
		width: 30%;
		top: 11%;
		left: 10%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_001 {
		width: 35%;
		top: 27%;
		left: 0%;
	}
}

@media (max-width: 480px) {
	.hexa_blog .hexa_txt_001 {
		top: 20%;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_001 {
		top: 24%;
		left: 23%;
	}
}

.hexa_blog .hexa_txt_002 {
	width: 22%;
	top: 29%;
	right: 20%;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_002 {
		width: 34%;
		top: 37%;
		right: 2%;
	}
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_002 {
		width: 40%;
		top: 11%;
		right: -5%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_002 {
		width: 40%;
		top: 27%;
		right: -10%;
	}
}

@media (max-width: 480px) {
	.hexa_blog .hexa_txt_002 {
		top: 20%;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_002 {
		top: 24%;
		right: 19%;
	}
}

.hexa_blog .hexa_txt_003 {
	top: 53%;
	right: 15%;
	width: 25%;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_003 {
		right: -48px;
	}
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_003 {
		top: 52%;
		right: -87px;
		width: 40%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_003 {
		top: 44%;
		right: -54px;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_003 {
		right: 12%;
	}
}

.hexa_blog .hexa_txt_003 strong {
	display: block;
}

.hexa_blog .hexa_txt_004 {
	bottom: 19%;
	right: 26%;
	width: 16%;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_004 {
		bottom: 24%;
	}
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_004 {
		bottom: 1%;
		right: -2%;
		width: 31%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_004 {
		bottom: 27%;
		right: -9%;
		width: 37%;
	}
}

@media (max-width: 480px) {
	.hexa_blog .hexa_txt_004 {
		bottom: 20%;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_004 {
		bottom: 14%;
		right: 25%;
	}
}

.hexa_blog .hexa_txt_005 {
	bottom: 17%;
	width: 12%;
	left: 31%;
	text-align: right;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_005 {
		bottom: 25%;
	}
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_005 {
		bottom: -2%;
		width: 25%;
		left: 2%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_005 {
		bottom: 27%;
		width: 38%;
		left: -9%;
	}
}

@media (max-width: 480px) {
	.hexa_blog .hexa_txt_005 {
		bottom: 20%;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_005 {
		bottom: 12%;
		width: 12%;
		left: 30%;
	}
}

.hexa_blog .hexa_txt_005 strong {
	display: block;
}

.hexa_blog .hexa_txt_006 {
	top: 53%;
	left: 19%;
	width: 16%;
	text-align: right;
}

@media only screen and (max-width: 655px) {
	.hexa_blog .hexa_txt_006 {
		top: 52%;
		left: -18%;
		width: 38%;
	}
}

@media only screen and (max-width: 600px) {
	.hexa_blog .hexa_txt_006 {
		top: 43%;
		left: -19%;
	}
}

@media only screen and (max-width: 320px) {
	.hexa_blog .hexa_txt_006 {
		left: -22%;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.hexa_blog .hexa_txt_006 {
		left: -46px;
	}
}

@media only screen and (min-width: 1800px) {
	.hexa_blog .hexa_txt_006 {
		left: 16%;
	}
}

.hexa_content {
	display: none;
}

.banner_strap {
	position: absolute;
	bottom: 12%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
	width: 70%;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.banner_strap {
		width: 100%;
		background-size: cover;
		background-position: right;
	}
}

.banner_strap.orange {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/banner_org_str.svg");
}

.banner_strap.orange.nitro-lazy {
	background-image: none !important;
}

.banner_strap.blue {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/banner_blue_str.svg");
}

.banner_strap.blue.nitro-lazy {
	background-image: none !important;
}

.banner_strap.green {
	background-image: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/banner_green_str.svg");
}

.banner_strap.green.nitro-lazy {
	background-image: none !important;
}

.banner_strap .strap_content {
	padding: 8% 0 5% 15%;
	width: 85%;
}

@media (max-width: 480px) and (min-width:375px) {
	.banner_strap .strap_content {
		padding: 6% 0% 2% 3%;
	}
}

.banner_strap .strap_content p {
	font-weight: 300;
}

.banner_strap .strap_content .strap_info {
	width: 61%;
}

.banner_strap h2 {
	font-weight: 500;
	font-size: 2.4rem;
	color: #fff;
	margin: 0;
	margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
	.banner_strap h2 {
		font-size: 1.4rem;
	}
}

@media only screen and (max-width: 320px) {
	.banner_strap .strap_content p {
		font-weight: 300;
		font-size: .7rem;
		line-height: 1.3;
	}
	
	.banner_strap h2 {
		font-size: .7rem;
		padding-top: 0px;
	}
}

@media only screen and (min-width: 1800px) {
	.banner_strap h2 {
		font-size: 3rem;
		margin-bottom: 5px;
	}
}

.banner_strap p {
	color: #fff;
	margin: 0;
}

@media only screen and (min-width: 1800px) {
	.banner_strap p {
		font-size: 1.5rem;
		line-height: 37px;
	}
}

.banner_strap .strap_title {
	margin-left: 15%;
	display: inline-block;
	transform: translate(0, -26px);
}

@media (max-width: 1600px) {
	.banner_strap .strap_title {
		transform: translate(0, -24px);
	}
}

@media (max-width: 1440px) {
	.banner_strap .strap_title {
		transform: translate(0, -26px);
	}
}

@media (max-width: 1332px) {
	.banner_strap .strap_title {
		transform: translate(0, -23px);
	}
}

@media (max-width: 1280px) {
	.banner_strap .strap_title {
		transform: translate(0, -27px);
	}
}

@media (max-width: 768px) {
	.banner_strap .strap_title {
		transform: translate(0, -26px);
		margin-left: 0;
	}
}

.banner_strap .strap_title h1 {
	background-color: #fff;
	color: #621755;
	padding: 10px 20px;
	margin: 0;
	font-size: 2.4rem;
}

.banner_strap .strap_title+.strap_content {
	padding: 2% 0 4% 15%;
}

@media (max-width: 768px) {
	.banner_strap .strap_title+.strap_content {
		padding: 1% 0px 7% 5%;
	}
}

@media (max-width: 640px) {
	.banner_strap .strap_title+.strap_content {
		padding: 0% 0 4% 5%;
	}
}

.inner_big_banner {
	position: relative;
	clear: both;
}

.inner_big_banner picture img {
	height: intrinsic;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.inner_big_banner picture {
		overflow: hidden;
	}
	
	.inner_big_banner picture img {
		height: 300px;
		max-width: none;
	}
	
	.inner_big_banner picture img[alt="people"] {
		height: 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.inner_big_banner picture img[alt="insight"] {
		height: 150px;
	}
}

.inner_big_banner .triangle {
	position: absolute;
	width: 36%;
	top: 20px;
}

.inner_big_banner .triangle.left {
	left: 8%;
}

@media only screen and (max-width: 655px) {
	.inner_big_banner .triangle.left {
		bottom: 60px;
		top: auto;
		width: 50%;
	}
}

.inner_big_banner .triangle {
	position: absolute;
	width: 36%;
	top: 46px;
}

.inner_big_banner .triangle.right {
	right: 8%;
}

.inner_big_banner .square {
	position: absolute;
	width: 36%;
	top: 20px;
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .square {
		top: 80px;
	}
}

.inner_big_banner .square.right {
	right: 8%;
}

.inner_big_banner .square.center {
	left: 50%;
	transform: translateX(-50%);
	top: 12px;
}

@media only screen and (max-width: 655px) {
	.inner_big_banner .square.center {
		right: 5%;
		top: 10px;
		left: auto;
		transform: none;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .square.center {
		top: 50px;
	}
}

.inner_big_banner .square.center.right {
	left: 60%;
}

@media only screen and (max-width: 655px) {
	.inner_big_banner .square.center.right {
		left: 75%;
	}
}

.inner_big_banner .square.left {
	left: calc(74% - 51%);
}

@media (max-width: 640px) {
	.inner_big_banner .square.left {
		left: calc(74% - 61%);
	}
}

@media only screen and (max-width: 655px) {
	.inner_big_banner.tech-banner .center.right {
		left: 60% !important;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner.tech-banner .center.right {
		top: 80px;
	}
}

.inner_big_banner .circle {
	position: absolute;
	width: 36%;
	top: 30px;
}

@media only screen and (max-width: 1400px) {
	.inner_big_banner .circle.event-detail {
		width: 32%;
	}
}

@media only screen and (max-width: 500px) {
	.inner_big_banner .circle.event-detail {
		top: 10px;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .circle.event-detail {
		top: 90px;
	}
}

.inner_big_banner .circle.right {
	right: 25%;
}

.inner_big_banner .circle.right.vichaar {
	right: 10%;
}

.inner_big_banner .banner_title {
	background-color: #621755;
	min-height: 115px;
	display: flex;
}

.inner_big_banner .banner_title.banner-icon {
	background: #ea8123;
}

@media (max-width: 640px) {
	.inner_big_banner .banner_title.banner-icon {
		min-height: auto;
	}
}

@media (max-width: 640px) {
	.inner_big_banner .banner_title.banner-icon img {
		max-width: 45%;
	}
}

.inner_big_banner .banner_title.banner-orange {
	background: #ea8123;
}

@media only screen and (max-width: 655px) {
	.inner_big_banner .banner_title {
		min-height: 100px;
	}
}

@media (max-width: 480px) {
	.inner_big_banner .banner_title {
		min-height: 80px;
	}
}

.inner_big_banner .banner_title .container {
	align-items: flex-end;
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .banner_title .container {
		min-height: 160px;
	}
}

.inner_big_banner .banner_title h1 {
	color: #fff;
	font-weight: 500;
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .banner_title h1 {
		font-size: 2.5rem;
		margin-bottom: 20px;
		line-height: 60px;
	}
}

.inner_big_banner .banner_title .vichar-banner h1 {
	font-weight: 100;
}

.inner_big_banner .banner_title .vichar-banner h1 span {
	font-weight: 500;
}

.inner_big_banner .circle {
	position: absolute;
}

.inner_big_banner .circle.people {
	width: 290px;
	top: 0px;
	right: 40px;
	display: block;
}

@media (max-width: 480px) {
	.inner_big_banner .circle.people {
		width: 140px;
		top: -15px;
		right: 40px;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_big_banner .circle.people {
		right: 4%;
		top: 19px;
	}
}

.inner_big_banner .circle.people img {
	width: 100%;
}

.inner_big_banner .about-us-banner .banner_title {
	background-color: #ea8123;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.inner_big_banner.banner-text-wrapper {
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 655px) {
	.inner_big_banner.banner-text-wrapper {
		margin-bottom: 20px;
	}
}

.inner_big_banner.banner-text-wrapper .banner-text {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 77%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media (max-width: 768px) {
	.inner_big_banner.banner-text-wrapper .banner-text {
		width: 87%;
	}
}

@media (max-width: 640px) {
	.inner_big_banner.banner-text-wrapper .banner-text {
		width: 100%;
	}
}

.inner_big_banner.banner-text-wrapper .banner-text h1 {
	color: #fff;
}

@media only screen and (max-width: 655px) {
	.inner_big_banner.banner-text-wrapper .banner-text h1 {
		font-size: 1.2rem;
	}
}

.inner_big_banner.banner-text-wrapper:before {
	content: "";
	width: 15%;
	height: 20%;
	background-color: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
}

.inner_big_banner.banner-text-wrapper:after {
	content: "";
	width: 15%;
	height: 20%;
	position: absolute;
	right: 0;
	bottom: -20%;
	background-color: #621755;
}

.inner_small_banner {
	position: relative;
	height: 40vh;
	display: flex;
	padding: 20px 0;
	box-sizing: border-box;
	clear: both;
}

@media (max-width: 1024px) {
	.inner_small_banner {
		height: 25vh;
	}
}

@media (max-width: 768px) {
	.inner_small_banner {
		height: 15vh;
	}
}

@media (max-width: 740px) {
	.inner_small_banner {
		height: 150px;
	}
}

@media (max-width: 1024px) {
	.inner_small_banner .corporate_img {
		width: 17%;
	}
}

@media (max-width: 700px) {
	.inner_small_banner .corporate_img {
		width: 150px;
	}
}

@media (max-width: 740px) {
	.inner_small_banner.merger {
		height: 150px;
	}
}

@media only screen and (min-width: 1200px) {
	.inner_small_banner.merger {
		height: 34vh;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner.merger .bottom-md>div {
		flex-basis: 70.66667%;
		max-width: 70.66667%;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner.merger .bottom-md h1 {
		font-size: 2.9rem !important;
	}
}

.inner_small_banner.cam_finance-bg {
	background-color: #ffc905;
}

.inner_small_banner.cam_market-bg {
	background-color: #a2cb39;
}

.inner_small_banner.cam_corporate-bg {
	background-color: #009cde;
}

.inner_small_banner.cam_dispute_resolution-bg {
	background-color: #f05a22;
}

.inner_small_banner .desc_hed {
	margin: 5px 0;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 300;
}

@media (max-width: 1024px) {
	.inner_small_banner .desc_hed {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.inner_small_banner .desc_hed {
		font-size: 1.2rem;
	}
}

@media (min-width: 1800px) {
	.inner_small_banner .desc_hed {
		font-size: 1.5rem;
	}
}

.inner_small_banner .banner_hed {
	display: inline-block;
	position: relative;
	width: fit-content;
	width: intrinsic;
	width: -moz-max-content;
	width: -webkit-max-content;
	height: fit-content;
}

.inner_small_banner .banner_hed:after {
	content: "";
	width: 10%;
	height: 4px;
	background-color: #fff;
	position: absolute;
	top: 5px;
	min-width: 20px;
}

@media only screen and (max-width: 655px) {
	.inner_small_banner .banner_hed:after {
		width: 15%;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner .banner_hed:after {
		width: 8%;
		height: 8px;
		right: -9%;
	}
}

@media only screen and (max-width: 655px) {
	.inner_small_banner .banner_hed.bn-sm-txt:after {
		right: 40%;
		width: 6%;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner .banner_hed.bn-sm-txt:after {
		right: -6%;
		width: 15%;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 767px) {
	.inner_small_banner .banner_hed.bn-sm-txt:after {
		right: 18%;
	}
}

.inner_small_banner .banner_hed.cream:after {
	background-color: #cea46d;
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner .banner_hed.cream {
		font-size: 2.5rem;
		line-height: 60px;
	}
}

.inner_small_banner .mult_color_line {
	background: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/themes/cam/images/multi-color-line.svg") no-repeat left center/contain;
	height: 18px;
	width: 85%;
	position: absolute;
	left: 0;
	bottom: -16px;
}

@media only screen and (max-width: 1024px) {
	.inner_small_banner .mult_color_line {
		bottom: -12px;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner .mult_color_line {
		bottom: -11px;
		width: 90%;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner .mult_color_line {
		height: 20px;
		width: 85.3%;
	}
}

.inner_small_banner:before {
	content: "";
	width: 15%;
	height: 20%;
	background-color: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.inner_small_banner:before {
		height: 14%;
		width: 30%;
	}
}

@media only screen and (max-width: 655px) {
	.inner_small_banner:before {
		width: 20%;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner:before {
		height: 14%;
	}
}

.inner_small_banner:after {
	content: "";
	width: 15%;
	height: 20%;
	position: absolute;
	right: 0;
	bottom: -20%;
	z-index: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.inner_small_banner:after {
		height: 14%;
		bottom: -14%;
		width: 30%;
	}
}

@media only screen and (max-width: 655px) {
	.inner_small_banner:after {
		width: 20%;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner:after {
		height: 14%;
		bottom: -14%;
	}
}

.inner_small_banner h1 {
	color: #fff;
	margin: 0;
	font-weight: 500;
}

@media only screen and (max-width: 600px) {
	.inner_small_banner h1 {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner h1 {
		font-size: 2.5rem;
	}
}

.inner_small_banner h1.optima_fnt.medm {
	font-size: 3.2rem;
}

@media only screen and (min-width: 1800px) {
	.inner_small_banner h1.optima_fnt.medm {
		font-size: 3.7rem;
	}
}

@media (max-width: 768px) {
	.inner_small_banner h1.optima_fnt.medm {
		font-size: 3rem;
	}
}

@media (max-width: 414px) {
	.inner_small_banner h1.optima_fnt.medm {
		font-size: 2.5rem;
	}
}

.inner_small_banner .optima_fnt {
	font-family: "optima";
}

.inner_small_banner .optima_fnt.medm {
	font-weight: 500;
}

.inner_small_banner.cam_corporate-bg {
	background-color: #009cde;
}

.inner_small_banner.cam_corporate-bg:after {
	background-color: #009cde;
}

.inner_small_banner.cam_finance-bg {
	background-color: #ffc905;
}

.inner_small_banner.cam_finance-bg:after {
	background-color: #ffc905;
}

.inner_small_banner.cam_market-bg {
	background-color: #a2cb39;
}

.inner_small_banner.cam_market-bg:after {
	background-color: #a2cb39;
}

.inner_small_banner.cam_dispute_resolution-bg {
	background-color: #f05a22;
}

.inner_small_banner.cam_dispute_resolution-bg:after {
	background-color: #f05a22;
}

.inner_small_banner.cam_insight-bg {
	background-color: #00a6e0;
}

.inner_small_banner.cam_insight-bg:after {
	background-color: #00a6e0;
}

@media only screen and (max-width: 655px) {
	.inner_small_banner.cam_insight-bg .insight img {
		width: 48% !important;
	}
}

.inner_small_banner.cam-iris-blue {
	background-color: #00a9e2;
}

.inner_small_banner.cam-iris-blue:after {
	background-color: #00a9e2;
}

.inner_small_banner.cam-snuff {
	background-color: #f3efd4;
}

.inner_small_banner.cam-snuff:after {
	background-color: #f3efd4;
}

.inner_small_banner.cam-outregeous-orange {
	background-color: #f05a22;
}

.inner_small_banner.cam-outregeous-orange:after {
	background-color: #f05a22;
}

.inner_small_banner.purple {
	background-color: #621755;
}

.inner_small_banner.purple:after {
	background-color: #621755;
	z-index: 0;
}

@media only screen and (max-width: 1024px) {
	.inner_small_banner .bottom-md>div {
		display: flex;
		flex-direction: column;
		align-self: flex-end;
		padding-left: 14px;
	}
}

@media only screen and (max-width: 655px) {
	.inner_small_banner {
		margin-bottom: 20px;
	}
	
	.inner_small_banner.blog-banner {
		margin-bottom: 0;
	}
	
	.inner_small_banner.profile-banner {
		margin-bottom: 0;
	}
	
	.inner_small_banner.profile-banner .container {
		padding-left: 0;
	}
}

@media only screen and (max-width: 655px) and (max-width: 600px) {
	.inner_small_banner.profile-banner .container {
		padding-left: 14px;
	}
}

@media only screen and (max-width: 500px) {
	.inner_small_banner {
		margin-bottom: 30px;
	}
	
	.inner_small_banner.blog-banner {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.inner_small_banner {
		margin-bottom: 40px;
	}
	
	.inner_small_banner.blog-banner {
		margin-bottom: 0;
	}
	
	.inner_small_banner.profile-banner {
		margin-bottom: 0;
	}
	
	.inner_small_banner.contact-us-pg .container {
		margin-left: 0px;
	}
}

.inner_small_banner.event-detail-banner {
	margin-bottom: 60px;
}

@media only screen and (max-width: 655px) {
	.inner_small_banner.event-detail-banner {
		margin-bottom: 30px;
	}
}

.page-decs {
	color: #621755;
	letter-spacing: normal;
}

@media (min-width: 1800px) {
	.page-decs {
		font-size: 1.7rem;
		line-height: 42px;
	}
	
	.sitemainheading {
		margin: 0;
		padding-left: 30px !important;
	}
	
	.sitemapheading {
		padding-left: 0px !important;
	}
}

@media (max-width: 1366px)and (min-width:1280px) {
	.sitemainheading {
		padding-left: 30px !important;
	}
	
	.page-decs {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.page-decs {
		font-size: 1.4rem;
	}
}

@media (max-width: 768px) {
	.page-decs {
		font-size: 1.2rem;
	}
}

.people_list div[class^="col"] {
	padding: .5rem;
}

.people_list .primary_btn {
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
	.people_list .primary_btn {
		margin-top: 15px;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 1800px) {
	.people_list .primary_btn {
		padding: 15px 25px;
	}
}

.people_list .profile {
	width: 100%;
	display: block;
	align-items: inherit;
}

.people_list .profile .profile_img {
	width: 100%;
}

.people_list .profile .profile_img a picture {
	display: block;
}

.people_list .profile .profile_img a picture img {
	width: 100%;
}

.people_in-banner {
	background-color: rgba(208, 165, 109, .4);
	padding-top: 30px;
	height: 380px;
}

@media (max-width: 480px) {
	.people_in-banner {
		height: 190px;
	}
}

.people_in-banner h1 {
	color: #621755;
	margin-bottom: 0;
	font-weight: 500;
}

@media (max-width: 480px) {
	.people_in-banner h1 {
		font-size: 1.5rem;
		padding-right: 150px;
	}
}

.people_in-banner p {
	color: #621755;
	margin-top: 0;
}

@media only screen and (min-width: 1200px) {
	.people_in-banner p {
		font-size: 17px;
	}
}

.people_in-banner .profile_pic {
	position: absolute;
	right: 28px;
	width: 290px;
	bottom: 0;
}

@media (max-width: 480px) {
	.people_in-banner .profile_pic {
		max-width: 150px;
	}
}

.people_in-banner .profile_pic img {
	width: 100%;
	height: intrinsic;
}

@media (max-width: 480px) {
	.people_in-banner .profile_pic img {
		height: auto;
	}
}

@media only screen and (max-width: 655px) {
	.people_in-banner .profile_pic picture {
		display: inline-grid;
		display: -moz-inline-grid;
		display: -ms-inline-grid;
	}
}

.people_in-banner .container {
	height: 100%;
}

@media only screen and (max-width: 1024px) {
	.people_in-banner .container {
		display: flex;
		align-items: flex-end;
	}
}

footer {
	background-color: #f1efe5;
	padding: 25px 0 5px 0;
}

footer .primary_btn:hover:before {
	background-color: #f1efe5;
}

footer .foo_logo {
	width: 65%;
	display: block;
	margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
	footer .foo_logo {
		width: 100%;
		text-align: center;
		padding-bottom: 10px;
	}
	
	footer .foo_logo img {
		width: 200px;
	}
}

@media only screen and (min-width: 1800px) {
	footer .foo_logo {
		width: 69%;
	}
}

footer .foo_links li {
	padding: 5px 0;
}

footer .foo_links li a {
	color: #333;
	font-size: .9rem;
}

@media only screen and (max-width: 655px) {
	footer .foo_links li a {
		font-size: 1rem;
	}
}

@media only screen and (min-width: 1800px) {
	footer .foo_links li a {
		font-size: 1rem;
	}
}

@media (max-width: 1280px) {
	footer .article_form_block .primary_btn {
		padding: 10px 15px;
	}
}

@media only screen and (max-width: 1024px) {
	footer .article_form_block {
		padding-left: 14px;
	}
}

@media only screen and (min-width: 1800px) {
	footer .article_form_block .primary_btn {
		padding: 15px 28px;
	}
}

footer .article_form input[type="email"] {
	border: none;
	padding: 10px 12px;
	font-size: .9rem;
	margin-right: 12px;
	width: 56%;
}

@media only screen and (min-width: 1800px) {
	footer .article_form input[type="email"] {
		padding: 15px 10px;
	}
}

@media only screen and (max-width: 655px) {
	footer .article_form input[type="email"] {
		width: 84%;
		padding: 20px 10px;
		margin-bottom: 20px;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 656px) {
	footer .article_form input[type="email"] {
		width: 80%;
		padding: 10px;
		margin-top: 10px;
	}
}

footer .foo_heading {
	font-size: .9rem;
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
}

@media only screen and (min-width: 1800px) {
	footer .foo_heading {
		font-size: 1rem;
	}
}

footer .foo_social_block {
	margin-top: 15px;
}

@media only screen and (max-width: 1024px) {
	footer .foo_social_block {
		padding-left: 14px;
		margin-top: 25px;
	}
}

footer .foo_social_block .foo_social li {
	display: inline-flex;
}

footer .foo_social_block .foo_social li a {
	font-size: .8rem;
	display: block;
	display: flex;
	color: #ea8123;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	background: #fff;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	footer .foo_social_block .foo_social li a {
		font-size: 1rem;
	}
}

footer .foo_social_block .foo_social li a.linkedin:after {
	content: "";
}

footer .foo_social_block .foo_social li a.twitter:after {
	content: "";
}

footer .foo_social_block .foo_social li a.facebook:after {
	content: "";
}

footer .foo_social_block .foo_social li a.icon-instagram:after {
	content: url("https://cdn-cjplm.nitrocdn.com/FEEuXEpJCDQxrkMSbUVbwanaKwpRODXR/assets/images/optimized/rev-6c19f5d/www.cyrilshroff.com/wp-content/uploads/2020/09/footer-insta.png");
}

footer .foo_social_block .foo_social li a.youtube:after {
	content: "";
}

@media only screen and (max-width: 1024px) {
	footer .foo_bottom {
		padding-left: 14px;
		padding-bottom: 10px;
	}
	
	footer .foo_bottom .copy-write {
		margin-top: -10px;
		order: 1;
	}
	
	footer .foo_bottom .copy-write p {
		text-align: left;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 656px) {
	footer .foo_bottom>div {
		padding-left: 0;
	}
}

footer .foo_bottom p {
	font-size: .8rem;
	color: #333;
}

@media only screen and (max-width: 655px) {
	footer .foo_bottom p {
		font-size: 1rem;
	}
}

footer .foo_bottom .hrz_listing li {
	margin-right: 10px;
}

@media only screen and (max-width: 655px) {
	footer .foo_bottom .hrz_listing li {
		margin-bottom: 10px;
	}
}

footer .foo_bottom .hrz_listing li a {
	font-size: .8rem;
	color: #333;
}

@media only screen and (max-width: 655px) {
	footer .foo_bottom .hrz_listing li a {
		font-size: 1rem;
	}
}

.suscribe_popup {
	height: 90%;
}

.intermediatte-zone .title {
	margin-bottom: 0;
}

.testimonial.slide {
	width: 100%;
}

.testimonial.slide .item {
	width: 100%;
}

.testimonial.slide .item .left {
	float: left;
	width: 50%;
	padding-right: 15px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.testimonial.slide .item .left {
		width: 100%;
		padding-right: 0;
	}
}

.testimonial.slide .item .right {
	float: right;
	width: 50%;
	padding-left: 15px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.testimonial.slide .item .right {
		width: 100%;
		padding-left: 0;
	}
}

.testimonial .slick-dots {
	text-align: center;
}

.testimonial .slick-dots li {
	display: inline-block !important;
	width: 4%;
	bottom: 0;
	transition: all .3s ease;
	-ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

@media only screen and (max-width: 655px) {
	.testimonial .slick-dots li {
		width: 7%;
	}
}

@media only screen and (max-width: 600px) {
	.testimonial .slick-dots li {
		width: 10%;
	}
}

.testimonial .slick-dots li button {
	background-color: #621755;
	height: 3px;
	width: 100%;
	padding: 0;
}

.testimonial .slick-dots li button:before {
	display: none;
}

.testimonial .slick-dots li.slick-active {
	bottom: 10px;
}

.testimonial .slick-dots li.slick-active button {
	background-color: #d0a56d;
	height: 5px;
}

.wpcf7-not-valid-tip {
	font-size: .8em;
	position: absolute;
	bottom: -25px;
}

@media (max-width: 640px) {
	.tech-innovation-wrapper .kc-container {
		display: block;
	}
}

.tdarkoverlay {
	opacity: 0 !important;
}

.tbrightcontent {
	bottom: 0;
	top: inherit !important;
	width: 100% !important;
	left: inherit !important;
	background-color: rgba(255, 255, 255, .95) !important;
	padding: 24px 20px !important;
}

.tbrightcontent:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 100px;
	width: 100px;
	border-top: 6px solid #d0a56d;
	border-right: 6px solid #d0a56d;
}

.tbrightcontent:before {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 24px;
	height: 81px;
	width: 81px;
	border-top: 3px solid rgba(255, 255, 255, .96);
	border-right: 3px solid rgba(255, 255, 255, .96);
}

.tbrightcontent .termspopupcontainer {
	border: 3px solid #621755;
	height: 100%;
	background-color: #fff;
	overflow-y: auto;
}

.tbrightcontent .termspopupcontainer .termstitle {
	font-weight: 300;
	color: #621755;
	font-size: 1.5rem;
	margin: 0 !important;
	text-align: left;
	padding-left: 3%;
	padding-right: 3%;
	padding-bottom: 0;
	background-color: transparent;
	letter-spacing: inherit;
}

@media (max-width: 1024px) {
	.tbrightcontent .termspopupcontainer .termstitle {
		font-size: 1.6rem;
	}
}

.tbrightcontent .termspopupcontainer .termstitle:first-letter {
	font-family: "cam kohinoor";
}

.tbrightcontent .termspopupcontainer .termscontentwrapper {
	padding-left: 3%;
	padding-right: 3%;
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton {
	text-align: left !important;
	width: 100% !important;
	margin-top: 15px !important;
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree {
	margin-right: 15px;
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline {
	background-color: #621755;
	border: none;
	line-height: 1rem;
	line-height: 30px;
	width: 100px;
	height: 35px;
	text-align: center;
	color: #fff;
	font-size: .8rem;
	position: relative;
	display: inline-block;
}

@media only screen and (min-width: 1600px) {
	.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline {
		font-weight: 100;
		font-size: .8rem;
	}
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:after, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:before, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:after, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:before {
	content: "";
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	top: 5px;
	opacity: 0;
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:hover:after, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:hover:after {
	opacity: 1;
	content: "";
	width: 35%;
	height: 7px;
	position: absolute;
	right: -.1px;
	top: -7px;
	background-color: #d0a56d;
}

@media only screen and (min-width: 1800px) {
	.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:hover:after, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:hover:after {
		height: 10px;
		top: -10px;
	}
}

.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:hover:before, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:hover:before {
	opacity: 1;
	content: "";
	width: 35%;
	height: 7px;
	position: absolute;
	right: -.1px;
	top: 0;
	background-color: #fff;
}

@media only screen and (min-width: 1800px) {
	.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree:hover:before, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline:hover:before {
		height: 10px;
	}
}

.tght_leadership .blog-wrap .block-img {
	/*min-height: 414px;*/
	min-height: intrinsic;
}

.popup-wrapper .form .overlay-content .btn-wrapper {
	margin-bottom: 20px;
}

.suscribe_popup .wpcf7-not-valid-tip {
	position: relative;
	bottom: 0;
	margin-top: 5px;
}

.gallery-blog-container .gallary-blog .img-gallary-wpr.grid-row-3 .grid-col-1 p {
	padding-left: 20px;
	padding-right: 20px;
}

.social-contact .wpcf7-not-valid-tip {
	position: relative;
	bottom: 0;
}

.social-contact .wpcf7-form-control-wrap, .social-contact .input-wrapper input, .social-contact .input-wrapper textarea {
	padding: 0;
}

.contact-us .wpcf7-acceptance .wpcf7-list-item {
	margin: 0 0 0 -10px;
}

.awards-accolades .award_load_more {
	width: 100%;
	margin-top: 10px;
}

.awards-accolades .select-wrapper .select:last-child {
	width: 100%;
}

.article_form {
	width: 100%;
	display: inline-block;
}

@media (max-width: 1366px) {
	.kc-container {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1200px) {
	footer .article_form input[type="email"] {
		padding: 10px 8px;
		margin-right: -3px;
		width: 53%;
	}
	
	footer .article_form_block .primary_btn {
		padding: 10px 8px;
		width: 32%;
	}
}

@media (max-width: 1200px) and (max-width: 1024px) {
	footer .article_form_block .primary_btn {
		width: auto;
	}
}

@media (max-width: 768px) {
	.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree, .tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsdecline {
		width: 46%;
	}
	
	.tbrightcontent .termspopupcontainer .termscontentwrapper .tthebutton .termsagree {
		margin-right: 2%;
	}
}

.hiddencontent {
	visibility: hidden;
}

@media (max-width: 640px) {
	.hiddencontent {
		display: none;
	}
}

.sitemapheading {}

hr {
	width: 100%;
	background-color: #621755;
	height: 2px;
	border: none;
	margin: 0;
}

.sitemainheading {
	margin: 0;
	padding-bottom: 40px;
	padding-top: 40px;
}

.sitemainheading a {
	color: currentColor;
}

@media (max-width: 1024px) {
	.sitemainheading {
		padding-left: 14px;
		padding-top: 24px;
		padding-bottom: 24px;
	}
}

.sitemap {
	background-color: #f1f1f1;
	font-size: 34px;
	max-width: 100%;
	padding: 20px 0;
	margin-bottom: 25px;
}

@media (max-width: 1024px) {
	.sitemap {
		padding: 5px 0;
	}
	
	.sitemapheading {
		padding-left: 0px;
	}
}

.sitemap h3 {
	color: #621755;
	padding: 25px 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.sitemap h3 {
		padding: 10px 0;
	}
}

.sitemap li {
	font-size: .9rem;
	padding: 5px 0;
}

.sitemap img {
	height: 24px;
	width: auto;
}

.sitemap a {
	color: currentColor;
	text-decoration: none;
}

.cam_corporatesitemap li:first-child {
	padding: 10px 0;
}

.cam_corporatesitemap a:hover {
	font-weight: 600;
	color: #0f8dd8;
	transition: 5ms;
}

.stand_out {
	padding-left: 30px;
}

.stand_out h4 {
	color: #621755;
	padding: 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.stand_out {
		padding-left: 14px;
	}
}

.cam_financesitemap li:first-child {
	padding: 10px 0;
}

.cam_financesitemap a:hover {
	color: #fcca40;
	font-weight: 600;
	transition: 5ms;
}

.cam_disputesitemap {
	padding-top: 40px;
}

.cam_disputesitemap li:first-child {
	padding: 10px 0;
}

.cam_disputesitemap a:hover {
	color: #f06638;
	font-weight: 600;
	transition: 5ms;
}

.cam_marketsitemap {
	padding-top: 40px;
}

.cam_marketsitemap li:first-child {
	padding: 10px 0;
}

.cam_marketsitemap a:hover {
	font-weight: 600;
	color: #a2cb39;
	transition: 5ms;
}

.commonleftpad {
	padding-left: 30px;
}

@media (max-width: 1024px) {
	.commonleftpad {
		padding-left: 14px;
	}
}

.peopleheading {
	padding-bottom: 50px;
}

@media (max-width: 1024px) {
	.peopleheading {
		padding-bottom: 30px;
	}
}

.people {
	display: none;
}

.caminnovation li {
	color: #621755;
	font-weight: 800;
	padding: 15px 0;
}

@media (max-width: 1024px) {
	.caminnovation li {
		padding: 10px 0;
	}
}

.insight li {
	padding: 15px 0px;
}

@media (max-width: 1024px) {
	.insight li {
		padding: 10px 0;
	}
}

.insight li:first-child {
	color: #621755;
	font-weight: 800;
}

.caminsight li {
	color: #621755;
	font-weight: 800;
	padding: 15px 0;
}

@media (max-width: 1024px) {
	.caminsight li {
		padding: 10px 0;
	}
}

.contactheading {
	padding-bottom: 70px;
}

@media (max-width: 1024px) {
	.contactheading {
		padding-bottom: 50px;
	}
}

.hexablog {
	width: 70vw;
	margin: auto;
	position: relative;
	top: 20%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1024px) {
	.hexablog {
		width: 100%;
		top: 20%;
	}
}

@media (max-width: 600px) {
	.hexablog {
		top: 0%;
	}
}

@media (max-width: 500px) {
	.hexablog {
		top: 15%;
		width: 100%;
	}
}

@media (max-width: 1440px) and (min-width: 1025px) {
	.kc-col-container .home_banner .item {
		height: 101vh;
	}
	
	.hexablog {
		top: 24%;
	}
}

.hexablog p {
	color: white;
	max-width: 100%;
	display: inline-block;
	font-size: 1.3rem;
}

@media (max-width: 768px) and (min-width: 500px) {
	.fourthhexa.hexa_txt_004 {
		padding-bottom: -1px !important;
	}
}

@media (max-width: 500px) {
	.slick-dotted.slick-slider {}
	
	.slick-dotted.slick-slider .slick-list.draggable {
		margin: 0 auto;
	}
	
	.home_banner .slick-list .slick-track .item {
		height: 66% !important;
	}
	
	.home_banner .slick-dots {
		bottom: 156px !important;
	}
	
	.hexablog .thirdhexa {
		margin-bottom: -13px !important;
		margin-right: 7px !important;
	}
	
	.hexablog .fourthhexa {
		width: 30%;
		margin-left: 3px !important;
		margin-bottom: -17px !important;
	}
	
	.hexablog .thirdhexa.hexa_txt_003 p span, .hexablog .fourthhexa.hexa_txt_004 p span {
		font-size: .5rem;
		font-weight: 200;
		line-height: 1.2 !important;
	}
	
	.hexablog .hexa_txt_001.firsthexa p, .hexablog .secondhexa.hexa_txt_002 p {
		line-height: .7 !important;
	}
	
	.hexablog .fourthhexa.hexa_txt_004 p {}
	
	.hexablog .hexa_logo-1 {
		width: 35% !important;
	}
	
	/*.hexablog p {
		font-size: 0.8rem;
		width: 84%;
		display: inline-block
	}*/
	.home_banner .hexablog p {
		font-weight: 200 !important;
		margin-bottom: 8px;
		margin-top: 0px;
	}
	
	.hexablog .sixthhexa.hexa_txt_006 {
		margin-top: 6px;
	}
	
	.fourthhexa.hexa_txt_004 {
		white-space: nowrap;
	}
	
	.hexablog p strong {
		font-size: .5rem !important;
		font-weight: 600 !important;
		white-space: nowrap;
	}
	
	.hexablog p {
		line-height: .9;
		width: 100% !important;
	}
}

/*500 med end*/
.hexablog p a {
	text-decoration: none;
	color: currentColor;
}

.hexablog p a:active {
	color: #d5a46c;
}

.hexablog p strong {
	font-size: 1.4rem;
}

.hexablog p span {
	font-size: 1rem;
	font-weight: 200;
}

@media (max-width: 500px) {
	.hexablog p span {
		font-size: .6rem;
	}
}

.hexablog .firsthexa, .hexablog .fifthhexa {
	width: 50%;
	float: left;
	padding-right: 10%;
	box-sizing: border-box;
	text-align: right;
}

.hexablog .secondhexa, .hexablog .sixthhexa {
	width: 50%;
	float: left;
	padding-left: 10%;
	text-align: left;
	box-sizing: border-box;
}

.hexablog .thirdhexa {
	width: 33.33%;
	float: left;
	align-self: center;
	text-align: right;
}

.hexablog .thirdhexa p {
	padding-right: 10%;
}

@media (max-width: 800px) {
	.hexablog .thirdhexa {
		width: 30%;
	}
}

.hexablog .hexa_logo-1 {
	width: 33.33%;
	float: left;
}

.hexablog .hexa_logo-1 img {
	margin: auto;
}

@media (max-width: 800px) {
	.hexablog .hexa_logo-1 {
		width: 40%;
	}
}

.hexablog .fourthhexa {
	width: 33.33%;
	float: left;
	align-self: center;
	text-align: left;
}

.hexablog .fourthhexa p {
	padding-left: 10%;
}

@media (max-width: 800px) {
	.hexablog .fourthhexa {
		width: 30%;
	}
}

/* career page */
.contact-us.form form.wpcf7-form label.error {
	color: #dc3232;
	font-size: .9em;
}

.contact-us.form form.wpcf7-form .wpcf7-not-valid-tip {
	display: none;
}

/*.contact-us.form form .input-wrapper {
	background: rgb(98 23 85 / 3%);
}
.contact-us .input-wrapper {
	box-shadow: none !important;
	border: none !important;
}*/
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #ffb900;
	margin: 2em 0em 1em;
}

.upload-btn-wrapper {
	position: relative;
	width: 200%;
}

.custom-file-input::-webkit-file-upload-button {
	visibility: hidden;
}

.custom-file-input::before {
	content: "Upload Resume";
	color: #fff;
	background-color: #ea8123;
	padding: 12px 20px;
	font-size: 1rem;
	outline: none;
	border: none;
	font-weight: 500;
	cursor: pointer;
}

.custom-file-input:active::before {
	background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.custom-file-input {
	color: red;
	width: 190%;
}

div.wpcf7 input[type="file"] {
	cursor: pointer;
	padding-bottom: 50px;
	padding-top: 15px;
}

@media (min-width: 1920px) and (max-width: 2560px) {
	.hexablog .hexa_logo-1 {
		width: 22.33%;
		float: left;
	}
	
	.home_banner .hexablog .fifthhexa p span {
		max-width: 150px !important;
	}
	
	.fifthhexa.hexa_txt_005 {
		top: -37px !important;
		position: relative;
		padding-right: 6% !important;
	}
	
	.sixthhexa.hexa_txt_006 {
		position: relative;
		padding-left: 6.5% !important;
		top: -24px !important;
	}
	
	.hexablog .fourthhexa {
		padding-bottom: 26px !important;
	}
	
	.hexablog {
		top: 24 !important;
		width: 70vw !important;
	}
}

/*1600 start*/
@media (min-width: 1600px) {
	.fifthhexa .hexa_txt_005 {}
}

/*1600 end*/
@media (max-width: 768px) and (min-width: 500px) {
	.sixthhexa.hexa_txt_006 {
		position: relative;
		top: -16px !important;
		padding-left: 11% !important;
	}
	
	.fifthhexa.hexa_txt_005 {
		position: relative;
		top: -17px !important;
		padding-right: 11% !important;
	}
}

@media (max-width: 500px) {
	.fifthhexa.hexa_txt_005 {
		padding-bottom: 9px !important;
	}
}

/*@media (min-width: 1920px) and (max-width: 2560px)  {
.home_banner .hexablog .thirdhexa p span {
    max-width: 172px;
}
}*/

/*@media only screen and (min-width: 1920px){
	.home_banner .thirdhexa.hexa_txt_003,
	.home_banner .hexablog .fourthhexa p span {
		 max-width: 172px;
	}
}*/
.home_banner .hexablog .thirdhexa p span {
	max-width: 176px !important;
}

@media (min-width: 1600px) {
	.hexablog {
		width: 69vw;
	}
	
	footer .article_form_block .article_form input {
		width: calc(114% - 92px);
		margin-right: 9px;
	}
	
	.fourthhexa.hexa_txt_004 {
		padding-bottom: 17px !important;
	}
	
	.sixthhexa.hexa_txt_006 {
		position: relative;
		padding-left: 9%;
		top: -10px;
	}
	
	.fifthhexa.hexa_txt_005 {
		top: -21px;
		position: relative;
		padding-right: 9%;
	}
	
	html {}
}

@media only screen and (min-width: 1200px) {
	footer .article_form_block .article_form input {
		/* width: calc(95% - 89px); */
		width: calc(100% - 100px) !important;
	}
}

@media (min-width: 1920px) and (max-width: 2560px) {
	.fourthhexa.hexa_txt_004 {
		padding-bottom: 25px !important;
	}
	
	footer .article_form_block .article_form input {
		width: calc(90% - 100px) !important;
		margin-right: 10px;
	}
}

.fifthhexa.hexa_txt_005 {}

@media (max-width: 424px) and (min-width: 320px) {
	.fourthhexa.hexa_txt_004 {
		padding-bottom: 6px !important;
	}
}

@media (max-width: 1599px) and (min-width: 769px) {
	.fourthhexa.hexa_txt_004 {
		padding-bottom: 19px !important;
	}
}

@media (max-width: 1599px) and (min-width: 768px) {
	.fifthhexa.hexa_txt_005 {
		padding-bottom: 17px !important;
	}
	
	.fifthhexa.hexa_txt_005 {
		position: relative;
		top: -18px;
		padding-right: 9%;
	}
	
	.sixthhexa.hexa_txt_006 {
		position: relative;
		top: -16px;
		padding-left: 9%;
	}
}

/*media q end*/
@media (max-width: 1599px) and (min-width: 768px) {
	.about-us-banner .item .hexa_blog .hexa_txt_003 {
		right: 3%;
	}
	
	.about-us-banner .item .hexa_blog .hexa_txt_006 {
		left: 60px;
	}
}

@media (max-width: 1366px) {
	/*.about-us-banner .item .hexa_blog .hexa_txt_003 {
    right: 3.5%;
}*/
	.sitemap {
		background-color: #f1f1f1;
		font-size: 34px;
		max-width: 90%;
		padding: 20px 0;
		margin-bottom: 25px;
		margin-left: 26px;
	}
	
	hr {
		width: 90%;
		background-color: #621755;
		height: 2px;
		border: none;
		margin: 0;
		margin-left: 26px;
	}
}

@media only screen and (max-width: 320px) {
	.hexablog p strong {
		font-size: 10px;
	}
}

@media (max-width: 2000px) and (min-width: 1920px) {
	.sitemainheading {
		margin: 0;
		padding-left: 30px !important;
	}
}

@media (max-width: 1899px) and (min-width: 1600px) {
	.sitemapheading {
		padding-left: 1px !important;
	}
	
	.sitemainheading {
		margin: 0;
		padding-left: 29px !important;
	}
}

@media (max-width: 1599px) and (min-width: 1280px) {
	.sitemainheading {
		margin: 0;
		padding-left: 56px !important;
	}
	
	.sitemapheading {
		padding-left: 25px !important;
	}
}

/*banner*/
@media (max-width: 767px) {
	.hexablog p strong {
		font-size: 1rem;
		font-weight: 500 !important;
	}
	
	.hexablog p {
		width: 92% !important;
	}
}

/**/

/*.custom-file-input::before {
    content: 'Upload Resume';
    color: #fff;
    background-color: #EA8123;
    padding: 14px 20px;
    font-size: 0.8rem;}
    .custom-file-input {
    font-size: 0.7rem;}*/
@media screen and (max-width:768px) {
	.custom-file-input::before {
		content: "Upload Resume";
		color: #fff;
		background-color: #ea8123;
		padding: 14px 20px;
		font-size: .8rem !important;
	}
	
	.custom-file-input {
		font-size: .7rem !important;
	}
}

/*1280 * 960*/
@media (max-width: 1365px) and (min-width: 1280px) and (min-height: 960px) {
	.container.notfoundpg {
		margin-top: 190px !important;
		margin-bottom: 64px !important;
	}
}

/*1280*1024*/
@media (max-width: 1365px) and (min-width: 1280px) and (min-height: 801px) and (max-height: 1023px) {
	.container.notfoundpg {
		margin-top: 159px !important;
		margin-bottom: 32px !important;
	}
}

@media (max-width: 1438px) and (min-width: 1366px) {
	.container.notfoundpg {
		margin-top: 128px !important;
	}
}

@media (max-width: 1279px)and (min-width: 1024px) {
	.container.notfoundpg {
		margin-top: 0px !important;
	}
}

/*ipad*/
@media (max-width: 1279px)and (min-width: 1024px) and (min-height:800px) {
	.container.notfoundpg {
		margin-top: 57px !important;
		margin-bottom: 76px !important;
	}
}

@media only screen and (min-width: 1920px) {
	.container.notfoundpg {
		margin-top: 285px !important;
		margin-bottom: 146px !important;
	}
}

@media (aspect-ratio: 4/3) {
	.container.notfoundpg {
		margin-top: 285px !important;
		margin-bottom: 146px !important;
	}
}

/*supriya*/
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	.container.notfoundpg {
		margin-top: 386px !important;
		margin-bottom: 214px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
}

/* Portrait */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	.container.notfoundpg {
		margin-top: 386px !important;
		margin-bottom: 214px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
}

/* Landscape */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	.container.notfoundpg {
		margin-top: 386px !important;
		margin-bottom: 214px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
}

@media only screen and (min-width: 1600px) {
	.container.notfoundpg {
		margin-top: 386px !important;
		margin-bottom: 214px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
}

/*html {
    /*margin-top: 91px !important;*/

/*}
@media (max-width: 1440px) {
	html {
	font-size: 20.7px;
	}
}
@media (min-width: 1600px) {
	html {
	font-size: 24.5px;
	}
}*/

/*end of ipad*/

/*@media only screen and (min-width: 1600px){
	.container.notfoundpg {
    margin-top: 386px !important;
    margin-bottom: 214px !important;
        padding-top: 0px !important;
    padding-bottom: 0px !important;
 }
}*/

/*@media screen and(max-width:320px){*/

/*
.wpcf7 form .custom-file-input::before{
  content: 'Upload Resume';
    color: #fff;
    background-color: #EA8123;
    padding: 4px 10px !important;
    font-size: 0.5rem !important;
}
 .wpcf7 form.custom-file-input
     {
    font-size: 0.5rem!important;
}*/

/* ----------- iPad Pro ----------- */

/* Portrait and Landscape */

/*@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
  	.container.notfoundpg{
	margin-top:80px!important;
	margin-bottom:52px!important;

}
}*/

/* Portrait */

/*@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
  	.container.notfoundpg{
	margin-top:80px!important;
	margin-bottom:52px!important;

}
}*/

/* Landscape */

/*@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
.container.notfoundpg{
	margin-top:80px!important;
	margin-bottom:52px!important;

}
}*/

/*@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
.container.notfoundpg{
	margin-top:80px!important;
	margin-bottom:52px!important;

}

}
*/

/*dummy code*/
@media (max-width: 1899px) and (min-width: 1600px) {}

@media (max-width: 1599px) and (min-width: 1439px) {}

@media (max-width: 1438px) and (min-width: 1366px) {}

@media (max-width: 1365px) and (min-width: 1280px) {}

@media (min-width: 1100px) {}

@media (max-width: 1279px) and (min-width: 992px) {}

@media (max-width: 1199px) and (min-width: 1060px) {}

@media (max-width: 1099px) and (min-width: 992px) {}

@media (max-width: 1059px) and (min-width: 992px) {}

@media (max-width: 991px) and (min-width: 768px) {}

@media (max-width: 767px) {}

@media (min-width: 768px) {}

@media (min-width: 575px) {}

@media (max-width: 575px) {}

@media (max-width: 575px) {
	.sitemainheading {
		padding-left: 40px !important;
	}
	
	.sitemapheading {
		padding-left: 25px !important;
	}
}

@media (max-width: 768px) {
	.sitemainheading {
		padding-left: 40px !important;
	}
	
	.sitemapheading {
		padding-left: 25px !important;
	}
}

.login_captcha {
	margin-left: -14px;
	-webkit-transform: scale(.9) !important;
}

.tght_leadership .tght_leadershi_lst li {
	display: flex;
	margin-bottom: -.8rem;
}

.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
	width: 100%;
}

@media (max-width: 1366px) {
	.tght_leadership .tght_leadershi_lst li .blog-wrap .block-img img {
		margin-top: -1px;
	}
	
	.tght_leadership .blog-wrap .block-img {
		/*min-height: 300px;*/
		aspect-ratio: 100/60;
	}
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
	.tght_leadership .blog-wrap .block-img {
		min-height: 170px;
	}
}

/*rc-anchor rc-anchor-normal rc-anchor-light
*/
@media (max-width: 700px) {
	.testimonial .slick-dots {
		margin-bottom: 125px;
		text-align: center;
	}
}

@media only screen and (max-width: 655px) {
	.tght_leadership .title {
		padding-top: 110px !important;
	}
}

@media only screen and (max-width: 655px) {
	.rev-col {
		display: flex;
		flex-direction: column-reverse !important;
	}
}

@media only screen and (max-width: 655px) {
	.career-opt {
		margin-top: 0px !important;
	}
}

@media only screen and (max-width: 767px) {
	.navigation-header .nav-container .container {
		height: calc(70% - 40px);
		padding: 0;
		margin: 0;
		width: 100% !important;
	}
}
