*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #fff;
	--color-link-hover: #907030;
	--color-title: #907030;
	--perspective: 1500px;
	--grid-item-ratio: 1.5;
	--grid-width: 100%;
	--grid-height: auto;
	--grid-gap: 2vw;
	--grid-columns: 4;
	--grid-inner-scale: 1;
}

body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: "Noto Sans";
	font-variation-settings: "ital" 0, "wght" 300;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:not(.card__image):focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:not(.card__image):focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:not(.card__image):focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

main {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.frame {
	position: relative;
	width: 100%;
	padding: 1rem;
	display: grid;
	grid-template-columns: 100%;
	grid-template-areas: 'back' 'prev' 'sponsor';
	grid-gap: 0.5rem;
	justify-items: start;
	align-self: start;
	justify-self: start;
	pointer-events: none;
	align-items: center;
	text-transform: uppercase;
	font-size: 0.85rem;
	background: var(--color-bg-alt);
}

body #cdawrap {
    justify-self: start;
}

.frame a {
	pointer-events: auto;
}

.frame a:not(.frame__title-back) {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.frame a:not(.frame__title-back)::before {
	content: '';
	height: 1px;
	width: 100%;
	background: currentColor;
	position: absolute;
	top: 90%;
	transition: transform 0.3s;
	transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before {
	transform: scaleX(0);
	transform-origin: 100% 50%;
}

.frame__title {
	grid-area: title;
	display: flex;
}

.frame__title-main {
	font-size: inherit;
	margin: 0;
	font-weight: inherit;
}

.frame__title-back {
	position: relative;
	display: flex;
	align-items: flex-end;
	margin-bottom: 0.15rem;
}

.frame__title-back span {
	display: none;
}

.frame__title-back svg {
	fill: currentColor;
}

.frame__prev {
	grid-area: prev;
}

.intro {

	padding: 0;
    text-align: center;
    place-items: center;
    display: grid;
    margin-bottom: 30vh;
    background: linear-gradient(0deg, transparent, var(--color-bg-alt));
	z-index:999;
}

.content__title__block {
	font-size: 22px !important;
	border: solid 2px #857AFF;
	border-radius: 18px;
	margin-left: 10px;
	margin-right: 10px;
}

.content__center__block {
	display: grid;
	align-content: space-around;
	justify-content: space-evenly;
	text-align: center;
	border: solid 2px #857AFF;
	border-radius: 18px;
	width: 500px;
	height: 440px;
	margin: 0 auto;
	font-size: 34px;
	background-color: black;
}
@media (max-width: 520px)  {
	.content__center__block {
		display: grid;
		align-content: space-around;
		justify-content: space-evenly;
		text-align: center;
		border: solid 2px #857AFF;
		border-radius: 18px;
		width: 360px;
		height: 405px;
		margin: 0 auto;
		font-size: 34px;
	}
}

.menu__item__child {
	margin-top: 0px;
}
@media (max-width: 520px)  {
	.menu__item__child {
		margin-top: 10px;
	}
}

.grid__item__child__mb {
	margin-bottom: 1000px;
}
@media (max-width: 520px)  {
	.grid__item__child__mb {
		margin-bottom: 0px;
	}
}

.content__title__block__child__one {
	/* padding-right: 80px; */
}
@media (max-width: 520px)  {
	.content__title__block__child__one {
		/* padding-right: 30px; */
	}
}

.content__title__block__button {
	/* left: -16px; */
}

.mini__logo__brand__face {
	width: 85px;
    height: 28px;
}
@media (max-width: 520px)  {
	.mini__logo__brand__face {
		width: 85px;
		height: 28px;
	}
}

.mini__logo__brand__year {
	width: 50px;
	height: 15px;
}
@media (max-width: 520px)  {
	.mini__logo__brand__year {
        width: 50px;
        height: 15px;
	}
}

.mini__logo__brands {
	width: 154px;
    height: 50px;
}
@media (max-width: 520px)  {
	.mini__logo__brands {
		width: 99px;
		height: 28px;
		vertical-align: baseline;
	}
}

.intro__title {
	font-family: 'Noto Sans';
    place-items: center;
    margin: 0;
    line-height: .9;
    display: flex;
	flex-direction:column;
	align-items: center;
    margin-top: 15vh;
    font-weight: 400;
}

.intro__title-pre {
	width: 640px;
	height: 210px;
	background-repeat: no-repeat;
	background-image: url(../img/naitii.svg) ;
	background-size: contain;
	background-position: center;
}
@media (max-width: 520px)  {
	.intro__title-pre {
		width: 320px;
		height: 108px;
		background-repeat: no-repeat;
		background-image: url(../img/naitii.svg) ;
		background-size: contain;
		background-position: center;
	}
}

.mini__logo__brand {
	width: 145px;
	height: 55px;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-image: url(../img/naitii.svg) ;
	background-size: contain;
}
@media (max-width: 520px)  {
	.mini__logo__brand {
		width: 90px;
		height: 32px;
		background-repeat: no-repeat;
		background-image: url(../img/naitii.svg) ;
		background-size: contain;
	}
}

.intro__title-sub {
    font-size: clamp(1.5rem,5vw,4rem);
    max-width: 15ch;
    margin: 0 auto;
}

.intro__title-sub-1__hiden {
	display: inline;
	font-size: 47px;
	margin-top: 10px;
}
@media (max-width: 520px)  {
	.intro__title-sub-1__hiden {
		display: inline;
		font-size: 22px;
		margin-top: 0px;
	}
}

.intro__title-sub-2__hiden {
	font-size: 47px;
}
@media (max-width: 520px)  {
	.intro__title-sub-2__hiden {
		font-size: 22px;
	}
}

.intro__title-sub-1 {
	font-size: 40px;
	margin-top: -10px;
	font-family: 'Noto Sans';
}
@media (max-width: 520px)  {
	.intro__title-sub-1 {
		font-size: 22px;
		margin-top: 0px;
		font-family: 'Noto Sans';
	}
}

.grid--3{
	transform: translateY(-350px);
}

.intro__title-sub-2 {
    font-size:47px;
	margin-top: 250px;
	font-family: 'Noto Sans';
}
@media (max-width: 520px)  {
	.intro__title-sub-2{
		font-size:22px;
		margin-top: 165px;
		font-family: 'Noto Sans';
	}
}

.intro__title-sub-2__hidden {
	display: none;
}
@media (max-width: 520px)  {
	.intro__title-sub-2__hidden{
		display: block;
	}
}

.video-section{
	margin-bottom:10vh !important;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.slider__title {
	font-family: 'Noto Sans';
	font-size: 50px;
    margin-bottom: 30px;
	padding-left: 14px;
	justify-content: center;
	gap: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
}
@media (max-width: 520px)  {
	.slider__title {
		font-family: 'Noto Sans';
		font-size: 30px;
		margin-bottom: 30px;
		padding-left: 14px;
		/* justify-content: space-evenly; */
		gap: 0px;
		display: flex;
		align-items: center;
		flex-direction: row;
	}
}

.content__title__one__params {
	top: 22% !important;
}
@media (max-width: 520px)  {
	.content__title__one__params {
		top: 70% !important;
	}
}

.label-brands__child__one {
	/* padding-left: 14px; */
	font-size: 57px;
	font-family: 'Noto Sans';
}
@media (max-width: 520px)  {
	.label-brands__child__one {
		/* padding-left: 14px; */
		font-size: 30px;
		font-family: 'Noto Sans';
	}
}

.label-brands__child__two {
	font-family: 'Noto Sans';
	font-size: 70px;
	/* padding-right: 14px; */
	padding-bottom: 10px;
}
@media (max-width: 520px)  {
	.label-brands__child__two {
		font-family: 'Noto Sans';
		font-size: 42px;
		/* padding-right: 14px; */
		padding-bottom: 10px;
	}
}

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

.slider__title__child {
	font-family: 'Noto Sans';
	font-size: 67px;
	padding-right: 14px;
	padding-bottom: 10px;
}
@media (max-width: 520px)  {
	.slider__title__child {
		font-family: 'Noto Sans';
		font-size: 42px;
		padding-right: 14px;
		padding-bottom: 10px;
	}
}

.content__info--face__main {
	margin-top: 512px;
	margin-bottom: 60px;
	justify-content: space-evenly;
    display: flex;
    align-items: center;
    flex-direction: row;
}
@media (max-width: 520px)  {
	.content__info--face__main {
		margin-top: 340px;
		margin-bottom: 20px;
		justify-content: space-evenly;
		display: flex;
		align-items: center;
		flex-direction: row;
	}
}

.content__info--face__main__child__one {
	font-size: 30px;
	font-family: 'Noto Sans';
}

.content__info--face__main__child__two {
	font-size: 44px;
	font-family: 'Noto Sans';
	padding-bottom: 10px;
}

.face__button__one {
    left: -32px;
	display: none;
}
@media (max-width: 520px)  {
	.face__button__one {
		left: -32px;
		display: block;
	}
}

/* CSS */
.button-85 {
  width: 310px;
  height: 60px;
  border: solid;
  border-width:9px;
  border-color: #857AFF;
  color: rgb(255,255,255);
  background: #857AFF;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 999em;
  outline:none;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 15px;
  font-family:'Noto Sans';
}

.button-85:before {
  content: "";
  /*background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );*/ 
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #857AFF;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.button-86 {
	width: 310px;
	height: 60px;
	border: solid 2px #857AFF; /* Фиолетовая рамка */
	color: rgb(255, 255, 255);
	background: black; /* Чёрный фон */
	cursor: pointer;
	position: relative;
	z-index: 0;
	border-radius: 999em;
	outline: none;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	font-size: 15px;
	font-family: 'Noto Sans';
	overflow: hidden;
}
  
.button-86:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: -1;
	border-radius: inherit;
}
  
  @keyframes glowing-button-86 {
	0% {
	  background-position: 0 0;
	}
	50% {
	  background-position: 400% 0;
	}
	100% {
	  background-position: 0 0;
	}
  }
  
  .button-86:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: black; /* Чёрный фон */
	left: 0;
	top: 0;
	border-radius: inherit;
	z-index: -2;
}

.intro__info {
	max-width: 15ch;
    opacity: .6;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    align-self: end;
}

.intro__info::after {
	content: "";
	width: 1px;
	height: 2rem;
	background: #fff;
	position: absolute;
	top: 100%;
	left: 50%;
}

.card-wrap {
	margin-top: 5vh;
	display: grid;
	grid-gap: 2rem;
	grid-auto-flow: row;
	grid-template-columns: 250px;
}

.card__image {
	display: block;
	border-radius: 7px;
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	filter: contrast(0.8);
}

.video-placeholder{
	display:block;
	background:#fff;
	width:60%;
	height:auto;
	aspect-ratio: 9/16;
	border-radius:10px;
	margin: 0 auto 0;
}

.credits {
	font-size: 1.5rem;
	text-align: center;
	margin: 50vh auto 0;
	padding-bottom: 50vh;
}

.content {
	position: relative;
	margin-bottom: 20vh;
}

.content--spacing {
	margin-bottom: 100vh;
}

.content__title {
	position: absolute;
	height: 50vh;
	width: 100vw;
	top: 50%;
	left: 50%;
	margin: -50vh 0 0 -50vw;
	padding: 0 10vw;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 300;
	font-size: clamp(1.5rem, 15vw, 6.5rem);
	font-family: 'Noto Sans';
	/* text-shadow: 0px 0px 100px black !important; */
	background: linear-gradient(rgba(0, 0, 0, 0), /* последний параметр регулирует прозрачность */
	 rgba(0, 0, 0, 0.45),
	 rgba(0, 0, 0, 0.45),
	  rgba(0, 0, 0, 0));
}

.content__title--top {
	align-items: start;
}

.content__title--bottom {
	align-items: end;
}

.content__title--left {
	justify-items: start;
	text-align: left;
}

.content__title--right {
	/* justify-items: end; */
	text-align: center;
}

.content__title__child__one {
	font-family: 'Noto Sans';
	font-size: 80px;
	margin-bottom: 120px;
}
@media (max-width: 520px)  {
	.content__title__child__one {
		font-family: 'Noto Sans';
		font-size: 44px;
		margin-bottom: 120px;
	}
}

.content__title__shadow__one {
	font-family: 'Noto Sans';
}

.content__title__shadow__child__one {
	font-family: 'Noto Sans';
}

.content__title__child__two {
	font-family: 'Noto Sans';
}

.content__title--left__child__center {
	/* margin-left: 50px !important; */
	display: block !important;
    width: 100% !important;
	line-height: 1 !important;
	text-align: center !important;
}

.outro {
	display: grid;
	place-items: center;
	margin: 40vh 0;
}

.grid {
	display: grid;
	place-items: center;
	padding: 2rem;
	width: 100%;
	perspective: var(--perspective);
}

.grid-wrap {
	height: var(--grid-height);
	width: var(--grid-width);
	display: grid;
	grid-template-columns: repeat(var(--grid-columns),1fr);
	gap: var(--grid-gap);
	transform-style: preserve-3d;
}

.grid__item {
	aspect-ratio: var(--grid-item-ratio);
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	display: grid;
	place-items: center;
}

.grid__item-inner {
	/* opacity: 0.9; */
	position: relative;
	width: calc(1 / var(--grid-inner-scale) * 100%);
	height: calc(1 / var(--grid-inner-scale) * 100%);
	background-size: cover;
	background-position: 50% 50%;
}

@media screen and (min-width: 1000px) {
	.frame {
		grid-template-columns: auto auto auto 1fr;
		grid-template-areas: 'title prev ... sponsor';
		align-content: space-between;
		justify-items: start;
		grid-gap: 2rem;
	}
	.frame__demos {
		justify-self: end;
	}

	.content--outro {
		height: 100vh;
		justify-content: center;
	}

	.card-wrap {
		grid-template-columns: repeat(3,250px);
	}

	body #cdawrap {
	    justify-self: end;
	}
	
}

.slider-container{
	background: rgb(2555,255,255);
}

.slider-container li{
	text-align:center;
	padding: 20px;
}

/*@media screen and (max-device-width: 768px){
	.mobile-grid{
		--grid-width:260% !important;
		--grid-inner-scale:0.5 !important;
	}
}*/

.faces{
	display:flex;
	flex-direction: row;
	flex-wrap:wrap;
	justify-content: center;
}

.face1 {
	margin-right: 15px;
	margin-left: 15px;
}

.face2{
	margin-right: 15px;
	margin-left: 15px;
}

.face1__img1 {
	width: 240px;
	height: 299px;
}

.dropdown {
	width: 60%;
	max-width: 60%;
	margin: 10px auto;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
@media (max-width: 520px)  {
	.dropdown {
		width: 80%;
		max-width: 80%;
		margin: 10px auto;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
}

.dropdown-header {
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 50px; */
	background: #000;
	cursor: pointer;
	border: 2px solid #fff;
	border-radius: 50px;
	padding: 0 20px;
	box-sizing: border-box;
}
@media (max-width: 520px)  {
	.dropdown-header {
		/* max-height: 200px;
        height: 100px; */
		background: #000;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		padding: 5px 5px 5px 20px;
		/* border-radius: 20px; */
	  }
}

.dropdown.open .dropdown-header {
	border-radius: 25px 25px 0 0;
}

.dropdown-header .question__faq {
	font-size: 22px;
	font-family: 'Noto Sans';
	font-weight: bold;
	flex-grow: 1;
	text-align: left;
	margin: 0;
}
@media (max-width: 520px)  {
	.dropdown-header .question__faq {
		font-size: 18px;
		font-family: 'Noto Sans';
		font-weight: bold;
		flex-grow: 1;
		white-space: normal;
		word-wrap: break-word;
		max-width: calc(100% - 30px);
	  }
}
  
.dropdown-header .toggle-btn {
	font-size: 28px;
	font-family: 'Noto Sans';
	border: none;
	background: transparent;
	cursor: pointer;
	outline: none;
	margin-left: 10px;
	transition: transform 0.7s ease;
	display: inline-block;
}
@media (max-width: 520px)  {
	.dropdown-header .toggle-btn {
		/* width: 40px; */
		height: 40px;
		padding-top: 0%;
		margin-left: auto;
	  }
}

.dropdown.open .toggle-btn {
	transform: rotate(-180deg);
}
@media (max-width: 520px)  {
	.dropdown.open .toggle-btn {
		transform: translateX(10%) translateY(10%) rotate(-180deg);
	}
}

.svg__size__dropdown {
	width: 25px;
	height: 25px;
}
@media (max-width: 520px)  {
	.svg__size__dropdown {
		width: 16px;
		height: 16px;
	}
}

.dropdown-content {
	text-align: center;
	background: #000;
	border: 2px solid #fff;
	border-top: none;
	border-radius: 0 0 20px 20px;
	padding: 15px 20px;
	color: #a3a3a3;
	display: none;
}

.dropdown.open .dropdown-content {
	display: block;
}

.answer__item {
	font-size: 18px;
	font-family: 'Noto Sans';
	text-align: left;
}

.title_faq {
	font-size: 30px;
	font-family: 'Noto Sans';
	text-align: center;
	margin-bottom: 20px;
	margin-top: 40px;
}
@media (max-width: 520px)  {
	.title_faq {
		font-size: 30px;
		font-family: 'Noto Sans';
		text-align: center;
		margin-bottom: 20px;
		margin-top: 40px;
	}
}

.face-desc{
	font-family: 'Noto Sans' !important;
	font-weight: normal;
}

.socials{
	font-family: 'Noto Sans' !important;
	display:flex;
	flex-direction: row;
	justify-content: center;
}

.wa{
	background:url("/img/wa.png");
	background-size:cover;
	width:48px;
	height:48px;
}
.tg{
	background:url("/img/tg.png");
	background-size:cover;
	width:48px;
	height:48px;
}

.messenger-icon{
	margin-left:30px;
	margin-right:30px;
}

.face img{
	border-radius:8px;
}

.face{
	width:240px;
}

.question{
	text-align:center;
	font-size:24px;
	font-family: 'Noto Sans' !important;
}

.footer {
	padding:0 !important;
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.socials .social-icon__item{
	margin-left:30px;
	margin-right:30px;
}

.social-icon,
.menu {
	padding:0 !important;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
	padding:0 !important;
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 10px 5px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
  font-family: 'Noto Sans';
}

.break{
	flex-basis:100%;
}

.menu__link:hover {
  opacity: 1;
}

.header{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	margin:20px;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("/img/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@media screen and (min-device-width:1000px){



	.content__title{
		margin-bottom:10px !important;
	}

	

	.fourth-desktop{
		margin-top:-100vh;
	}

	

	/*.intro{
		margin-bottom:20px;
	}*/

}

@media (max-width:768px)  {
	.intro{
		margin-bottom:30vh;
	}
	.mobile-label{
		line-height:40px;
	}
	.fourth-desktop{
		margin-top:-400px;
	}
	.label-search{
		line-height:40px;
	}
	.label-live{
		line-height:40px;
	}
	.label-brands{
		line-height:40px;
	}
	.face{
		margin-top:50px;
		/* margin-bottom:50px; */
	}
}

.card__title{
	font-weight:300;
}

.button-intro{
	margin-top:10px;
	font-family: 'Noto Sans';
	width: 300px;
    height: 60px;
	font-size: 20px;
}
@media (max-width: 520px)  {
	.button-intro{
		margin-top:30px;
		font-family: 'Noto Sans';
		width: 280px;
		height: 65px;
		font-size: 16px;
	}
}

.intro__title-sub-3 {
	display: block;
	font-size: 47px;
	font-family: 'Noto Sans';
}
@media (max-width: 520px)  {
	.intro__title-sub-3 {
		display: none;
	}
}

h3{
	font-size: clamp(1.5rem,4vw,8rem) !important; 
}

.card__title{
	font-size: clamp(1.5rem,2vw,8rem) !important; 
}

.face-desc{
	font-size: clamp(1rem,1vw,7rem) !important;
}

.face-quote{
	font-size: clamp(1.5rem,1.5vw,7.5rem) !important
}

.face-desc__two {
	font-family: 'Noto Sans' !important;
	font-weight: normal;
	font-size: clamp(1.5rem,1.5vw,7.5rem) !important;

}
@media (max-width: 520px)  {
	.face-desc__two {
		font-family: 'Noto Sans' !important;
		font-weight: normal;
		font-size: clamp(1.5rem,1.5vw,7.5rem) !important;
		position: absolute;
		left: 28px;
	}
}

.face-desc__one {
	font-family: 'Noto Sans' !important;
	font-weight: normal;
	font-size: clamp(1.5rem,1.5vw,7.5rem) !important;
}
@media (max-width: 520px)  {
	.face-desc__one {
		font-family: 'Noto Sans' !important;
		font-weight: normal;
		font-size: clamp(1.5rem,1.5vw,7.5rem) !important;
		position: absolute;
		left: 48px;
	}
}

.face__discription {
	display: block !important;
    text-align: center !important;
	font-family: 'Noto Sans';
	display: flex;
    flex-direction: column;
	line-height: 20px;
	font-size: 17px;
	margin-bottom: 46px;
	text-align: left;
	font-style: italic;
}
@media (max-width: 520px)  {
	.face__discription {
		font-family: 'Noto Sans';
		display: flex;
		align-items: center;
		flex-direction: column;
		line-height: 20px;
		font-size: 17px;
		margin-bottom: 46px;
		text-align: center;
		font-style: italic;
	}
}

.face__discription__two {
	display: block !important;
    text-align: center !important;
	font-family: 'Noto Sans';
	display: flex;
	align-items: center;
    flex-direction: column;
	line-height: 20px;
	font-size: 17px;
	margin-bottom: 46px;
	text-align: left;
	font-style: italic;
}
@media (max-width: 520px)  {
	.face__discription__two {
		font-family: 'Noto Sans';
		display: flex;
		align-items: center;
		flex-direction: column;
		line-height: 20px;
		font-size: 17px;
		margin-bottom: 46px;
		text-align: center;
		font-style: italic;
	}
}

.face-label{
	display: block;
	text-align: center;
	/* margin-top: 10px; */
	/* margin-left: 50%; */
	font-family: 'Noto Sans';
	font-size: 17px;
}

.face-label__two {
	display: block;
	text-align: center;
	/* margin-top: 10px; */
	/* margin-left: 50%; */
	font-family: 'Noto Sans';
	font-size: 17px;
}

.button__footer_info {
	font-size: 15px;
	font-family: 'Noto Sans';
}

.button__FAQ {
	margin-top: 50px !important;
	display: block;
	margin: 0 auto;
	font-size: 15px;
	font-family: 'Noto Sans';
}

.buttons-end{
	margin-top:10px;
	text-align:center;
}

.buttons-end button{
	margin: 10vh 10px !important;
}

.content-buttons{
	margin-bottom:9vh;
}

.question{
	font-size: 24px !important; 
	font-weight:300;
	margin-top:100px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 680px;
    height: 1000px;
    max-height: 1000px;
    overflow: hidden;
}

.media-wrapper {
    position: relative;
    width: 77%;
	aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.media-wrapper video,
.media-wrapper .poster {
    width: 100%;
	object-fit: contain;
    display: block;
    height: 100%;
    overflow: auto;
}

.poster {
    position: absolute;
    top: 0;
    left: 0;
}

.poster.hidden {
    display: none;
}
.poster:hover {
    cursor: pointer;
}

@media (max-width: 1880px) {
	.video-container {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 90%;
		max-width: 680px;
		height: 866px;
		max-height: 791px;
		overflow: hidden;
		margin-top: -100px;
	}
	.media-wrapper {
		position: relative;
		width: 47%;
		aspect-ratio: 16 / 9;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 74%;
	}
}
@media (max-width: 520px) {
	.video-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 99%;
        max-width: 688px;
        height: 880px;
        max-height: 795px;
        overflow: hidden;
        margin-top: -167px;
	}
	.media-wrapper {
		position: relative;
        width: 74%;
        aspect-ratio: 16 / 9;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 62%;
	}
}

#provider {
    display: none !important;
}

.email__block__sending {
	margin-top: 200px;
}
@media (max-width: 520px) {
	.email__block__sending {
		margin-top: -75px;
	}
}