.card .card-reveal,
.card .card-reveal-message
{
	padding: 20px;
	position: absolute;
	background-color: #FFF;
	width: 100%;
	overflow-y: auto;
	left:0;
	bottom:0;
	height: 100%;
	z-index: 1;
	display: none;
}

.card .card-reveal .card-title,
.card .card-reveal-message .card-title
{
	color: rgba(0, 0, 0, 0.71);
	/*margin:10px;*/
	font-size:1.2rem;
}

.card .card-reveal p,
.card .card-reveal-message p{
	color: rgba(0, 0, 0, 0.71);
	/*margin:10px;*/
	font-size:0.8rem;
}

/*==============================
	Header
==============================*/
button.respleftmenu {
	padding: 0;
	border: none;
	background-color: transparent;
	transition: 0.5s ease;
	transition-property: color, background-color, border-color, box-shadow;
	cursor: pointer;
}

button.respleftmenu:focus {
	outline: none;
}
.header {
	position: relative;
	/*position: fixed;*/
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: #ffffff;
	/*background-color: transparent;*/
}
.header:before {
	content: '';
	position: relative;
	/*position: absolute;*/
	z-index: -1;
	display: block;
	width: 100%;
	left: 0;
	top: 0;
	height: 0;
	background-color: #ffffff;
	/*background-color: transparent;*/
	transition: 0.5s ease;
	pointer-events: none;
	border-bottom: 1px solid transparent;
}
.header--active .header__btn span {
	background-color: #232122;
}
.header--active .header__logo-white {
	opacity: 0;
}
.header--active .header__logo-dark {
	opacity: 1;
}
.header--active .header__logo {
	pointer-events: auto;
}
.header--active:before {
	height: 100px;
	background-color: #fff;
	border-color: rgba(37,104,176,0.12);
}
.header__content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 110px;
	width: 100%;
}
.header__logo {
	z-index: 1;
	width: auto;
	height: 100px;
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	margin-left: 40px;
	pointer-events: none;
}
.header__logo img {
	height: 100px;
	width: auto;
}
.header__logo-white {
	position: relative;
	opacity: 1;
	transition: opacity 0.4s ease;
}
.header__logo-dark {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.header__btn {
	position: absolute;
	width: 24px;
	height: 22px;
	display: block;
	left: 0;
}
.header__btn span {
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	/*background-color: #fff;*/
	background-color: #232122;
	border-radius: 3px;
	transition: 0.5s ease;
	opacity: 1;
}
.header__btn span:first-child {
	top: 0;
}
.header__btn span:nth-child(2) {
	top: 10px;
	width: 16px;
}
.header__btn span:last-child {
	top: 20px;
	width: 8px;
}
.header__btn--active span:first-child {
	transform: rotate(45deg);
	top: 10px;
}
.header__btn--active span:nth-child(2) {
	opacity: 0;
}
.header__btn--active span:last-child {
	width: 24px;
	transform: rotate(-45deg);
	top: 10px;
}
.header__tagline {
	display: none;
}
.header__nav {
	position: fixed;
	width: 250px;
	top: 80px;
	bottom: 0;
	left: 0;
	background-color: #232122;
	padding: 30px 15px 0;
	transition: transform 0.5s ease;
	transform: translate3d(-250px, 0, 0);
}
.header__nav--active {
	transform: translate3d(0, 0, 0);
}
.header__nav li {
	display: block;
	margin-bottom: 25px;
}
.header__nav li:last-child {
	margin-bottom: 0;
}
.header__nav li.active a {
	color: #c2c2c2;
}
.header__nav a {
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}
.header__nav a:hover {
	color: #c2c2c2;
}
.header__dropdown {
	position: relative;
	display: block;
	width: auto;
}
.header__dropdown .dropdown-toggle {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.header__dropdown .dropdown-toggle svg {
	width: 14px;
	height: auto;
	fill: #fff;
	margin-left: 3px;
	margin-top: 1px;
	transition: fill 0.5s ease;
}
.header__dropdown .dropdown-toggle:hover,
.header__dropdown .dropdown-toggle[aria-expanded="true"] {
	color: #c2c2c2;
}
.header__dropdown .dropdown-toggle:hover svg,
.header__dropdown .dropdown-toggle[aria-expanded="true"] svg {
	fill: #c2c2c2;
}
.header__dropdown-menu {
	position: absolute;
	background-color: #fff;
	padding: 15px 20px;
	display: block;
	width: 180px;
	text-align: left;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	border-radius: 16px;
	transition: 0.5s ease;
	transition-property: opacity, margin-top, transform;
	margin-top: 0;
	top: 0;
	border: 1px solid rgba(37,104,176,0.12);
	transform: translate3d(0px, 24px, 0px);
}
.header__dropdown-menu li {
	padding: 0;
	margin-bottom: 10px;
}
.header__dropdown-menu li:last-child {
	margin-bottom: 0;
}
.header__dropdown-menu a {
	font-size: 16px;
	line-height: 26px;
	color: #232122;
	text-transform: none;
	font-weight: 400;
}
.header__dropdown-menu a:hover {
	color: #423baa;
}
.header__dropdown-menu.show {
	z-index: 1000;
	pointer-events: auto;
	opacity: 1;
	margin-top: 10px;
}
.header__cta {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 50px;
	background: #001857;
	/*background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);*/
	border-radius: 14px;
	padding: 0 26px;
	overflow: hidden;
}
.header__cta:before {
	content: '';
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background: #002075;
	/*background: linear-gradient(65deg, #2568b0 0%, #423baa 100%);*/
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	border-radius: 14px;
}
.header__cta:after {
	content: '';
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: calc(100% - 10px);
	border: 2px solid rgba(255,255,255,0.1);
	z-index: 2;
	pointer-events: none;
	border-radius: 12px;
}
.header__cta span {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.header__cta:hover {
	color: #fff;
}
.header__cta:hover:before {
	opacity: 1;
}
@media (min-width: 576px) {
	.header__logo {
		margin-left: 45px;
	}
	.header__tagline {
		display: block;
		line-height: 24px;
		color: #fff;
		font-size: 14px;
		transition: color 0.5s ease;
		margin-right: auto;
		margin-left: 20px;
		font-weight: 400;
	}
	.header__nav {
		padding-left: calc((100vw - 510px) / 2);
	}
	.header--active .header__tagline {
		color: #232122;
	}
}
@media (min-width: 768px) {
	.header__nav {
		padding-left: calc((100vw - 690px) / 2);
		width: 280px;
		transform: translate3d(-280px, 0, 0);
	}
	.header__nav--active {
		transform: translate3d(0, 0, 0);
	}
}
@media (min-width: 992px) {
	.header__nav {
		padding-left: calc((100vw - 930px) / 2);
	}
}
@media (min-width: 1200px) {
	.header__btn {
		display: none;
	}
	.header__logo {
		margin: 0;
	}
	.header__nav {
		position: relative;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		background-color: transparent;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		width: auto;
		transform: translate3d(0, 0, 0);
		padding: 0;
		margin-right: auto;
	}
	.header__nav li {
		display: block;
		margin-right: 45px;
		margin-bottom: 0;
	}
	.header__nav li:last-child {
		margin-right: 0;
	}
	.header__nav a {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		height: 40px;
		color: #232122;
		font-size: 16px;
		font-weight: 400;
		text-transform: none;
	}
	.header__nav a:hover {
		color: #423baa;
	}
	.header__dropdown-menu {
		transform: translate3d(0px, 40px, 0px);
		margin-top: -10px;
	}
	.header__dropdown-menu li {
		margin-right: 0;
	}
	.header__dropdown-menu a {
		color: #232122;
		justify-content: flex-start;
	}
	.header__dropdown-menu a:hover {
		color: #423baa;
	}
	.header__dropdown-menu.show {
		margin-top: 0;
	}
	.header--active .header__nav a {
		color: #232122;
	}
	.header--active .header__nav a:hover {
		color: #423baa;
	}
	.header--active .header__dropdown .dropdown-toggle svg {
		fill: #232122;
	}
	.header--active .header__dropdown .dropdown-toggle:hover,
	.header--active .header__dropdown .dropdown-toggle[aria-expanded="true"] {
		color: #423baa;
	}
	.header--active .header__dropdown .dropdown-toggle:hover svg,
	.header--active .header__dropdown .dropdown-toggle[aria-expanded="true"] svg {
		fill: #423baa;
	}
}

/*==============================
	Common styles
==============================*/
.tab-content {
	width: 100%;
}
.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
	display: block;
}

/*==============================
	Section
==============================*/
.section {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
}
.section .container {
	position: relative;
	z-index: 3;
}
.section__title {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	position: relative;
	margin-bottom: 5px;
}
.section__title strong {
	background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	margin-bottom: 15px;
}
.section__title h2 {
	font-size: 30px;
	color: #3c3f41;
	font-weight: 600;
	margin-bottom: 5px;
	text-align: center;
	line-height: 40px;
}
.section__title p {
	font-size: 16px;
	line-height: 26px;
	color: #535051;
	margin-bottom: 10px;
	margin-top: 5px;
	text-align: center;
}
.section__title p a {
	background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	font-weight: 600;
}
.section__title p a:before {
	content: '';
	position: absolute;
	display: block;
	height: 2px;
	width: 100%;
	left: 0;
	bottom: 2px;
	border-radius: 4px;
	background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
	opacity: 0;
	transition: 0.5s ease;
	transition-property: opacity, bottom;
}
.section__title p a:hover:before {
	opacity: 1;
}
.section__title--white h2 {
	color: #fff;
}
.section__title--white p {
	color: #c2c2c2;
}
.section__title--left {
	align-items: flex-start;
}
.section__title--left h2 {
	text-align: left;
}
.section__title--left p {
	text-align: left;
}
.section__title--border {
	padding-top: 19px;
}
.section__title--border:before {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
	top: 0;
}
.section__btn {
	position: relative;
	width: 100%;
	max-width: 200px;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
	border-radius: 16px;
	margin: 40px auto 0;
}
.section__btn:before {
	content: '';
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(65deg, #2568b0 0%, #423baa 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	border-radius: 16px;
}
.section__btn:after {
	content: '';
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: calc(100% - 10px);
	border: 2px solid rgba(255,255,255,0.1);
	z-index: 2;
	pointer-events: none;
	border-radius: 14px;
}
.section__btn span {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 3;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 100%;
	transition: color 0.5s ease;
}
.section__btn:hover:before {
	opacity: 1;
}
.section__btn--more span:before {
	content: 'Show less';
	position: absolute;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.section__btn--more[aria-expanded="true"] span {
	color: transparent;
}
.section__btn--more[aria-expanded="true"] span:before {
	opacity: 1;
}
.section__btn--more[aria-expanded="true"]:before {
	opacity: 1;
}
.section__btn--more[aria-expanded="true"]:hover:before {
	opacity: 0;
}
.section__btn--grid {
	margin: 20px 0 25px;
}
.section--dark {
	background-color: #232122;
}
.section--agenda {
	background-color: #A8E0F1;
}
.section--blue {
	background-color: #eef0fe;
}
.section--gradiend-top:before {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	pointer-events: none;
	height: 300px;
	z-index: 1;
	top: 0;
	background: linear-gradient(180deg, rgba(66,59,170,0.06) 0%, rgba(37,104,176,0) 100%);
}
.section--gradiend-bot:after {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	pointer-events: none;
	height: 300px;
	z-index: 1;
	bottom: 0;
	background: linear-gradient(0deg, rgba(66,59,170,0.06) 0%, rgba(37,104,176,0) 100%);
}
.section--about {
	padding-bottom: 0;
}
.section--about-up {
	background: url("../img/about/up.svg") no-repeat top center;
}
.section--about-wave {
	background: url("../img/about/wave.svg") no-repeat top center;
}
.section--about-angle {
	background: url("../img/about/angle.svg") no-repeat top center;
}
@media (min-width: 768px) {
	.section {
		padding: 70px 0;
	}
	.section__title strong {
		font-size: 16px;
	}
	.section__title h2 {
		font-size: 36px;
		line-height: 46px;
	}
	.section__title p {
		margin-top: 10px;
	}
	.section__title--border {
		padding-top: 24px;
	}
	.section__title--between {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
	.section__title--between h2 {
		text-align: left;
		width: 50%;
		padding-right: 30px;
	}
	.section__title--between p {
		text-align: left;
		width: 50%;
		margin-top: 0;
		margin-bottom: 10px;
	}
	.section__btn {
		margin: 50px auto 0;
	}
	.section__btn--grid {
		margin: 20px 0 15px;
	}
	.section--about {
		padding-bottom: 0;
	}
}
@media (min-width: 992px) {
	.section__title--grid-left {
		margin-bottom: 0;
		height: 100%;
		justify-content: center;
		align-items: flex-start;
		padding-left: 55px;
	}
	.section__title--grid-left h2 {
		text-align: left;
	}
	.section__title--grid-left p {
		text-align: left;
	}
	.section__title--grid-right {
		margin-bottom: 0;
		height: 100%;
		justify-content: center;
		align-items: flex-start;
		padding-right: 55px;
	}
	.section__title--grid-right h2 {
		text-align: left;
	}
	.section__title--grid-right p {
		text-align: left;
	}
	.section__btn--grid {
		margin: 30px 0 0;
	}
}
@media (min-width: 1200px) {
	.section--about {
		background-size: 100% auto;
	}
}

/*==============================
	Program
==============================*/
.program {
	position: relative;
	width: 100%;
	/*background: linear-gradient(230deg, rgba(255,255,255,0.08) 0%, rgba(248,248,248,0) 100%);*/
	/*background: #ddebf4;*/
	background: #ddebf4;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	z-index: 2;
	padding: 25px 20px 20px;
}
.program__tabs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-top: 10px;
	overflow: visible;
	border: none;
}
.program__tabs li {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	margin-right: 20px;
}
.program__tabs li:last-child {
	margin-right: 0;
}
.program__tabs a {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 18px;
	color: #2b2b2b !important;
	word-wrap: normal;
	white-space: nowrap;
	opacity: 0.7;
	transition: opacity 0.4s ease;
}
.program__tabs a span {
	font-weight: 600;
	font-size: 12px;
	/*background: -webkit-linear-gradient(60deg, #423baa, #2568b0);*/
	-webkit-background-clip: text;
	/*-webkit-text-fill-color: transparent;*/
	/*-webkit-text-fill-color: #f47525;*/
	color: #20539e;
	-webkit-text-fill-color: #20539e;
}
.program__tabs a.active,
.program__tabs a:hover {
	opacity: 1;
	border: none;
	background: none !important;
}
.program__content {
	width: 100%;
	height: 410px;
	margin-top: 30px;
	position: relative;
}
.program__speech {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	padding-right: 24px;
}
.program__speech:last-child .program__agenda {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.program__speaker {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	position: relative;
	margin-bottom: 15px;
}
.program__speaker-img {
	width: 60px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.program__speaker-img img {
	width: 100%;
}
.program__speaker-about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: absolute;
	left: 60px;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 0 0 0 15px;
}
.program__speaker-about p {
	width: 100%;
	font-size: 18px;
	line-height: 26px;
	color: #3c3f41;
	font-weight: 400;
	margin-bottom: 7px;
}
.program__speaker-about span {
	font-size: 16px;
	line-height: 100%;
	font-weight: 600;
	display: block;
	margin-bottom: 0;
	/*background: -webkit-linear-gradient(60deg, #423baa, #2568b0);*/
	-webkit-background-clip: text;
	color: #20539e;
	-webkit-text-fill-color: #20539e;
	/*-webkit-text-fill-color: #f47525;*/
}
.program__agenda {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	padding-bottom: 25px;
	margin-bottom: 30px;
}
.program__agenda h3 {
	font-size: 20px;
	font-weight: 400;
	color: #3c3f41;
	margin-bottom: 12px;
}
.program__agenda span {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 0 14px;
	border-radius: 10px;
	background-color:  rgba(107,107,107, 0.6);
	border: 1px solid rgba(107,107,107,0.5);
	height: 28px;
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
}
.program__agenda p {
	width: 100%;
	font-size: 16px;
	line-height: 26px;
	color: #3c3f41;
	margin-bottom: 15px;
}
.program__agenda p:last-child {
	margin-bottom: 0;
}
.program__agenda p.agenda__doc {
	font-size: 18px;
	font-weight: 400;
	color: #3c3f41;
	margin-bottom: 2px;
	display: none;
}
.program__agenda p.agenda__doc_designat {
	font-size: 16px;
	font-weight: 400;
	/*color: #f47525;*/
	/*color: #f47525;*/
	color: #20539e;
	-webkit-text-fill-color: #20539e;
	margin-bottom: 12px;
	display: none;
}
@media (min-width: 400px) {
	.program__tabs li {
		margin-right: 25px;
	}
	.program__tabs li:last-child {
		margin-right: 0;
	}
	.program__tabs a {
		font-size: 20px;
		line-height: 30px;
	}
	.program__tabs a span {
		font-size: 14px;
		line-height: 20px;
	}
}
@media (min-width: 576px) {
	.program__tabs li {
		margin-right: 30px;
	}
	.program__tabs li:last-child {
		margin-right: 0;
	}
}
@media (min-width: 768px) {
	.program {
		padding: 40px;
	}
	.program__tabs {
		margin-top: 20px;
	}
	.program__tabs li {
		margin-right: 40px;
	}
	.program__tabs li:last-child {
		margin-right: 0;
	}
	.program__tabs a {
		font-size: 22px;
		line-height: 30px;
	}
	.program__tabs a span {
		font-size: 14px;
		line-height: 20px;
	}
	.program__content {
		margin-top: 40px;
	}
	.program__speech {
		padding-right: 34px;
	}
	.program__speech:last-child .program__agenda {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.program__speaker {
		margin-bottom: 20px;
	}
	.program__agenda {
		padding-bottom: 30px;
		margin-bottom: 35px;
	}
	.program__agenda h3 {
		margin-bottom: 17px;
		font-size: 22px;
		line-height: 32px;
	}
	.program__agenda span {
		margin-bottom: 20px;
	}
}
@media (min-width: 992px) {
	.program__tabs {
		margin-top: 0;
		justify-content: flex-end;
	}
	.program__content {
		margin-top: 35px;
	}
}
@media (min-width: 1200px) {
	.program__tabs li {
		margin-right: 45px;
	}
	.program__tabs li:last-child {
		margin-right: 0;
	}
	.program__tabs a {
		padding-left: 20px;
		position: relative;
	}
	/*.program__tabs a:before {
	  content: '';
	  position: absolute;
	  display: block;
	  width: 5px;
	  height: 5px;
	  !*background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);*!
	  !*border-radius: 50%;*!
	  left: 0;
	  top: 50%;
	  transition: background-color 0.5s ease;
	  margin-top: -2.5px;
	}*/
	.program__speech {
		flex-direction: row;
	}
	.program__speaker {
		flex-direction: column;
		width: 140px;
		margin-bottom: 0;
	}
	.program__speaker-img {
		width: 140px;
		margin-bottom: 15px;
	}
	.program__speaker-about {
		position: relative;
		justify-content: flex-start;
		left: auto;
		top: auto;
		right: auto;
		bottom: auto;
		padding: 0;
		display: none;
	}
	.program__agenda {
		width: calc(100% - 160px);
		margin-left: 20px;
	}
	.program__agenda p.agenda__doc {
		display: block;
	}
	.program__agenda p.agenda__doc_designat {
		display: block;
	}
}

/*==============================
	Gallery
==============================*/
.heading--faculty {
	margin-top: 20px
}
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(10, 10vw);
	grid-gap: 20px;
	margin-top: 20px;
}
.gallery__item {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
}
.gallery__item:hover img {
	transform: scale(1.1);
}
.gallery__item a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.gallery__item img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.gallery__item--1 {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 1;
	grid-row-end: 5;
}
.gallery__item--2 {
	grid-column-start: 1;
	grid-column-end: 3;
	grid-row-start: 5;
	grid-row-end: 8;
}
.gallery__item--3 {
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row-start: 5;
	grid-row-end: 8;
}
.gallery__item--4 {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 8;
	grid-row-end: 11;
}
.gallery__item--5 {
	grid-column-start: 1;
	grid-column-end: 3;
	grid-row-start: 5;
	grid-row-end: 8;
}
.gallery__item--6 {
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row-start: 5;
	grid-row-end: 8;
}
.gallery__item--7 {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 1;
	grid-row-end: 5;
}
.gallery__item--8 {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 8;
	grid-row-end: 11;
}
@media (min-width: 768px) {
	.heading--faculty {
		margin-top: 30px
	}
	.gallery {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(4, 12vw);
		grid-gap: 30px;
		margin-top: 30px;
	}
	.gallery__item--1 {
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 5;
	}
	.gallery__item--2 {
		grid-column-start: 3;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.gallery__item--3 {
		grid-column-start: 4;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.gallery__item--4 {
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 3;
		grid-row-end: 5;
	}
	.gallery__item--5 {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.gallery__item--6 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.gallery__item--7 {
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 5;
	}
	.gallery__item--8 {
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 3;
		grid-row-end: 5;
	}
}
@media (min-width: 1200px) {
	.gallery {
		grid-template-rows: repeat(4, 7vw);
	}
}

/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
	background: rgba(255,255,255,0.06) !important;
	top: 0 !important;
	bottom: 0 !important;
	height: auto !important;
	width: 4px !important;
	border-radius: 4px !important;
	right: 0 !important;
	overflow: hidden;
	cursor: pointer;
}
.scrollbar-thumb-y {
	background: linear-gradient(0deg, #2568b0 0%, #423baa 100%) !important;
	width: 4px !important;
	border-radius: 4px !important;
	cursor: pointer;
	cursor: pointer;
}
.scrollbar-track-x {
	background: rgba(255,255,255,0.06) !important;
	left: 0 !important;
	right: 0 !important;
	height: 4px !important;
	width: auto !important;
	border-radius: 4px !important;
	bottom: 0 !important;
	overflow: hidden;
}
.scrollbar-thumb-x {
	background: linear-gradient(90deg, #423baa 0%, #2568b0 100%) !important;
	height: 4px !important;
	border-radius: 4px !important;
	cursor: pointer;
}

/*==============================
	Overlapping-promo
==============================*/
.wrap-overlapping-promo{
	display:block;
	position:relative;
	padding-bottom: 100px;
}
.about-us-section {
	position:absolute;
	top:0; right:0; left:0;
	transform: translateY(-50%);
	z-index: 1;
}

.livewebinarbtndesign {
	/*font-size: .675rem;*/
	/*line-height: 1;*/
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
	0% {
		background-color: #B20000;
		-webkit-box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000 !important;
		-webkit-box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000 !important;
		-webkit-box-shadow: 0 0 3px #B20000;
	}
}

@-moz-keyframes glowing {
	0% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		-moz-box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}
}

@-o-keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}

@keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
	50% {
		background-color: #FF0000;
		box-shadow: 0 0 10px #FF0000;
	}
	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}

.marquee {
	width: 100%;
	/*color: #ffffff;*/
	/*font-weight: bold;*/
	overflow: hidden;
	/*border: 1px solid #812f80;*/
	/*background: #812f80;*/
	/*margin-bottom: 35px;*/
}

@media (max-width: 767px) {
	.about-us-section {
		transform: translateY(-40%);
	}
}
@media (max-width: 611px) {
	.about-us-section {
		transform: translateY(-30%);
	}
}
@media (max-width: 530px) {
	.about-us-section {
		transform: translateY(-20%);
	}
}


/*=================================*/

@media (max-width: 576px) {
	.count-text {
		font-size: 10px;
		font-weight: bold;
	}
}

@media (max-width: 354px) {
	.count-title {
		font-size: 28px;
	}
}
