::placeholder {
	color: rgba(255, 255, 255, 1);
	opacity: 1; /* Firefox */
}
::-ms-input-placeholder { /* Edge 12 -18 */
	color: rgba(255, 255, 255, 1);
}
@media only screen and (max-width: 769px) {
	.certificates-card {
		max-height: 28rem;
	}
}
@media only screen and (min-width: 769px) {
	.loader__icon-grey .icon, 
	.loader__icon-yellow .icon {
		width: 30rem;
		height: 12rem;
	}

	.header .header__site-container {
		padding-bottom: 3rem;
	}
}

.marquee {
	background: #FF4E00;
	padding: 20px 0;
	overflow-x: hidden;
	width: 100%;
}
.marquee__track {
	display: flex;
	width: fit-content;
	animation: scroll-left 45s linear infinite;
}
.marquee__content {
	display: flex;
}
.marquee__content svg {
	margin: 0 30px;
	vertical-align: text-bottom;
	display: inline-block;
}
.marquee__content > div {
	font-weight: 700;
	font-style: Demi;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -1px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #fff;
}
.marquee__content span {
	cursor: pointer;
}
.marquee__content span:hover {
	text-decoration: underline;
}
.marquee__content a {
	color: #fff;
	text-decoration: none;
}
.marquee__content a:hover {
	color: #fff;
	text-decoration: underline;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}