/* HTML, BODY, * */

html {
	scroll-behavior: smooth;
}

body {
	background-color: #151515;
	overflow-x: hidden;
}

* {
	font-family: "GeologicaRoman", sans-serif;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

q {
	quotes: "\00ab" "\00bb";
}

/* HEADER */

.header {
	position: fixed;
	top: 0px;
	z-index: 999;
	width: 100%;
	height: 108px;
	background-color: #151515;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.header__wrapper {
	margin: 0 auto;
	width: 1360px;
	height: 100%;
	display: flex;
	align-items: center;
}

.custom-logo-link {
	width: 224px;
	height: 24px;
}

img.custom-logo {
	width: 100%;
	height: 100%;
}

.header__logo img {
	width: 100%;
	height: 100%;
}

.header__nav {
	width: 624px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 100px 0 auto;
	gap: 50px;
	padding: 0;
}

.header__nav-item {
	list-style: none;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.header__nav-link {
	text-decoration: none;
	display: inline-block;
	text-wrap: nowrap;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__nav-item:hover>.header__nav-link {
	color: #cfff04;
}

.header__nav-item:active>.header__nav-link {
	color: #acd400;
}

.main-button {
	width: 211px;
	height: 48px;
	background-color: #0f0f0f;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 51px;
	border: 1px solid #fff;
	box-shadow: 0 0 36px rgba(255, 255, 255, 0.32),
		0 0 20px rgba(255, 255, 255, 0.34), 0 0 12px rgba(255, 255, 255, 0.72),
		0 0 60px rgba(255, 255, 255, 0.33), 0 0 20px rgba(255, 255, 255, 0.37),
		0 0 13px rgba(255, 255, 255, 0.4);
}

.main-button:hover {
	border: none;
	background-color: #cfff04;
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
	color: #000;
}

.main-button:active {
	background-color: #acd400;
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
}

.header__menu {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	display: none;
}

.burger-menu {
	width: 18px;
	height: 10px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.burger-menu.visible {
	display: flex;
}

.burger-menu__line {
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
}

.header__sidemenu {
	width: 100%;
	height: 100vh;
	background-color: #151515;
	position: relative;
	top: -2px;
	transform: translateX(100%);
	transition: 0.2s;
	padding: 0 20px;
}

.header__sidemenu.header__sidemenu_active {
	transform: translateX(0);
}

.footer__links.footer__links_header {
	text-align-last: left;
	align-items: start;
}

.close-btn {
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	position: relative;
}

.close-btn.visible {
	display: flex;
}

.close-btn__line {
	border-radius: 2px;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #fff;
}

.close-btn__line.close-btn__line_1 {
	transform: rotate(45deg);
}

.close-btn__line.close-btn__line_2 {
	transform: rotate(-45deg);
}

/* SUBMENUS */

.header__nav-item:hover>.submenu {
	display: inline-flex;
}

.submenu {
	display: none;
	gap: 35px;
	padding: 30px;
	justify-content: space-between;
	height: fit-content;
	background-color: #151515;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
	position: fixed;
	z-index: 999;
	top: 108px;
	cursor: default;
	list-style: none;
}

.submenu__column {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding: 0;
}

.submenu__title {
	font-weight: 400;
	min-height: 36px;
	font-size: 14px;
	max-width: 130px;
}

a.submenu__title {
	height: 50px;
	display: block;
}

.submenu__text {
	font-size: 14px;
	font-weight: 300;
	max-width: 133px;
}

.submenu__link {
	cursor: pointer;
	text-decoration: none;
}

.submenu__link:hover {
	color: #cfff04;
}

.submenu__link:active {
	color: #acd400;
}

/* BREAD */

.bread {
	width: 100%;
	margin-top: 158px;
	margin-bottom: 100px;
}

.bread__wrapper {
	width: 1360px;
	margin: 0 auto;
}

.bread__container {
	/* display: flex;
	gap: 5px; */
}

.bread__first-name {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.bread__break {}

.bread__second-name,
.bread__third-name {
	text-decoration: none;
}

.bread__second-name:hover,
/*.bread__third-name:hover,  */
.bread__second-name span:hover {
	color: #cfff04;
}

.bread__second-name:active,
.bread__third-name:active {
	color: #acd400;
}

.bread_card {
	margin-bottom: 40px;
	margin-top: 0;
}

.first-screen {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding-top: 158px;
	margin-bottom: 0px;
}

/* HERO */

.hero {
	width: 100%;
	/* position: relative;
	top: 0; */
	/* margin-bottom: 186px; */
}

.hero_main {
	background-image: linear-gradient(to right, #151515, transparent),
		url("../source/images/hero-back.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 150px;

}

.hero__bg-img {
	/* position: absolute;
	top: 0;
	right: 0;
	z-index: -1; */
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.hero__img-cont {
	display: flex;
	justify-content: start;
	align-items: center;
	position: absolute;
	z-index: -1;
	/* left: 650px; */
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 100vh;
	overflow: hidden;
}

.hero__bg-gradient {
	background-image: linear-gradient(to right, #151515, 20%, transparent);
	width: 100%;
	max-width: 680px;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 1;
}

.hero__bg-gradient.hero__bg-gradient_vertical {
	background-image: linear-gradient(to bottom, #151515, 20%, transparent);
	display: none;
}

/* .hero__bg-img_containered {
	position: static;
} */

.hero__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	height: 100vh;
	/* position: relative; */
}

.hero__text-box {
	width: 1150px;
	margin-top: 180px;
	/*margin-bottom: 317px;*/
}

.hero__title {
	font-size: 100px;
	font-weight: 600;
}

.hero__title_card {
	width: 1170px;
}

.hero__subtitle,
.hero__text {
	font-size: 20px;
	width: 560px;
	margin-top: 20px;
}

.hero__button {
	margin-top: 50px;
}

.hero__text-box_card {
	margin-top: 0;
	/* margin-bottom: 149px; */
}

/* INFO */

.info {
	width: 100%;
	margin-bottom: 175px;
}

.info__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.info__text-box {
	display: flex;
	flex-direction: column;
	gap: 23px;
	width: 569px;
}

.info__title {
	font-weight: 500;
	font-size: 58px;
}

.info__text div,
.info__text p,
.info__text li {
	line-height: 120%;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
}

.info__text ol,
.info__text ul {
	font-weight: 300;
	margin: 0;
	padding-left: 20px;
}

/* .info__list {
	font-weight: 300;
	margin: 0;
	padding-left: 20px;
}

.info__list-item {
	color: rgba(255, 255, 255, 0.8);
} */

.info__img-cont {
	width: 640px;
	height: 463px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.info__img {
	width: 100%;
	height: 100%;
}

/* ABOUT */

.about {
	width: 100%;
	margin-bottom: 200px;
}

.about__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about__item {
	width: 302px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.about__suptitle,
.about__subtitle {
	font-size: 20px;
	text-align: center;
}

.about__title {
	font-size: 100px;
	font-weight: 500;
}

.about__subtitle {
	font-size: 20px;
}

/* SERVICES */

.services {
	width: 100%;
	margin-bottom: 186px;
}

.services__wrapper {
	width: 1360px;
	margin: 0 auto;
}

.services__title {
	font-size: 58px;
	font-weight: 500;
	margin-bottom: 50px;
}

.services__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}

.service-card {
	background-color: #151515;
	box-shadow: 0 0 88px rgba(255, 255, 255, 0.1);
}

.service-card__text-box {
	padding: 41px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.service-card__link {
	text-decoration: none;
	width: 100%;
	height: 100%;
	/* display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-between; */
	display: inline-block;
}

.service-card__link:hover .service-card__title,
.service-card__link:hover .service-card__subtitle {
	color: #cfff04;
}

.service-card__title {
	font-size: 36px;
	font-weight: 500;
}

.service-card__subtitle {
	width: 451px;
}

.service-card__img-cont {
	width: 670px;
	height: 440px;
	background-color: #151515;
}

.service-card__img {
	width: 100%;
	/* height: 100%; */
	object-fit: contain;
}

/* CARDS */

.cards {
	width: 100%;
	margin-bottom: 100px;
}

.cards__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cards__stroke {
	display: flex;
	gap: 20px;
}

.cards__item {
	width: 440px;
	background-color: #151515;
	box-shadow: 0 0 88px rgba(255, 255, 255, 0.1);
}

.cards__text-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 0;
}

.cards__title {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.cards__link:hover .cards__title {
	color: #cfff04;
}

.cards__link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
}

.cards__text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	max-width: 336px;
}

.cards__img-cont {
	width: 440px;
	height: 326px;
	overflow: hidden;
}

.cards__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cards__items-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	/* width: 100%; */
}

/* STEPS */

.steps {
	width: 100%;
	margin-bottom: 200px;
}

.steps__wrapper {
	width: 1360px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.steps__title {
	font-size: 58px;
	font-weight: 500;
	margin-bottom: 50px;
}

.steps__list {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.steps__list-item {
	width: 194px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
}

.steps__shape {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.steps__circle {
	width: 100%;
	height: 85px;
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.steps__line {
	width: 100%;
	border-bottom: 1px dashed #fff;
}

.steps__dots {
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	top: -3px;
}

.steps__dot {
	width: 6px;
	height: 6px;
	background-color: #fff;
	border-radius: 100px;
}

.steps__name {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.steps__list-item:hover>.steps__shape>.steps__circle {
	border-left: 1px solid #cfff04;
	border-top: 1px solid #cfff04;
	border-right: 1px solid #cfff04;
}

.steps__list-item:hover>.steps__shape>.steps__line {
	border-bottom: 1px dashed #cfff04;
}

.steps__list-item:hover>.steps__shape>.steps__dots>.steps__dot {
	background-color: #cfff04;
}

.steps__list-item:hover>.steps__name {
	color: #cfff04;
}

.steps__list-item.steps__list-item_active>.steps__shape>.steps__circle {
	border-left: 1px solid #cfff04;
	border-top: 1px solid #cfff04;
	border-right: 1px solid #cfff04;
}

.steps__list-item.steps__list-item_active>.steps__shape>.steps__line {
	border-bottom: 1px dashed #cfff04;
}

.steps__list-item.steps__list-item_active>.steps__shape>.steps__dots>.steps__dot {
	background-color: #cfff04;
}

.steps__list-item.steps__list-item_active>.steps__name {
	color: #cfff04;
}


/* MAIN SWIPER */

.stepsSwiper.swiper {
	width: 100%;
	max-width: 2000px;
	height: 600px;
	position: relative;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide {
	display: flex;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide {
	position: relative;
	width: 45%;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__slide-num {
	position: absolute;
	top: 0;
	right: -5%;
	z-index: -1;
	color: rgba(255, 255, 255, 0.03);
	font-size: 800px;
	font-weight: 600;
	line-height: 0.755;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__title-box {
	display: flex;
	gap: 10px;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__title-box .swiper__additional-slide-num {
	display: none;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__text-box {
	width: 436px;
	height: 127px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: absolute;
	top: 0;
	right: -5%;
	margin-right: 176px;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__text-box .swiper__title {
	font-size: 36px;
	font-weight: 400;
	color: #cfff04;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__text-box .swiper__text {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__text-box .swiper__list {
	padding-left: 20px;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__text-slide .swiper__text-box .swiper__list .swiper__list-item {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__img-cont {
	width: 55%;
	height: 100%;
	background-color: #848484;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.stepsSwiper.swiper .swiper-wrapper .swiper-slide .swiper__img-cont .swiper__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stepsSwiper.swiper .swiper-pagination {
	margin-right: 56%;
	width: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stepsSwiper.swiper .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, 0.5);
}

.stepsSwiper.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 8px;
	height: 8px;
	background-color: #cfff04;
}

.stepsSwiper.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	display: block;
	width: 14px;
	height: 14px;
	border: 2px solid #cfff04;
	border-radius: 50%;
	content: "";
	position: relative;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);

}

/* FORM */

.form {
	width: 100%;
	margin-bottom: 219px;
}

.form__wrapper {
	width: 998px;
	margin: 0 auto;
	box-shadow: 0 0 88px rgba(255, 255, 255, 0.1);
	padding: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form__text-box {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form__title {
	font-weight: 500;
	font-size: 58px;
}

.form__subtitle {
	font-size: 20px;
	color: #cfff04;
	width: 290px;
}

.wpcf7-form {
	/* ex form__form-box */
	display: flex;
	flex-direction: column;
	width: 320px;
}

.form__label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.form__input {
	border: none;
	outline: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	background-color: transparent;
	width: 100%;
	height: 36px;
	margin-bottom: 30px;
}

.form__button {
	border: none;
	outline: none;
	width: 100%;
	height: 48px;
	border-radius: 51px;
	color: #000;
	background-color: #cfff04;
	cursor: pointer;
}

.form__button:hover {
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
}

.form__button:active {
	background-color: #acd400;
}

#form::before {
	display: block;
	content: "";
	height: 150px;
	margin: -150px 0 0;
}

/* PREVENTING DEFAULT SEND MESSAGES */

div.wpcf7-response-output,
div.wpcf7-validation-errors {
	display: none !important;
}

span.wpcf7-not-valid-tip {
	display: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
	border-color: red;
	background-color: rgba(153, 0, 0, 0.3);
}

/* MODAL */

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100vw;
	height: 100lvh;
	align-items: center;
	justify-content: center;
}

.modal__wrapper {
	width: 998px;
	height: 422px;
	margin: 0 auto;
	box-shadow: 0 0 88px rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	background-color: #0f0f0f;
}

.modal__wrapper.bright-modal {
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
	background-color: #cfff04;
}

.modal__title {
	font-size: 58px;
	font-weight: 500;
}

.modal__title.bright-modal {
	color: #000;
}

.modal__text-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.modal__subtitle {
	font-size: 20px;
}

.modal__subtitle.bright-modal {
	color: #000;
}

.modal.active {
	display: flex;
}

/* PARTNERS */

.partners {
	width: 100%;
	margin-bottom: 82px;
}

.partners__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.partners__title {
	font-size: 58px;
	font-weight: 500;
}

.partners__list {
	width: 100%;
	/* display: flex;
    align-items: center;
    justify-content: center; */
}

/* PARTNERS-SWIPER */

.partnersSwiper.swiper {
	width: 100%;
	height: 226px;
}

.partnersSwiper.swiper .swiper-wrapper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 226px;
	height: 100%;
}

.partnters__list-item {
	width: 226px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partners__logo {
	width: 180px;
	height: 72px;
}

.partners__logo_active {
	display: none;
	width: 180px;
	height: 72px;
}

.partners__logo_active img {
	width: 100%;
	height: 100%;
}

.partners__logo img {
	width: 100%;
	height: 100%;
}

.partnters__list-item:hover {
	background-color: #cfff04;
}

.partnters__list-item:hover>.partners__logo {
	display: none;
}

.partnters__list-item:hover>.partners__logo_active {
	display: block;
}

/* TEAM */

.team {
	width: 100%;
	margin-bottom: 219px;
}

.team__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.team__title {
	font-size: 58px;
	font-weight: 500;
}

.team__cont {
	width: 100%;
/* 	height: 768px; */
}

.team__img {
	width: 100%;
	height: 100%;
}

/* FAQ */

.faq {
	margin-bottom: 219px;
}

.faq__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.faq__text-box {
	width: 388px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__title {
	font-size: 58px;
	font-weight: 500;
}

.faq__subtitle {
	color: #cfff04;
	font-size: 20px;
}

.faq__accordion {
	width: 785px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.faq__content {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq__question {
	height: 103px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq__que-text {
	font-size: 20px;
	margin-right: 5px;
}

.faq__plus {
	transition: 0.5s;
}

.faq__horizontal-line {
	width: 25px;
	height: 2px;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
	top: 13px;
}

.faq__vertical-line {
	width: 2px;
	height: 25px;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
	right: -12px;
	transition: 0.3s;
}

.faq__answer {
	width: 90%;
	height: 0px;
	overflow: hidden;
	transition: 0.5s;
}

.faq__text {
	color: rgba(255, 255, 255, 0.45);
	font-weight: 300;
}

.faq__button {
	text-decoration: none;
	margin: 20px 0 40px 0;
	border: none;
	outline: none;
	display: flex;
	width: 320px;
	height: 48px;
	text-align: center;
	justify-content: center;
	align-items: center;
	border-radius: 51px;
	color: #000;
	background-color: #cfff04;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
}

/* HOVER */

.faq__question:hover>.faq__plus {
	transform: rotate(30deg);
}

.faq__question:hover>.faq__plus .faq__horizontal-line {
	background-color: #cfff04;
}

.faq__question:hover>.faq__plus .faq__vertical-line {
	background-color: #cfff04;
}

.faq__button:hover {
	position: absolute;
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
}

.faq__button:active {
	background-color: #acd400;
}

/* JS STYLING ACCORDION */

.faq__question.active .faq__que-text {
	color: #cfff04;
}

.faq__question.active .faq__horizontal-line {
	background-color: #cfff04;
}

.faq__question.active .faq__vertical-line {
	opacity: 0;
}

/* BRIGHT FORM */

.bright-form-wrapper {
	background-color: #cfff04;
	box-shadow: 0 0 88px rgba(207, 255, 4, 0.25);
}

.bright-form-text {
	color: #000;
}

.bright-form-label {
	color: rgba(0, 0, 0, 0.5);
}

.bright-form-input {
	color: #000;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.bright-form-button {
	background-color: #2d2d2d;
	color: #fff;
}

.bright-form-button:hover {
	background-color: #fff;
	color: #000;
}

.bright-form-button:active {
	background-color: #f4f4f4;
}

/* MAP */

.map {
	width: 100%;
	margin-bottom: 200px;
}

.map__container {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.map__container .map__wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.map__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.map__main__wrapper {
	flex-direction: column;
	gap: 82px;
}

.map__title {
	font-size: 58px;
	font-weight: 500;
}

.footer__contacts_map {
	flex-direction: column;
	gap: 61px;
}

.footer__location_map {
	font-size: 20px;
	font-weight: 500;
}

.map__map-cont {
	width: 1015px;
	height: 800px;
	position: relative;
	overflow: hidden;
}

.map__white-block {
	width: 1015px;
	height: 800px;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	mix-blend-mode: difference;
	pointer-events: none;
}

.map__map {
	width: 100%;
	height: 100%;
}

[class*="ground-pane"] {
	filter: grayscale(1);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}

.ymaps-2-1-79-searchbox-button {
	background-color: #3000fb !important;
}

/* PORTFOLIO SLIDER */

.portfolio {
	width: 100%;
	margin-bottom: 200px;
}

.portfolio__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.portfolio__title {
	font-size: 58px;
	font-weight: 500;
}

.swiper.portfolioSlider {
	width: 1170px;
	border-radius: 60px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 20px rgba(255, 255, 255, 1);
}

.swiper.portfolioSlider .swiper-wrapper {}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide {
	display: flex;
	gap: 50px;
	padding: 40px 80px;
}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide .portfolio__text-box {
	width: 500px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 40px;
}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide .portfolio__text-box .portfolio__slide-title {
	font-size: 36px;
	font-weight: 400;
	color: #cfff04;
}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide .portfolio__text-box .portfolio__text {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide .portfolio__img-cont {
	background-color: #dfdfdf;
	width: 590px;
	height: 590px;
	border-radius: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper.portfolioSlider .swiper-wrapper .swiper-slide .portfolio__img-cont .portfolio__img {
	object-fit: cover;
	border-radius: 60px;
	object-position: center;
	height: 100%;
	width: 100%;
}

.portfolioSlider.swiper .swiper-pagination {
	height: 14px;
	align-items: center;
	margin: 0 0 0.5% 50%;
	transform: translateX(-50%);
}

.portfolioSlider.swiper .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, 0.5);
}

.portfolioSlider.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 14px;
	height: 14px;
	background-color: #cfff04;
}

/* OFFLINE SLIDER */

.offlineSlider.swiper {}

.offlineSlider.swiper .swiper__buttons-cont {
	width: 1360px;
	margin: 0 auto 13px auto;
	display: flex;
}

.offlineSlider.swiper .swiper__buttons-cont .swiper__button {
	width: 340px;
	text-align: center;
	font-size: 28px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.offlineSlider.swiper .swiper__buttons-cont .swiper__button_active {
	color: #cfff04;
}

.offlineSlider.swiper .swiper-wrapper {}

.offlineSlider.swiper .swiper-wrapper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
}

.offlineSlider.swiper .swiper-scrollbar {}

.offlineSlider.swiper .swiper-scrollbar-drag {
	background-color: #cfff04;
}

.offlineSlider.swiper .swiper-scrollbar-custom {
	position: static !important;
	width: 1360px !important;
	margin: 0 auto 100px auto !important;
	height: 1px !important;
	background: rgba(255, 255, 255, 0.5) !important;
	cursor: pointer;
}

.offlineSlider.swiper .swiper-wrapper .swiper-slide .swiper__filler {
	height: 100px;
	width: 100%;
	background-color: transparent;
}

/* CONTACTS */

.footer {
	width: 100%;
}

.footer__wrapper {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.footer__info {
	display: flex;
	justify-content: space-between;
}

.footer__contacts {
	display: flex;
	gap: 61px;
}

.footer__column {
	display: flex;
	flex-direction: column;
}

.footer__location {
	font-weight: 500;
	margin-bottom: 20px;
}

.footer__text {
	margin-bottom: 15px;
	text-decoration: none;
}

.footer__label {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 6px;
}

.footer__text-links {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__links.footer__links_header {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: right;
	align-items: end;
}

.footer__link {
	font-weight: 500;
	font-size: 20px;
	text-decoration: none;
	text-wrap: nowrap;
}

.footer__num {
	margin: 20px 0;
	font-weight: 500;
	font-size: 20px;
	text-decoration: none;
	text-wrap: nowrap;
	display: block;
}

.footer__link:hover {
	color: #cfff04;
}

.footer__link:active {
	color: #acd400;
}

.footer__logo-links {
	display: flex;
	gap: 20px;
	margin-bottom: 60px;
}

.footer__logo-link {
	width: 48px;
	height: 48px;
}

.footer__link-icon {
	width: 100%;
	height: 100%;
}

.footer__copyight {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 6px;
}

.footer__logo {
	width: 100%;
}

.category-hero {
margin-bottom: 100px;
}

.requisites {
margin-top: 70px;
gap: 30px;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
    letter-spacing: .25px;
    margin: 0 0 0 20px;
    text-transform: none;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    outline: 0;
    box-shadow: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
    padding: 15px 30px;
    line-height: 1;
    color: inherit;
    border: none;
    outline: none;
    height: 48px;
    border-radius: 51px;
    color: #000;
    background-color: #cfff04;
    cursor: pointer;
    box-shadow: 0 0 88px rgb(207 255 4 / 25%);
    font-family: inherit;
    font-size: 16px;
}

#cookie-notice .cn-button:not(.cn-button-custom) .form__button:hover {
    box-shadow: 0 0 88px rgb(207 255 4 / 25%);
}

.info_seo{
box-shadow: 0 0 88px rgb(255 255 255 / 10%);
padding: 50px 0;
}

.info_seo h2 {font-weight: 500;font-size: 38px;margin-bottom: 0.83em;margin-top: 0.83em; line-height: 41px}
.info_seo h3 {font-weight: 500;font-size: 24px;margin-bottom: 0.83em;margin-top: 0.83em; line-height: 23px}
.info_seo strong, .info_seo .info__text {line-height: 120%;font-weight: 300;color: rgba(255, 255, 255, 0.8);}