.hellotwin-logoin-line1 {
	position: relative;
	width: 178px;
	height: 44px;
	overflow: hidden;
	flex-shrink: 0;
}
.navbar1 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: var(--padding-xl) var(--padding-181xl);
	z-index: 99;

	background-color: var(--neutral-100);
}
.there-is-no {
	margin: 0;
	position: relative;
	font-size: inherit;
	letter-spacing: -0.01em;
	line-height: 130%;
	font-weight: 700;
	font-family: inherit;

	width: 90%;
}

.blink {
	animation: blink 0.5s infinite steps(1);
}

.circle {
	border-radius: var(--br-81xl);
	background-color: #0075ff;
	width: 25px;
	height: 25px;
	overflow: hidden;
}

.taglineContainer {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	text-align: left;
	font-size: var(--body-xl-size);
	font-family: var(--body-xl);
	line-height: 35px;
}
.header {
	align-self: stretch;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;

	width: 100%;
}
span.avoidWrap {
	display: inline-block;
}

.button1,
.hero-section1 {
	display: flex;
	align-items: center;
}
.button1 {
	cursor: pointer;
	border: 0;
	padding: var(--padding-base) var(--padding-31xl);
	background-color: var(--primary-300);
	border-radius: var(--br-81xl);
	flex-direction: row;
	justify-content: center;
	font-size: var(--font-size-base);
	line-height: 28px;
	font-weight: 600;
	font-family: var(--font-poppins);
	color: var(--neutral-white);
	text-align: center;
}
.hero-section1 {
	align-self: center;
	flex-direction: column;
	justify-content: center;

	position: absolute;
	gap: 40px;
	text-align: center;
	font-size: 64px;
	color: var(--neutral-900);
	font-family: var(--font-poppins);

	padding-bottom: 150px;
	padding-top: 150px;
}

.footerItem {
	text-decoration: none;
	line-height: 24px;
	color: inherit;
	opacity: 0.7;
	cursor: pointer;
	margin: 200px;
	text-wrap: nowrap;
}

.footer1,
.website {
	display: flex;
	align-items: center;
}
.footer1 {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	flex-direction: row;
	text-align: center;
	font-size: var(--font-size-base);
	background-color: var(--primary-100);
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
	font-size: var(--font-size-base);
	color: var(--neutral-900);
	font-family: var(--font-poppins);
	box-sizing: border-box;
}
.website {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	flex-direction: column;

	justify-content: center;
}

@media screen and (max-width: 960px) {
	.navbar1 {
		top: 0;
		left: 0;
		width: 100%;
		padding-left: var(--padding-31xl);
		padding-right: var(--padding-31xl);
		box-sizing: border-box;

		z-index: 99;
	}
	.footerItem {
		margin: 60px;
	}
	.there-is-no {
		font-size: 56pt;
	}
	.hero-section1 {
		box-sizing: border-box;
	}

	.taglineContainer {
		font-size: 25px;
	}
	.circle {
		width: 22px;
		height: 22px;
	}
}

@media screen and (max-width: 580px) {
	.navbar1 {
		padding-left: var(--padding-base);
		padding-right: var(--padding-base);
		box-sizing: border-box;
	}
	.there-is-no {
		font-size: 36pt;
	}

	.hero-section1 {
		box-sizing: border-box;
	}
	.footerItem {
		margin: 15px;
	}

	.taglineContainer {
		font-size: 17px;
	}
	.circle {
		width: 15px;
		height: 15px;
	}
	.button1 {
		padding: 20px 20px;
		font-size: 15px;
		text-wrap: nowrap;
	}
}

@media screen and (max-width: 375px) {
	.there-is-no {
		font-size: 30pt;
	}
	.taglineContainer {
		font-size: 12px;
	}
	.button1 {
		padding: 10px 14px;
		font-size: 12px;
		text-wrap: nowrap;
	}

	.footerItem {
		margin: 10px;
	}

	.circle {
		width: 10px;
		height: 10px;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
