@import "../css/font-icons.css";
@import "../css/ubuntu-fonts.css";
@import "../css/variables.css";
@import "../css/header.css";
@import "../css/footer.css";
/*@import "../css/swiper-bundle.min.css";*/

/*Общие стили*/
*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	font-family: 'Ubuntu-Regular', sans-serif;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.30px;
	color: var(--color-main);
	background: var(--bg-main);
}
/* Убираем внутренние отступы */
ul, ol {
	padding: 0;
	list-style: none;
}
/* Убираем внешние отступы */
body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
	margin: 0;
}
ol {
	counter-reset: section;
}
ol li:before {
	counter-increment: section;
	/*content: counter(section);*/
	content: counters(section, ".") ". ";
}
a {
	display: inline-block;
	text-decoration: none;
	transition: all .2s linear;
	color: var(--color-main);
	padding: 5px;
}
span {
	display: inline-block;
}
button {
	border: none;
	background-color: transparent;
	cursor: pointer;
	color: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
}
a, button {
	font-family: 'Ubuntu-Regular', sans-serif;
	outline: none;
}
label {
	font-size: 16px;
	line-height: 18px;
	display: inline-block;
	color: var(--color-light__blue);
	margin-bottom: 10px;
}
img {
	max-width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: contain;
}
input {
	height: 40px;
}
input, textarea {
	font-family: 'Ubuntu-Regular', sans-serif;
	background: var(--bg-main);
	border: 1px solid var(--bg-main);
	border-radius: 5px;
	color: var(--color-main);
	padding: 10px;
	font-size: 16px;
	outline: none;
}
textarea {
	resize: vertical;
	min-height: 105px;
}
input:focus,
textarea:focus {
	border-color: var(--bg-color-dark__2);
}
.container {
	max-width: 100%;
	margin: 0 auto;
}
/*Стили к checkbox (начало)*/
input.checks[type=checkbox] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	height: auto;
}
input.checks[type=checkbox]+label {
	display: flex;
	align-items: center;
	/*flex-wrap: wrap;*/
	user-select: none;
	cursor: pointer;
	margin-bottom: 0;
}
input.checks[type=checkbox]+label::before {
	content: '';
	display: inline-block;
	min-width: 24px;
	width: 24px;
	height: 24px;
	border: 1px solid var(--color-violet);
	border-radius: 4px;
	margin-right: 8px;
	transition: all .2s linear;
}
input.checks[type=checkbox]:checked+label::before {
	content: "\e902";
	font-family: 'icomoon' !important;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
	background: var(--color-violet);
}
input.checks[type=checkbox]:focus+label::before {
	box-shadow: 0 0 0 0.2rem var(--color-grey);
}
input.checks[type=checkbox]:not(:checked,:disabled):hover+label::before {
	border-color: var(--color-yellow);
}
input.checks[type=checkbox]:not(:checked,:disabled):hover+label a {
	color: var(--color-yellow);
}
input.checks[type=checkbox]:disabled+label {
	opacity: 0.3;
	cursor: not-allowed;
}
input.checks[type=checkbox]:disabled+label a {
	pointer-events: none;
}
/*Стили к checkbox (конец)*/

/*Scroll*/
::-webkit-scrollbar {
	height: 4px;
	background-color: var(--bg-color-dark__2);
}
::-webkit-scrollbar-thumb {
	background: var(--color-violet);
	border-radius: 4px;
}
/*Main bg*/
main {
	position: relative;
}
main:after {
	content: '';
	background: radial-gradient(88.11% 52.17% at 72.47% 47.83%, #B462B7 0%, #3A2F7C 65.42%, #11152E 100%);
	height: 17%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}
main.main-category {
	padding-top: 127px;
}
main.main-category:after {
	content: none;
}
main.opti__bg:after {
	content: '';
	background: radial-gradient(199.06% 83.78% at 212.97% 9.49%, #371BA7 0%, #000000 99.95%);
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	width: 100%;
	height: 50%;
	transform: matrix(-1, 0, 0, 1, 0, 0);
}
/*Заголовки*/
/*общий класс для заголовка H1*/
.head-top {
	font-family: 'Ubuntu-Bold', sans-serif;
	font-weight: 700;
}
.head-top > span {
	font-size: 58px;
	line-height: 60px;
	/*margin-left: 10px;*/
}
.head-top__margin {
	margin-bottom: 40px;
}
.titel-large {
	font-size: 68px;
	line-height: 90px;
	color: var(--color-aqua);
	text-transform: uppercase;
	margin-right: 6px;
}
.titel-medium {
	font-size: 58px;
	line-height: 60px;
	text-align: center;
}
.head__string {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 40px;
}
/*Кнопки и ссылки*/
.btn-border,
.btn-violet,
.btn-yellow,
.btn-yellow__small {
	font-family: 'Ubuntu-Regular', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.btn-border {
	border: 1px solid var(--color-violet);
	border-radius: 20px;
	padding: 8px 13px;
}
.btn-yellow {
	border: 1px solid var(--color-yellow__2);
	background: var(--bg-yellow__1);
	color: var(--color-dark__btn);
	border-radius: 30px;
	padding: 15px 40px;
}
.btn-yellow__small {
	border: 1px solid var(--color-yellow__2);
	background: var(--bg-yellow__1);
	color: var(--color-dark__btn);
	border-radius: 30px;
	padding: 12px 26px;
}
.btn-violet {
	border: 1px solid var(--color-violet);
	background: var(--bg-blue__2);
	border-radius: 25px;
	padding: 15px 40px;
}

/*Swiper-pagination-bullet (начало)*/
.swiper {
	padding-top: 10px;
	padding-bottom: 100px;
}
.swiper-pagination {
	background: var(--bg-color-dark__2);
	width: auto!important;
	padding: 10px;
	display: flex;
	align-items: center;
	border-radius: 30px;
	left: 50%!important;
	transform: translateX(-50%);
}
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: var(--bg-color-dark__1);
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: var(--color-aqua);
}
.swiper-button-next, .swiper-button-prev {
	top: 40%;
	color: var(--color-violet);
}
.swiper-button-next:after {
	content: "\e905";
	font-family: 'icomoon' !important;
}
.swiper-button-prev:after {
	content: "\e904";
	font-family: 'icomoon' !important;
}
/*Swiper-pagination-bullet (конец)*/

/*ПОП-АПЫ*/
.popUp-bg {
	display: none;
	position: fixed;
	z-index: 120;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	background: var(--bg-main);
	padding: 20px;
	overflow-y: auto;
}
.popUp-titel {
	font-size: 36px;
	font-weight: 700;
	line-height: 41px;
	margin: 0 50px 50px 0;
}
.icon__close {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 15px;
}
.popUp__blur {
	display: none;
	position: fixed;
	z-index: 120;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 21, 46, 0.2);
	backdrop-filter: blur(5px);
}
.closes {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}
/*Медиа запросы*/
@media (min-width: 1024px) {
	.catalog__item:hover {
		border: 2px solid #ABB3E1;
		border-radius: 10px;
		background: linear-gradient(136.21deg, #6B1EF8 13.13%, #6B1EF8 33.79%, #2600BF 94.74%);
		transform: scale(1.1);
	}
	.catalog__item:hover .catalog-link__name {
		color: var(--color-main);
	}
	.category__item:hover {
		background: var(--bg-color__4);
		border-color: #ABB3E180;
		transform: scale(1.1);
		box-shadow: 0px 5px 30px rgba(107, 30, 248, 0.5);
	}
	.select__item:hover {
		background: rgba(255, 255, 255, 0.05);
		color: var(--color-yellow);
	}
	.portfolio-list__item:hover:before {
		background: linear-gradient(180deg, rgba(27, 34, 75, 0) 51.87%, #1B224B 100%);
	}
	.portfolio-list__item:hover .prof__item-button {
		opacity: 1;
	}
}
@media (min-width: 1860px) {
 	body, button {
		font-size: 18px;
		line-height: 21px;
	}
	.container {
		padding: 0 160px;
	}
}
@media (max-width: 1859px) {
	body, button {
		font-size: 14px;
		line-height: 16px;
	}
	.container {
		padding: 0 80px;
	}
	.btn-border {
		border-radius: 20px;
	}
	.btn-yellow {
		line-height: 18px;
		border-radius: 30px;
	}
	.titel-large {
		font-size: 48px;
		line-height: 55px;
	}
	.head-top > span {
		font-size: 42px;
		line-height: 55px;
	}
}
@media (max-width: 1200px) {
	main.main-category {
		padding-top: 56px;
	}
}
@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}
	.head__string {
		justify-content: flex-start;
		margin-bottom: 20px;
	}
	.head-top__margin {
		margin-bottom: 20px;
	}
	.titel-large,
	.titel-medium {
		font-size: 24px;
		line-height: 30px;
	}
	.head-top > span {
		font-size: 18px;
		line-height: 30px;
	}
	.swiper-button-next, .swiper-button-prev {
		top: auto;
		bottom: 0;
		width: auto;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
	.popUp-titel {
		font-size: 24px;
		line-height: 30px;
		padding: 15px 50px 15px 15px;
		margin: -20px -20px 0;
		background: var(--bg-color-dark__1);
	}
	.icon__close {
		top: 5px;
		right: 5px;
	}
}

@media (max-width: 768px) {
	.head__string {
		flex-direction: column;
	}
	.head__string > span {
		margin-left: 0;
	}
	.swiper {
		padding-bottom: 60px;
	}
	.swiper-pagination {
		padding: 7px;
	}
	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
	label {
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 5px;
	}
	.popUp-titel {
		font-size: 18px;
		line-height: 26px;
		margin: -15px -15px 0;
	}
	.popUp-bg {
		padding: 15px;
	}
	main.opti__bg:after {
		height: 27%;
	}
}