@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('./../fonts/inter-400.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('./../fonts/inter-600.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter';
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

.demo-btn {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	line-height: 24px;
	background-color: #0E90D9;
	padding: 6px 12px;
	display: inline-block;
	border-radius: 6px;
	border: 1px solid #0E90D9;
	margin-top: 26px;
	transition: .3s ease-in-out;
	cursor: pointer;
}

.demo-btn:hover {
	opacity: .8;
	transform: translateY(5px);
}

.coming-soon-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #F3F4F6;
	position: relative;
	display: flex;
    height: 100vh;
}
.coming-soon-section .coming-soon-wrapper {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	max-width: 440px;
	width: 100%;
	text-align: center;
	margin-bottom: 100px;
}

.coming-soon-wrapper h1.title-2 {
	font-size: 32px;
    font-weight: 600;
    color: #414361;
    margin-top: 12px;
}

.coming-soon-wrapper p.desc {
	font-size: 24px;
    font-weight: 500;
    color: #4B5563;
    margin-top: 24px;
    margin-bottom: 30px;
}

.wrapper-demo-text p {
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: #000000;
}

.wrapper-demo-text span {
	font-weight: 500;
}

.footer {
	position: absolute;
	bottom: 14px;
	left: 16px;
	right: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
	align-items: center;
    padding: 16px;
    background-color: #ffffff;
	gap: 10px;
	border-radius: 8px;
}

.footer .wrapper-demo-text {
    text-align: center;
	position: relative;
	z-index: 1;
	padding: 0 15px;
}

.Prepare-demo {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	margin-top: 16px;
}

.loader__dot {
	animation: 1s blink infinite
}

.loader__dot:nth-child(2) {
	animation-delay: 250ms
}

.loader__dot:nth-child(3) {
	animation-delay: 500ms
}

.progress {
	position: relative;
	width: 160px;
	height: 4px;
	background: #fff;
	border-radius: 4px;
	margin-top: 30px;
}

.progress:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0E90D9;
	border-radius: 4px;
	animation: progress 20s linear;
}

.left p {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
}

.left a {
	font-size: 14px;
	font-weight: 400;
	color: #1D4ED8;
	border-bottom: 1px solid #1D4ED8;
}

@media (max-width: 767px) {
	.footer-container {
		padding: 15px;
		flex-wrap: wrap;
	}
	.footer .wrapper-demo-text {
		order: -1;
		width: 100%;
		margin-bottom: 10px;
		padding: 0;
	}
}

@media (max-width: 525px) {
	.coming-soon-section .logo-wrap img {
		max-width: 200px;
		height: auto;
	}

	.coming-soon-section {
		padding: 0 15px;
	}
}

@media (max-width: 380px) {
	.coming-soon-section .logo-wrap img {
		max-width: 160px;
	}

	.footer-container .left {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.footer-container .right {
		margin: auto;
	}
}

@keyframes blink {
	50% {
		color: transparent
	}
}

@keyframes progress {
	from {
	  	width: 0;
	}

	to {
	  	width: 100%;
	}
}
