.style-null img{
  width: 100%;
}

.container{
  max-width: 1440px;
  padding: 0 60px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
	@media(max-width: 1300px){
		padding: 0 20px;
	}
	@media(min-width: 1500px){
		padding: 0;
	}
}

html{
  margin-top: 0 !important;
}

#wpadminbar{
  display: none !important;
}

*{
  box-sizing: border-box;
}

.main-button{
	padding: 12px 20px;
	display: flex;
	align-items: center;
	background-color: var(--wp--preset--color--accent);
	text-decoration: none;
	border: 1px solid var(--wp--preset--color--accent);
	justify-content: center;
	margin-bottom: 0;
	color: #FFF;
	transition: .4s ease all;
	width: fit-content;
	font-size: var(--wp--preset--font-size--custom-6);
	border-radius: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	gap: 4px;
}

.main-button svg path{
	transition: .4s ease all;
}

.main-button svg{
	max-width: 18px;
	min-width: 18px;
	padding: 0;
	height: auto;
	width: 100%;
	aspect-ratio: 1/1;
	display: block;
}

@media(hover: hover){
	.main-button:hover{
		background-color: white;
		color: var(--wp--preset--color--accent);
	}

	.main-button:hover svg path{
		fill: var(--wp--preset--color--accent);
	}
}

.dots-devider{
	display: flex;
	gap: 4px;
}

.dots-devider span{
	width: 4px;
	background-color: var(--wp--preset--color--accent);
	height: 4px;
	aspect-ratio: 1/1;
	display: block;
	animation: dotSteps 1.5s steps(3) infinite;
	transition: .4s ease all;
}

.dots-devider span:nth-child(1) { animation-delay: 0s; }
.dots-devider span:nth-child(2) { animation-delay: 0.4s; }
.dots-devider span:nth-child(3) { animation-delay: 0.6s; }
.dots-devider span:nth-child(4) { animation-delay: 0.8s; }
.dots-devider span:nth-child(5) { animation-delay: 1s; }

@keyframes dotSteps {
  0%   { opacity: 0.2; }
  33%  { opacity: 0.6; }
  66%  { opacity: 1; }
  100% { opacity: 0.2; }
}

.wp-block-template-part{
	margin: 0;
}