* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	background: none;
	border: none;
	list-style: none;
}

:root {
	--RedHatText: 'Red Hat Text', sans-serif;
	--RedHatDisplay: 'Red Hat Text', sans-serif;
	--color: #772B8D;
	--c-text: #38393B;
	--c-yellow: #FADD00;
	--c-title: #3F0051;
	--c-linkhover: #F2CFFF;
}

body {
	font: normal 20px/1.5 var(--RedHatText);
	color: var(--c-text);
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--RedHatDisplay);
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
}

h2.title {
	font-family: var(--RedHatDisplay);
	font-size: 40px;
	line-height: 1.3;
	color: var(--c-title);
	margin-bottom: 16px;
}

p a {
	color: #fff;
	position: relative;
	display: inline-block;
}
p a:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    transition: all 0.1s;
    margin-top: -2.5px;
}
p a:hover:after {
    height: 2px;
    width: 100%;
}

::selection {
	background-color: var(--c-yellow);
	color: var(--c-text);
}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media (max-width: 1350px) {
	body {
		font-size: 17px;
	}

	h2.title {
		font-size: 36px;
	}
}

@media (max-width: 1250px) {
	body {
		font-size: 14px;
	}

	h2.title {
		font-size: 30px;
	}
}

@media (max-width: 550px) {
	body {
		font-size: 16px;
	}

	h2.title {
		margin-bottom: 16px;
	}
}

.tx-c {
	text-align: center;
}

.d-none {
	display: none !important;
}

.wrapper {
	overflow-x: hidden;
}

.center {
	max-width: 1342px;
	margin: 0 auto;
	padding: 0 15px;
}

.icon-svg {display: inline-block;}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.h-991 {
		display: none !important;
	}

	.s-991 {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.h-767 {
		display: none !important;
	}

	.s-767 {
		display: block !important;
	}
}

@media (max-width: 550px) {
	.h-550 {
		display: none !important;
	}

	.s-550 {
		display: block !important;
	}

	.center {
		padding: 0 24px;
	}
}

.btn {
	min-height: 47px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text);
	text-transform: uppercase;
	transition: all 0.3s;
	background: #fff;
	padding: 0 26px;
	cursor: pointer;
	border: 2px solid transparent;
}

.btn.yellow {
	background: var(--c-yellow);
}
.btn.yellow:hover {
	background: var(--c-yellow);
	border-color: var(--color);
	color: var(--c-text);
}

.btn:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.btn-source {
	width: 91px;
	height: 29px;
	background: #fff;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text);
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn-source span {
	position: relative;
	top: 0.5px;
}
.btn-source:hover {
	background: var(--c-text) !important;
	color: #fff !important;
}

.btn-link {
	font-size: 16px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--c-text);
	text-transform: uppercase;
}

.btn-link svg {
	fill: none;
	stroke: #000;
	transition: all 0.3s;
}

.btn-link:hover svg {
	transform: translateX(10px);
}

@media (max-width: 1350px) {
	.btn {
		min-height: 43px;
		font-size: 13px;
	}

	.btn-link {
		font-size: 13px;
	}

	.btn-link svg {
		width: 7px;
		height: 10px;
	}
}

@media (max-width: 1250px) {
	.btn-link {
		font-size: 12px;
	}
}

@media (max-width: 550px) {
	.btn {
		min-height: 47px;
		font-size: 16px;
	}

	.btn-link {
		font-size: 14px;
	}

	.btn-link svg {
		width: 8px;
		height: 12px;
	}
}

.round {
    position: relative;
    line-height: 0;
    animation-delay: .9s !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round svg {
    transform: rotate(-90deg);
  	transition: all 1s ease-in-out;
    fill: none;
    stroke-width: 11px;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
}
.round .inside {
	stroke: #E2E5E6;
	stroke-dasharray: 276.32 999;
}

.round .percent {
    font-size: 22px;
    font-weight: bold;
    font-family: var(--RedHatDisplay);
    color: var(--c-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.page-content a {
	text-decoration: none !important;
	position: relative;
	display: inline-block;
}
.page-content a:after {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--c-text);
	transition: all 0.1s;
	margin-top: -2.5px;
}
.page-content a:hover:after {
	height: 2px;
	width: 100%;
}

/* ------------------ HEADER ------------------ */
#header {
	padding: 15px 0;
	background: var(--color);
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.logged-in #header {top: 32px;}

@media (max-width: 782px) {
	.logged-in #header {top: 46px;}
}

#header .center {
	display: flex;
	align-items: center;
}

.logo {
	display: inline-block;
	line-height: 0;
	color: #fff;
	transition: all 0.3s;
}
.logo:hover {color: var(--c-linkhover);}
.logo svg {
	width: 435px;
	height: 40px;
}

.nav {
	margin-left: auto;
}

.nav ul {
	display: flex;
	gap: 24px;
}

.nav>ul>li>a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.nav>ul>li>a:hover {
	color: var(--c-linkhover);
}

.btn-head {
	background: var(--c-yellow);
	margin-left: 25px;
	width: 144px;
	padding: 0;
}
.btn-head:hover {
	background: var(--c-yellow);
	color: var(--c-text);
}

.btn-nav {
	display: none;
}

@media (max-width: 1350px) {
	.logo svg {
		width: 350px;
		height: 35px;
	}

	.nav ul {
		gap: 20px;
	}

	.nav>ul>li>a {
		font-size: 15px;
	}

	.btn-head {
		margin-left: 20px;
		width: 130px;
		padding: 0;
	}
}

@media (max-width: 1250px) {
	.logo svg {
		width: 300px;
		height: 29px;
	}

	.nav ul {
		gap: 10px;
	}

	.nav>ul>li>a {
		font-size: 14px;
	}

	.btn-head {
		margin-left: 15px;
		width: 110px;
		min-height: 35px;
	}
}

@media (max-width: 991px) {
	.btn-head {
		margin-left: auto;
	}

	.nav {
		margin-left: auto;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color);
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.nav ul {
		gap: 24px;
		flex-direction: column;
		text-align: center;
	}

	.nav>ul>li>a {
		font-size: 20px;
	}

	.nav .btn-head {
		display: inline-flex !important;
		margin-left: 0;
		margin-top: 34px;
		width: 144px;
	}

	.btn-nav {
		display: block;
		width: 26px;
		height: 20px;
		background: none;
		border: none;
		outline: none;
		position: relative;
		margin-left: 15px;
		cursor: pointer;
	}

	.btn-nav span {
		width: 100%;
		height: 1.5px;
		background: #fff;
		border-radius: 10px;
		display: block;
		transform-origin: center;
		transition: all 0.3s;
	}

	.btn-nav span+span {
		margin-top: 8px;
	}

	.nav-open .btn-nav span {
		position: absolute;
		top: 50%;
		margin-top: -0.75px;
	}

	.nav-open .btn-nav span:nth-child(2) {
		display: none;
	}

	.nav-open .btn-nav span:first-child {
		transform: rotate(45deg);
	}

	.nav-open .btn-nav span:last-child {
		transform: rotate(-45deg);
	}

	.nav-open .nav {
		display: flex;
		animation: opacity 0.5s linear forwards;
	}
}

@media (max-width: 550px) {
	#header {
		padding: 29px 0;
	}

	.logo svg {
		width: 260px;
		height: 24px;
	}

	.btn-head {
		display: none;
	}

	.btn-nav {
		margin-left: auto;
	}
}

/* ------------------ HOME ------------------ */
.main-home {
	background: var(--color);
	padding-top: 56px;
	padding-bottom: 90px;
	margin-top: 76px;
	overflow: hidden;
}

.main-home .center {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.home-content {
	min-width: 550px;
	color: #fff;
}

.home-content h1 {
	font-family: var(--RedHatDisplay);
	font-weight: bold;
	font-size: 56px;
	line-height: 1.3;
}

.home-content p {
	margin-top: 16px;
	letter-spacing: 0.2px;
	animation-delay: 0.3s !important;
}
.home-content p + p {margin-top: 30px;}

.home-content .btn {
	margin-top: 40px;
	margin-bottom: 40px;
	min-width: 158px;
	animation-delay: 0.6s !important;
}

.home-content > div {
	animation-delay: 0.9s !important;
}

.home-content .group {
	display: flex;
	align-items: center;
	gap: 32px;
} 

.home-content .group-tv {
	margin-top: 40px;
}
.home-content .group-tv p {
	font-size: 20px;
	margin-bottom: 24px;
}

.home-slider {
	position: relative;
	pointer-events: none;
	margin-right: -200px;
}

.home-slider:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 237px;
	background: linear-gradient(90deg, var(--color), transparent);
}

.home-slider:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100px;
	background: linear-gradient(-90deg, var(--color), transparent);
}

.home-slider .splide-first {
	margin-bottom: 24px;
}

.home-slider .slide {
	border-radius: 8px;
	overflow: hidden;
}

.home-slider .slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-image {
	position: relative;
}

.home-image:after {
	content: '';
	display: block;
    width: 1238px;
    z-index: 1;
    background: url(../img/bg-home-image.png) no-repeat left top;
    background-size: cover;
    position: absolute;
    top: -55px;
    right: -300px;
    bottom: -115px;
    opacity: 0.7;
}

.home-image .image {
	position: relative;
	z-index: 2;
	max-width: 650px;
	margin-right: -15px;
}

@media (max-width: 1350px) {
	.main-home {
		margin-top: 73px;
	}

	.main-home .center {
		gap: 40px;
	}

	.home-content h1 {
		font-size: 50px;
	}

	.home-content p {
		font-size: 14px;
	}

	.home-slider .splide-first {
		margin-bottom: 20px;
	}

	.home-image:after {
		top: -73px;
		bottom: -100px;
	}
}

@media (max-width: 1250px) {
	.main-home {
		margin-top: 65px;
		padding-bottom: 65px;
	}

	.home-content {
		min-width: 480px;
		position: relative;
		z-index: 2;
	}

	.home-image:after {
		top: -73px;
		bottom: -80px;
	}
}

@media (max-width: 991px) {
	.home-content h1 {
		font-size: 35px;
	}

	.home-content p br {
		display: none;
	}

	.home-content>div img {
		max-width: 155px;
	}

	.home-content .btn {
		margin-top: 25px;
		margin-bottom: 35px;
		min-width: 130px;
	}

	.home-content {
		min-width: 345px;
		max-width: 400px;
	}

	.home-slider .splide-first {
		margin-bottom: 10px;
	}

	.home-image:after {
		width: 500px;
		bottom: -200px;
	}
}

@media (max-width: 767px) {
	.home-content {
		min-width: 290px;
		position: relative;
		z-index: 5;
	}

	.home-content h1 {
		font-size: 30px;
	}

	.home-slider {
		margin-right: 0;
		margin-left: -50px;
	}
}

@media (max-width: 550px) {
	.main-home {
		margin-top: 82px;
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.main-home .center {
		flex-direction: column;
	}

	.home-image:after {display: none;}

	.home-content p {
		font-size: 16px;
	}

	.home-content .btn {
		margin-top: 40px;
		margin-bottom: 40px;
		min-width: 158px;
	}

	.home-content>div img {
		max-width: 194px;
	}

	.home-slider {
		display: none;
	}

	.home-image:after {
		right: -24px;
	}

	.home-image .image {
		margin-right: -24px;
	}
}

@media (max-width: 413px) {
	.home-content .group {gap: 20px;}
}