.main {
	height: 100%;
	height: 1080px;
	background: url(../img/main-background.png);
	background-size: cover;
	background-position: center bottom;
	position: relative;
}

header {
	padding-top: 27px;
	width: 100%;
	display: flex;
}

.logo {
	display: flex;
	align-items: center;
	gap: 22px;
}

.logo img {
	width: 70px;
}

.logo div {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.logo div p:nth-child(1) {
	color: #3db9ff;
	font-size: 24px;
	font-weight: 700;
	line-height: 17px;
}

.logo div p:nth-child(2) {
	color: #3db9ff;
	font-size: 14px;
	font-weight: 400;
	line-height: 10px;
}

header nav {
	display: flex;
	align-items: center;
	gap: 87px;
	margin-left: 108px;
}

header nav a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

header .signin {
	width: 304px;
	height: 50px;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	margin-left: auto;
	margin-right: 0;
}

header .signin img {
	width: 24px;
}

header .signin p {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.main .texts {
	animation: float 6s ease-in-out infinite;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.main .texts p {
	max-width: 327px;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
}

.main .texts p .s {
	font-size: 36px;
	font-weight: 700;
}

.main .texts p:nth-child(1) {
	margin-top: 117px;
}

.main .texts p:nth-child(2) {
	margin-top: 181px;
}

.main-image {
	width: 573px;
	position: absolute;
	top: 51px;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	pointer-events: none;
}

.main .top {
	margin-top: 125px;
	position: relative;
	z-index: 2;
}

.main .top .top-title {
	margin-bottom: 30px;
}

.main .top .top-title p {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}

.main .top .top-title div {
	margin-top: 12px;
	width: 409px;
	height: 2px;
	border-radius: 3px;
	background: linear-gradient(
		90deg,
		#3db9ff -0.38%,
		rgba(217, 217, 217, 0) 95.84%
	);
}

.top-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-item {
	width: calc(33% - 10px);
	height: 294px;
	border-radius: 3px;
	border: 1px solid rgba(61, 185, 255, 0.03);
	background: linear-gradient(
		69deg,
		#0f0f31 11.39%,
		rgba(15, 15, 49, 0) 108.89%
	);
	backdrop-filter: blur(2.4px);
}

.top-item-content {
	width: 100%;
	height: 100%;
	background: url(../img/top-item-bg.png);
	background-size: cover;
	padding: 15px 24px;
	position: relative;
}

.top-item .head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-item .head p {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.top-item .head button {
	width: 105px;
	height: 40px;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	background-image: linear-gradient(
		to right,
		#00649c,
		#3db9ff,
		#0da8ff,
		#2e82b0
	);
	background-size: 300% 100%;
}

.top-item .head button:hover {
	background-position: 100% 0;
}

.top-item .footer {
	position: absolute;
	left: 24px;
	bottom: 15px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.top-item .image {
	width: 100%;
	margin-top: 22px;
}

.section-items {
	margin-bottom: 81px;
}

.section-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 43px;
}

.section-title .text {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}

.section-title a {
	display: flex;
	align-items: center;
	gap: 9px;
}

.section-title a img {
	width: 18px;
}

.section-title a p {
	color: #3db9ff;
	font-size: 14px;
	font-weight: 700;
}

.items-list {
	width: 100%;
	height: 306px;
	position: relative;
}

.items-list .item {
	width: 258px;
	height: 306px;
	background-image: linear-gradient(
		to left top,
		rgb(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0)
	);
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.items-list .item-content {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background-image: linear-gradient(
		to right bottom,
		#13132d,
		#111125,
		#0f0e1e,
		#0b0a16,
		#06060c
	);
	padding: 20px 27px;
	position: relative;
}

.items-list .item .image {
	width: 178px;
	margin-bottom: 24px;
}

.items-list .item .name {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.items-list .item .text {
	color: #3db9ff;
	font-size: 14px;
	font-weight: 400;
}

.items-list .item button {
	position: absolute;
	width: calc(100% - 27px - 27px);
	height: 36px;
	border-radius: 3px;
	background: #3db9ff;
	bottom: 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.news-section {
	margin-bottom: 81px;
}

.news-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-item {
	width: calc(50% - 8px);
	height: 296px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.news-item-content {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background-image: linear-gradient(
		to right bottom,
		#13132d,
		#111125,
		#0f0e1e,
		#0b0a16,
		#06060c
	);
	padding: 39px 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.news-item:nth-child(1) {
	background-image: linear-gradient(
		to right bottom,
		rgb(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0)
	);
}

.news-item:nth-child(2) {
	background-image: linear-gradient(
		to left top,
		rgb(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0)
	);
}

.news-item .name {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	line-height: 25px;
	margin-bottom: 20px;
}

.news-item .text {
	color: #8d8dfb;
	font-size: 14px;
	font-weight: 400;
	max-width: 318px;
}

.news-item .footer {
	position: absolute;
	left: 20px;
	bottom: 39px;
	color: #3db9ff;
	font-size: 14px;
	font-weight: 400;
}

.news-item .image {
	height: 100%;
	display: flex;
	align-items: center;
}

.news-item .image img {
	width: 309px;
	transition: 0.3s;
}

.author {
	cursor: pointer;
}

.slick-slide img {
	transition: 0.3s;
}
.slick-slide img:hover {
	transform: scale(1.1);
}

.news-item .image img:hover {
	transform: scale(1.1);
}


.reviews-section {
	margin-bottom: 95px;
}

.reviews-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.reviews-item {
	width: 258px;
	height: 306px;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(
		to left top,
		rgb(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0)
	);
}

.reviews-item-content {
	position: relative;
	border-radius: 3px;
	padding: 23px 10px 0 10px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background-image: linear-gradient(
		to right bottom,
		#080812,
		#0e0d1b,
		#111123,
		#13142b,
		#161634
	);
}

.reviews-item .text {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	max-width: 186px;
}

.reviews-item .footer {
	position: absolute;
	bottom: 11px;
	width: calc(100% - 10px - 10px);
}

.reviews-item .footer .hr {
	width: 100%;
	height: 1px;
	border-radius: 1px;
	background: rgba(61, 185, 255, 0.18);
	margin-bottom: 12px;
}

.reviews-item .footer .author {
	display: flex;
	align-items: center;
	gap: 11px;
}

.reviews-item .footer .author img {
	height: 40px;
	max-width: 40px;
	border-radius: 5px;
}

.reviews-item .footer .author p:nth-child(1) {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.reviews-item .footer .author p:nth-child(2) {
	color: #b7abab;
	font-size: 12px;
	font-weight: 400;
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 30px;
	position: relative;
}

footer .center {
	color: rgba(255, 255, 255, 0.26);
	font-size: 16px;
	font-weight: 400;
	position: absolute;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

footer nav {
	display: flex;
	align-items: center;
	gap: 87px;
}

footer nav a {
	color: rgba(255, 255, 255, 0.33);
	font-size: 14px;
	font-weight: 400;
	transition: 0.2s;
}

footer nav a:hover {
	color: #3db9ff;
}

.slick-slide {
	justify-content: center;
}
.slick-initialized .slick-slide {
	display: flex;
}

.items-list .slick-prev,
.items-list .slick-next {
	width: 40px;
	height: 40px;
	border-radius: 350px;
	background: rgba(61, 185, 255, 0.42);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	position: absolute;
	top: 133px;
}

.items-list .slick-prev {
	left: -15px;
}

.items-list .slick-next {
	right: -15px;
}

.signin {
    background: #3DB9FF;
	overflow: hidden;
	position: relative;
}

.signin:after {
    background: rgba(255, 255, 255, 0.5);
	content: " ";
	height: 155px;
	left: -75px;
	opacity: 0.2;
	position: absolute;
	top: -50px;
	transform: rotate(35deg);
	transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
}

.signin:hover:after {
	left: 120%;
	transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}