:root {
	--White: #F4F4F4;
	--Black: #222322;
	--Real-Black: #111211;
	--Dark-Grey: #343434;
	--hh: 100vh;
}

@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInOut2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.image_attention {
	animation: fadeInOut 6s ease-in-out infinite; /* Зацикленная анимация */
}
.image_attention_2 {
	animation: fadeInOut2 6s ease-in-out infinite; /* Зацикленная анимация */
}
.mobile_image_attention {
	display: none
}
img,
a img {
  outline: none;
  border: none;
  user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

img:focus,
img:active,
img:hover,
a:focus img,
a:active img {
  outline: none;
  border: none;
  user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.bottom-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(244, 244, 244, 0.2);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.bottom-arrow:before {
    content: '';
    width: 10px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 16px;
    left: 16px;
    transition: all 0.3s ease;
	transform: translateX(0px) translateY(10px) rotate(45deg);
}
.bottom-arrow:after {
	content: '';
    width: 10px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 36px;
    left: 23px;
    transition: all 0.3s ease;
	transform: translateX(0px) translateY(-10px) rotate(-45deg);
}
.bottom-arrow.bottom-arrow2 {
	display: none;
}
body {
	background-color: var(--Black);
}
.slider-section .image-container-mobile {
	display: none;
}
.slider-section,
.specifications-section,
#text-two {
	z-index: 10;
	position: relative;
}
.wrapper {
	max-width: 1820px;
	width: 100%;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
}

h1 {
	display: block;
	font-size: initial;
	margin-block-start: 0px;
	margin-block-end: 0px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
	unicode-bidi: isolate;
}
#hero-banner-video {
	width: 100%;
}
.first-section > .bottom-arrow {
	display: none;
}
header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 300;
	transition: all 0.3s ease;
}

header.active {
	background: rgba(34, 35, 34, 0.6);
	transition: all 0.3s ease;
}

header.active .wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
	transition: all 0.3s ease;
}

header.active .logo svg path:not(:first-child) {
	opacity: 0;
	transition: all 0.3s ease;
}

header.active .btn-block {
	margin-top: -2px;
	transition: all 0.3s ease;
}

header.active .btn-block button {
	padding: 12px 31px;
	transition: all 0.3s ease;
}

header .wrapper {
	padding-top: 50px;
	padding-bottom: 22px;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo a {
	display: inline-block;
}
header .logo svg path {
	opacity: 1;
	transition: all 0.3s ease;
}

header .btn-block {
	display: flex;
	align-items: center;
	margin-top: -33px;
	transition: all 0.3s ease;
}

header .btn-block .link-to-concierge {
	color: #F7F7F7;
	text-align: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	border-radius: 50px;
	border: 2px solid var(--White, #F4F4F4);
	padding: 14px 31px;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

header .btn-block .hamburger {
	margin-left: 50px;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 10;
}
header .btn-block .hamburger.open span {
	background-color: var(--Black, #222322);
	width: 0px;
	transition: all 0.3s ease;
}
header .btn-block .hamburger.open span:before {
	background-color: var(--Black, #222322);
	    transform: translateX(0px) translateY(10px) rotate(45deg);
	transition: all 0.3s ease;
}
header .btn-block .hamburger.open span:after {
	background-color: var(--Black, #222322);
	    transform: translateX(0px) translateY(-10px) rotate(-45deg);
	transition: all 0.3s ease;
}

header .btn-block .hamburger span {
	width: 32px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--White, #F4F4F4);
	position: relative;
	display: block;
	transition: all 0.3s ease;
	margin-top: 10px;
}

header .btn-block .hamburger span:before {
	content: '';
	width: 32px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--White, #F4F4F4);
	position: absolute;
	top: -10px;
	left: 0;
	transition: all 0.3s ease;
}

header .btn-block .hamburger span:after {
	content: '';
	width: 32px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--White, #F4F4F4);
	position: absolute;
	top: 10px;
	left: 0;
	transition: all 0.3s ease;
}


.first-section {
	position: relative;
	height: 1080px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	margin-top: -125px;
}

.first-section:before {
	content: '';
	width: 100%;
	height: 700px;
	background: linear-gradient(0deg, #111211 40.5%, rgba(17, 18, 17, 0.00) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}

.first-section h1 {
	color: #FFF;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 149px;
	font-style: normal;
	font-weight: 600;
	line-height: 149px; /* 100% */
	letter-spacing: 7.45px;
	text-transform: uppercase;
	width: 50%;
	padding-bottom: 200px;
	position: relative;
	z-index: 100;
}

.first-section ul {
	display: flex;
	position: relative;
	z-index: 100;
	padding-bottom: 163px;
}

.first-section ul li {
	display: flex;
	flex-direction: column;
	width: 277px;
}

.first-section ul li:not(:last-child) {
	margin-right: 21px;
}

.first-section ul li .title {
	color: #F7F7F7;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 31px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.55px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.first-section ul li .subtitle {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	opacity: 0.6;
}


.img-first-section {
	position: absolute;
	z-index: -1;
	top: 0;
	left: -0.5%;
	object-fit: cover;
	object-position: center;
	height: 1080px;
	width: 101%;
	fill: var(--Real-Black, #111211);
	opacity: 0.6;
}

.second-section {
	padding: 133px 0px 201px 0px;
	background: var(--Real-Black, #111211);
}

.second-section .title-section {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 27px;
	max-width: 656px;
}

.second-section .description-section {
	color: #F5F5F5;
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0.5px;
	max-width: 656px;
}


.img-section {
	height: 890px;
	width: 100%;
	margin-top: -1px;
	position: relative;
}

.img-section.bottom {
	position: relative;
	display: block;
	height: calc(var(--hh) * 3);
	margin-block-start: calc(var(--hh) * -1);
	margin-block-end: calc(var(--hh) * -1);
}

.img-section.bottom .sticky-container {
	z-index: -10;
	overflow: hidden;
	position: -webkit-sticky;
	position: sticky;
	height: var(--hh);
	top: calc(100vh - var(--hh));
	display: flex;
	align-items: flex-end;
}

.img-section img {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.slider-section {
	padding-top: 100px;
	padding-bottom: 45px;
	background: var(--White, #F4F4F4);
	overflow: hidden;
}

.slider-section .title-section {
	color: #000;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	padding-top: 13px;
	margin-bottom: 26px;
	max-width: 700px;
	width: 100%;
}

.slider-section .description-section {
	color: #000;
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0.5px;
	max-width: 716px;
	width: 100%;
	
}

.slider-section .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.slider-section .left-block {
	max-width: 700px;
	width: 100%;
}

.slider-section .image-container {
	width: calc(100% - 790px);
	position: relative;
	overflow-y: hidden;
	white-space: nowrap;
	padding-bottom: 53px;
	margin-right: -100px;
}

.slider-section .scroll-wrapper {
	display: flex;
	overflow-x: auto;
	width: 100%;
}

.slider-section .scroll-image {
	width: 573px;
	height: 550px;
	margin-right: 10px;
}

.slider-section .scroll-image:last-child {
	margin-right: 100px;
}

.slider-section .custom-scrollbar {
	position: absolute;
	bottom: 1px;
	left: 0;
	width: calc(100% - 100px);
	height: 2px;
	background: linear-gradient(45deg, rgba(244, 244, 244, 1) 0%, rgba(17, 18, 17, 0.25) 50%, rgba(244, 244, 244, 1) 100%);
	border-radius: 5px;
	z-index: 100;
}

.slider-section .custom-scrollbar-thumb {
	position: relative;
	height: 4px;
	background-color: var(--Black, #222322);
	border-radius: 4px;
	margin-top: -1px;
	cursor: pointer;
}

.slider-section .scroll-wrapper {
	overflow: hidden;
}

.slider-section .scroll-wrapper::-webkit-scrollbar {
	display: none;
}

.slider-section .scroll-wrapper {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.slider-section .no-select {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.slider-section .day-night {
	height: 550px;
	width: 573px;
	position: relative;
}

.slider-section .day-night.active .day {
	display: none;
}

.slider-section .day-night.active .black {
	display: block;
}

.slider-section .day-night img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slider-section .day-night img.black {
	display: none;
}

.slider-section .day-night button {
	position: absolute;
	right: 30px;
	bottom: 30px;
	outline: none;
	background-color: transparent;
	border-radius: 50%;
	border: none;
	cursor: pointer;
}


.web-section {
	padding-top: 93px;
	padding-bottom: 122px;
	background: var(--White, #F4F4F4);
	position: relative;
	z-index: 10;
}

.web-section .subtitle {
	color: var(--Dark-Grey, #343434);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 27px;
}

.web-section .title {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 70px;
	max-width: 860px;
}

.web-section .web-img {
	width: 100%;
	height: 890px;
	object-fit: cover;
	object-position: center;
	margin-bottom: 63px;
}

.web-section .bottom-content {
	display: flex;
	justify-content: flex-end;
}

.web-section .description-section {
	color: var(--Real-Black, #111211);
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
	width: 520px;
	margin-right: 200px;
}


.next-section {
	padding-bottom: 100px;
	background: var(--White, #F4F4F4);
	margin-top: -1px;
	overflow: hidden;
	position: relative; 
	z-index: 10;
}

.next-section .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.next-section .left-block {
	margin-top: 12px;
	max-width: 570px;
	width: 100%;
}

.next-section .left-block .title {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 27px;
	width: 80%;
}

.next-section .left-block .description {
	color: var(--Real-Black, #111211);
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
}

.next-section .right-block {
	width: calc(100% - 740px);
}

.next-section .right-block img {
	height: 890px;
	width: 120%;
	object-fit: cover;
	object-position: center;
}


.btn-section {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 1080px;
	background-color: var(--Black);
}

.btn-section.first-btn-section {
	position: relative;
	display: block;
	height: calc(var(--hh) * 3);
	margin-block-start: calc(var(--hh) * -1);
	margin-block-end: calc(var(--hh) * -1);
/* 	z-index: -1; */
}
.btn-section.first-btn-section .bg-video-inner {
/* 	z-index: -1; */
}
.btn-section.first-btn-section .sticky-container {
	z-index: 0;
	overflow: hidden;
	position: -webkit-sticky;
	position: sticky;
	height: var(--hh);
	top: calc(100vh - var(--hh));
	display: flex;
	align-items: flex-end;
}

.btn-section.bottom {
	height: 890px;
}

.btn-section.bottom .wrapper button {
	margin-bottom: 315px;
	padding-left: 52px;
	padding-right: 52px;
}

.btn-section .btn-section-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	fill: var(--Real-Black, #111211);
    opacity: 0.6;
/*     filter: blur(5px); */
}

.btn-section.starfire .btn-section-bg {
	opacity: 1;
}

.btn-section .wrapper {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.wrapper-uncover.wrapper .title {
	
	color: #f4f4f4;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 67px;
}
.wrapper-uncover.wrapper.starfire .title {
	color: #111211;
}
.wrapper-uncover.wrapper.starfire a {
	background: #111211;
	
}
.wrapper-uncover.wrapper a {
	color: var(--White, #F4F4F4);
	text-align: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	border-radius: 45px;
	background: linear-gradient(86deg, #CB779B 0.91%, #CF7773 96.22%);
	padding: 16px 37px;
	border: none;
	outline: none;
	cursor: pointer;
	margin-bottom: 295px;
	pointer-events: auto;
}


.first-black-section {
	padding-top: 100px;
	background: var(--Real-Black, #111211);
	overflow: hidden;
	position: relative;
	z-index: 200;
}

.first-black-section .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.first-black-section .right-block {
	max-width: 570px;
	width: 100%;
	margin-top: 12px;
}

.first-black-section .right-block .title {
	color: #F5F5F5;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.first-black-section .right-block .description {
	color: #F5F5F5;
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
}

.first-black-section .left-block {
	width: calc(100% - 740px);
	height: 1080px;
}

.first-black-section .left-block img {
	width: 120%;
	margin-left: -20%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.second-black-section {
	padding-bottom: 0px;
	background: var(--Real-Black, #111211);
	overflow: hidden;
	position: relative;
	z-index: 200;
}

.second-black-section .wrapper {
	padding-left: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.second-black-section .right-block {
	max-width: 570px;
	width: 100%;
	margin-top: 12px;
}

.second-black-section .right-block .title {
	color: #F5F5F5;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.second-black-section .right-block .description {
	color: #F5F5F5;
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
}

.second-black-section .left-block {
	width: calc(100% - 740px);
	height: 1080px;
}

.second-black-section .left-block img {
	width: 120%;
	margin-left: -20%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}


.tabs-section {
	background: var(--White, #F4F4F4);
	position: relative;
	z-index: 20;
}

.tabs-section .slider-navigation {
	display: flex;
	align-items: center;
	border-radius: 45px;
	border: 2px solid var(--Real-Black, #111211);
	padding: 14px 22px;
	width: max-content;
}

.tabs-section .slider-navigation .slick-prev,
.tabs-section .slider-navigation .slick-next {
	position: initial;
	transform: none;
}

.tabs-section .slider-navigation .slick-prev::before,
.tabs-section .slider-navigation .slick-next::before {
	display: none;
}

.tabs-section .slick-dots {
	display: flex;
	position: initial;
	margin: 0 7px;
}

.tabs-section .slick-dots li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	margin: 0 5px;
}

.tabs-section .slick-dots li.slick-active button {
	opacity: 1;
}

.tabs-section .slick-dots button {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	opacity: 0.5;
	width: auto;
	height: auto;
	padding: 0px;
}

.tabs-section .slick-dots button:before {
	display: none;
}

.tabs-section .slider-wrapper {
	overflow: hidden;
}

.tabs-section .header-tabs {
	opacity: 0;
	background: var(--Black, #222322);
	position: sticky;
	top: 93px;
	z-index: 100;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
	transition: all 0.3s ease;
}
.tabs-section .header-tabs.active {
	opacity: 0.6;
	transition: all 0.3s ease;
}

.tabs-section .header-tabs .wrapper {
	display: flex;
	align-items: center;
}
.btn-specifications {
	color: #f4f4f4;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: 45px;
    background: transparent;
    padding: 12px 21px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
	border-radius: 45px;
	border: 2px solid var(--Gold-Gradient, #D1BA90);
	display: inline-block;
}
.btn-specifications.starfire {
	color: var(--Real-Black, #111211);
}
.tabs-section .header-tabs li {
	color: rgba(244, 244, 244, 0.9);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	padding: 11px 5px;
	opacity: 0.5;
	position: relative;
	cursor: pointer;
}

.tabs-section .header-tabs li:before {
	content: '';
	width: 100%;
	height: 4px;
	background-color: transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}

.tabs-section .header-tabs li:not(:last-child) {
	margin-right: 384px;
}
.tabs-section .header-tabs li.active {
	opacity: 1;
}
.tabs-section .header-tabs li.active:before {
	background-color: #fff;
}

.tabs-section .content-tabs {
	padding-top: 80px;
	padding-bottom: 104px;
	cursor: pointer;
}

.tabs-section .slider-tabs {
	width: 100vw;
	right: 0;
	top: 0;
	bottom: 0;
	left: auto;
}

.tabs-section .slider-tabs .slick-list {
	margin-bottom: 55px;
}

.tabs-section .slider-tabs .item-flex {
	display: flex;
	justify-content: space-between;
}

.tabs-section .slider-tabs .left {
	max-width: 870px;
	width: 100%;
	margin-top: 74px;
}

.tabs-section .slider-tabs .subtitle {
	color: var(--Dark-Grey, #343434);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.tabs-section .slider-tabs .title {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 67px;
}
.tabs-section .slider-tabs .subtitle-mobile {
	color: var(--Dark-Grey, #343434);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 7px;
	display: none;
}

.tabs-section .slider-tabs .title-mobile {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 67px;
	display: none;
}
.tabs-section .slider-tabs .subtitle {
	color: var(--Dark-Grey, #343434);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.tabs-section .slider-tabs .title {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 66px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
	margin-bottom: 62px;
}

.tabs-section .slider-tabs .key {
	color: var(--Real-Black, #111211);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.tabs-section .slider-tabs .key span {
	color: rgba(17, 18, 17, 0.5);
	margin-right: 14px;
}

.tabs-section .slider-tabs .description {
	color: var(--Real-Black, #111211);
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0.5px;
}

.tabs-section .slider-tabs .right {
	width: calc(100% - 1040px);
	height: 600px;
}

.tabs-section .slider-tabs .right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin-left: -40px;
}

.specifications-section {
	padding-top: 101px;
	padding-bottom: 100px;
	background: var(--Real-Black, #111211);
}

.specifications-section .wrapper {
	display: flex;
	flex-direction: column;
}

.specifications-section .left {
	margin-bottom: 37px;
}

.specifications-section .left .title {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 61px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.22px;
	text-transform: uppercase;
/* 	opacity: 0.1; */
}

.specifications-section .right {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.specifications-section .right .specifications-list {
	max-width: 1018px;
	width: 100%;
	padding-right: 150px;
}

.specifications-section .right .specifications-list > .specifications-item {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding-top: 43px;
	padding-bottom: 47px;
	position: relative;
}
.specifications-section .right .specifications-list > .specifications-item .content-list {
	transition: max-height 0.3s ease;
}
.specifications-section .right .specifications-list > .specifications-item.active .content-list {
/* 	height: 100%; */
	max-height: 700px;
	transition: max-height 0.3s ease;
}

.specifications-section .right .specifications-list > .specifications-item:before {
	content: '';
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, rgba(244, 244, 244, 0.50) 50%, #171719 100%);
	position: absolute;
	top: 0;
	left: 0;
}

.specifications-section .right .specifications-list > .specifications-item:last-child {
	padding-top: 70px;
    padding-bottom: 0;
}

.specifications-section .right .specifications-list > .specifications-item .content-list {
	margin-top: 0;
   	max-height: 0px;
    overflow: hidden;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .title {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 49px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.98px;
	text-transform: uppercase;
	margin-bottom: 26px;
}
.specifications-item.active .specifications-item-name {
	color: var(--White, #F4F4F4);
	font-family: "Barlow Condensed";
	font-size: 49px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.98px;
	text-transform: uppercase;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .description {
	color: var(--White, #F4F4F4);
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
	text-transform: none;
	margin-top: 40px;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block {
	margin-top: 68px;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block .title-block {
	color: var(--White, #F4F4F4);
	opacity: 0.5;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 36px;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li {
	color: var(--White, #F4F4F4);
	font-family: "Barlow", sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 39px; /* 156% */
	letter-spacing: 0.5px;
	text-transform: none;
	position: relative;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li svg {
	margin-right: 15px;
}

.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li:not(:last-child) {
	margin-bottom: 9px;
}


footer {
	background-color: var(--White, #F4F4F4);
	padding: 64px 0px 50px 0px;
}

footer .foot-menu {
	display: flex;
	justify-content: space-between;
	margin-bottom: 42px;
}

footer .foot-menu .menu {
	display: flex;
	margin-top: 11px;
}

footer .foot-menu .sub-menu {
	width: 277px;
}

footer .foot-menu .sub-menu:not(:last-child) {
	margin-right: 20px;
}

footer .foot-menu .sub-menu li:not(:last-child) {
	margin-bottom: 12px;
}

footer .foot-menu .sub-menu a {
	color: #171719;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

footer .bottom-footer {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	width: 100%;
}

footer .bottom-footer .copy {
	display: flex;
	justify-content: flex-start;
	width: 890px;
	color: var(--Real-Black, #111211);
	opacity: 0.5;
	font-family: "Barlow", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 123.077% */
}

footer .bottom-footer .social-menu {
	display: flex;
	width: 277px;
}

footer .bottom-footer .social-menu li:not(:last-child) {
	margin-right: 10px;
}

footer .bottom-footer .social-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg-video.mobile:before {
        content: '';
        width: 100%;
        height: 500px;
        background: linear-gradient(0deg, #111211 20.5%, rgba(17, 18, 17, 0) 100%);
        position: absolute;
        bottom: 0;
        left: 0;
		z-index: 10;
    }

.info-pink-champagne .item-1,
.info-pink-champagne .item-2,
.info-pink-champagne .item-3,
.info-pink-champagne .item-4,
.info-pink-champagne .item-5,
.info-pink-champagne .item-6 {
	opacity: 0;
	transition: all 0.3s ease;
}

.bg-video-inner {
	position: absolute;
	z-index: -1;
	top: 0;
	left: -0.5%;
	object-fit: cover;
	object-position: center;
	height: 1080px;
	width: 101%;
	fill: var(--Real-Black, #111211);
	opacity: 0.6;
/* 	filter: blur(5px); */
/* 	opacity: 0; */
	transition: all 0.3s ease;
}

.bg-video-inner .bg-video.desktop {
display: block;
	
}

.bg-video-inner .bg-video.mobile {
display: none;
}
.title-flex {
	display: flex;
	flex-direction: column;
}
.line-title-flex {
	opacity: 0;
	transform: translateY(50px);
	transition: transform 0.4s ease-out, opacity 0.4s ease-out !important;
}
.line-title-flex.active {
	opacity: 1;
	transform: none;
	transition: transform 0.4s ease-out, opacity 0.4s ease-out !important;
}
.specifications-section .left.line-title-flex {
	opacity: 0.1;
}
.slider-section .scroll-wrapper.slick-dotted.slick-slider {
	padding-bottom: 50px;
	margin-bottom: 0;
}
.slider-section .image-container .slick-dots li button:before {
	display: none;
}
.slider-section .slick-initialized .slick-slide:last-child {
	margin-right: 0;
}
.slider-section .image-container .slick-dots {
	width: calc(100% - 100px);
	bottom: 3px;
	height: 2px;
	display: flex;
	align-items: center;
	background: linear-gradient(45deg, rgba(244, 244, 244, 1) 0%, rgba(17, 18, 17, 0.25) 50%, rgba(244, 244, 244, 1) 100%);
}
.slider-section .image-container .slick-dots li {
	width: 100%;
	height: 4px;
	margin: 0;
	border-radius: 2px;
    overflow: hidden;
}
.slider-section .image-container .slick-dots li button {
	padding: 0;
}
.slider-section .image-container .slick-dots li.slick-active button {
	width: 100%;
	height: 4px;
	background-color: var(--Black, #222322);
}
.slider-section .scroll-wrapper {
	display: block !important;
}
.slider-section .image-container .slick-list {
	padding-right: 100px;
	padding-left: 0px;
}
.slider-section .image-container {
	margin-right: -100px;
	margin-left: -100px;
}
.slider-section .scroll-image:last-child {
	margin-right: 0;
}
.slider-section .image-container {
	width: 1080px;
}
.slider-section .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 100%;
	padding-left: 3%;
	padding-right: 3%;
}
.slider-section .slick-initialized .slick-slide {
	margin-right: 10px;
/* 	width: 440px !important; */
}

.slider-section .day-night {
	width: 100%;
	height: 100%;
}
.slider-section .scroll-image {
	width: 100%;
	height: 100%;
}

.case_slider .list-name-3 .item-name-2 p {
	width: 70%;
}
.dial_slider .list-name-3 .item-name-2 p  {
	width: 60%;
}
.hands_slider .description-4 {
	width: 90%;
}



header.open .header-show {
    visibility: visible;
    opacity: 0.6;
}
header .header-show {
    content: "";
    width: 100%;
    height: 100vh;
    background: #0C0717;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.btn {
    font-family: "Gridstar-Regular";
    color: #ffffff;
    font-size: 16px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    display: inline-block;
    min-width: 277px;
    padding: 12px 20px;
    text-align: center;
    letter-spacing: 0.07em;
	overflow: hidden;
}

.btn.btn-bg-dark {
    border-color: #171719;
/*     background: #171719; */
    color: #ffffff;
}
.bg__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.image-and-text-two .bg__image {
    width: 67%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: -7%;
}
.menu__btn a {
    height: 50px;
    padding-top: 0 !important;
    margin-top: 0 !important;
    font-weight: normal;
    font-size: 12px !important;
    letter-spacing: 0.07em;
    line-height: 30px;
    text-transform: uppercase;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #171719;
    background: transparent;
	-webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.menu__btn a:hover {
    color: #f7f7f7 !important;
    background: #171719 !important;
	-webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.head-menu {
    z-index: 1;
    position: fixed;
    width: 745px;
	box-sizing: border-box;
    height: 100vh;
    right: -745px;
    top: 0;
    opacity: 1;
    background-image: url("../images/menu-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0 49px 0 87px;
}

.head-menu.open {
    right: 0;
    opacity: 1;
}

.head-menu-overflow {
    margin: 120px 0 0 0;
    height: calc(100% - 120px);
}

.head-menu-overflow::-webkit-scrollbar {
    width: 2px !important;
    background-color: #171719;
}

.head-menu-overflow::-webkit-scrollbar-track {
    width: 2px !important;
    background-color: #E3E3E3;
}

.head-menu-overflow::-webkit-scrollbar-thumb {
    width: 2px !important;
    background-color: #171719;
}

.mCSB_container {
    margin: 0 !important;
    padding-right: 40px;
}

.mCSB_scrollTools {
    opacity: 1;
    width: 2px;
    background-color: #E3E3E3;
    height: calc(100% - 118px);
}

.mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    background-color: #171719;
}

.mCSB_draggerRail {
    width: 2px;
    background-color: transparent;
}

.head-menu-overflow-box .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.head-menu-overflow-box .menu li {
    width: calc(50% - 8.5px);
    margin: 0 0 39px 0;
    line-height: normal;
    position: relative;
    transition: padding 0.2s;
	padding: 0px;
}

.head-menu-overflow-box .menu li:last-child {
    margin-right: 0;
}

.head-menu-overflow-box .menu li.is-hide {
    display: none !important;
}

.head-menu-overflow-box .menu li > a {
/*     font-family: $f-gr; */
	font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    color: #171719;
    letter-spacing: 0.07em;
    position: relative;
    display: block;
    text-transform: uppercase;
    padding-top: calc(100% + 20px);
    text-decoration: none !important;
}

.head-menu-overflow-box .menu li > a:hover .bg-img-box .bg-img {
    transform: scale(1.05);
}

.head-menu-overflow-box .menu li > a .bg-img {
    padding-top: 100%;
    transition: all 0.2s;
}

.head-menu-overflow-box .menu li > a .bg-img-box {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    z-index: 1;
    width: 100%;
}

.head-menu-overflow-box .menu li > a .bg-img-box .allocations-paused {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.head-menu-overflow-box .menu li > a .bg-img-box .allocations-paused span {
    display: block;
    width: 100%;
/*     font-family: $f-gr; */
	font-family: "Barlow Condensed", sans-serif;
    font-size: 10px;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    color: #F7F7F7;
    text-align: center;
    padding: 9px 25px;
    background: #171719;
}

.head-menu-overflow-box .menu li > a p {
/*     font-family: $f-wr; */
	font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    color: #171719;
    text-transform: initial;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    padding-top: 8px;
}
/* Стили для экранов 1200px и выше */
@media (max-width: 1820px) {
	.specifications-section .right .specifications-list > .specifications-item:last-child {
		padding-top: 61px;
		padding-bottom: 0;
	}
	.specifications-item-name.starfire:after {
		width: 14px;
    	height: 1.5px;
		background: #111211;
	}
	.specifications-item-name.starfire:before {
		width: 14px;
    	height: 1.5px;
		background: #111211;
	}
	.specifications-item-name:after {
		width: 14px;
    	height: 1.5px;
	}
	.specifications-item-name:before {
		width: 14px;
    	height: 1.5px;
	}
	.wrapper {
		max-width: 100%;
        padding-left: 3%;
        padding-right: 3%;
	}
	.tabs-section .header-tabs li {
		color: rgba(244, 244, 244, 0.9);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		padding: 11px 5px;
		opacity: 0.5;
		position: relative;
		cursor: pointer;
	}
	.tabs-section.starfire .header-tabs li {
		font-size: 12px;
	}
	.tabs-section .header-tabs li:not(:last-child) {
		margin-right: 284px;
	}
	.tabs-section.starfire .header-tabs li:not(:last-child) {
        margin-right: 163px;
    }
	header .logo a svg {
		width: 139px;
	}
	header .btn-block .hamburger {
		width: 27px;
		margin-left: 37px;
	}
	header .btn-block .hamburger span {
		width: 26px;
		height: 2px;
		border-radius: 2px;
		background-color: var(--White, #F4F4F4);
		position: relative;
		display: block;
		transition: all 0.3s ease;
		margin-top: 9px;
	}
	header .btn-block .hamburger span:before {
		content: '';
		width: 26px;
		height: 2px;
		border-radius: 2px;
		background-color: var(--White, #F4F4F4);
		position: absolute;
		top: -9px;
		left: 0;
		transition: all 0.3s ease;
	}
	header .btn-block .hamburger.open span:before {
		top: -12px;
	}
	header .btn-block .hamburger span:after {
		content: '';
		width: 26px;
		height: 2px;
		border-radius: 2px;
		background-color: var(--White, #F4F4F4);
		position: absolute;
		top: 8px;
		left: 0;
		transition: all 0.3s ease;
	}
	header .btn-block .link-to-concierge {
		color: #F7F7F7;
		text-align: center;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		border-radius: 50px;
		border: 2px solid var(--White, #F4F4F4);
		padding: 11px 25px;
		background-color: transparent;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	header .wrapper {
		padding-top: 45px;
	}
	header .btn-block {
		margin-top: -28px;
	}
	header.active .wrapper {
		padding-top: 12px;
		padding-bottom: 12px;
		transition: all 0.3s ease;
	}
	.first-section {
		height: 100vh;
	}
	
	.bottom-arrow {
		width: 40px;
		height: 40px;
		margin-bottom: 80px;
	}
	.bottom-arrow:before {
		content: '';
		width: 8px;
		height: 1px;
		border-radius: 2px;
		background-color: #fff;
		position: absolute;
		top: 10px;
		left: 14px;
		transition: all 0.3s ease;
		transform: translateX(0px) translateY(10px) rotate(45deg);
	}
	.bottom-arrow:after {
		content: '';
		width: 8px;
		height: 1px;
		border-radius: 2px;
		background-color: #fff;
		position: absolute;
		top: 30px;
		left: 19px;
		transition: all 0.3s ease;
		transform: translateX(0px) translateY(-10px) rotate(-45deg);
	}

	.first-section h1 {
        font-size: 116px;
        line-height: 116px;
        letter-spacing: 6.5px;
		padding-bottom: 156px;
        width: 40%;
        
    }
	.first-section.starfire h1 {
		padding-bottom: 220px;
	}
	.first-section:before {
		content: '';
		width: 100%;
		height: 200px;
/* 		background: linear-gradient(0deg, #111211 0.5%, rgba(17, 18, 17, 0.00) 100%); */
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.first-section ul {
		padding-bottom: 37px;
	}
	.first-section ul li:not(:last-child) {
		margin-right: 10px;
	}

	.first-section ul li {
		width: 240px;
		margin-right: 18px;
	}

	.first-section ul li .title {
		font-size: 24px;
		letter-spacing: 1.4px;
	}

	.first-section ul li .subtitle {
		font-size: 12px;
		letter-spacing: 1.4px;
	}

	.second-section {
		padding: 145px 0px 159px 0px;
	}
	.second-section.starfire {
		padding: 145px 0px 119px 0px;
	}
	
	.second-section .title-section {
		color: var(--White, #F4F4F4);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 22px;
		max-width: 656px;
	}
	.second-section .description-section {
		color: #F5F5F5;
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 30px;
		letter-spacing: 0.7px;
		max-width: 550px;
	}
	.second-section .description-section.starfire {
		max-width: 700px;
	}
	.second-section.starfire {
		padding: 145px 0px 119px 0px;
	}
	.img-section {
		height: 700px;
	}

	.img-section.bottom {
		height: calc(var(--hh) * 3.3);
		margin-block-start: calc(var(--hh) * -1);
		margin-block-end: calc(var(--hh) * -1);
	}
	.slider-section .left-block {
		max-width: 560px;
		width: 100%;
	}
	.slider-section .image-container {
		width: calc(100% - 588px);
		padding-bottom: 42px;
	}
	.slider-section {
		padding-top: 161px; 
	}
	.slider-section .title-section {
		letter-spacing: 1.42px;
		font-size: 46px;
	}
	.slider-section .description-section {
		color: #000;
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.7px;
		max-width: 716px;
		width: 100%;
	}
	.slider-section .title-section {
		margin-bottom: 22px;
	}
	.slider-section .scroll-image {
/* 		width: 450px;
		height: 434px; */
		margin-right: 10px;
	}
	.web-section {
		padding-top: 60px;
		padding-bottom: 95px;
	}
	.web-section.starfire {
		padding-top: 16px;
	}
	
	.web-section .subtitle {
		color: var(--Dark-Grey, #343434);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 2.7px;
		text-transform: uppercase;
		margin-bottom: 23px;
	}
	.web-section .title {
		color: var(--Real-Black, #111211);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 54px;
		max-width: 670px;
	}
	.web-section .web-img {
		height: 700px;
		margin-bottom: 49px;
	}
	.web-section .description-section {
		color: var(--Real-Black, #111211);
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.7px;
		width: 400px;
		margin-right: 170px;
	}
	.web-section.starfire .description-section {
        width: 535px;
        margin-right: 36px;
    }
	.next-section .left-block {
		margin-top: 12px;
		max-width: 445px;
		width: 100%;
	}
	.next-section.starfire .left-block {
        margin-top: 12px;
        max-width: 470px;
        width: 100%;
    }
	.next-section .left-block .title {
		color: var(--Real-Black, #111211);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 18px;
		width: 80%;
	}
	.next-section .wrapper {
		padding-right: 0px;
	}
	.next-section.starfire .left-block .title {
		width: 100%;
	}
	.first-black-section .left-block img {
		width: 100%;
		margin-left: 0%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
	}
	.first-black-section .wrapper {
		padding-left: 0px;
	}
	.next-section .left-block .description {
		color: var(--Real-Black, #111211);
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.7px;
	}
	.next-section .right-block {
		width: calc(100% - 583px);
	}
	.next-section .right-block img {
		height: auto;
		width: 100%;
		display: block;
	}
	.next-section {
		padding-bottom: 160px; 
	}
	
	.slider-section .day-night button {
		position: absolute;
		right: 18px;
		bottom: 18px;
		outline: none;
		background-color: transparent;
		border-radius: 50%;
		border: none;
		cursor: pointer;
	}
	.slider-section .day-night button svg {
		width: 40px;
		height: 40px;
	}
	.slider-section .day-night {
/* 		height: 433px;
		width: 450px; */
		position: relative;
	}
	.wrapper-uncover.wrapper .title {
/* 		color: #111211; */
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.47px;
		text-transform: uppercase;
		margin-bottom: 53px;
	}
	.wrapper-uncover.wrapper a {
		color: var(--White, #F4F4F4);
		text-align: center;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		border-radius: 45px;
/* 		background: linear-gradient(86deg, #CB779B 0.91%, #CF7773 96.22%); */
/* 		background: #111211; */
		padding: 13px 29px;
		border: none;
		outline: none;
		cursor: pointer;
		margin-bottom: 250px;
	}
	.first-black-section {
		padding-top: 165px; 
	}
	.first-black-section .right-block {
		max-width: 450px;
		width: 100%;
		margin-top: 12px;
	}
	.first-black-section .right-block .description {
		color: #F5F5F5;
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.6px;
	}
	.first-black-section .right-block .title {
		color: #F5F5F5;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 46px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 24px;
	}
	.first-black-section .left-block {
        width: calc(100% - 585px);
        height: 100%;
    }
	.tabs-section .header-tabs {
		top: 77px;
	}
	.tabs-section .content-tabs {
		padding-top: 200px;
		padding-bottom: 86px;
		cursor: pointer;
	}
	.second-black-section .left-block {
        width: calc(100% - 585px);
        height: 100%;
    }
	.second-black-section .left-block img {
		width: 100%;
		margin-left: 0%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.second-black-section .right-block .description {
		color: #F5F5F5;
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.6px;
	}
	.second-black-section .right-block .title {
		color: #F5F5F5;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 46px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 24px;
	}
	.second-black-section .right-block {
		max-width: 450px;
		width: 100%;
		margin-top: 12px;
	}
	
	.tabs-section .slider-tabs .right {
        width: 42%;
        height: auto;
    }
	.tabs-section .slider-tabs .left {
        max-width: 58%;
        width: 100%;
        margin-top: 57px;
        padding-right: 100px;
        box-sizing: border-box;
    }
	.tabs-section .slider-tabs .title {
		color: var(--Real-Black, #111211);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		margin-bottom: 51px;
	}
	.tabs-section .slider-tabs .subtitle {
		color: var(--Dark-Grey, #343434);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 2.64px;
		text-transform: uppercase;
		margin-bottom: 7px;
	}
	.tabs-section .slider-tabs .key {
		color: var(--Real-Black, #111211);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		margin-bottom: 13px;
	}
	.tabs-section .slider-tabs .key span {
		color: rgba(17, 18, 17, 0.5);
		margin-right: 13px;
	}
	.tabs-section .slick-dots button {
		font-size: 13px;
	}
	.tabs-section.starfire .slick-dots li {
        margin-right: 1px;
    }
	.tabs-section.starfire .slick-dots {
        margin: 0 4px;
    }
	.tabs-section.starfire .slider-navigation {
		padding: 8px 13px;
	}
	.tabs-section .slider-tabs .slick-list {
		margin-bottom: 43px;
	}
	.tabs-section .slider-tabs .left {
		max-width: 51%;
	}
	.tabs-section .slider-tabs .description {
		color: var(--Real-Black, #111211);
		font-family: "Barlow", sans-serif;
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 31px;
		letter-spacing: 0.5px;
	}
	.tabs-section .slider-tabs .description li {
		display: flex;
	}
	.tabs-section .slider-tabs .description li span {
		display: block;
    	margin-right: 14px;
	}
	.tabs-section .slider-navigation {
		display: flex;
		align-items: center;
		border-radius: 45px;
		border: 2px solid var(--Real-Black, #111211);
		padding: 8px 22px;
		width: max-content;
	}
	.tabs-section .slick-dots li {
		margin-right: 6px;
	}
	.tabs-section .slick-dots li:last-child {
		margin-right: 0px;
	}
	.tabs-section .slider-navigation .slick-prev svg, .tabs-section .slider-navigation .slick-next svg {
		width: 7px;
	}
	.tabs-section .slick-dots {
		margin: 0 17px;
	}
	.specifications-section .left .title {
		color: var(--White, #F4F4F4);
		font-family: "Barlow Condensed", sans-serif;
		font-size: 47px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.42px;
		text-transform: uppercase;
		/* opacity: 0.1; */
	}
	.specifications-section {
		padding-top: 73px;
		padding-bottom: 100px;
		background: var(--Real-Black, #111211);
	}
	.specifications-section.starfire {
		background:#F4F4F4;
		padding-bottom: 159px;
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item {
		color: var(--Real-Black, #111211);
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item:before {
        width: 98%;
        background: linear-gradient(-90deg, rgba(244, 244, 244, 0.50) 0%, #171719 70%);
    }
	.specifications-section.starfire .left .title {
		color: var(--Real-Black, #111211);
	}
	.specifications-section.starfire .specifications-item.active .specifications-item-name {
		color: var(--Real-Black, #111211);
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item .content-list .description {
		color: var(--Real-Black, #111211);
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item .content-list .list-block .title-block {
		color: var(--Real-Black, #111211);
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item .content-list .list-block ul li {
		color: var(--Real-Black, #111211);
	}
	.specifications-section .right .specifications-list {
		max-width: 800px;
		width: 100%;
		padding-right: 0;
	}
	.specifications-section .left {
		margin-bottom: 29px;
	}
	.specifications-section .right .specifications-list > .specifications-item:before {
		width: 98%;
		background: linear-gradient(90deg, rgba(244, 244, 244, 0.50) 0%, #171719 70%);
	}
	.specifications-item-name {
		font-size: 18px;
		letter-spacing: 2.64px;
		
	}
	.specifications-item.active .specifications-item-name {
		color: var(--White, #F4F4F4);
		font-family: "Barlow Condensed";
		font-size: 39px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 0.98px;
		text-transform: uppercase;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .description {
		color: var(--White, #F4F4F4);
		font-family: "Barlow", sans-serif;
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
		letter-spacing: 0.5px;
		text-transform: none;
		margin-top: 18px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block .title-block {
		color: var(--White, #F4F4F4);
		opacity: 0.5;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		margin-bottom: 24px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li {
		color: var(--White, #F4F4F4);
		font-family: "Barlow", sans-serif;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 29px;
		letter-spacing: 0.5px;
		text-transform: none;
		position: relative;
	}
	.image-and-text-two .text p {
		color: white;
		font-size: 20px;
		line-height: 30px;
		font-weight: 400;
		font-style: normal;
		margin-bottom: 25px;
		font-family: "Barlow", sans-serif;
	}
	.specifications-section .right .specifications-list > .specifications-item 	{
		padding-bottom: 34px;
		padding-top: 37px;
		width: 82%;
		cursor: pointer;
	}
	footer {
		background-color: var(--White, #F4F4F4);
		padding: 47px 0px 35px 0px;
	}
	.footer-logo svg {
		width: 141px;
	}
	footer .foot-menu .sub-menu a {
		color: #171719;
		font-family: "Barlow Condensed", sans-serif;
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
	}
	footer .foot-menu .sub-menu li:not(:last-child) {
		margin-bottom: 9px;
	}
	footer .foot-menu .sub-menu {
        width: 215px;
        margin-top: 0;
    }
	footer .foot-menu {
		display: flex;
		justify-content: space-between;
		margin-bottom: 29px;
	}
	footer .bottom-footer .social-menu a svg {
		width: 25px;
		height: 25px;
	}
	footer .bottom-footer .social-menu {
		display: flex;
		width: 221px;
	}
	footer .bottom-footer .social-menu li:not(:last-child) {
		margin-right: 7px;
	}
	footer .bottom-footer .copy {
		display: flex;
		justify-content: flex-start;
		width: 698px;
		color: var(--Real-Black, #111211);
		opacity: 0.5;
		font-family: "Barlow", sans-serif;
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: 12px;
	}
}

/* Стили для экранов от 992px до 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
.first-section {
	height: 800px;
}

.first-section h1 {
	font-size: 100px;
	line-height: 100px;
	letter-spacing: 5px;
	width: 50%;
	padding-bottom: 150px;
}

.first-section ul {
	padding-bottom: 120px;
}

.first-section ul li {
	width: 220px;
	margin-right: 15px;
}

.first-section ul li .title {
	font-size: 24px;
	letter-spacing: 1.3px;
}

.first-section ul li .subtitle {
	font-size: 12px;
	letter-spacing: 1.3px;
}

.second-section {
	padding: 120px 0px 200px 0px;
}

.second-section .title-section {
	font-size: 60px;
	letter-spacing: 1.2px;
	margin-bottom: 24px;
	max-width: 650px;
}

.second-section .description-section {
	font-size: 24px;
	line-height: 36px;
	letter-spacing: 0.5px;
	max-width: 650px;
}

.img-section {
	height: 800px;
}

.img-section.bottom {
	height: calc(var(--hh) * 3);
	margin-block-start: calc(var(--hh) * -0.8);
	margin-block-end: calc(var(--hh) * -0.8);
}
}

/* Стили для экранов от 768px до 992px */
@media (min-width: 768px) and (max-width: 992px) {
.first-section {
	height: 700px;
}

.first-section h1 {
	font-size: 80px;
	line-height: 80px;
	letter-spacing: 4px;
	width: 50%;
	padding-bottom: 120px;
}

.first-section ul {
	padding-bottom: 100px;
}

.first-section ul li .title {
	font-size: 22px;
	letter-spacing: 1.2px;
}

.first-section ul li .subtitle {
	font-size: 12px;
	letter-spacing: 1.2px;
}

.second-section {
	padding: 100px 0px 180px 0px;
}

.second-section .title-section {
	font-size: 50px;
	letter-spacing: 1.1px;
	margin-bottom: 20px;
	max-width: 600px;
}

.second-section .description-section {
	font-size: 22px;
	line-height: 34px;
	letter-spacing: 0.45px;
	max-width: 600px;
}

.img-section {
	height: 700px;
}

.img-section.bottom {
	height: calc(var(--hh) * 2.8);
	margin-block-start: calc(var(--hh) * -0.7);
	margin-block-end: calc(var(--hh) * -0.7);
}
}

@media (max-width: 1200px) {
	.slider-section .wrapper {
		flex-direction: column;
	}
	.slider-section .left-block {
		max-width: 700px;
		width: 100%;
		margin-bottom: 50px;
	}
	.slider-section .image-container {
		width: 100%;
	}
	.slider-section .custom-scrollbar {
		width: 100%;
	}
	.slider-section .image-container {
		margin-right: 0;
	}
	.slider-section .scroll-image:last-child {
		margin-right: 0;
	}
	.next-section .wrapper {
		flex-direction: column-reverse;
	}
	.next-section .right-block {
		width: 100%;
		margin-bottom: 50px;
  	}
	.next-section .right-block img {
		width: 100%;
	}
	.first-black-section .wrapper {
		flex-direction: column-reverse;
  	}
	.first-black-section .right-block {
		margin-top: 0;
		margin-bottom: 50px;
	}
	.first-black-section .left-block {
	width: 110%;
	}
	.first-black-section .left-block img {
		margin-left: -5%;
	}
	.second-black-section .wrapper {
		flex-direction: column-reverse;
  	}
	.second-black-section .right-block {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.second-black-section .left-block {
	width: 110%;
	}
	.second-black-section .left-block img {
		margin-left: -5%;
	}
	.first-black-section {
		padding-top: 50px;
	}
	.second-black-section {
		padding-bottom: 0;
	}
	.tabs-section .slider-tabs .item-flex {
		display: flex;
		justify-content: space-between;
		flex-direction: column-reverse;
  }
  .tabs-section .slider-tabs .right {
	width: 100%;
  }
  .tabs-section .slider-tabs {
	width: 100%;
  }
  .tabs-section .slider-tabs .title {
	display: none;
  }
  .tabs-section .slider-tabs .subtitle {
	display: none;
  }
  .tabs-section .slider-tabs .title-mobile {
	display: block;
  }
  .tabs-section .slider-tabs .subtitle-mobile {
	display: block;
  }
  .tabs-section .slider-tabs .right {
	height: auto;
  }
  .tabs-section .slider-tabs .right img {
	height: 500px;
  }
  .tabs-section .slider-tabs .left {
	max-width: 100%;
  }
  .specifications-section .right {
	justify-content: flex-start;
  }
  .specifications-section .left {
	margin-bottom: 50px;
  }
  footer .foot-menu {
	flex-direction: column;
  }
  .footer-logo {
	margin-bottom: 50px;
  }
  footer .foot-menu .sub-menu {
	width: 25%;
  }
}

@media (max-width: 992px) {
	.web-section .bottom-content {
		display: flex;
		justify-content: flex-start;
  	}
	.slider-section .title-section {
		font-size: 50px;
	}
	.slider-section .description-section {
		font-size: 23px;
		line-height: 34px;
	}
	.web-section .subtitle {
		font-size: 23px;
		line-height: 34px;
	}
	.web-section .title {
		font-size: 50px;
	}
	.web-section .description-section {
		font-size: 23px;
		line-height: 34px;
	}
	.next-section .left-block .title {
		font-size: 50px;
	}
	.next-section .left-block .description {
		font-size: 23px;
		line-height: 34px;
	}
	.wrapper-uncover.wrapper .title {
		font-size: 50px;
	}
	.first-black-section .right-block .title {
		font-size: 50px;
	}
	.first-black-section .right-block .description {
		font-size: 23px;
		line-height: 34px;
	}
	.second-black-section .right-block .title {
		font-size: 50px;
	}
	.second-black-section .right-block .description {
		font-size: 23px;
		line-height: 34px;
	}
	.tabs-section .slider-tabs .subtitle-mobile {
		font-size: 23px;
		line-height: 34px;
	}
	.tabs-section .slider-tabs .title-mobile {
		font-size: 50px;
	}
	.tabs-section .slider-tabs .description {
		font-size: 23px;
		line-height: 34px;
	}
	.specifications-section .left .title {
		font-size: 50px;
	}
	.specifications-section .right .specifications-list > .specifications-item {
		font-size: 23px;
		line-height: 34px;
	}
	.wrapper-uncover.wrapper .title {
		font-size: 50px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .description {
		font-size: 23px;
		line-height: 34px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li {
		font-size: 23px;
		line-height: 34px;
	}
	.tabs-section .header-tabs li:not(:last-child) {
		margin-right: 200px;
	}
}

@media (max-width: 768px) {
	.first-section.starfire h1 {
		padding-bottom: 0px;
	}
	.slider-section .wrapper {
		padding-left: 8%;
		padding-right: 8%;
	}
	.slider-section .day-night {
    height: 100%;
    width: 100%;
    position: relative;
}
	.head-menu .head-menu-overflow .head-menu-overflow-box .menu li:last-child {
		min-width: auto;
	}
	.slider-section .image-container {
		display: none;
		
	}
	.slider-section .image-container-mobile {
		display: block;
		margin-left: 8%;
		
	}
	.slider-section .image-container-mobile .slick-initialized .slick-slide {
/* 		width: 400px;
		height: 400px; */
		margin-right: 20px;
	}
	.slider-section .image-container-mobile .slick-initialized .slick-slide:last-child {
		margin-right: 0px;
	}
	.slider-section .image-container-mobile .slick-dots li button:before {
		display: none;
	}
	.slider-section .image-container-mobile .slick-dots {
		width: calc(100% - 30px);
		height: 1px;
		display: flex;
		align-items: center;
		background: linear-gradient(45deg, rgba(244, 244, 244, 1) 0%, rgba(17, 18, 17, 0.25) 50%, rgba(244, 244, 244, 1) 100%);
	}
	.slider-section .image-container-mobile .slick-dots li {
		width: 100%;
		height: 2px;
		margin: 0;
	}
	.slider-section .image-container-mobile .slick-dots li button {
		padding: 0;
	}
	.slider-section .image-container-mobile .slick-dots li.slick-active button {
		width: 100%;
		height: 2px;
		background-color: var(--Black, #222322);
	}
	.first-section h1 {
		font-size: 60px;
		line-height: 60px;
		letter-spacing: 3px;
		width: 50%;
		padding-bottom: 100px;
	}
	
	.first-section ul {
		padding-bottom: 80px;
		flex-direction: column;
	}
	
	.first-section ul li .title {
		font-size: 20px;
		letter-spacing: 1.1px;
	}
	
	.first-section ul li .subtitle {
		font-size: 10px;
		letter-spacing: 1.1px;
	}
	
	.second-section {
		padding: 80px 0px 160px 0px;
	}
	
	.second-section .title-section {
		font-size: 40px;
		letter-spacing: 1px;
		margin-bottom: 16px;
		max-width: 550px;
	}
	
	.second-section .description-section {
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0.4px;
		max-width: 550px;
	}
	
	.img-section.bottom {
		height: calc(var(--hh) * 2.5);
		margin-block-start: calc(var(--hh) * -0.6);
		margin-block-end: calc(var(--hh) * -0.6);
	}
	.bg-video-inner {
		height: 100vh;
		position: sticky;
		top: 0;
		width: 100%;
	}
	
	.first-section h1 {
		font-size: 61px;
		font-style: normal;
		font-weight: 600;
		line-height: 61px; /* 100% */
		letter-spacing: 3.05px;
		width: 50%;
		padding-bottom: 0;
		height: calc(100vh - 9%);
		position: absolute;
		top: 0;
		display: flex;
		align-items: flex-end;
		
	}
	
	.first-section ul {
		padding-bottom: 60px;
		flex-direction: column;
		height: 100vh;
		justify-content: flex-end;
	}
	.first-section ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 24px;
	}
	.first-section ul li .title {
		font-size: 25px;
		letter-spacing: 1.25px;
		margin-bottom: 3px;
	}
	
	.first-section ul li .subtitle {
		font-size: 13px;
		letter-spacing: 1.3px;
	}
	.bg-video-inner .bg-video.desktop {
		display: none;
	}
	.bg-video-inner .bg-video.mobile {
		display: block;
	}
	.bg-video-inner .bg-video.mobile video {
		width: 100%;
	}
	footer {
		width: 100%;
		overflow: hidden;
	}
	.first-section {
		margin-top: -76px;
		height: 200vh;
		display: block;
		overflow: initial;
	}
	.logo a svg path {
		display: none;
	}
	.logo a svg path:first-child {
		display: block;
	}
	.wrapper {
        padding-left: 8%;
        padding-right: 8%;
    }
/* 	#hero-banner-video-m {
		height: 100%;
		width: 100%;
		display: none;
	} */
	.image_upload_mobile {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	header .wrapper {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	header .logo a {
		height: 30px;
	}
	header .logo a svg {
		height: 30px;
		width: 106px;
	}
	header .btn-block,
	header.active .btn-block {
		margin-top: -3px;
	}
	header .btn-block .link-to-concierge,
	header.active .btn-block .link-to-concierge {
		font-size: 10px;
		padding: 8px 32px;
		border: 1px solid var(--White, #F4F4F4);
	}
	header .btn-block .hamburger span {
		width: 17px;
		height: 1px;
		margin-top: 0px;
	}
	header .btn-block .hamburger span:before {
		width: 17px;
		top: 5px;
		height: 1px;
	}
	header .btn-block .hamburger span:after {
		width: 17px;
		top: 10px;
		height: 1px;
	}
	header .btn-block .hamburger.open span:after {
		transform: translateX(-15px) translateY(-10px) rotate(-45deg);
	}
	header .btn-block .hamburger.open span:before {
		top: -10px;
		transform: translateX(-15px) translateY(10px) rotate(45deg);
	}
	header .btn-block .hamburger {
		margin-left: 50px;
		cursor: pointer;
		width: 100%;
		height: 12px;
  }
	.second-section {
		padding-bottom: 80px;
	}
	.img-section {
		height: 550px;
	}
	.slider-section {
		padding-top: 80px;
	}
	.web-section {
		padding-top: 35px;
		padding-bottom: 50px;
		overflow: hidden;
		margin-top: -1px;
	}
	.web-section .title {
		margin-bottom: 50px;
	}
	.web-section .web-img {
		margin-bottom: 50px;
		height: 550px;
		width: 110%;
		margin-left: -5%;
	}
	.next-section .right-block img {
		height: 550px;
	}
	.next-section .left-block {
		margin-top: 0;
	}
	.next-section {
		padding-bottom: 80px;
	}
	.first-black-section {
		padding-top: 80px;
	}
	.first-black-section .left-block {
		height: 550px;
	}
	.second-black-section .left-block {
		height: 550px;
	}
	.tabs-section .header-tabs {
		top: 76px;
	}
	.tabs-section .slider-tabs .title-mobile {
		margin-bottom: 30px;
	}
	.tabs-section .slider-tabs .left {
		margin-top: 30px;
	}
	.tabs-section .content-tabs {
		padding-bottom: 50px;
	}
	.specifications-section {
		padding-top: 80px;
		padding-bottom: 130px;
	}
	.btn-section.bottom {
		height: 550px;
	}
	.btn-section.bottom .wrapper button {
		margin-bottom: 50px;
	}
	.wrapper-uncover.wrapper .title {
		width: 50%;
		margin-bottom: 30px;
	}
	.sticky-container .bg-video-inner {
		position: absolute;

	}
	.bottom-arrow {
		width: 40px;
		height: 40px;
		top: calc(100vh - 80px);
		position: absolute;
	}
	.bottom-arrow2 {
		width: 40px;
		height: 40px;
		top: auto;
		bottom: -23px;
		position: absolute;
	}
	
	.bottom-arrow:before {
		content: '';
		width: 5px;
		height: 1px;
		border-radius: 2px;
		background-color: #fff;
		position: absolute;
		top: 11px;
		left: 15px;
		transition: all 0.3s ease;
		transform: translateX(0px) translateY(10px) rotate(45deg);
	}
	.bottom-arrow:after {
		content: '';
		width: 5px;
		height: 1px;
		border-radius: 2px;
		background-color: #fff;
		position: absolute;
		top: 31px;
		left: 18px;
		transition: all 0.3s ease;
		transform: translateX(0px) translateY(-10px) rotate(-45deg);
	}
	 .head-menu {
        width: 100vw;
        right: -100vw;
        padding: 0 25px;
    }

    .head-menu-overflow {
        margin: 70px 0 0 0;
        height: calc(100% - 70px);
        padding-right: 0;
    }

    .head-menu-overflow::-webkit-scrollbar,
    .head-menu-overflow::-webkit-scrollbar-track,
    .head-menu-overflow::-webkit-scrollbar-thumb {
        display: none !important;
    }

    .mCSB_container {
        padding-right: 0;
    }

    .mCSB_scrollTools {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .head-menu-overflow-box .menu {
        padding-bottom: 30px;
    }

    .head-menu-overflow-box .menu li {
        width: calc(50% - 6px);
        margin-bottom: 24px;
    }

    .head-menu-overflow-box .menu li > a {
        font-size: 14px;
        padding-top: calc(100% + 9px);
    }

    .head-menu-overflow-box .menu li > a .bg-img-box {
        margin-bottom: 9px;
    }

    .head-menu-overflow-box .menu li > a .bg-img-box .allocations-paused span {
        font-size: 8px;
        padding: 5px 7px;
    }

    .head-menu-overflow-box .menu li > a p {
        font-size: 12px;
        line-height: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (max-width: 576px) {
	.first-section > .bottom-arrow {
		display: block;
	}
	.first-section .starfire-first-wrapper {
		position: fixed;
		top: auto;
		bottom: 220px;
		left: 8%;
		height: 100vh;
		z-index: 2;
		transition: opacity 0.3s ease;
	}

	.first-section .starfire-second-wrapper {
		position: absolute;
		top: 100vh;
		height: 100vh;
		display: flex;
		z-index: 1;
	}
	.img-section.bottom .image_attention {
		object-position: calc(50% - 30px);
	}
	.img-section.bottom .image_attention_2 {
		object-position: calc(50% - 30px);
	}
	.specifications-item.active .specifications-item-name {
		font-size: 25px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.25px;
	}
	.specifications-section.starfire .specifications-item:nth-child(8).active .specifications-item-name {
		padding-right: 80px;
	}
	.specifications-section.starfire .right .specifications-list > .specifications-item:last-child {
		padding-top: 45px;
        padding-bottom: 0px;
	}
	.pc_image_attention {
		display: none;
	}
	.mobile_image_attention {
		display:block;
	}
	.slider-section {
		padding-top: 67px;
		padding-bottom: 59px;
  	}
	
	.second-section {
		padding: 70px 0px 75px 0px;
	}
	.second-section.starfire {
        padding: 70px 0px 75px 0px;
    }
	.second-section .title-section {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		width: 180px;
		margin-bottom: 17px;
		box-sizing: border-box;
	}
	.second-section.starfire  .title-section {
		width: 240px;
	}
	
	.second-section .description-section {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 100%;
	}

	.img-section.bottom {
		height: calc(var(--hh) * 2.2);
		margin-block-start: calc(var(--hh) * -0.5);
		margin-block-end: calc(var(--hh) * -0.5);
	}
	.tabs-section .header-tabs li:not(:last-child) {
		margin-right: 0;
	}
	.tabs-section .header-tabs .wrapper {
		justify-content: space-between;
	}
	header .btn-block .hamburger {
		margin-left: 15px;
	}
	.first-section ul {
		padding-bottom: 100px;
	}
	
	.first-section:before {
		height: 40px;
		background: linear-gradient(0deg, #111211 10.5%, rgba(17, 18, 17, 0.00) 100%);
	}

	.bg-video-inner:before {
		content: '';
		width: 100%;
		height: 40px;
		background: linear-gradient(0deg, #111211 10.5%, rgba(17, 18, 17, 0.00) 100%);
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.slider-section .image-container-mobile {
        display: block;
        margin-left: 6%;
    }
	.slider-section .image-container-mobile .slick-dots {
		bottom: -30px;
		left: 8px;
	}
	.slider-section.starfire .title-section {
		max-width: 230px;
	}
	.slider-section .title-section {
		padding-top: 0;
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 17px;
	}
	.slider-section .description-section {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 100%;
	}
/* 	.slider-section .day-night {
		width: 300px;
		height: 340px;
	} */
/* 	.slider-section .scroll-image {
		width: 300px !important;
		height: 340px !important;
	} */
/* 	.slider-section .slick-initialized .slick-slide {
		width: 300px !important;
	} */
	.slider-section .image-container {
		padding-bottom: 30px;
	}
	.web-section.starfire .title {
		width: 240px;
	}
	.next-section.starfire .left-block {
		margin-top: 0px;
	}
	.web-section .subtitle {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		margin-bottom: 10px;
	}
	.web-section .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		width: 290px;
		margin-bottom: 45px;
		box-sizing: border-box;
	}
	.web-section .web-img {
		margin-bottom: 39px;
		height: 550px;
		width: 120%;
		margin-left: -10%;
	}
	.web-section .description-section {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 89%;
		margin-right: 0;
	}
	.web-section.starfire .description-section {
        width: 100%;
        margin-right: 0;
    }
	.next-section .wrapper {
        padding-right: 8%;
    }
	.next-section .right-block img {
		height: auto;
	}
	.next-section .left-block .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 16px;
		box-sizing: border-box;
		width: 240px;
	}
	.next-section.starfire .left-block .title {
        width: 220px;
    }
	.next-section {
		padding-bottom: 74px;
  	}
	.next-section .left-block .description {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
	}
	.wrapper-uncover.wrapper a {
		margin-bottom: 120px;
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		padding: 13px 26px;
	}
	.wrapper-uncover.wrapper .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 24px;
		box-sizing: border-box;
		width: 250px;
	}
	.first-black-section .right-block .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 18px;
	}
	.first-black-section .right-block {
        margin-bottom: 44px;
        padding-left: 8%;
        padding-right: 8%;
        box-sizing: border-box;
    }
	.first-black-section {
		padding-top: 72px;
  	}
	.first-black-section .right-block .description {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 84%;
	}
	.first-black-section.starfire .right-block .description {
		width: 100%;
	}
	.tabs-section.starfire .slider-tabs .title-mobile {
		padding-right: 10px;
/* 		width: 240px; */
	}
	.first-black-section .left-block {
        height: auto;
        width: 100%;
    }
	.first-black-section .left-block img {
		margin-left: 0%;
		width: 100%;
	}
	.second-black-section .wrapper {
		padding-left: 0px;
		padding-right: 0px;
	}
	.second-black-section .left-block {
        height: auto;
        width: 100%;
    }
	.second-black-section .left-block img {
		margin-left: 0%;
		width: 100%;
	}
	.second-black-section .right-block {
		margin-top: 75px;
		margin-bottom: 45px;
		padding-left: 8%;
		padding-right: 8%;
	}
/* 	.tabs-section {
		height: 100vh;
	} */
	.second-black-section .right-block .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 16px;
	}
	.second-black-section .right-block .description {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 92%;
	}
	    .tabs-section .header-tabs {
        top: 57px;
    }
	.second-black-section .left-block {
		height: auto;
		width: 100%;
	}
	.second-black-section .left-block img {
		margin-left: 0%;
	}
	.case_slider .list-name-3 .item-name-2 p {
		width: 100%;
	}
	.dial_slider .list-name-3 .item-name-2 p {
		width: 100%;
	}
	.tabs-section .header-tabs li {
		font-size: 10px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1px;
	}
	.tabs-section .header-tabs li:before {
		content: '';
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background-color: transparent;
		position: absolute;
		left: 0;
		bottom: -1px;
  	}
	.tabs-section .slider-tabs .subtitle-mobile {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
		margin-bottom: 10px;
	}
	.tabs-section .slider-tabs .title-mobile {
		padding-left: 30px;
		padding-right: 20px;
		box-sizing: border-box;
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
		margin-bottom: 25px;
	}
	.specifications-section .right .specifications-list > .specifications-item:before {
		height: 1.2px;
	}
	.tabs-section .slider-tabs .right img {
        height: 310px;
        width: 100%;
        margin-left: 0;
    }
	.tabs-section .slider-wrapper .wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.tabs-section .slider-tabs .left {
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
		margin-top: 26px;
	}
	.tabs-section .slider-tabs .key {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		margin-bottom: 10px;
	}
	.tabs-section .slider-tabs .description {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		width: 100%;
	}
	.tabs-section .slider-tabs .key span {
		margin-right: 10px;
	}
	.tabs-section.starfire .slider-navigation {
        padding: 4px 10px;
    }
	.tabs-section .slider-navigation {
		margin-left: 30px;
		margin-right: 30px;
		padding: 4px 10px;
		border: 1px solid var(--Real-Black, #111211);
	}
	.tabs-section .slick-dots button {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
	}
	.tabs-section .slick-dotted.slick-slider {
		margin-bottom: 22px;
  	}
	.tabs-section .slider-navigation .slick-prev svg, .tabs-section .slider-navigation .slick-next svg {
		height: 10px;
	}
	.tabs-section .slider-tabs .slick-list {
		margin-bottom: 21px;
	}
	.specifications-section .left .title {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: 35px; /* 112.903% */
		letter-spacing: 1.55px;
	}
	    .specifications-item-name {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
	.specifications-section .right .specifications-list > .specifications-item {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		padding-top: 28px;
		padding-bottom: 27px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .title {
		font-size: 25px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 1.25px;
		margin-bottom: 17px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .description {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 156.25% */
		letter-spacing: 0.32px;
		padding-left: 15px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block .title-block {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
		margin-bottom: 20px;
	}
	.btn-section.bottom {
		height: 340px;
	}
	footer .foot-menu .menu {
		margin-top: 0;
		flex-direction: column;
	}
	footer .foot-menu .sub-menu {
		width: 100%;
		margin-right: 0;
	}
	footer .foot-menu .sub-menu a {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.3px;
	}
	footer .foot-menu .sub-menu li:not(:last-child) {
		margin-bottom: 18px;
	}
	footer .foot-menu .sub-menu:not(:last-child) {
		margin-right: 0;
		padding-bottom: 30px;
		margin-bottom: 30px;
		position: relative;
	}
	footer .foot-menu .sub-menu:not(:last-child):before {
		content: '';
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg, rgba(17, 18, 17, 1) 50%, rgba(244, 244, 244, 1));
		position: absolute;
		opacity: 0.15;
		bottom: 0;
		left: 0;
	}
	footer .foot-menu .sub-menu:nth-child(2) {
		padding-bottom: 2px;
		margin-bottom: 0px;
	}
	footer .foot-menu .sub-menu:nth-child(2):before {
		display: none;
	}
	footer .bottom-footer {
		flex-direction: column-reverse;
	}
	footer .bottom-footer .social-menu {
		margin-bottom: 10px;
	}
	footer .foot-menu {
		margin-bottom: 34px;
	}
	footer {
		padding: 49px 0px 24px 0px;
	}
	.footer-logo {
		display: none;
	}
	.slider-section .left-block {
		margin-bottom: 44px;
	}
	.slider-section .day-night button svg {
		width: 30px;
		height: 30px;
	}
	.slider-section .day-night button {
		position: absolute;
		right: 20px;
		bottom: 16px;
		outline: none;
		background-color: transparent;
		border-radius: 50%;
		border: none;
		cursor: pointer;
		padding: 0;
		margin: 0;
  }
	.slider-section .custom-scrollbar-thumb {
		position: relative;
		height: 2px;
		background-color: var(--Black, #222322);
		border-radius: 4px;
		margin-top: 0px;
		cursor: pointer;
	}
	.slider-section .custom-scrollbar {
		height: 1px;
		display: none;
	}
	.web-section {
		padding-top: 31px;
		padding-bottom: 44px;
	}
	.next-section .right-block {
		margin-bottom: 40px;
	}
	.tabs-section.starfire .slick-dots li {
        margin: 0 6px;
    }
	.specifications-section .right .specifications-list > .specifications-item {
		width: 97%;
	}
	.specifications-item-name:before {
        width: 12px !important;
        height: 1.2px !important;
    }
	.specifications-item-name:after {
        width: 12px;
        height: 1.2px;
    }
	.tabs-section .header-tabs li {
		padding: 9px 0px;
	}
	.tabs-section .content-tabs {
		padding-top: 31px;
	}
	.tabs-section .slick-dots li {
		margin: 0 4px;
	}
	.tabs-section .slick-dots {
        margin: 0 9px;
    }
	.specifications-section {
		padding-top: 72px;
		padding-bottom: 80px;
  	}
	.specifications-section .left {
		margin-bottom: 43px;
  	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block {
		margin-top: 40px;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li svg {
		width: 6px;
		height: 6px;
		margin-right: 8px;
		position: absolute;
        top: 10px;
        left: 0;
	}
	.specifications-section .right .specifications-list > .specifications-item .content-list .list-block ul li:not(:last-child) {
		margin-bottom: 6px;
  	}
	.specifications-section .right .specifications-list > .specifications-item.active {
		padding-bottom: 45px;
        padding-top: 45px;
  	}
	.specifications-item.active .specifications-item-name:before {
		top: 15px;
	}
	.specifications-item.active .specifications-item-name:after {
		top: 15px;
	}
	.btn-section.bottom .wrapper button {
		padding-left: 40px;
		padding-right: 36px;
	}
	footer .foot-menu .sub-menu:nth-child(2) li {
		margin-bottom: 11px;
	}
	footer .foot-menu .sub-menu:nth-child(3) li {
		margin-bottom: 11px;
	}
	footer .foot-menu .sub-menu:nth-child(4) li {
		margin-bottom: 13px;
	}
	footer .foot-menu .sub-menu:nth-child(3) {
		padding-bottom: 19px;
		margin-bottom: 25px;
	}
	footer .bottom-footer .copy {
		font-size: 8px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px; /* 312.5% */
		letter-spacing: 0.16px;
	}
	
	footer .bottom-footer .social-menu a svg {
        width: 30px;
        height: 30px;
    }
	footer .bottom-footer .social-menu li:not(:last-child) {
        margin-right: 10px;
    }
	
	.bg-video-inner {
        height: 100vh;
        position: sticky;
        top: 0;
        opacity: 1 !important;
        width: 100%;
    }
	.first-section.starfire .bg-video-inner {
		opacity: 0.6 !important;
	}
	.slider-section .image-container-mobile .slick-initialized .slick-slide {
        margin-right: 15px;
        width: 345px !important;
    }
}

