body{
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	font-family:Sarabun,sans-serif
}
.bg-gradient-hero {
	background: linear-gradient(135deg, hsl(240 70% 15%) 0%, hsl(240 60% 25%) 50%, hsl(240 50% 35%) 100%);
}
.text-gold {
    color: #e8ba30;
}
.bg-gold {
  background-color: #ffde45;
  background:
  linear-gradient(
    -72deg,
    #ffffff 0%,
    #ffde45 33%,
    #ffffff 66%,
    #ffde45 100%
  );
}
.bg-silver {
  background-color: #dedede;
  background:
  linear-gradient(
    -72deg,
    #dedede 0%,
    #ffffff 33%,
    #dedede 66%,
    #ffffff 100%
  );
}

.header-container{
	    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
	width:100%;
	margin-right:auto;
	margin-left:auto;
	padding-right: 1rem;
	padding-left: 1rem;
	height: 48px;
}
@media (min-width: 1400px){
	.header-container{
		max-width:1400px
	}
}