@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Tenor+Sans&display=swap');
@font-face {
	font-family: 'Snell Roundhand';
	src: url('../../dna-starts-december/fonts/snell-roundhand.ttf') format('truetype');
	font-style: italic;
	font-weight: 500;
}
@media all and (min-width: 768px) {
	.desktopHide {
		display: none !important;
	}
}
* {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	scrollbar-color: #BD2612 #fff;
	scrollbar-width: thin;
	box-sizing: border-box;
}
*::-webkit-scrollbar {
	width: 0.5rem;
	height: 0.5rem;
	border: 0rem solid #fff;
}
*::-webkit-scrollbar-track {
	background-color: #fff;
	border-radius: 0rem;
	border: 0rem solid #fff;
}
*::-webkit-scrollbar-thumb {
	background-color: #BD2612;
	border-radius: 0rem;
	border: 0rem solid #fff;
}
*::-webkit-scrollbar-thumb:hover {
	background-color: #BD2612;
}
*::-webkit-scrollbar-thumb:active {
	background-color: #BD2612;
}
html {
	font-size: 1rem;
	overflow-x: hidden;
}
section {
	display: flex;
	justify-content: center;
}
li {
	list-style-type: none;
}
body {
	overflow-x: hidden;
	width: 100%;
}
.preloader {
	background-color: #ffffff;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.75s ease;
}
.preloader img {
	max-width: 70%;
	height: auto;
	animation: preloadAnimation 1s linear infinite;
}
@keyframes preloadAnimation {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0.8;
	}
	50% {
		opacity: 0.6;
	}
	75% {
		opacity: 0.8;
	}
	100% {
		opacity: 1;
	}
}
.preloader.preloaderOpacity {
	opacity: 0;
}
.preloader.preloaderDisplay {
	display: none;
}
.list ul {
	display: flex;
	flex-direction: column;
}
.list li {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.list li::before {
	content: '';
	width: 0.75rem;
	flex-shrink: 0;
	height: 1.5rem;
	background-image: url('../images/common/list.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.list li.animated::before {
	animation: stars 1s ease-in-out 0.2s 1 forwards;
}
.list li.redListItem::before {
	background-image: url('../images/common/list_red.svg');
}
.list li p {
	font-weight: 300;
	color: #393936;
}
.list .redListItem p {
	font-weight: 600;
	color: #BD2612;
}
.list .disabledItem {
	opacity: 0.4;
}
.list .disabledItem p {
	font-weight: 300;
	text-decoration-line: line-through;
	color: #393936;
}
.button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 1rem 2rem;
	gap: 0.5rem;
	width: 100%;
	height: 3.5rem;
	background: #BD2612;
	border: 0.0625rem solid #BD2612;
	color: #F8F8F8;
	text-decoration: none;
	transition: all 0.5s ease;
	cursor: pointer;
	gap: 0.5rem;
}
.button svg {
	width: 1.5rem;
	height: 1.5rem;
}
.button.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.button:hover {
	background: #F8F8F8;
	color: #BD2612;
}
.button.disabled:hover {
	background: #BD2612;
	color: #F8F8F8;
}
.button.buttonWhite {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BD2612;
	background: transparent;
}
.button.buttonWhite:hover {
	background: #BD2612;
	color: #F8F8F8;
}
.button.buttonWhite.disabled:hover {
	color: #BD2612;
	background: transparent;
}
.content,
.container {
	display: flex;
	position: relative;
	width: 85rem;
	box-sizing: border-box;
}
@media all and (max-width: 1440px) {
	html {
		font-size: calc(1vw / 0.9);
	}
}
a {
	text-decoration: none;
}
/* heading */
.headingSection {
	position: fixed;
	width: 100%;
	top: 0rem;
	left: 0rem;
	background-color: transparent;
	z-index: 5;
	transition: all 0.5s ease;
}
.headingSection.activeHeader {
	background-color: #fff;
	border-bottom: 0.0625rem solid #DFDFDF;
}
.headingSection > .container {
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	padding-left: 0rem;
}
.headingSocials {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}
.headingSection a {
	opacity: 1;
	transition: opacity 0.5s ease;
}
.headingSection a:hover {
	opacity: 0.85;
}
.headingSection a:active {
	opacity: 0.7;
}
.headingSection img {
	width: 1.25rem;
	height: auto;
}
.headingSection .logo img {
	width: 8.25rem;
	height: auto;
}
/* hero */
.leftMain {
	width: 37.625rem;
	padding: 6rem 3.75rem 2.5rem 0rem;
}
.mainLine {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	margin-bottom: 1rem;
	background-color: #BD2612;
	padding: 0.125rem;
}
.mainHead {
	position: relative;
	margin-bottom: 0.25rem;
}
.mainHead h1 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 5rem;
	line-height: 5.75rem;
	letter-spacing: 0.01em;
	color: #BD2612;
}
.mainHead p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
	position: absolute;
	right: 0rem;
	top: 1.375rem;
	width: 15.6875rem;
}
.mainInfo {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
}
.mainInfo > * {
	background-color: #F8F8F8;
	padding: 0.75rem 1.25rem;
	flex-direction: column;
	width: 100%;
}
.mainInfo p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
}
.mainInfo p strong {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
}
.mainRed {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	letter-spacing: 0.04em;
	color: #BD2612;
} 
.mainList li p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.mainButton .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mainList ul {
	gap: 0.5rem;
	margin-bottom: 2.5rem;
}
.rightMain {
	background-image: url('../images/main/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	flex-grow: 1;
	margin-right: -3rem;
}
.rightMain {
	display: flex;
	position: relative;
	overflow: hidden;
	position: relative;
	justify-content: center;
}
.rightMain > div {
	background-color: #252522;
	display: flex;
	gap: 1.1rem;
	align-items: center;
	height: 4.1rem;
	position: absolute;
}
.rightMain > div:nth-child(1) {
	right: -1.25rem;
	transform: rotate(2.49deg) translate(0rem, 0rem);
	bottom: 8.6rem;
	animation: run1 10s linear 0s infinite;
}
.rightMain > div:nth-child(2) {
	left: -1.25rem;
	background-color: #BD2612;
	bottom: 6rem;
	transform: rotate(-3.64deg) translate(0rem, 0rem);
	animation: run2 7s linear 0s infinite;
}
.rightMain > div:nth-child(3) {
	left: -1.25rem;
	transform: rotate(1.8deg) translate(0rem, 0rem);
	bottom: -1.5rem;
	animation: run3 10s linear 0s infinite;
}
.logoRun {
	width: 9.8rem;
	height: auto;
}
.logoDelimeter {
	width: 0.6875rem;
	height: auto;
}
@keyframes run1 {
	0% {
		transform: rotate(2.49deg) translate(0rem, 0rem);
	}
	100% {
		transform: rotate(2.49deg) translate(25.375rem, 0rem);;
	}
}
@keyframes run2 {
	0% {
		transform: rotate(-3.64deg) translate(0rem, 0rem);
	}
	100% {
		transform: rotate(-3.64deg) translate(-25.375rem, 0rem);
	}
}
@keyframes run3 {
	0% {
		transform: rotate(1.8deg) translate(0rem, 0rem);
	}
	100% {
		transform: rotate(1.8deg) translate(-25.375rem, 0rem);
	}
}
/* bonuses */
.bonusesSection {
	position: relative;
	border-top: 0.0625rem #dfdfdf solid;
	border-bottom: 0rem #dfdfdf solid;
	padding: 2.5rem 6.25rem 0rem 6.25rem;
}
.bonusesImages {
	position: absolute;
	width: 15.1875rem;
	height: auto;
	top: -7.375rem;
	right: -5.125rem;
}
.bonusesButton {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.bonusesAccordion {
	display: flex;
	justify-content: space-between;
}
.bonusesSection > .container {
	flex-direction: column;
	gap: 1.25rem;
}
.bonusesSection h3 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2.25rem;
	color: #393936;
}
.bonusesItem {
	width: calc((100% - 3rem) / 3);
}
.bonusesItem h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	color: #BD2612;
	margin-bottom: 0.75rem;
}
.bonusesItem .list li p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.bonusesItem .list li.disabledItem p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #8D8D8C;
}
.bonusesItem .list ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.bonusesButton {
	margin-top: 0.25rem;
}
.bonusesButton .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.bonusesButton span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
	color: #8D8D8C;
}
/* first */
.firstSection {
	position: relative;
	height: 51.3125rem;
	margin-top: 4rem;
	padding-bottom: 1.5rem;
	background-color: #FFFFFF;
	overflow: hidden;
}
.firstSection::after {
	content: '';
	position: absolute;
	left: 0rem;
	right: 0rem;
	bottom: 0rem;
	z-index: 2;
	height: 0.0625rem;
	background-color: #DFDFDF;
	pointer-events: none;
}
.firstSection > .container {
	width: 90rem;
	height: 100%;
	padding: 5rem;
	overflow: hidden;
}
.firstContent {
	position: relative;
	z-index: 1;
	width: 51.6875rem;
}
.firstHeading h3 {
	width: 46.875rem;
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 4rem;
	line-height: 120%;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #393936;
}
.firstHeading h3 span {
	color: #BD2612;
}
.firstHeading p {
	width: 80rem;
	margin-top: 1.25rem;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 2rem;
	color: #393936;
}
.firstList {
	margin-top: 6.875rem;
}
.firstListTitle {
	margin-bottom: 0.5rem;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.firstList ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.firstList li {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.firstList li::before {
	content: '';
	width: 0.75rem;
	height: 1.25rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
	transform: scale(0);
	background-image: url('../images/common/list.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.firstCollage {
	position: absolute;
	top: 0rem;
	right: 0rem;
	width: 33.3125rem;
	height: 49.8125rem;
	display: block;
}
.firstCollage img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
/* program */
.programSection {
	position: relative;
	padding-top: 2.5rem;
}
.programSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 3.5rem;
	text-align: left;
	letter-spacing: -0.01em;
	color: #BD2612;
	width: calc(100% - 2.5rem);
	margin-bottom: 1rem;
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 4rem;
	line-height: 4.5rem;
	text-align: right;
	letter-spacing: -0.01em;
	color: #BD2612;
	text-align: center;
}
.programSection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.programSection .container > h3:first-child {
	text-align: right;
	margin-bottom: 0rem;
}
.programSection .container > img {
	display: none;
}
.programModule {
	display: flex;
	align-items: center;
	flex-direction: column;
	border-top: 0.0625rem solid #D9D9D9;
	padding: 1rem 0rem 0rem 0rem;
}
.programHeading {
	width: calc(100% - 2.5rem);
	margin-bottom: 1.25rem;
}
.programHeading span {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0.125rem 0.5rem;
	background-color: #BD2612;
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 2rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
}
.programHeading h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2rem;
	line-height: 2.5rem;
	text-transform: uppercase;
	color: #393936;
	margin: 0.5rem 0rem 0.75rem 0rem;
	width: calc(100% - 3.5rem);
}
.programHeading p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 2rem;
	color: #393936;
	width: calc(100% - 3.5rem);
}
.programSummary {
	background-image: url('../images/program/background.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
}
.programSummary img {
	position: absolute;
	width: 25.1875rem;
	height: auto;
	top: -17rem;
	right: -4.25rem;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.visibleProgram .programSummary img {
	opacity: 1;
}
.programSummary h5 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #FFFFFF;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #FFFFFF;
	max-width: 45rem;
}
.programSummary p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #FFFFFF;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #FFFFFF;
	max-width: 45rem;
}
.programLists {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 0.25rem;
}
.programList {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: calc(100% - 2.5rem);
	padding: 1rem 0rem;
}
.programList.list li::before {
	height: 1.25rem;
}
.programList ul {
	gap: 0.5rem;
}
.programLists > .programList:not(:last-child) {
	border-bottom: 0.0625rem solid #D9D9D9;
}
.programList h5 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #252522;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #252522;
}
.programList li p {
	font-family: 'Manrope';
	font-style: normal;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.programHeading {
	position: relative;
	cursor: pointer;
	z-index: 1;
}
.programHeading::after {
	display: block;
	position: absolute;
	right: 0rem;
	top: 0rem;
	content: '';
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background-image: url('../images/common/accordion.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.5s linear;
	transform: rotate(0deg);
}
.activeProgram .programHeading::after {
	transform: rotate(-180deg);
}
.programModuleContent {
	overflow: hidden;
	max-height: 0rem;
	transition: max-height 0.5s linear;
	width: 100%;
}
.overflowProgram .programModuleContent {
	overflow: visible;
}
/* success */
.successSection {
	padding-top: 5rem;
	background-color: #F8F8F8;
}
.successSection .container {
	flex-direction: column;
	gap: 2.5rem;
}
.successSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
}
.successLeft {
	width: 36.0625rem;
	flex-shrink: 0;
	background-color: #FFFFFF;
	padding: 2.5rem;
}
.successCenter {
	display: flex;
	width: 23.25rem;
	flex-shrink: 0;
}
.successCenter img {
	width: 100%;
	height: auto;
}
.successRight img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	/**********/
	/* width: calc(100% + 5rem);
	height: auto;
	margin-bottom: 1.5rem;
	margin-left: -5rem; */
}
.successLeft h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 1.5rem;
}
.successLeft p strong {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.successLeft ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	margin-top: 0.75rem;
	padding-right: 0.75rem;
}
.successLeft li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.successLeft li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.8125rem;
	flex-shrink: 0;
}
.successLeft p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #8D8D8C;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.successLeft p span::before {
	content: '';
	background-image: url('../images/common/star.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
}
.successBorder {
	margin-top: 1.5rem;
	border: 0.0625rem solid #BD2612;
	padding: 1.5rem;
}
.successBorder p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.successBlock {
	display: flex;
}
.successRight {
	padding: 2.5rem 2.5rem 2.5rem 1.5rem;
	background-color: #FFFFFF;
}
.successRight span {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
	background-image: url('../images/success/new-format.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	width: 30.5625rem;
	height: 4rem;
	padding-left: 6.25rem;
	align-items: center;
	margin-left: -6.4375rem;
	margin-top: 0.625rem;
	margin-bottom: 1.5rem;
	margin-right: -2.5rem;
}
.successRight div p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: 0.02em;
	color: #252522;
}
/* magazine */
.magazineSection {
	background-color: #F8F8F8;
	padding: 2.5rem 0rem;
}
.magazineSection .container {
	overflow: hidden;
}
.magazineLeft {
	position: relative;
}
.magazineLeft img {
	width: 85.6875rem;
	height: auto;
	position: absolute;
	left: -17.5rem;
	top: -10.125rem;
	transform: rotate(15deg);
}
.magazineRight {
	width: 57.6875rem;
	padding: 2.5rem 2.5rem 1.5rem 2.5rem;
	padding-left: 24.125rem;
	margin-left: auto;
}
.magazineRight h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 1.5rem;
}
.magazineRight h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: 0.02em;
	color: #252522;
	margin-bottom: 1.5rem;
}
.magazineRight p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #8D8D8C;
	display: flex;
	margin-bottom: 1.5rem;
}
.magazineRight h5 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	margin-bottom: 0.75rem;
}
.magazineRight p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	margin-bottom: 0.5rem;
}
.magazineRight .divider {
	display: block;
	height: 0.0625rem;
	margin: 1.5rem 0rem;
	width: 100%;
	background-color: #DFDFDF;
}
.magazineLists ul {
	display: flex;
	gap: 0.75rem;
	flex-direction: column;
}
.magazineLists li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.magazineLists {
	display: flex;
	gap: 0.5rem;
}
.magazineLists li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.8125rem;
	flex-shrink: 0;
}
.magazineBorder p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
}
.magazineBorder p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #BD2612;
	display: inline;
}
.magazineBorder {
	border: 0.0625rem solid #BD2612;
	padding: 1.5rem;
	margin-top: 1.5rem;
}
/* platform */
.platformSection {
	background-color: #F8F8F8;
	padding: 2.5rem 0rem 0rem;
}
.platformSection .container {
	flex-direction: column;
	background-color: #FFFFFF;
	padding: 2.5rem 2.5rem 5rem 2.5rem;
	gap: 1.5rem;
}
.platformRow > img:last-child {
	width: 36.75rem;
	flex-shrink: 0;
	height: auto;
	margin-left: auto;
}
.platformRow {
	display: flex;
	gap: 1.5rem;
}
.platformRow > img:first-child {
	width: 33.625rem;
	flex-shrink: 0;
	height: auto;	
}
.platformRow > div {
	position: relative;
	padding: 1.5rem 1.5rem 0rem 0rem;
}
.platformRow > div img {
	position: absolute;
	width: 30.0625rem;
	height: auto;
	top: -0.5rem;
	left: 15.3125rem;
}
.platformSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 1rem;
}
.platformSection h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: 0.02em;
	color: #252522;
	margin-bottom: 1rem;
}
.platformSection p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.platformSection li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	list-style-type: disc;
}
.platformSection ul {
	margin-left: 2rem;
}
/* library */
.librarySection {
	background-color: #F8F8F8;
	padding: 2.5rem 0rem 0rem;
}
.librarySection .container {
	background-color: #FFFFFF;
}
.libraryColumn a {
	display: flex;
}
.librarySection .container > .libraryColumn {
	display: flex;
	flex-direction: column;
}
.librarySection .container > .libraryColumn:first-child {
	width: 36.0625rem;
	padding: 2.5rem 1.5rem 2.5rem 2.5rem;
	flex-shrink: 0;
}
.librarySection .container > .libraryColumn:nth-child(2) {
	width: 21.625rem;
	gap: 1.5rem;
	flex-shrink: 0;
	padding: 2.5rem 0rem;
}
.librarySection .container > .libraryColumn:last-child {
	flex-grow: 1;
	padding: 2.5rem 2.5rem 2.5rem 1.5rem;
}
.librarySection .container > .libraryColumn img {
	width: 100%;
	height: auto;
}
.libraryColumn h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 1.5rem;
}
.libraryColumn p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	margin-bottom: 2.5rem;
}
.libraryColumn p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #BD2612;
}
/* context */
.contextSection {
	padding-bottom: 5rem;
}
/* additional */
.additionalSection {
	display: none;
}
/* communication */
.communicationSection {
	padding: 2.5rem;
	position: relative;
}
.communicationSection .background {
	position: absolute;
	top: 0rem;
	right: 0rem;
	width: 17.1875rem;
}
.communicationSection .container {
	flex-direction: column;
}
.communicationSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #252522;
	margin-bottom: 0.75rem;
}
.communicationSection p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.communicationSection p strong {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #BD2612;
}
.communicationSection h4 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #252522;
	margin-bottom: 0.5rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 0.0625rem solid #D9D9D9;
}
.communicationSection .list ul {
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}
.communicationSection .list li p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #393936;
}
.communicationSection .list li::before {
	margin-top: 0.1875rem;
}
/* prices */
.pricesSection {
	padding-top: 5rem;
}
.pricesSection .container {
	flex-direction: column;
}
.pricesSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 2.5rem;
}
.priceList {
	display: flex;
	gap: 1.5rem;
}
.priceList > .priceItem {
	border: 0.0625rem solid #BD2612;
	padding: 1.5rem;
	width: calc((100% - 4.5rem) / 4);
	flex-shrink: 0;
}
.priceItem h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
	border-bottom: 0.0625rem solid #C2C2C2;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.pricesAccess {
	border-bottom: 0.0625rem solid #C2C2C2;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.pricesList {
	border-bottom: 0.0625rem solid #C2C2C2;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
.pricesAccess p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #B5B5B5;
}
.priceItem ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.priceItem li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.priceItem li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.8125rem;
	flex-shrink: 0;
}
.priceItem li.priceListDisabled::before {
	background-image: url('../images/common/cross.svg');
}
.priceItem li.priceListDisabled {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #B5B5B5;
}
.pricesValues > .pricesRow > .priceItem span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #C8C8C8;
}
.pricesValues > .pricesRow > .priceItem p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(43, 43, 40, 0.4);
}
.pricesValues > .pricesRow:last-child > .priceItem:last-child span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #BD2612;
}
.pricesValues > .pricesRow:last-child > .priceItem:last-child p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	text-align: left;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #252522;
}
.pricesButtons .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	column-gap: 1rem;
	row-gap: 0rem;
	align-items: center;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	height: 4.5rem;
	align-content: center;
}
.pricesButtons .buttonWhite {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	text-transform: uppercase;
	gap: 0.5rem;
	height: 4.5rem;
}
.pricesButtons .button.twoLines {
	flex-wrap: wrap;
	margin-top: 0rem;
}
.pricesButtons .button.twoLines > span:last-child {
	font-size: 0.65rem;
}
.centerPrice + .priceItem {
	width: 100% !important;
	align-items: center !important;
}
.priceUltraLeft h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	margin-bottom: 1.5rem;
}
.priceUltraLeft ul {
	gap: 0.5rem;
	flex-direction: column;
	display: flex;
}
.priceUltra {
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.priceUltraLeft {
	width: 33.0625rem;
	flex-shrink: 0;
}
.priceUltraRight {
	width: 25.8125rem;
	flex-shrink: 0;
}
.priceUltraLeft li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #DFDFDF;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.priceUltraLeft li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.8125rem;
	flex-shrink: 0;
}
.priceUltraLeft p {
	margin-top: 1rem;
	margin-bottom: 0.75rem;
}
.priceUltraLeft p span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #DFDFDF;
}
.priceUltraRight p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 150%;
	color: #FFFFFF;
}
.priceUltraRight span {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 4rem;
	line-height: 4.5rem;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
}
.priceUltraRight .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
	height: 4.5rem;
}
.priceUltra {
	background-color: #252522;
	padding: 2.5rem 1.5rem;
	position: relative;
	align-items: center;
}
.priceUltraCenter img {
	width: 35rem;
	height: auto;
	position: absolute;
	left: 21.25rem;
	bottom: -0.0625rem;
}
.pricesRow {
	display: flex;
	justify-content: space-between;
}
.pricesRow .divider {
	background-color: #C2C2C2;
	width: 0.0625rem;
}
.pricesRow .priceItem {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	justify-content: flex-end;
	width: calc(50% - 0.0625rem);
}
.pricesRow .priceItem > div {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.pricesRow .priceItem:last-child {
	align-items: flex-end;
}
.pricesValues > .pricesRow:nth-child(2) {
	border-top: 0.0625rem solid #C2C2C2;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
}
.priceUltraRight > div {
	display: flex;
	justify-content: space-between;
	border-bottom: 0.0625rem solid #DFDFDF;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
/* plans */
.plansSection .container {
	flex-direction: column;
	gap: 2.5rem;
	padding-top: 2.5rem;
}
.planItems {
	display: flex;
	justify-content: space-between;
}
.planItem {
	width: calc((100% - 3rem) / 3);
	border: 0.0625rem solid #DFDFDF;
	padding: 1.5rem 1.25rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: flex;
	flex-direction: column;
}
.planItem > img {
	position: absolute;
}
.planItems > .planItem:nth-child(1) > img {
	top: 0.5rem;
	right: -3.5625rem;
	width: 15.8125rem;
	height: auto;
}
.planItems > .planItem:nth-child(2) > img {
	top: -0.125rem;
	right: -2rem;
	width: 14.5rem;
	height: auto;
}
.planItems > .planItem:nth-child(3) > img {
	top: -0.5rem;
	right: -4rem;
	width: 12.5rem;
	height: auto;
}
.plansSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
}
.planItem h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2rem;
	line-height: 2.75rem;
	text-transform: uppercase;
	color: #393936;
	border-bottom: 0.0625rem solid #DFDFDF;;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.plansList li p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
}
.plansList li.disabledItem p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration-line: line-through;
	color: #393936;
}
.plansList li.redListItem p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #BD2612;
}
.saledImage {
	position: absolute;
	width: 100%;
	height: auto;
	top: 10.5rem;
}
.saled * {
	color: #B5B5B5 !important;
}
.saled li::before {
	background-image: url('../images/common/list-grey.svg') !important;
}
.saled .button,
.saled .button:hover {
	color: #FFFFFF !important;
	background-color: #B5B5B5 !important;
	border-color: #B5B5B5 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}
.saled .button.buttonWhite,
.saled .button.buttonWhite:hover {
	color: #B5B5B5 !important;
	border-color: #B5B5B5 !important;
	background-color: transparent !important;
}
.saled img:not(.saledImage) {
	filter: grayscale(1) !important;
}
.saled .plansLine {
	display: none !important;
}
.plansPrices > .plansLine > .plan:first-child:last-child {
	margin: auto;
}
.plansPrices > .plansLine > .plan span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #B5B5B5;
}
.plansPrices > .plansLine > .plan p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #B5B5B5;
}
.plansPrices > .plansLine:first-child > .plan:first-child span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #BD2612;
}
.plansPrices > .plansLine:first-child > .plan:first-child p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #252522;
}
.verticalDivider {
	width: 0.0625rem;
	background-color: #DFDFDF;
	position: absolute;
	left: 50%;
	height: 100%;
}
.plansList ul {
	gap: 0.5rem;
	padding-bottom: 1rem;
}
.plansList li::before {
	height: 1.25rem;
}
.plansPrices {
	border-top: 0.0625rem solid #DFDFDF;
	padding-top: 1rem;
	margin-top: auto;
}
.plansLine {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	position: relative;
}
.plansButtons .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.plansButtons .button.buttonWhite {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0rem;
}
/* bonuses */
.bonusesSection {
	margin: 1.5rem 0rem 0rem;
}
.bonusesSection .container {
	justify-content: space-between;
}
.bonusesSection .container > .bonusesSide {
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
}
.bonusesSection .container > .bonusesSide:first-child {
	background-image: url('../images/bonuses/bg_1.png');
}
.bonusesSection .container > .bonusesSide:last-child {
	background-image: url('../images/bonuses/bg_2.png');
}
.bonusesSide {
	width: calc(50% - 0.75rem);
	background-color: #F8F8F8;
	padding: 2.5rem 1.5rem;
}
.bonusesSide h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 1rem;
}
.bonusesSide p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #393936;
	margin-bottom: 2rem;
}
.bonusesSide p strong {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #BD2612;
}
.bonusesBlock h4 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.bonusesBlock h4 span {
	color: #BD2612;
}
.bonusesBlock {
	border: 0.0625rem solid #C8C8C8;
	padding: 1.5rem;
	background-color: #FFFFFF;
}
.bonusesBlock ul {
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 0.0625rem solid #C8C8C8;
}
.bonusesBlock ul li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.bonusesBlock ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.bonusesBlock li {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}
.bonusesBlock li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.8125rem;
	flex-shrink: 0;
}
.bonusesBlock.margin {
	margin-top: 1.5rem;
}
/* credit */
.creditSection {
	margin-bottom: 1.5rem;
}
.creditSection .container {
	justify-content: space-between;
}
.creditItem h4 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.creditItem ul {
	display: flex;
	gap: 0.25rem;
	flex-direction: column;
}
.creditItem img {
	width: 19.1875rem;
	height: auto;
}
.creditItem > div {
	display: flex;
	gap: 1.5rem;
}
.creditItem > div > ul:first-child {
	flex-shrink: 0;
}
.creditItem li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	gap: 0.5rem;
}
.creditItem li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.75rem;
	flex-shrink: 0;
}
.creditItem p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #B5B5B5;
	margin-bottom: 0.25rem;
}
.creditItem {
	border: 0.0625rem solid #BD2612;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: calc(50% - 0.75rem);
}
/* questions-action */
.questionsActionSection {
	padding-bottom: 2.5rem;
}
.questionsActionSection .container {
	padding: 2.5rem;
	background-color: #F8F8F8;
}
.questionsActionLeft {
	width: 32.625rem;
}
.questionsActionLeft h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-top: 1rem;
}
.questionsActionLeft p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
}
.questionsActionLeft p strong {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}
.questionsActionLeft .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
	width: 28.5625rem;
	height: 4.5rem;
}
.questionsActionSection img {
	width: 46rem;
	height: auto;
	margin-bottom: -2.5rem;
	margin-top: -3.75rem;
}
/* video */
.videoSection .container {
	flex-direction: column;
}
.videoContainer {
	display: flex;
	flex-direction: column;
	padding: 2.5rem 2.5rem 4.625rem 2.5rem;
}
.videoSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin: 2.5rem 0rem 1rem 0rem;
}
#videoClients h3 {
	margin: 2.5rem 0rem 5rem 0rem;
}
.videoTitleLine {
	display: inline;
}
.videoSection p {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.75rem;
	line-height: 2.25rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #252522;
	margin-bottom: 2.5rem;
}
.videoSection h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	text-align: left;
	color: #252522;
	margin-bottom: 2.5rem;
}
.videoSection .slick-arrow {
	border: 0rem;
	background-color: transparent;
	font-size: 0rem;
	width: 3.875rem;
	height: 3.875rem;
	position: absolute;
	top: -6.375rem;
	right: 5.375rem;
	cursor: pointer;
	z-index: 1;
	transition: all 0.5s ease;
}
.videoSection .slick-arrow:hover {
	opacity: 0.90;
}
.videoSection .slick-arrow:active {
	opacity: 0.80;
}
.videoSection .slick-arrow::before {
	content: '';
	display: block;
	background-image: url('../images/common/arrow-prev.svg');
	background-size: 1.5rem;
	background-repeat: no-repeat;
	background-position: center;
	width: 3.875rem;
	height: 3.875rem;
	border: 0.0625rem solid #BD2612;
	box-sizing: border-box;
}
.videoSection .slick-next.slick-arrow {
	right: 0rem;
}
.videoSection .slick-next.slick-arrow::before {
	background-image: url('../images/common/arrow-next.svg');
}
.videoSection .slick-dots {
	position: absolute;
	display: flex;
	gap: 0.5rem;
	bottom: -2.125rem;
	right: 0rem;
	width: 100%;
	justify-content: flex-end;
}
.videoSection .slick-dots li {
	height: 0.5rem;
	display: flex;
}
.videoSection .slick-dots li button {
	border: 0rem;
	font-size: 0rem;
	background-color: #DFDFDF;
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 0rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.videoSection .slick-dots li.slick-active button {
	background-color: #BD2612;
	cursor: default;
	width: 1.875rem;
}
.videoSection .slick-slide img {
	width: 100%;
	height: auto;
}
.videoSection .slick-slide {
	margin: 0 0.75rem !important;
}
.videoSection .slick-list {
	margin: 0 -0.75rem;
}
.video > a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.video > a::before {
	content: '';
	position: absolute;
	display: block;
	background-image: url('../images/common/play.svg');
	background-size: contain;
	background-position: center;
	width: 5.8125rem;
	height: 5rem;
	transition: all 0.5s ease;
	background-repeat: no-repeat;
}
.video > a:hover::before {
	opacity: 0.92;
}
.video > a:active::before {
	opacity: 0.85;
}
/* comments */
.showMoreConteainer a {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BD2612;
	width: 100%;
	background-color: transparent;
}
.showMoreConteainer a {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BD2612;
	width: 100%;
	background-color: transparent;
}
.showMoreConteainer a:hover {
	color: #fff;
	background-color: #BD2612;
}
.showMoreConteainer a:active {
	color: #fff;
	background-color: #BD2612;
	opacity: 0.85;
}
.commentsSection .container {
	flex-direction: column;
	padding: 2.5rem 0rem;
}
.commentsList {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	transition: max-height 1s ease;
}
.commentsList > ul {
	display: flex;
	width: 27.3125rem;
	flex-direction: column;
	gap: 1.5rem;
}
.commentsList > ul > li,
.commentsList > ul > li img {
	width: 100%;
	height: auto;
}
.showMoreConteainer {
	position: relative;
}
.showMoreShadow {
	position: absolute;
	height: 11.25rem;
	min-height: 9.375rem;
	width: 100%;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
	bottom: 100%;
}
.commentsMobile {
	display: none;
}
/* more reviews */
.moreReviewsSection {
	margin: 2rem 0rem 2.5rem;
}
.moreReviewsSection .container {
	gap: 2.5rem;
	align-items: center;
}
.moreReviewsSection h3 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.25rem;
	text-align: center;
	color: #393936;
	flex-shrink: 0;
}
.moreReviewsSection .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
/* results */
.resultsSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.02em;
	color: #BD2612;
}
.resultsSection h3 span {
	font-family: 'Snell Roundhand';
	font-style: italic;
	font-weight: 500;
	font-size: 3.75rem;
	line-height: 3.75rem;
	letter-spacing: 0.02em;
	color: #BD2612;
}
.resultsSlide h4 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.27258125rem;
	line-height: 110%;
	color: #252522;
	padding: 0.75rem 0.75rem 0.75rem 0rem;
}
.resultsMajor span {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.5rem;
	line-height: 120%;
	color: #BD2612;
}
.resultsMajor p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.75rem;
	line-height: 1rem;
	color: #252522;
}
.resultsPhoto {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0.75rem 0.75rem 0.75rem 0rem;
}
.resultsPhoto .redButton.social {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.75rem;
	line-height: 1rem;
	color: #BD2612;
	text-transform: none;
	padding: 0.5rem;
}
.resultsPhoto .redButton.social::after {
	width: 0.625rem;
	height: 0.625rem;
}
.resultsPhoto .redButton.social:hover::after {
	transform: translate(0.375rem, 0rem);
}
.resultsBlock h5 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.5rem;
	line-height: 120%;
	color: #BD2612;
}
.resultsBlock li p {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 0.625rem;
	line-height: 0.8125rem;
	color: #252522;
}
.resultsBlock.bigText li p {
	font-weight: 300;
	font-size: 0.75rem;
	line-height: 1rem;
}
.resultsBlock.largeText li p {
	font-weight: 300;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.resultsBlock li {
	display: flex;
	gap: 0.25rem;
}
.resultsBlock li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 0.8275rem;
	height: 1rem;
	flex-shrink: 0;
}
.resultsBlock ul ul {
	padding: 0.1875rem 0rem 0.1875rem 0rem;
}
.resultsBlock li p span {
	background-color: #FFEFAA;
}
.resultsSection .container {
	flex-direction: column;
	gap: 2.9375rem;
	background-color: #F8F8F8;
	padding: 2.5rem 2.5rem 4.625rem 2.5rem;
}
.resultsSlide {
	background-color: #FFFFFF;
	padding: 0.75rem;
}
.resultsContent {
	display: flex;
	gap: 0rem;
	border-top: 0.0625rem solid #DFDFDF;
	border-bottom: 0.0625rem solid #DFDFDF;
	min-height: 25.875rem;
}
.resultsBlock {
	background-color: #F8F8F8;
	padding: 0.375rem;
}
.leftResults {
	display: flex;
	flex-direction: column;
	border-right: 0.0625rem solid #DFDFDF;
	width: 12.25rem;
	flex-shrink: 0;
}
.leftResults img {
	width: 100%;
	height: auto;
}
.resultsRight {
	display: flex;
	flex-direction: column;
	padding: 0.75rem 0rem 0.75rem 0.75rem;
	gap: 0.5rem;
}
.resultsRight ul {
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
}
.resultsMajor {
	border-top: 0.0625rem solid #DFDFDF;
	border-bottom: 0.0625rem solid #DFDFDF;
	padding: 0.75rem 0.75rem 0.75rem 0rem;
}
.resultsSection .slick-arrow {
	border: 0rem;
	background-color: transparent;
	font-size: 0rem;
	width: 3.875rem;
	height: 3.875rem;
	position: absolute;
	top: -6.375rem;
	right: 5.375rem;
	cursor: pointer;
	z-index: 1;
	transition: all 0.5s ease;
}
.resultsSection .slick-arrow:hover {
	opacity: 0.90;
}
.resultsSection .slick-arrow:active {
	opacity: 0.80;
}
.resultsSection .slick-arrow::before {
	content: '';
	display: block;
	background-image: url('../images/common/arrow-prev.svg');
	background-size: 1.5rem;
	background-repeat: no-repeat;
	background-position: center;
	width: 3.875rem;
	height: 3.875rem;
	border: 0.0625rem solid #BD2612;
	box-sizing: border-box;
}
.resultsSection .slick-next.slick-arrow {
	right: 0rem;
}
.resultsSection .slick-next.slick-arrow::before {
	background-image: url('../images/common/arrow-next.svg');
}
.resultsSection .slick-dots {
	position: absolute;
	display: flex;
	gap: 0.5rem;
	bottom: -2.125rem;
	right: 0rem;
	width: 100%;
	justify-content: flex-end;
}
.resultsSection .slick-dots li {
	height: 0.5rem;
	display: flex;
}
.resultsSection .slick-dots li button {
	border: 0rem;
	font-size: 0rem;
	background-color: #DFDFDF;
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 0rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.resultsSection .slick-dots li.slick-active button {
	background-color: #BD2612;
	cursor: default;
	width: 1.875rem;
}
.resultsSection .slick-slide img {
	width: 100%;
	height: auto;
}
.resultsSection .slick-slide {
	margin: 0 0.75rem !important;
}
.resultsSection .slick-list {
	margin: 0 -0.75rem;
}
/* questions */
.questionsSection {
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	padding-top: 5rem;
}
.questionsSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 4rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #BD2612;
	margin-bottom: 2.5rem;
	text-transform: uppercase;
}
.questionsList .questionHead {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #252522;
	display: flex;
	align-items: center;
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 2rem;
	text-transform: uppercase;
	color: #393936;
	padding-right: 0.75rem;
}
.questionsList .questionAnswer > p:first-child {
	padding-top: 1rem;
	margin-top: 1rem;
}
.question {
	border-top: 0.0625rem solid #C8C8C8;
	background: transparent;
	padding: 1.5rem;
	position: relative;
}
.clickArea {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 9;
	cursor: pointer;
}
.question > .questionAnswer {
	overflow: hidden;
	max-height: 0rem;
	transition: max-height 0.5s ease;
	padding-right: 0rem;
}
.question > .questionHead::after {
	display: block;
	position: absolute;
	right: 0rem;
	top: 1.25rem;
	content: '';
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background-image: url('../images/common/accordion.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.5s linear;
	transform: rotate(0deg);
}
.question.activeQuestion > .questionHead::after {
	transform: rotate(-180deg);
}

.activeQuestion .clickArea {
	height: 6.25rem;
}
.questionAnswer a {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	text-decoration-line: underline;
	color: #BD2612;
}
.questionsSection .questionsList .questionAnswer {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #393936;
}
.questionsSection .container {
	flex-direction: column;
}
.question {
	padding: 1.5rem 1.5rem;
}
.classQuestionContainer h4 {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #BD2612;
	border-bottom: 0.0625rem solid #C8C8C8;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.classQuestionContainer .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.questionsList {
	flex-grow: 1;
	padding: 0rem;
}
.questionsList > .question:first-child {
	margin-top: 0rem;
}
.questionsContainer {
	display: flex;
	padding: 0rem;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}
.questionsRight {
	flex-shrink: 0;
	width: 32.5rem;
	background-image: url('../images/questions/questions.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.classQuestionContainer {
	border: 0.0625rem solid #C8C8C8;
	padding: 1.5rem;
	margin-top: 1.5rem;
}
.questionAnswer li {
	display: flex;
	gap: 0.5rem;
}
.questionAnswer li::before {
	content: '';
	background-image: url('../images/common/marker-area.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.75rem;
	flex-shrink: 0;
}










































/* socials */
.socialsSection > div > a {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BD2612;
	width: 27.3125rem;
	box-sizing: border-box;
}
.socialsSection .container {
	padding: 2.5rem 0rem;
	justify-content: space-between;
}
@media all and (max-width: 1440px) and (min-width: 768px) {
	.socialsSection .container {
		width: 98%;
	}
}
/* banner */
.bannerSection .container {
	background-image: url('../images/banner/banner.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 4.5rem 56.6875rem 4.5rem 1.9375rem;
	flex-direction: column;
	gap: 1.5rem;
}
@media all and (max-width: 1440px) {
	.bannerSection .container {
		width: 100%;
	}
}
.bannerSection img {
	display: none;
}
.bannerSection h3 {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	text-transform: uppercase;
	color: #FFFFFF;
}
.bannerSection .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
/* foot */
.footerSection {
	border-top: 0.0625rem solid #C8C8C8;
}
.footerSection .footerMenu li a,
.footerSection .footerMenu li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #6F6F6E;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration-line: underline;
	color: #6F6F6E;
}
.footerSection .footerMenu li {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #8D8D8C;
	text-decoration-line: none;
}
.footerMenu > li:nth-child(3) {
	margin-top: 0.75rem;
}
.footerSection > div > a {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6F6F6E;
}
.footerSection {
	display: flex;
	justify-content: center;
}
.footerSection .container {
	padding: 4.375rem 0rem;
	justify-content: space-between;
}
.footerSection > div > a,
.footerData,
.footerMenu {
	display: flex;
	flex-direction: column;
	width: 27.3125rem;
	gap: 0.75rem;
}
/* buttons */
.button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.0625rem solid #BD2612;
	background-color: #BD2612;
	color: #FFFFFF;
	height: 3.5rem;
	transition: all 0.5s ease;
}
.button:hover,
.button:active {
	background-color: #FFFFFF;
	color: #BD2612;
}
.button:active {
	opacity: 0.85;
}
.buttonWhite {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.0625rem solid #BD2612;
	background-color: transparent;
	color: #BD2612;
	height: 3.5rem;
	transition: all 0.5s ease;
}
.buttonWhite:hover,
.buttonWhite:active {
	background-color: #BD2612;
	color: #FFFFFF;
}
.buttonWhite:active {
	opacity: 0.85;
}
.telegramButton {
	gap: 0.75rem;
}
.telegramButton svg {
	transition: transform 0.5s ease;
}
.telegramButton:hover svg {
	transform: translateX(1.5rem) rotate(45deg);
}
.telegramButton path {
	fill: currentColor;
}
.redButton {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.1875rem 2.5rem;
	gap: 1.5rem;
	text-decoration: none;
	border: 0.0625rem solid #BD2612;
	box-sizing: border-box;
	transition: all 0.5s ease;
}

.redButton:hover{
	border: 0.0625rem solid #A91200;
}

.redButton:active{
	border: 0.0625rem solid #950000;
}

.redButton.social {
	flex-direction: row;
	justify-content: space-between;
	text-transform: uppercase;
	text-decoration: none;
}
.redButton.social::after {
	content: '';
	width: 1rem;
	height: 1rem;
	display: block;
	background-image: url('../images/common/icon-social.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform 0.75s ease;
}
.redButton.social:hover::after {
	transform: translate(1.125rem, 0rem);
}
.blackButton {
	padding: 1.25rem 2.5rem;
	border: 0.0625rem solid #DFDFDF;
	text-decoration: none;
	transition: all 0.5s ease;
}

.blackButton:hover {
	border: 0.0625rem solid #C8C8C8;
}

.blackButton:active {
	border: 0.0625rem solid #393936;
}
.blackButton.top {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 3.875rem;
	align-self: center;
}
.blackButton.top::after {
	content: '';
	width: 1rem;
	height: 1rem;
	display: block;
	background-image: url('../images/common/icon-top.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform 0.75s ease;
}
.blackButton.top:hover::after {
	transform: translate(0rem, -0.75rem);
}
.fancybox-infobar {
	display: none !important;
}
.clickArea {
	z-index: 2;
}
/* popups */
.popupForm {
	width: 70.625rem;
	background-color: #F8F8F8;
	padding: 0 !important;
	overflow: visible;
	margin-top: 3.125rem;
	max-width: 100%;
}
.popupForm .button {
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.popupContent {
	display: flex;
	padding: 2.9375rem 2.5rem;
	height: 41.225rem;
	align-items: center;
}
.popupForm .fancybox-button.fancybox-close-small {
	top: -3.125rem;
	right: 0rem;
}
.popupForm .fancybox-button.fancybox-close-small path {
	fill: #fff;
}
.popupForm input[type=text],
.popupForm input[type=email],
.popupForm input[type=tel] {
	box-sizing: border-box;
	padding: 0.75rem;
	border: 0.0625rem solid #C8C8C8;
	border-radius: 0rem;
	outline: none;
	margin-bottom: 0.5rem;
}
.popupLeft {
	width: 35.25rem;
}
.popupContent {
	position: relative;
}
.popupContent img {
	position: absolute;
	width: 41.375rem;
	height: auto;
	bottom: 0rem;
	z-index: 9;
	right: -6.5rem;
}
.popupLeft form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 10;
	position: relative;
}
.popupLeft h3 {
	font-family: TenorSans;
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 120%;
	letter-spacing: -0.04em;
	color: #BD2612;
	margin-bottom: 1.6875rem;
	font-family: 'Tenor Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 120%;
	letter-spacing: -0.04em;
	color: #BD2612;
}
.popupLeft label {
	font-family: Manrope;
	font-style: normal;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #393936;
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #393936;
}
.popupLeft .btn {
	font-family: TenorSans;
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 150%;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.9375rem;
	margin-top: 2rem;
}
.preloaderText {
	position: fixed;
	display: none;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 1.25rem;
	top: 0rem;
	left: 0rem;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #fff;
	font-size: 2rem;
	font-family: TenorSans;
	opacity: 0;
	text-align: center;
	transition: opacity 0.5s ease 0.1s;
}
.preloaderText.textShow {
	display: flex;
}
.preloaderText.textShow.textShowOpacity {
	opacity: 1;
}
.preloaderText div {
	font-family: 'Tenor Sans';
}
.noScroll {
	overflow: hidden;
}
/* gif */
.magazineGif {
	width: 21.1875rem;
	height: 21.1875rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	bottom: 2.5rem;
	left: 2.125rem;
}
.magazineGif img {
	width: 100%;
	position: absolute;
	top: -7.875rem;
	left: 0rem;
}
.sectionPoints .container .mobileHide.pointsArrow {
	position: absolute;
	width: 27.875rem;
	top: 1.625rem;
	left: 13.625rem;
}
.priceItem {
	position: relative;
}
.pricesRotating {
	position: absolute;
	width: 7rem;
	height: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -3.1875rem;
	right: -0.6875rem;
}
.pricesRotating > img:first-child {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: 7s linear 0s infinite rotateImage;
}
.pricesRotating > img:last-child {
	position: absolute;
	width: 67%;
	height: 67%;
}
@keyframes rotateImage {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
/* animations */
.heroLeft > span {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 1.5s;
}
.heroLeft > span.animated {
	opacity: 1;
	transform: translateX(0rem);
}
.heroLeft li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 1.5s;
}
.heroLeft li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.forItem {
	opacity: 0;
	transform: translateY(12.5rem);
	transition: all 1.5s ease 0.5s;
}
.forItem.animated{
	opacity: 1;
	transform: translateY(0rem);
}
.imaginationLeft li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 0.5s;
}
.imaginationLeft li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.successRight span {
	opacity: 0;
	transform: translateX(25rem);
	transition: all 1.5s ease 0.5s;
}
.successRight span.animated {
	opacity: 1;
	transform: translateX(0rem);
}
.successLeft li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 0.5s;
}
.successLeft li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.magazineLists li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 0.5s;
}
.magazineLists li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.priceUltraLeft li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 0.5s;
}
.priceUltraLeft li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.creditItem li::before {
	opacity: 0;
	transform: translateX(-12.5rem);
	transition: all 1.5s ease 0.5s;
}
.creditItem li.animated::before {
	opacity: 1;
	transform: translateX(0rem);
}
.slick-arrow::before {
	transition: all 0.5s ease;
}
.slick-arrow:hover::before {
	background-position-x: 30%;
}
.slick-next.slick-arrow:hover::before {
	background-position-x: 70%;
}
.button.disabled {
	cursor: not-allowed;
	opacity: 0.6;
}
.button.disabled:hover,
.button.disabled:active {
	background-color: #BD2612;
	color: #FFFFFF;
}
@keyframes stars {
	0% {
		transform: scale(0) rotate(0deg);
	}
	60% {
		transform: scale(2) rotate(380deg);
	}
	80% {
		transform: scale(0.8) rotate(300deg);
	}
	100% {
		transform: scale(1) rotate(360deg);
	}
}
.mainList ul > li::before {
	transform: scale(0);
}
