/*# sourceMappingURL=ticker.min.css.map */

.brxe-ticker {
	overflow: hidden;
	transform: translateZ(0);
}

.brxe-ticker .carouselTicker__track {
	width: -moz-max-content;
	width: max-content;
}

.brxe-ticker .carouselTicker__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	width: -moz-max-content;
	width: max-content;
	will-change: transform;
	backface-visibility: hidden;
	opacity: 0;
}

.brxe-ticker[data-ticker-ready="1"] .carouselTicker__list {
	opacity: 1;
}

.brxe-ticker .carouselTicker__item {
	margin: 0 0 0 30px;
	flex-shrink: 0;
}

.brxe-ticker .carouselTicker__item .title {
	font-size: 160px;
	line-height: 1.22;
	letter-spacing: -.04em;
	font-weight: 700 !important;
}

@media (max-width: 767px) {
	.brxe-ticker .carouselTicker__item .title {
		font-size: 55px;
	}
}

@media (max-width: 767px) {
	.brxe-ticker .carouselTicker__item {
		margin: 0 0 0 10px;
	}
}

.brxe-ticker .carouselTicker__item.logo svg {
	width: 120px;
	height: 123px;
}

@media (max-width: 767px) {
	.brxe-ticker .carouselTicker__item.logo svg {
		width: 40px;
		height: 40px;
	}
}
/*# sourceMappingURL=ac-button.min.css.map */

.ac-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 31px 36px;
	border-radius: 100px;
	background-color: #fff;
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
}

.ac-button__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--blue);
}

.ac-button__icon--asterisk {
	position: absolute;
	right: 16px;
	z-index: 1;
	transition: all .45s ease;
}

.ac-button__icon--asterisk svg {
	width: 84px;
	height: 84px;
}

.ac-button__icon--arrow {
	transform: translateX(80px) translateY(2px);
	transition: transform .3s ease .1s, opacity .3s ease .15s;
}

.ac-button__icon--arrow svg {
	width: 76px;
	height: 45px;
}

.ac-button__icon--phone {
	transform: translateX(80px) translateY(2px);
	transition: transform .3s ease .1s, opacity .3s ease .15s;
}

.ac-button__icon--phone svg {
	width: 45px;
	height: 42px;
}

.ac-button:hover .ac-button__icon--arrow, .ac-button:focus .ac-button__icon--arrow, .ac-button:hover .ac-button__icon--phone, .ac-button:focus .ac-button__icon--phone {
	transform: translateX(0) translateY(2px);
	transition: transform .5s ease .1s, opacity .3s ease .15s;
}

.ac-button__track {
	display: flex;
	align-items: center;
	gap: 36px;
	transform: translateX(calc(100% + 36px));
	transition: transform .5s ease;
}

.ac-button__text {
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	color: var(--blue);
}

.ac-button:hover .ac-button__track, .ac-button:focus .ac-button__track {
	transform: translateX(0);
}

.ac-button:hover .ac-button__icon--asterisk, .ac-button:focus .ac-button__icon--asterisk {
	right: calc(100% + 16px);
	transform: rotate(-140deg);
}

@media (max-width: 767px) {
	.ac-button {
		padding: 18px 24px;
	}
	
	.ac-button .ac-button__text {
		font-size: 20px;
		letter-spacing: 0;
	}
	
	.ac-button .ac-button__track {
		transform: translateX(0);
		gap: 12px;
	}
	
	.ac-button .ac-button__icon--arrow, .ac-button .ac-button__icon--phone {
		transform: translateX(0) translateY(2px);
	}
	
	.ac-button .ac-button__icon--arrow svg {
		width: 32px;
		height: 20px;
	}
	
	.ac-button .ac-button__icon--phone svg {
		width: 24px;
		height: 23px;
	}
	
	.ac-button .ac-button__icon--asterisk {
		right: calc(100% + 16px);
		transform: rotate(-140deg);
	}
}
