#homehero{
    padding: 240px 40px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.homehero-title{
    font-family: 'Kanit', sans-serif;
    font-size: 3.5em;
    line-height: 1em;
    font-weight: 600;
    color: #333;
}

.loop-word {
	display: inline-block;
	position: relative;
	overflow: hidden;
	height: 1.2em;
	line-height: 1.2em;
	text-align: inherit;
	white-space: nowrap;
	vertical-align: top;
}

.loop-word-track {
	display: block;
	transform: translateY(0);
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.34, 0.08, 0.2, 1);
}

.loop-word-current,
.loop-word-next {
	display: block;
	width: 100%;
	height: 1.2em;
	line-height: 1.2em;
}

.loop-word.is-sliding .loop-word-track {
	transform: translateY(-1.2em);
}

/* homehero-title media queries */
@media (max-width: 768px) {
    #homehero {
        padding: 150px 20px;
    }
    .homehero-title {
        font-size: 2em;
        line-height: 1.2em;
    }
}

@media (max-width: 480px) {
    #homehero {
        padding: 120px 10px;
    }
    .homehero-title {
        font-size: 1.6em;
        line-height: 1.2em;
    }
}




.hero-start-project-button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 0;
	overflow: hidden;
	isolation: isolate;
	font-family: 'Kanit', sans-serif;
	font-weight: 300;
	padding: 12px 24px;
	color: #000;
	border: 1px solid #333;
	font-size: 16px;
	border-radius: 4px;
	text-decoration: none;
	transition: color 0.25s ease, border-color 0.28s ease;
	/*background-color: white;*/
    background-color: #FDEAEA;
    margin-top: 30px;
}

.hero-start-project-button::before {
	content: "";
	position: absolute;
	z-index: -2;
	left: -50%;
	top: -50%;
	width: 200%;
	height: 200%;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: conic-gradient(transparent, #333333, #8f8f8f, #333333, transparent 35%);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.hero-start-project-button::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 1px;
	top: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: #fff;
	border-radius: 3px;
}

@keyframes hero-start-project-conic-rotate {
	100% {
		transform: rotate(1turn);
	}
}

@media (hover: hover) and (pointer: fine) {
	.hero-start-project-button:hover,
	.hero-start-project-button:focus-visible {
		border-color: transparent;
	}

	.hero-start-project-button:hover::before,
	.hero-start-project-button:focus-visible::before {
		opacity: 1;
		animation: hero-start-project-conic-rotate 1.4s linear infinite;
	}
}