@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
	background: #0e0d19;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.navbar {
	padding: 0.5rem 0rem;
}

@media all and (min-width:1400px) {
	.container {
		width: 1600px;
		max-width: 90%;
	}

}

h2 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 15px;
}

h3 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 15px;
}

h4 {
	font-size: 18px;
	font-weight: 600;
}

p {
	font-size: 14px;
	color: #9E9FAD;
}

small {
	font-size: 23px;
	font-weight: 500;
	display: block;
	margin-bottom: 15px;
}

.primary-btn,
a.primary-btn {
	background: #403FD8;
	border: none !important;
	border-radius: 10px;
	color: #fff;
	outline: none !important;
	padding: 10px 15px !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.primary-btn:hover,
a.primary-btn:hover {
	background: #2f2fa0;
}

.dark-btn {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e2653d+0,7db9e8+100 */
	background: rgb(226, 101, 61);
	/* Old browsers */
	background: -moz-linear-gradient(-45deg, rgba(226, 101, 61, 1) 0%, rgba(125, 185, 232, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(226, 101, 61, 1) 0%, rgba(125, 185, 232, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(226, 101, 61, 1) 0%, rgba(125, 185, 232, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2653d', endColorstr='#7db9e8', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
	padding: 2px !important;
	border-radius: 5px;
	outline: none !important;
	border: none !important;
	display: inline-block;
	transition: all 0.2s ease-in-out;
}

.video-banner-outer {
	width: 378px;
	height: 419px;
	margin-left: auto;
	overflow: hidden;
}

.dark-btn span {
	font-size: 18px;
	font-weight: 700;
	padding: 10px 15px;
	background: #0D0D18;
	color: #fff;
	display: inline-block;
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
}

.dark-btn:hover span {
	background: rgba(0, 0, 0, 0.0);
}

.disable-btn,
a.disable-btn {
	background: #444444;
	pointer-events: none;
}

.card {
	background: #181829;
	border-radius: 10px;
	border: none;
	padding: 60px;
}

header {
	overflow: hidden;
	/*
	background: url("../images/header-bg.png") no-repeat;
	    background-size: 1000px;
    background-position: -780px -270px;
*/
	padding-top: 30px;
}

section {
	padding-top: 120px;
	padding-bottom: 120px;
}

#heading-typo {
	max-width: 500px;
	position: relative;
}

#heading-typo:after {
	content: "";
	width: 4px;
	height: 54px;
	background: #fff;
	display: inline-block;
	margin-bottom: -6px;
	margin-left: 5px;
	opacity: 0;
	animation: pointer 0.5s ease-in-out 10 alternate;
}

@keyframes pointer {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;

	}
}

.navbar a.navbar-brand {
	margin-left: -15px;
}

.main-nav {
	display: block;
}

.main-nav a {
	color: #9E9FAD;
	font-size: 15px;
	font-weight: 500;
}

.main-nav a.primary-btn {
	color: #fff;
	font-weight: 600;
}

.main-nav li {
	display: inline-block;
	padding-left: 10px;
	padding-right: 25px;
}

/*the container must be positioned relative:*/
.lang-select {
	position: relative;
}

.lang-select select {
	display: none; /*hide original SELECT element:*/
}

.select-selected {
	background: transparent;
	text-align: center;
}

/*style the arrow inside the select element:*/
.select-selected:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" stroke-width="1" stroke="white" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <polyline points="6 9 12 15 18 9"></polyline></svg>');
	top: 6px;
	right: -8px;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #fff transparent;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" stroke-width="1" stroke="white" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <polyline points="6 9 12 15 18 9"></polyline></svg>');
	top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
	padding: 4px 8px;
	cursor: pointer;
	user-select: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*style items (options):*/
.select-items {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	text-align: center;
	background: radial-gradient(106.46% 161.43% at 1.69% 50%, rgba(165, 156, 249, 0.2) 0%, rgba(21, 0, 233, 0.03) 77.08%, rgba(21, 0, 233, 0) 100%), rgb(13, 13, 24);
	border-radius: 0 0 10px 10px;
	color: white;
	font-weight: 600;
}
.select-items > div:hover {
	background: rgb(30, 30, 48);
}


/*hide the items when the select box is closed:*/
.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}




.main-nav li img {
	width: 14px;
	margin-top: -2px;
}

.banner {
	padding: 60px 15px;
}

.banner .col-md-6:first-child {
	padding: 90px 0 0;
}

.banner .col-md-6:first-child img {
	margin-left: 10px;
}

.powered-by {
	font-size: 16px;
	font-weight: 600;
	display: block;
}

#ch {
	vertical-align: middle;
    border-style: none;
	width: 220px;
}
/*
.banner-img {
	max-height: 50vh;
}
*/
.banner-img {
	width: 380px;
	height: 380px;
	margin: 50px;
	margin-left: auto;
	position: relative;
	top: 1px;
	/*	    animation:circle 50s ease-in-out infinite alternate; */

}

@-webkit-keyframes circle {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

.banner-img-elements {
	-webkit-animation: oscill 1s ease-in-out infinite alternate;
	-moz-animation: oscill 1s ease-in-out infinite alternate;
	-ms-animation: oscill 1s ease-in-out infinite alternate;
	animation: oscill 2.5s ease-in-out infinite alternate;
	background: url('../images/banner-img.svg');
	background-size: 450px 100%;
	position: relative;
	height: 100%;
	width: 1px;
	display: inline-block;
}

@keyframes oscill {
	0% {
		top: 5%;

	}

	100% {
		top: -5%;

	}
}




/*
@keyframes bannerAnimation {
  0% {
	  transform: rotate(0deg) skewX(10deg) skewY(0deg);
		
	}
  10% {
	  transform: rotate(36deg) skewX(0deg) skewY(10deg);
	  
	}
	20% {
		transform: rotate(72deg) skewX(5deg) skewY(5deg);
	}
	30% {
		transform: rotate(108deg) skewX(10deg) skewY(10deg);
	}
	40% {
		transform: rotate(144deg) skewX(5deg) skewY(15deg);
	}
	50% {
		transform: rotate(180deg) skewX(0deg) skewY(10deg);
	}
	60% {
		transform: rotate(216deg) skewX(10deg) skewY(0deg);
	}
	70% {
		transform: rotate(252deg) skewX(5deg) skewY(5deg);
	}
	80% {
		transform: rotate(288deg) skewX(10deg) skewY(15deg);
	}
	90% {
		transform: rotate(324deg) skewX(0deg) skewY(10deg);
	}
	100% {
		transform: rotate(360deg) skewX(10deg) skewY(0deg);
	}
}
*/
.icon-list {
	margin-left: -110px;
	margin-right: -110px;
}

.icon-list img {
	width: 285px;
	max-width: 100%;
}

.icon-list a {
	color: #fff;
	text-decoration: none;
}

.icon-list small {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding-right: 1px;
}

.content-list {
	margin-top: 50px;
}

.content-list .col {
	max-width: 300px;
}

.content-list h3 {
	margin-bottom: 0px;
}

.content-list small {
	font-size: 17px;
	font-weight: 500;
	color: #9E9FAD;
}

.liquidity-aggregator-section {
	background: url("../images/build-section-bg.png") no-repeat;
	background-size: 1000px;
	background-position: -475px -10px;
	padding-bottom: 200px;
}

.liquidity-aggregator-section h3 {
	max-width: 650px;
}

.liquidity-aggregator-section .col-lg-7 p {
	font-size: 22px;
	margin-bottom: 92px;
	margin-top: 30px;
	max-width: 500px;
}


.liquidity-aggregator-section .col-lg-8 a {
	margin-bottom: 30px !important;
	display: inline-block !important;
}

.buil-item {
	border: 1px solid #707070;
	border-radius: 5px;
	margin-left: 10px;
	margin-bottom: 30px;
	padding: 15px 10px;
	display: block;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}

.buil-item .item-img {
	width: 65px;
	display: inline-block;
	vertical-align: top;
	background: #403FD8;
	border-radius: 5px;
	padding: 10px;
}

.buil-item .item-img img {
	width: 100%;
}

.buil-item .item-content {
	width: calc(100% - 70px);
	display: inline-block;
	padding-left: 15px;
}

.buil-item .item-content p {
	margin-bottom: 0;
}

.buil-item:hover {
	background: #403FD8;
}

.buil-item:hover .item-img {
	background: #181829;
}

.swap-section {
	background: #181829;
}

.swap-item {
	background: #0D0D18;
	border-radius: 10px;
	padding: 30px 30px 50px;
	transition: all 0.2s ease-in-out;
}

.swap-item h4 {
	height: 50px;
}

.swap-item h4 img {
	margin-right: 5px;
	width: 50px;
	display: inline-block;
	background: #403FD8;
	padding: 5px;
	border-radius: 5px;
	height: 50px;
	vertical-align: top;
}

.swap-item h4 span {
	width: calc(100% - 70px);
	display: inline-block;
	padding-right: 55px;
}

.swap-item p {
	min-height: 130px;
	padding: 20px 28px 10px 28px;
}

.swap-item:hover {
	background: #403FD8;
}

.swap-item:hover h4 img,
.swap-item:hover a.primary-btn:not(.disable-btn) {
	background: #181829;
}

.cta .row {
	background: url("../images/cta-bg.svg") no-repeat center left #403FD8;
	padding: 40px;
	border-radius: 10px;
}

.cta h4 {
	font-size: 26px;
}

.cta p {
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 0;
}

.cta a {
	/* margin-top: 10px;
	min-width: 150px; */
	margin-top: 10px;
	max-width: 100%;
	white-space: nowrap;
}

.supporters {
	background: url("../images/build-section-bg.png") no-repeat;
	background-size: 1000px;
	background-position: 1355px 200px;
}

.supporters ul,
.supporters li {
	list-style-type: none;
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
}

.supporters li {
	display: inline-block;
	width: 19.5%;
	text-align: center;
}

.supporters .container li {
	width: 24%;
}

.supporters .container li img {
	max-width: 100%;
}

.jctkr-wrapper {
	height: 100px;
}

.jctkr-wrapper li {
	width: 400px;
}

.featured-item {
	background: #212136;
	border-radius: 15px;
	overflow: hidden;
}

.featured-item .featured-image-top img {
	width: 100%;
}

.featured-item .feature-content,
.featured-item .featured-footer {
	padding: 10px;
	padding-left: 20px;
}

.featured-item .feature-content {
	padding-top: 15px;
}

.featured-item .feature-content p {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 0;
}

.featured-item .featured-footer .col {
	color: #9E9FAD;
	font-size: 10px;
	text-align: left;
}

.featured-item .featured-footer a {
	color: #fff;
	font-size: 12px;
}

.email {
	width: 100%;
	background: none;
	border: 1px solid #9E9FAD;
	padding: 8px;
	border-radius: 10px;
	margin-bottom: 15px;
	color: #fff;
}

footer {
	padding-top: 120px;
	background: url(../images/build-section-bg.png) no-repeat;
	background-size: 1000px;
	background-position: -475px -10px;
}

footer .col-lg-2 ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .col-lg-2 ul li {
	list-style-type: none;
	padding: 12px 0;
}

footer .col-lg-2 ul li a {
	color: #9E9FAD;
	font-size: 16px;
	text-decoration: none !important;
}

footer .col-lg-2 ul li a img {
	max-width: 20px;
	max-height: 30px;
	margin-right: 10px;
}

footer h4 {
	margin-top: 15px;
}

.footer-endbar {
	padding: 20px;
	border-top: 1px solid #6E6E6E;
	margin-top: 40px;
}

.footer-endbar p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 500;
}

.desktop-logo-supporters {
	display: inline-block !important;
}

.mobile-logo-supporters {
	display: none !important;
}

.roadmap .desk-only-rdmp {
	display: flex;
}

.roadmap .mob-only-rdmp {
	display: none;
}

/*
.icon-list {
    margin-left: -50px;
	margin-right:-50px;
}
*/
@media all and (max-width:1220px) {
	.risposive-btn-main-nav {
		width: 30px;
		height: 20px;
		cursor: pointer;
		position: relative;
		z-index: 3;
	}

	.navbar-brand {
		position: relative;
		z-index: 3;
	}

	.risposive-btn-main-nav span {
		width: 30px;
		height: 2px;
		background: #fff;
		display: block;
		margin-top: 5px;
		opacity: 1;
		transition: all 0.2s ease-in-out;
	}

	.risposive-btn-main-nav:before,
	.risposive-btn-main-nav:after {
		content: '';
		width: 30px;
		height: 2px;
		background: #fff;
		display: block;
		transition: all 0.2s ease-in-out;
	}

	.risposive-btn-main-nav:before {
		margin-bottom: 5px;
	}

	.risposive-btn-main-nav:after {
		margin-top: 5px;
	}

	.risposive-btn-main-nav.active {
		height: 30px;
	}

	.risposive-btn-main-nav.active span {
		opacity: 0;
		display: none;
	}

	.risposive-btn-main-nav.active:before {
		transform: rotate(45deg);
		margin-top: 12px;
		margin-bottom: 0;
	}

	.risposive-btn-main-nav.active:after {
		transform: rotate(-45deg);
		margin-top: -2px;
	}

	.main-nav {
		display: none;
		position: fixed;
		z-index: 2;
		background: #0f0d1a;
		left: 0;
		height: 100vh;
		top: 0;
		width: 100vw;
	}

	.main-nav ul {

		text-align: center;
		margin: auto;
		height: auto;
		top: 50%;
		position: absolute;
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}

	.main-nav ul li {
		width: 100%;
		margin-bottom: 15px;
		padding: 0;
	}

	.main-nav ul li .primary-btn {
		width: auto;
		max-width: 140px;
		margin: 80px auto 0;
	}
}

@media all and (max-width:1024px) {
	.icon-list {
		margin-left: -45px;
		margin-right: -45px;
	}

}

@media all and (max-width:990px) {
	#roadmap h3 {
		font-size: 18px !important;
	}

	#roadmap h2 {
		font-size: 22px !important;
	}

	.roadmap .desk-only-rdmp {
		display: none;
	}

	.roadmap .mob-only-rdmp {
		display: flex;
	}

	.supporters h3 {
		margin-bottom: 60px;
	}

	.supporters li,
	.supporters .container li {
		width: 49%;
		margin-bottom: 60px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.supporters li img,
	.supporters .container li img {
		max-width: 100%;
	}

	.supporters ul,
	.supporters li {
		text-align: center;
	}

	.supporters .container {
		max-width: 100%;
	}

	.supporters .my-5.py-3,
	.supporters .my-5.pb-3.pt-5 {
		margin: 0 !important;
		padding: 0 !important;
	}

	.desktop-logo-supporters {
		display: none !important;
	}

	.mobile-logo-supporters {
		display: inline-block !important;
	}

	.featured>.row>.col {
		min-width: 33%;
		text-align: center;
		margin-bottom: 30px;
	}

	.buil-item {
		margin-left: 0;
		margin-top: 2rem;
	}

}

@media all and (max-width:768px) {
	.navbar {
		padding: 0;
	}

	.liquidity-aggregator-section {
		padding-bottom: 100px;
	}

	.banner .col-md-6.text-right {
		display: none;
	}

	.icon-list {
		margin-left: -110px;
		margin-right: -110px;
	}

	.icon-list .col {
		min-width: 33.33%;
	}

	.card {
		padding: 30px;
	}

	.liquidity-aggregator-section .col-lg-7 p {
		margin-bottom: 0px;
	}

	.cta a {
		margin-top: 60px;

	}

	.featured>.row>.col {
		min-width: 50%;
	}

	h2 {
		font-size: 40px;
		font-weight: 700;
		margin-bottom: 15px;
	}

	h3 {
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 15px;
	}

	h4 {
		font-size: 16px;
		font-weight: 600;
	}

	p {
		font-size: 13px;
		color: #9E9FAD;
	}

	small {
		font-size: 18px;
		font-weight: 500;
		display: block;
		margin-bottom: 15px;
	}

	.wow{
        animation-name: none !important;
        visibility: visible !important;
    }

	section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media all and (max-width:720px) {
	.icon-list {
		margin-left: -100px;
		margin-right: -100px;
	}
}

@media all and (max-width:550px) {
	.banner {
		overflow: hidden;
	}

	.navbar-brand img {
		width: 150px;
	}

	.buil-item .item-content {
		width: 100%;
		margin-top: 15px;
		padding-left: 0;
	}

	.supporters li,
	.supporters .container li {
		width: 100%;
	}

	.icon-list {
		margin-left: -60px;
		margin-right: -60px;
	}

	.icon-list .col {
		min-width: 50%;
	}

	.content-list .col {
		min-width: 50%;
		padding: 0 10% 30px;
	}

	.featured>.row>.col {
		min-width: 100%;
	}
}

/*Road map*/
.roadmap {
	vertical-align: middle;
	min-height: 100%;
	padding-bottom: 5em;
	position: relative;
}

#roadmap {
	background-image: url('../images/bg-bottom.svg');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 35%;
}

/* TIMELINE
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

#roadmap h1 {
	font-size: 45px;
	font-weight: 700;
}

#roadmap h2 {
	font-size: 34px;
}

#roadmap h3 {
	font-size: 20px;
}

#roadmap h5 {
	font-size: 17px;
	font-weight: 400;
}

.timeline .qtr-card-ul li {
	font-size: 14px;
}

.timeline {
	display: flex;
	justify-content: center;
	margin-left: 0;
	padding-top: 50px;
	align-items: center !important;
	margin: auto;
}

@media screen and (min-width:576px) {
	.timeline.desk-only-rdmp {
		padding-top: 0;
	}
}

@media screen and (min-width:1281px) {
	.timeline {
		margin-left: 0%;
	}
}

@media screen and (min-width:2000px) {
	.timeline {
		margin-left: 20%;
	}
}

.timeline ol {
	position: relative;
	padding-left: .5em;
	margin: 0 auto;
	/* background: linear-gradient(179.76deg, #403FD8 0.21%, #FF6C21 116.37%); */
	background-repeat: no-repeat;
	list-style: none;
	background-position-y: 6em;
}

.timeline .qtr-li {
	list-style-type: none;
	cursor: pointer;
	position: relative;
	width: 6px;
	margin: 1.5em auto;
	padding-top: 50px;
	background: transparent;
}

.timeline .qtr-li .qtr-time h2 {
	color: #9E9EA3;
}

.timeline .qtr-li:hover .qtr-time h2 {
	color: #fff !important;
	transition: .2s ease-in-out;
}

.timeline .qtr-li.active {
	transform: scale(1.16);
	transition: .2s ease-in;
}

.timeline .qtr-li.active .qtr-time h2 {
	color: #fff !important;
}

.timeline .qtr-li::after {
	content: url('../images/b-w-atlas-logo.svg');
	position: absolute;
	top: 50%;
	left: -1.3em;
	bottom: 0;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: inherit;
}

.timeline .qtr-li.active::after {
	content: url('../images/color-atlas-logo.svg');
}

.timeline .qtr-li .qtr-div {
	display: grid;
	position: relative;
	bottom: 0;
	margin-left: 4.8em;
	width: 25em;
	padding: 2em;
	color: #fff;
	background: radial-gradient(106.46% 161.43% at 1.69% 50%, rgba(255, 108, 33, 0.3) 0%, rgba(21, 0, 233, 0.2) 100%);
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	border-radius: 15px;
}

.timeline .qtr-time {
	position: relative;
	margin-left: -15em;
	margin-top: .6em;
}

.timeline .qtr-li.current .qtr-time::before {
	content: 'Current Quarter';
	display: inline-block;
	text-align: center;
	width: 10.4em;
	color: #fff;
	background: #403FD8;
	border-radius: 4px;
	padding: .3em 0;
	margin-bottom: .4em;
	font-family: var(--base-font-family);
	font-weight: var(--font-weight-semibold);
	font-size: var(--p-font-size);
}

.timeline .qtr-li.active .qtr-time h2 {
	margin-bottom: 0;
}

.timeline .qtr-li.active .qtr-time {
	position: absolute;
	margin-left: -14em;
	top: 50%;
}

.timeline .qtr-li.active.current .qtr-time {
	position: absolute;
	margin-left: -14em;
	top: calc(50% - 15px);
}

.timeline .qtr-li.checked .qtr-time::before {
	content: url('../images/green-check.svg');
	display: inline;
	margin-left: 67%;
	padding-top: 0.7em;
	position: absolute;
}

.timeline .qtr-li.checked.active .qtr-time::before {
	content: url('../images/green-check.svg');
	display: inline;
	margin-left: 105%;
	padding-top: 0.7em;
	position: absolute;
}

.timeline .qtr-li:last-child:before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: -25px;
	left: calc(50% - 12px);
	width: 20px;
	background: #0d0d18;
	z-index: 0;
	height: 250px;
}

.timeline .qtr-card-ul {
	padding-left: 1em;
}

.timeline .qtr-card-ul li {
	line-height: 2;
	font-weight: var(--font-weight-light);
	list-style-type: disc;
}

.hidden {
	display: none !important;
}
/* 
#roadmap .active {
	display: grid !important;
} */

.owl-dots {
	position: absolute;
	background-color: #181829;	
	background-size: 50px;
	border-radius : 4px;
	padding-top: 2px;
	max-width: 180px;	
	margin: 0 auto;
	top:0;
	left: 0;
	right: 0;
}
.owl-dots .owl-dot {
	padding:10px;
	width: auto;
	display: inline-block;
	color:#181829;
}
.owl-dots .owl-dot:focus {
	outline: 1px solid #fff !important;
}
.owl-dots .owl-dot:before {
	display: inline-block;
	padding:5px 10px;
}

.owl-dots .owl-dot:first-child:before {
	font-weight : 500;
	background:#181829; 
	background-size: cover;
	content: '2021';
	border: #181829;
	outline: none;
	background: none;
}
.owl-dots .owl-dot:nth-child(2):before {
	font-weight : 500;
	background:#181829;
	background-size: cover;
	content: '2022';
	border: #181829;
	outline: none;
	background: none;
}
.owl-dots .owl-dot:nth-child(3):before {
	font-weight : 500;
	background:#181829;
	background-size: cover;
	content: '2023';
	border: #181829;
	outline: none;
	background: none;
}

.owl-dots .owl-dot.active {
	background-color: #403FD8 !important;
	border-color: transparent !important;
	box-shadow: none;
	font-weight : 500;
	font-weight: bold;
	color:#ffffff;	
	border-radius: 5px;
}
.owl-dots .owl-dot span {
	display: none !important;
	background:#181829;

}
/* Mobile- Timeline */

.timeline.mob-only-rdmp .qtr-li {
	list-style-type: none;
	cursor: pointer;
	position: relative;
	width: 6px;
	margin: 0 auto;
	margin-bottom: 15vh;
	background: transparent;
}

.timeline.mob-only-rdmp .qtr-time-mob {
	position: relative;
	width: 100px;
	margin-left: -3em;
	margin-top: -4em;
	background: linear-gradient(180deg, rgba(13, 13, 24, 0) 0.0%, #0D0D18 0.92%, #0D0D18 90.24%, rgba(13, 13, 24, 0) 90.68%);
}

.timeline.mob-only-rdmp .qtr-li.checked .qtr-time-mob {
	position: relative;
	width: 100px;
	margin-left: -3.6em;
	margin-top: -4.4em;
	background: var(--dark-bg-bkgdblue);
}

.timeline .qtr-li.checked .qtr-time-mob::before {
	content: url('../images/green-check.svg');
	display: inline;
	margin-left: 99%;
	padding-top: 0.25em;
	position: absolute;
}

.timeline .qtr-li.checked.active .qtr-time-mob::before {
	content: url('../images/green-check.svg');
	display: inline;
	margin-left: 105%;
	padding-top: 0.25em;
	position: absolute;
}

.timeline .qtr-li.checked.active .qtr-time-mob h2 {
	margin-bottom: 0;
}

.timeline .qtr-li.active .qtr-time-mob {
	height: 2em;
}

.timeline .qtr-li.active.current .qtr-time-mob {
	height: 3.5em;
}

.timeline.mob-only-rdmp .qtr-li.current .qtr-time-mob {
	margin-top: -5.4em;
}

.timeline.mob-only-rdmp .qtr-li.active.current .qtr-time-mob {
	margin-top: -5.4em;
}

.timeline.mob-only-rdmp .qtr-li.active.current {
	margin-top: 9em;
}

.timeline .qtr-li.active .qtr-div-mob {
	margin-left: -50%;
	max-width: 79vw !important;
	padding: 1.5em 1em;
}

.timeline .qtr-li.active .qtr-div-mob p {
	margin-bottom: 0;
}

.timeline.mob-only-rdmp .qtr-li.active::after {
	top: 6%;
}

.timeline.mob-only-rdmp ol {
	background-position-y: 1.5em;
}

.timeline.mob-only-rdmp .qtr-li.last-qtr {
	margin-bottom: 1em;
}

.timeline.mob-only-rdmp .qtr-li.last-qtr .qtr-time-mob {
	margin-top: -4.5em;
}

.timeline.mob-only-rdmp .qtr-li .qtr-div-mob {
	margin-top: 2.5em;
	background: #21212C;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	filter: drop-shadow(0px 34px 56px rgba(0, 0, 0, 0.32));
	;
}

.timeline.mob-only-rdmp .qtr-li.current .qtr-div-mob {
	margin-top: 3.2em !important;
}

.timeline.mob-only-rdmp ol {
	background-position-y: 4em;
}

.timeline ol.bpy11 {
	background-position-y: 1.7em !important;
}

.timeline .qtr-li.current .qtr-time-mob::before {
	content: 'Current Quarter';
	display: inline-block;
	text-align: center;
	font-size: 0.5em !important;
	width: 90%;
	color: #fff;
	background: #9945FF;
	border-radius: 4px;
	padding: .3em 0;
	margin-bottom: .4em;
	font-family: var(--base-font-family);
	font-weight: var(--font-weight-semibold);
}

.updtd-on p {
	text-align: center;
	padding-top: 5em;
}

.rdmp-btn {
	font-size: var(--btn-font-size) !important;
	margin-top: 0.9em;
	margin-bottom: 0.9em;
}



@media (min-width: 576px) {
	.timeline ol.bpy11 {
		background-position-y: 11em !important;
	}

	.timeline .qtr-li.active #q32021 {
		margin-top: 9.2em;
	}

	.timeline .qtr-li.active #q22022 {
		margin-top: 9.2em;
	}

	.timeline .qtr-li.active #q32022 {
		margin-top: 10.2em;
	}

	.timeline .qtr-li.active #q42022 {
		margin-top: 8.2em;
	}

	.updtd-on p {
		text-align: left;
		padding-right: 5em;
		padding-top: 3em;
	}
}

.h5,
h5 {
    margin-bottom: 3rem;
}