* {
  padding: 0;
  margin: 0;
	box-sizing: border-box;
}
html {
	-webkit-tap-highlight-color: transparent;
}
body{
  font-family: 'Roboto', sans-serif;
}
input{
	width: 100%;
	font-size: 13px;
	font-weight: 200;
	padding: 7px;
	border: 1px solid #A8A8A8;
	border-radius: 4px;
	height: 38px;
}
button{
	border: none;
	background: none;
	cursor: pointer;
}
.solid-button{
	background: #8B42D8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	padding: 7px 21px;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #FFF;
}
.solid-button:hover{
	background:#7347a1
}
.solid-white-button{
	background: #FFF;
	color: #8B42D8;
	width: 100%;
}
.input{
	background: #FFF;
	border: 1px solid #827CCB;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	font-weight: 300;
	font-size: 18px;
	color: #827CCB;
	height: 63px;
	padding: 14px;
}
.input::placeholder{
	font-weight: 100;
	font-size: 18px;
	color: #A3A1D5;
}
.textarea-input{
	resize: none;
	height: unset;
}
/* Header */
.header-container{
  background: #FFF;
  padding: 28px 41px;
  position: sticky;
  top: 0;
	z-index: 10000;
}
.header-content{
	display:flex;
  justify-content: space-between;
  align-items: center;
	max-width: 1100px;
	padding: 0 21px;
	margin: 0 auto;
}
.header-logo{
  height: 20px;
}
/* Header End */
/* Presentacion section */
.presentation-section-container{
	position: relative;
	height: 100vh;
	display:flex;
	flex-direction: column;
	justify-content: space-around;
}
.presentacion-section-background-container{
	position: absolute;
	height: 100vh;
	width: 100vw;
	z-index: -1;
}
.presentacion-section-background-container > img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.presentacion-section-title{
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 75px;
	color: #FFF;
	max-width: 50%;
	display:flex;
	flex-wrap: wrap;
	column-gap: 14px;
	margin-left: 5%;
}
.presentacion-section-writing-title{
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 75px;
	color: #FFF;
	max-width: 50%;
	margin-left: 5%;
	height: 264px;
}
.presentacion-section-writing-title > span{
	position:relative;
}
.presentacion-section-writing-title > span::after{
	content:'';
	width: 40px;
	display:block;
	animation: caret 1s steps(1) infinite;
	border-bottom: .05em solid;
	position:absolute;
	left: 0;
	bottom: 15px;
	transform: translateX(15%);
	-webkit-transform: translateX(15%);
	-moz-transform: translateX(15%);
	-ms-transform: translateX(15%);
	-o-transform: translateX(15%);
}
@keyframes caret {
	50% {
		border-color: transparent;
	}
}
@keyframes fall-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
	}
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animación de salida (cayendo) */
@keyframes fall-out {
  to {
    transform: translateY(100%);
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}
}
.presentacion-section-word-container{
	overflow:hidden;
}
.presentacion-section-word{
	display: inline-block;
  transform: translateY(-100%);
  opacity: 0;
  animation: fall-in 0.5s ease forwards, fall-out 0.5s ease forwards 3s;
}
.presentacion-section-word-container:nth-child(1) > .presentacion-section-word { animation-delay: 0s, 3.5s; }
.presentacion-section-word-container:nth-child(2) > .presentacion-section-word { animation-delay: 0.2s, 3.7s; }
.presentacion-section-word-container:nth-child(3) > .presentacion-section-word { animation-delay: 0.4s, 3.9s; }
.presentacion-section-word-container:nth-child(4) > .presentacion-section-word { animation-delay: 0.6s, 4.1s; }
.presentacion-section-word-container:nth-child(5) > .presentacion-section-word { animation-delay: 0.8s, 4.3s; }
.presentacion-section-word-container:nth-child(6) > .presentacion-section-word { animation-delay: 1s, 4.5s; }
.presentacion-section-word-container:nth-child(7) > .presentacion-section-word { animation-delay: 1.2s, 4.7s; }
.presentacion-section-word-container:nth-child(8) > .presentacion-section-word { animation-delay: 1.4s, 4.9s; }
.presentacion-section-caption-container{
	margin-left: 5%;
	position:relative;
}
.presentacion-section-priuser-logo-container{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	height: 140%;
}
.presentacion-section-priuser-logo-container > svg{
	height: 200%;
	transform: translate(-30%, -30%);
	-webkit-transform: translate(-30%, -30%);
	-moz-transform: translate(-30%, -30%);
	-ms-transform: translate(-30%, -30%);
	-o-transform: translate(-30%, -30%);
	opacity: 10%;
}
.presentacion-section-caption{
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 27px;
	color: #C9A7ED;
}
.presentacion-section-mobile-footer-container{
	display:none;
}
/* Presentacion section end*/
/* Description section */
.description-section-container{
	position:relative;
	display:flex;
	flex-direction: column;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	border-left: 2px dashed #AB9BF7;
	padding: 70px 0;
	gap: 140px;
}
.description-section-item-container{
	max-width: 720px;
	display:flex;
	flex-direction: column;
	gap: 40px;
}
.description-section-priuser-logo-container{
	position:absolute;
}
.description-section-item-title{
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 70px;
	color: #191919;
}
.description-section-item-caption{
	font-family: 'Roboto', sans-serif;
	font-weight: 200;
	font-size: 21px;
	color: #575454;
}
.description-section-priuser-logo-container{
	width: 70px;
	height: 70px;
	background: #8B42D8;
	position:absolute;
	left: 0;
	display:flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.description-section-priuser-logo-container > svg{
	width: 30px;
	height: 30px;
}
/* Description section end */
/* Separator section */
.separator-section-container{
	background: #8B42D8;
	padding: 80px 0;
}
.separator-section-caption{
	margin: 0 auto;
	max-width: 940px;
	font-weight: 200;
	text-align: center;
	font-size: 36px;
	font-weight: 300;
	color: #F3ECFB;
}
/* Separator section end */
/* Videos section */
.videos-sections-content{
	width: 100%;
	padding: 100px 21px;
	max-width: 1100px;
	margin: 0 auto;
	display:flex;
	flex-direction: column;
	gap: 28px;
}
.videos-section-header{
	display:flex;
	flex-direction: column;
	gap: 28px;
}
.videos-section-header-title{
	font-size: 38px;
	color: #575454;
	font-weight: 500;
}
.videos-section-header-title > span{
	font-size: 46px;
	color: #8B42D8;
}
.videos-section-header-items-container{
	display:flex;
	gap: 14px;
}
.videos-section-header-item-container{
	flex: 1 1 auto;
	background: #DEDEF5;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	padding: 21px;
	display:flex;
	align-items: center;
	gap: 21px;
}
.videos-section-header-item-caption{
	font-size: 16px;
	font-weight: 400;
	color: #222121;
}
.videos-section-header-item-icon-container{
	background: #8B42D8;
	width: 48px;
	height: 48px;
	display:flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}
.videos-section-header-item-icon-container > svg{
	width: 15px;
	height: 11px;
}
.videos-section-body{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 21px;
}
.videos-section-body-item{
	background: #FFF;
	display:flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border: 1px solid #D6D6D6;
	position:relative;
	overflow: hidden;
}
.videos-section-body-item-header{
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding: 28px 28px 0;
	height: 151px;
	z-index: 10;
}
.videos-section-body-item-header-title{
	font-size: 22px;
	font-weight: 600;
	color: #531D8D;
	max-width: 232px;
	gap: 7px;
}
.videos-section-body-item-body{
	font-size:  22px;
	font-weight: 300;
	color: #575454;
	padding: 0 28px;
	border-bottom: 1px solid #E5E5E5;
	z-index: 10;
}
.videos-section-body-item-footer{
	padding: 20px 28px 28px;
	display:flex;
	justify-content: end;
	z-index: 1000;
}
.videos-section-body-item-footer > .solid-button{
	height: 45px;
	width: 200px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-ms-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
}
.videos-section-item-hover-glass{
	width: 0%;
	height: 0%;
	background: #22212180;
	z-index: 100;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-ms-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
}
.videos-section-body-item:hover{
	cursor: pointer;
}
.videos-section-body-item:hover > .videos-section-item-hover-glass{
	width: 100%;
	height: 100%;
}
.videos-section-body-item:hover .solid-button{
	width: 100%;
	text-align: center;
}
.videos-section-item-hover-play{
	width: 0px;
	height: 0px;
	opacity: 0%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-ms-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	z-index: 100;
}
.videos-section-item-hover-play > svg{
	width: 100%;
	height: 100%;
	position:absolute;
	z-index: 1;
}
.videos-section-body-item:hover > .videos-section-item-hover-play{
	width: 150px;
	height: 105px;
	opacity: 100%;
}
.videos-section-body-item:hover > .videos-section-item-hover-play::after{
	content: '';
	width: 50%;
	height: 50%;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	background:#FFF;  
}
.videos-section-item-video-container{
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display:none;
}
.video-section-item-video-supercontainer{
	position:absolute;
}
/* Videos section end */
/* Brands section */
.brands-section-container{
	background: #8B42D8;
	padding: 100px 0;
	display:flex;
	justify-content: center;
}
.brands-section-content{
	display:flex;
	flex-direction: column;
	align-items: center;
	max-width: 1100px;
	width: 100%;
	gap: 60px;
}
.brands-section-label{
	font-size: 40px;
	text-align: center;
	color: #FFF;
	font-weight: 500;
}
.brands-section-carrousel{
	width: 100%;
	overflow: hidden;
	position:relative;
}
@keyframes slide {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
  to {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
}
.brands-section-carrousel-track{
	width: fit-content;
	display:flex;
	gap: 100px;
	align-items: center;
	animation: slide 40s linear infinite;
	transform: translateX(0);
	-webkit-animation: slide 40s linear infinite;
}
.brands-section-carrousel-track > svg:nth-child(1){
	margin-left: 100px;
} 
.brands-section-carrousel-track > svg{
	width: 100px;
}
/* Brands section end */
/* Reviews section */
.reviews-section-carrousel-arrow{
	cursor:pointer;
}
.reviews-section-content{
	max-width: 1100px;
	margin:0 auto;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.reviews-section-title{
	font-size: 45px;
	font-weight: 500;
	color: #575454
}
.reviews-section-title-container{
	display:flex;
	gap: 21px;
	justify-content: center;
	align-items: center;
}
.reviews-section-title-quote > svg{
	width: 50px;
}
.mirrored{
	transform: scale(-1,1);
	-webkit-transform: scale(-1,1);
	-moz-transform: scale(-1,1);
	-ms-transform: scale(-1,1);
	-o-transform: scale(-1,1);
}
.review-section-item-container{
	padding: 21px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border: 1px solid #DEDEF5;
	background: #F7F7FF;
	display:flex;
	gap: 14px;
	max-width: 550px;
	flex: 1 0 auto;
	margin-right: 14px;
}
.review-section-item-left-container{
	display:flex;
	flex-direction: column;
	gap: 3px;
	align-items: center;
}
.review-section-item-image-container{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow:hidden;
}
.review-section-item-image-container > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.review-section-item-label{
	font-size: 17px;
	font-weight: 600;
	color: #8B42D8;
}
.review-section-item-right-container{
	display:flex;
	flex-direction: column;
	gap: 3px;
	justify-content: center;
}
.review-section-item-title{
	font-size: 14px;
	font-weight: 200;
	color: #8B42D8;
}
.review-section-item-caption{
	font-style: italic;
	font-size: 14px;
	font-weight: 200;
	color: #222121;
}
.reviews-section-carrousel{
	display:flex;
	align-items: center;
	width: 100%;
	gap: 14px;
}
.reviews-section-carrousel-track{
	display:flex;
	flex: 1 0 auto;
	overflow: hidden;
	max-width: 100%;
}

/* Reviews section end */
/* Form section */
.form-section-container{
	background: #F7F7FF;
}
.form-section-content{
	max-width: 1100px;
	margin: 0 auto;
	padding: 100px 0;
	display:flex;
	gap: 21px;
}
.form-section-left-section{
	display:flex;
	flex-direction: column;
	gap: 21px;
}
.form-section-title{
	font-weight: 600;
	font-size: 54px;
	color: #531D8D;
}
.form-section-caption{
	font-weight: 200;
	font-size: 25px;
	color: #552F7C;
}
.form-section-right-section{
	display:flex;
	flex-direction: column;
	gap: 14px;
	flex: 1 0 auto;
	width: 50%;
}
.form-section-right-section > .solid-button{
	height: 50px;
}
/* Form section end */
/* Footer */
.footer-container{
	background: #8B42D8;
}
.footer-title{
	color: #E8DAF7;
	font-size: 25px;
	font-weight: 600;
}
.footer-item-caption{
	color: #E8DAF7;
	font-size: 14px;
	font-weight: 400;
}
.footer-item-caption:hover{
	color: #FFF;
}
.footer-item-container{
	display:flex;
	gap: 14px;
	align-items: center;
}
.footer-top-content{
	display:flex;
	justify-content: space-between;
}
.footer-content{
	max-width: 1100px;
	margin: 0 auto;
	padding: 35px 0;
	display:flex;
	flex-direction: column;
	gap: 14px;
}
.footer-items-container{
	display:flex;
	flex-direction: column;
	gap: 14px;
}
.footer-right-content,
.footer-left-content{
	display:flex;
	flex-direction: column;
	gap: 28px;
}
.footer-bottom-content{
	text-align: center;
	color: #E8DAF7;
	font-size: 13px;
	font-weight: 100;
}
/* Footer End */
/* Animations classes*/
@keyframes logo-item-slide-down{
	0%{top: 70px}
	100%{top: 485px}
}
.logo-item-slide{
	transition: top ease-in-out 2s;
	-webkit-transition: top ease-in-out 2s;
	-moz-transition: top ease-in-out 2s;
	-ms-transition: top ease-in-out 2s;
	-o-transition: top ease-in-out 2s;
	animation: 2s logo-item-slide-down ;
	-webkit-animation: 2s logo-item-slide-down ;
}
@keyframes opacity-appears{
	0%{opacity: 0%}
	100%{opacity: 100%}
}
.opacity-appears{
	transition: opacity ease-in-out 2s;
	-webkit-transition: opacity ease-in-out 2s;
	-moz-transition: opacity ease-in-out 2s;
	-ms-transition: opacity ease-in-out 2s;
	-o-transition: opacity ease-in-out 2s;
	animation: 2s opacity-appears;
	-webkit-animation: 2s opacity-appears;
}
@keyframes opacity-appears-delay{
	0%{opacity: 0%}
	50%{opacity: 0%}
	100%{opacity: 100%}
}
.opacity-appears-delay{
	transition: opacity ease-in-out 4s;
	-webkit-transition: opacity ease-in-out 4s;
	-moz-transition: opacity ease-in-out 4s;
	-ms-transition: opacity ease-in-out 4s;
	-o-transition: opacity ease-in-out 4s;
	animation: 2s opacity-appears-delay;
	-webkit-animation: 2s opacity-appears-delay;
}
@keyframes simple-dropdown{
	0%{ opacity: 0%; transform: translateY(-20%); -webkit-transform: translateY(-20%); -moz-transform: translateY(-20%); -ms-transform: translateY(-20%); -o-transform: translateY(-20%); }
	100%{ opacity:100%; transform: translateY(0%); -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); }
}
.simple-dropdown{
	transition: all ease-in-out 1s;
	-webkit-transition: all ease-in-out 1s;
	-moz-transition: all ease-in-out 1s;
	-ms-transition: all ease-in-out 1s;
	-o-transition: all ease-in-out 1s;
	animation: 1s simple-dropdown;
	-webkit-animation: 1s simple-dropdown;
}
@keyframes large-dropdown{
	0%{ opacity: 0%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); }
	100%{ opacity:100%; transform: translateY(0%); -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); }
}
.large-dropdown{
	transition: all ease-in-out 1s;
	-webkit-transition: all ease-in-out 1s;
	-moz-transition: all ease-in-out 1s;
	-ms-transition: all ease-in-out 1s;
	-o-transition: all ease-in-out 1s;
	animation: 1s large-dropdown;
	-webkit-animation: 1s large-dropdown;
}
@keyframes simple-dropup{
	0%{ opacity: 0%; transform: translateY(20%); -webkit-transform: translateY(20%); -moz-transform: translateY(20%); -ms-transform: translateY(20%); -o-transform: translateY(20%); }
	100%{ opacity:100%; transform: translateY(0%); -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); }
}
.simple-dropup{
	transition: all ease-in-out 1s;
	-webkit-transition: all ease-in-out 1s;
	-moz-transition: all ease-in-out 1s;
	-ms-transition: all ease-in-out 1s;
	-o-transition: all ease-in-out 1s;
	animation: 1s simple-dropup;
	-webkit-animation: 1s simple-dropup;
}
@keyframes large-dropup{
	0%{ opacity: 0%; transform: translateY(50%); -webkit-transform: translateY(50%); -moz-transform: translateY(50%); -ms-transform: translateY(50%); -o-transform: translateY(50%); }
	100%{ opacity:100%; transform: translateY(0%); -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); }
}
.large-dropup{
	transition: all ease-in-out 1s;
	-webkit-transition: all ease-in-out 1s;
	-moz-transition: all ease-in-out 1s;
	-ms-transition: all ease-in-out 1s;
	-o-transition: all ease-in-out 1s;
	animation: 1s large-dropup;
	-webkit-animation: 1s large-dropup;
}
/* Animations classes end*/

/* Responsive */
@media (hover: none), (max-width: 630px) {
	.input{
		height: 55px;
	}
	.textarea-input{
		height: unset;
	}
	/* Header */
	.header-right-container{
		display:none;
	}
	.header-logo{
		height: 16px;
	}
	/* Header end*/
	/* Presentation section */
	.presentacion-section-writing-title,
	.presentacion-section-title{
		font-size: 42px;
		max-width: 75%;
		height:198px;
	}
	.presentacion-section-caption{
		font-size: 18px;
	}
	.presentacion-section-priuser-logo-container{
		height: 125%;
		left: 48px;
	}
	.presentacion-section-mobile-footer-container{
		display:block;
		margin: 0 5%;
	}
	.presentacion-section-writing-title > span::after{
		width: 20px;
		bottom: 10px;
	}
	/* Presentation section end */
	/* Description container */
	.description-section-container{
		border-left: unset;
		padding: 70px 21px;
		gap: 80px;
	}
	.description-section-priuser-logo-container{
		display:none;
	}
	.description-section-item-title{
		font-size: 35px;
	}
	.description-section-item-caption{
		font-size: 18px;
	}
	.description-section-item-container{
		gap: 14px;
	}
	/* Description container end*/
	/* Separator section */
	.separator-section-caption{
		font-size: 28px;
	}
	/* Separator section end */
	/* Videos section */
	.videos-section-body-item-header{
		height: unset;
	}
	.videos-section-body-item-body{
		font-size: 20px;
	}
	.videos-section-header-items-container{
		flex-direction: column;
	}
	.videos-section-body{
		display:flex;
		flex-direction: column;
	}
	.videos-section-body-item-footer{
		display:none;
	}
	.videos-section-body-item-header{
		gap: 7px;
	}
	.videos-section-body-item-header-icon > svg{
		width: 100%;
		height: 100%;
	}
	@keyframes opacity-offset-delay{
		0%{opacity: 1}
		99%{opacity: 1}
		100%{opacity: 0}
	}
	.videos-section-item-video-container{
		display:block;
		position:unset;
		margin: 0 21px 21px;
		height: fit-content;
		border-radius: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-ms-border-radius: 8px;
		-o-border-radius: 8px;
		width: fit-content;
		overflow: hidden;
		animation: forwards 1.2s opacity-offset-delay;
		-webkit-animation: forwards 1.2s opacity-offset-delay;
}
	.videos-section-body-item.show-video-animation .videos-section-item-video-container{
		opacity: 1;
		animation:none;
		-webkit-animation:none;
}
	.video-section-item-video-supercontainer{
		position:unset;
		max-height: 1px;
		transition: max-height ease-in-out 1.2s;
		-webkit-transition: max-height ease-in-out 1.2s;
		-moz-transition: max-height ease-in-out 1.2s;
		-ms-transition: max-height ease-in-out 1.2s;
		-o-transition: max-height ease-in-out 1.2s;
		overflow: hidden;
}
	.videos-section-body-item.show-video-animation > .video-section-item-video-supercontainer{
		max-height: 600px;
	}
	.videos-section-body-item.show-video-animation > .videos-section-body-item-footer{
		display:none;
	}
	.videos-section-body-item:hover > .videos-section-item-hover-glass{
		width: 0%;
		height: 0%;
	}
	.videos-section-body-item > .videos-section-item-hover-play{
		display:none;
	}
	.videos-section-item-hover-play{
		width:90px;
		height: 90px;
		opacity: 100%;
	}
	/* Videos section end */
	/* Brands  */
	.brands-section-label{
		font-size: 26px;
	}
	.brands-section-carrousel-track > svg{
		width: 75px;
	}
	.brands-section-carrousel-track{
		gap: 50px;
	}
	.bradns-section-carrousel-track > svg:nth-child(1){
		margin-left: 50px;
	}
	/* Brands end */
	/* Separator section end */
	/* Reviews section */
	.reviews-section-title-container{
		gap: 14px;
	}
	.reviews-section-content{
		padding: 100px 21px;
	}
	.reviews-section-carrousel-arrow{
		display:none;
	}
	.reviews-section-title{
		font-size: 24px;
		text-align: center;
	}
	.reviews-section-title-quote > svg{
		height: 44px;
	}
	.review-section-item-container{
		width: calc(100vw - 42px);
	}
	.reviews-section-carrousel-track{
		overflow: auto;
		-ms-overflow-style: none;  /* IE and Edge */
		scrollbar-width: none;  /* Firefox */
	}
	.reviews-section-carrousel-track::-webkit-scrollbar {
		display: none;
	}
	/* Reviews section end */
	/* Form section */
	.form-section-content{
		flex-direction: column;
		align-items: center;
		padding: 35px 21px;
	}
	.form-section-left-section{
		align-items: center;
	}
	.form-section-title{
		font-size: 37px;
	}
	.form-section-caption{
		font-size: 18px;
	}
	.form-section-right-section{
		width: 100%;
		gap: 21px;
	}
	/* Form section end */
	/* Footer section */
	.footer-top-content{
		flex-direction: column;
		gap: 63px;
		padding: 0 21px;
	}
	/* Footer section end */
	/* Animations */
	.large-dropdown,
	.opacity-appears-delay{
		transition: opacity ease-in-out 2s;
		-webkit-transition: opacity ease-in-out 2s;
		-moz-transition: opacity ease-in-out 2s;
		-ms-transition: opacity ease-in-out 2s;
		-o-transition: opacity ease-in-out 2s;
		animation: 2s opacity-appears;
		-webkit-animation: 2s opacity-appears;
	}
	.simple-dropup{
		animation: unset;
	}
	/* Animations end */
}
