html {
  scroll-behavior: smooth;
}
body {
	padding: 0px;
	margin: 0px;
	background-color: #fff;
	font-family: "Inter", sans-serif;
}
.header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 70px;
	mix-blend-mode: difference;
	z-index: 1000;      /* <– important */
}
.header img {
	display: inline-block;
	height: 44px;
	margin: 20px 0px 0px 0px;
}

.headernav {
	position: fixed;
	top: 20px;
	z-index: 1001;
	width: 50%;
    right: 0;
}
.headernav .grid {
	display: block;
	position: relative;
	text-align: right;
	max-width: 600px;
	margin: 0px;
}
@property --start {
  syntax: '<color>';
  inherits: false;
  initial-value: #ff7b00;
}

@property --end {
  syntax: '<color>';
  inherits: false;
  initial-value: #ff0000;
}
.headernav a {
	--start: #000;
  	--end: #000;
    display: inline-block;
    color: #fff;
    background: linear-gradient(86.3deg, var(--start), var(--end));
    padding: 5px 30px 5px 30px;
    border-radius: 1000px;
    height: 40px;
    line-height: 40px;
    mix-blend-mode: normal;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
	margin: 0px 0px 0px 10px;
	  transition: --start 0.5s, --end 0.5s;

	overflow: hidden;
}
img.hover {
	display: none;
}
.headernav a.open {
    background: linear-gradient(86.3deg, #fff 0%, #fff 100%);
	color: #000;
}
.headernav a img {
	width: 30px;
	height: 50px;
}
.headernav a.open img {
	width: 50px;
	height: 50px;
}
.headernav a:hover {
	/*background: linear-gradient(86.3deg, #CDA7FF 0%, #FFBCBD 100%);*/

	--start: #CDA7FF;
	--end: #FFBCBD;

}
.headernav a:last-child {
	width: 50px;
	height: 50px;
	padding: 0px 0px;
	text-align: center;
}
.headernav a .material-symbols-outlined {
	vertical-align: middle;
    font-size: 31px;
}

.menu {
	position: fixed;
	display: block;
	top: 2500px;
	left: 0px;
	z-index: 999;
	width: 100%;
	height: 100%;
	background-color: #2c2c2c;
	opacity: 0;
	transition: all 0.3s;
}
.menu.open {
	opacity: 1;
	display: block;
	top: 0;
}
.menu > div {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	gap: 1em;
}
.menu > div > div:first-child {
	flex: 0.8;
}
.menu > div > div:last-child {
	flex: 1.2;
}
.menu > div > div:first-child ul {
	list-style: none;
	margin: 130px 0px 60px 0px;
	font-family: Inter;
	font-weight: 500;
	font-size: 40px;
	line-height: 40px;
	letter-spacing: 0%;
	padding: 0px;
}
.menu > div > div:first-child ul li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 0px 0px;
	opacity: 0;
	transition: all 0.6s;
}
.menu > div > div:first-child ul li a.open {
	padding: 15px 0px;
	opacity: 1;
}
.menu > div > div:first-child ul li a.active, .menu > div > div:first-child ul li:hover a {
	color: #D896FF;
}


.menu > div > div:first-child > a {
	display: block;
	color: #fff;
	padding: 0px 0px;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0%;
	opacity: 0;
	transition: all 0.3s;
}
.menu > div > div:first-child > a.open {
	padding: 10px 0px;
	opacity: 1;
}
.menu > div > div:first-child a:hover {
	color: #D896FF;
}
.menu .menuoverlay {
	margin: 130px 0px 40px -6px;
	filter: blur(3px);
	background-size: cover;
    position: absolute;
    top: 0px;
	transition: all 0.6s;
	background-repeat: no-repeat;
	opacity: 0;
}
.menu .menuoverlay.open {


}

.menu .menuoverlay.show {
	opacity: 1;
	filter: blur(0px);
}
.menu .menuoverlay img {
	display: block;
	width: 100%;
}




.content > div {
	position: relative;
	z-index: 10;
	padding: 120px 0px;
	background-color: #fff;
}
.content > div.video {
	padding: 120px 0px 0px 0px;	
}

.content {
	margin: 70px 0px 0px 0px;
	padding: 60vh 0px 620px 0px;
}
.intro {
	background-color: #2C2C2C!important;
	position: fixed!important;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 3!important;
	height: 60vh;            /* or any height you want */
	overflow: hidden; 
}
.intro.hide {
	z-index: 1!important;
	opacity: 0!important;
}
.intro .grid {
    position: relative;
    height: 100%;
}
.hero-video {
	position: absolute;
	top: 40%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;       /* important: crop instead of stretch */
	z-index: 1;
}
.hero-content {
	position: absolute;
	bottom: 110px;
	right: 20px;
	z-index: 2;
	color: #fff;
	text-align: right;
	font-weight: 400;
	font-size: 60px;
	line-height: 74px;
	letter-spacing: 0%;
	transition: all 1s;
	filter: blur(0px);
}
.hero-content.fadeout {
	opacity: 0;
	filter: blur(3px);
}
.hero-content strong {
	font-weight: 700;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}

.grid {
	display: flex;
	gap: 2em;
	margin: 0px auto;
	max-width: 1200px;
}
.grid > div, .grid > li {
	flex: 1;
}

.btn {
	display: inline-block;
	padding: 12px 20px;
	border: 2px solid #000;
	color: #000;
	background-color: #fff;
	border-radius: 50px;
	font-size: 12px;
	line-height: 12px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0px;
	text-align: center;
	transition: all 0.3s;
}
.btn:hover {
	background-color: #000;
	color: #fff;
}
.video .grid div:first-child {
	font-weight: 500;
	font-size: 40px;
	line-height: 52px;
	letter-spacing: 0%;
}
.video .grid div:first-child p {
	margin: 50px 0px 20px 0px;
}
.video .grid div:first-child strong {
	font-weight: 700;
}

.video-wrapper {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 20px;
}
.video-element {
	display: block;
	width: 100%;
	height: auto;
}
.video-play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	font-size: 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0px;
	background: rgba(0,0,0,0.00);
	color: #fff;
}
.video-play-btn span {
	font-size: 98px;
}

.uploadform {
	display: block;
}
.uploading {
	display: none;
}
.uploading .progressbar, .uploaded .progressbar {
	position: relative;
	display: block;
	border-radius: 100px;
	width: 100%;
	height: 62px;
	background-color: #fff;
	overflow: hidden;
}
.uploading .progressbar em, .uploaded .progressbar em {
	position: absolute;
	z-index: 10;
	font-style: normal!important;
	top: 17px;
    left: 20px;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0%;
	color: #fff!important;
}
.uploading .progressbar em i, .uploaded .progressbar em i {
	display: inline-block;
	margin: -2px 20px 0px -2px!important;
	border-radius: 100px;
	width: 30px;
	vertical-align: middle;
	height: 30px;
	background-color: #565656;
}
.uploaded .progressbar em i {
	margin: -6px 20px 0px -2px!important;
}
.uploading .progressbar em i img, .uploaded .progressbar em i img {
    margin: 10px 10px;
    display: block!important;
    width: 11px !important;
    height: 11px !important;
}
.uploading .progressbar span, .uploaded .progressbar span {
	display: block;
	position: absolute;
	z-index: 5;
	width: 0px;
	background: linear-gradient(86.3deg, #000000 0%, #585858 100%);
	left: 0px;
	top: 0px;
	height: 100%;
	transition: all 0.2s;
}
.uploading .progressbar > div, .uploaded .progressbar > div {
	display: block;
	position: absolute;
	width: 62px;
	height: 62px;
	top: 0px;
	right: 0px;
	z-index: 100;
	border-radius: 100px;
	background: linear-gradient(90deg, #CFA8FC 0%, #FBBAC3 100%);
}
.uploading .progressbar > div.uploadedbtn, .uploaded .progressbar > div.uploadedbtn {
	background: none;
}
.uploading .progressbar > div > div, .uploaded .progressbar > div > div {
	display: block;
	background-color: #fff;
	color: #000;
	width: 36px;
	height: 36px;
	margin: 13px;
	text-align: center;
    line-height: 36px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 100px;
	letter-spacing: 0%;

}
.uploading .progressbar > div.uploadedbtn img, .uploaded .progressbar > div.uploadedbtn img {
	margin: 8px 0px 0px 0px;
}
.uploaded {
	display: none;
}
.uploaded .progressbar em {
	color: #000!important;
}
	
.uploaded .progressbar em div {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}
.uploaded .progressbar em div strong {
	font-size: 18px;
	line-height: 15px;
	font-weight: 700;
	margin: 0px 0px 4px 0px;
}
.uploaded .progressbar > div {
	background: linear-gradient(90deg, #CFA8FC 0%, #FBBAC3 100%)!important;
	transition: all 0.2s;
	cursor: pointer;
}
.uploaded .progressbar > div.show {
	width: 360px;
}
.uploaded .progressbar > div span {
    transition: all 0.2s;
    opacity: 0;
    position: relative;
    color: #fff;
    width: 270px;
    background: none;
    line-height: 62px;
    margin: 0px 0px 0px 24px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;

}
.uploaded .progressbar > div span.show {
	opacity: 1;
}
.uploaded .progressbar > div > div {
	position: absolute;
    top: 0px;
    right: 0px;}

.upload {
	padding: 120px 0px 120px 0px!important;
}
.upload button {
	float: right;
	background: linear-gradient(90deg, #CFA8FC 0%, #FBBAC3 100%);
	color: #fff;
	border: 0px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 20%;
	text-align: center;
	text-transform: uppercase;
	width: 205px;
	height: 62px;
	cursor: pointer;
	transition: all 0.2s;
	margin:2px 5px 0px 0px;
	padding: 2px 0px 0px 5px!important;
}
.upload button img {
	float: right;
	background-color: #000;
	border-radius: 100px;
	text-align: center;
	height: 36px;
	width: 36px;
	filter: invert(1); 
	padding: 5px;
	margin: -5px 16px 0px 0px;
}
#btnPolicySubmit {
	background: linear-gradient(86.3deg, #585858 0%, #000000 100%);
	width: 62px;
	height: 62px;
	border-radius: 100px;
}
#btnPolicySubmit img {
	background: #fff;
	width: 36px;
	height: 36px;
	border-radius: 100px;
	filter: invert(0)!important;
}
#btnPolicySubmit span {
	transition: all 0.2s;
	opacity: 0;
	font-weight: 800;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 20%;
	text-align: center;
}

@keyframes pulseSize {
  from {
    font-size: 22px;
  }
  to {
    font-size: 26px;
  }
}

#btnPolicySubmit {
	display: none;
}
.upload .field {
    background: linear-gradient(90deg, #CFA8FC 0%, #FBBAC3 100%);
    border-radius: 1000px;
    overflow: hidden;
    width: 328px;
    flex: none;
    height: 328px;
    margin: 0px auto;
	transition: all 1s;
}
.upload .field.show {
	width: 100%;
}
.upload .field .inner {
	position: relative;
	border-radius: 1000px;
	border: 15px solid #fff;
	background-color: #F8F6F3;
	margin: 80px;
	overflow: hidden;
	padding: 35px;
	opacity: 0;
	transition: all 0.7s;
	box-shadow: 0px 8px 10px 0px #0000001A;
}
.upload .field .inner:hover {
	background-color: #E9DEF6;
}
.upload .field .inner.show {
	opacity: 1;
}
.upload .field .inner img {
	width: 20px;
	height: 20px;
}
.upload .field .inner #btnPolicyUpload img {
	width: 25px;
	height: 25px;
}

.upload .field .inner label {
	width: calc(100% - 290px);
	float: left;
	font-weight: 500;
	font-size: 30px;
	line-height: 34px;
	letter-spacing: 0px;
	
}
.upload .field .inner input[type=file] {
    position: absolute;
    width: calc(100% - 390px);
    height: 100%;
	opacity: 0;
    left: 80px;
    top: 0px;
    z-index: 1000;
    display: block;
}

.grid.inViewPort {
	opacity: 0!important;
	transition: all 1s;
}
.grid.inViewPort.show {
	opacity: 1!important;
}

.steps {
	background-color: #F8F6F3!important;
}
.steps .stepspng {
	height: 152px;
	display: block;
	width: 286px;
}
.steps h2 {
	font-weight: 500;
	font-size: 42px;
	line-height: 52px;
	letter-spacing: 0%;
	padding: 0px 80px 0px 0px;
}
.steps h2 strong {
	font-weight: 700;
}
.steps ul {
	list-style: none;
	padding: 0px;
	gap: 1em;
	margin: 50px auto;
}
.steps ul li {
	position: relative;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	height: 130px;
}
.steps ul li strong {
	font-weight: 700;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: 0px;
	display: block;
	margin: 10px 0px;
}
.steps ul li p {
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0%;
	display: block;
	margin: 0px 0px 0px 0px;
}
.info {
	display: inline-block;
	border-radius: 100px;
	background-color: #F8F6F3;
	width: 20px;
	height: 20px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
}
.steps .info {
	position: absolute;
	bottom:15px;
	right: 15px;
}
.upload .info {
	float: left;
	background-color: #fff;
	width: 30px;
	height: 30px;
	margin: 20px 20px 0px 10px;
	text-align: center;
}
.info:hover {
	background-color: #000;
	color: #fff;
}
.info img {
	display: inline-block;
	height: 13px;margin: 4px 0px 0px 0px;
	transition: filter 0.3s ease;
}
.info:hover img {
	filter: invert(1); 
}
.steps .grid:last-child img {
	width: 100%;
}

.reviews {
	background-color: #2C2C2C!important;
}
.reviews .img {
	text-align: left;
	display: inline-block;
	vertical-align: middle;
	margin: 20px 0px 0px 0px;
}
.reviews .img img {
	vertical-align: middle;
	text-align: left;
	display: inline-block;
	opacity: 0;
	margin: 10px 0px 0px 0px;
	transition: all 1s;
	filter: blur(3px);
}
.reviews .img img.show {
	opacity: 1;
	filter: blur(0px);
}
.reviews .revs {
	overflow: hidden;
	position: relative;
}
.reviews .revs .bullets {
	text-align: right;
	position: absolute;
	z-index: 10000;
	list-style: none;
	margin: 0px;
	padding: 0px;
	bottom: 20px;
    right: 20px;
}
.reviews .revs .bullets li {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #424242;
	margin: 0px 10px 0px 0px;
	border-radius: 100px;
}
.reviews .revs .bullets li.active {
	background-color: #fff;
}
.reviews .revs .vp {
	background-color: #000;
	border-radius: 20px;
	padding: 30px;
	width: calc(100% - 60px);
	height: 170px;
	overflow: hidden;
	margin: 0px 00px;
}


.reviews .revs .vp ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transform: translateX(0);
  transition: transform 0.6s ease;
}
.reviews .revs .vp ul li {
	flex: 0 0 100%;
	color: #fff;
	overflow: hidden;
	margin: 0px 30px 0px 0px;
}
.reviews .revs .vp ul li p {
	font-weight: 500;
	font-style: Italic;
    font-size: 18px;
    line-height: 30px;
	letter-spacing: 0%;
	display: block;
	margin: 0px 0px 0px 0px;
	height: 120px;
    overflow: hidden;
}
.reviews .revs .vp ul li img {
	float: left;
	clear: left;
	overflow: hidden;
	border-radius: 100px;
	width: 55px;
	height: 55px;
	margin: 0px 20px 0px 0px;
}
.reviews .revs .vp ul li em {
	font-weight: 500;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 0%;
	float: left;
	width: 45%;
}


.faq .grid {
	max-width: 800px;
}
.faq h3 {
	font-weight: 500;
	font-size: 42px;
	line-height: 52px;
	letter-spacing: 0%;
	margin: 0px 0px 30px 0px;
}
.faq h3 strong {
	font-weight: 700;
}
.faq ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.faq ul li {
	border-bottom: 1px solid #000;
}
.faq ul.hidden li:nth-last-child(-n + 17) {
	display: none;
}
.faq ul.showall li {
	display: block!important;
}
.faq ul li:has(+ .open) {
	border: 0px;
}
.faq ul li.open {
	border: 0px;
}
.faq ul li span {
	display: block;
	font-weight: 600;
	font-size: 18px;
    line-height: 22px;
	letter-spacing: 0%;
	cursor: pointer;
	border-radius: 10px 10px 0px 0px;
    padding: 17px 20px;
}
.faq ul li.open span {
	background: linear-gradient(86.3deg, #CDA7FF 0%, #FFBCBD 100%);
	color: #fff;
}
.faq ul li img {
    height: 12px;
    margin: 0px 0px 1px 0px;
    display: inline-block;
	filter: invert(0); 
	transition: all 0.2s;
  	transform: rotate(0deg);

}
.faq ul li.open img {
	filter: invert(1); 
	transform: rotate(180deg);
}

.faq ul li .material-symbols-outlined {
	float: right;
	width: 30px;
	height: 30px;
	background-color: #000;
	color: #fff;
	text-align: center;
	border-radius: 100px;
	line-height: 32px;
	font-weight: normal;
	padding: 0px;
	margin: 13px 13px 0px 0px;
}
.faq ul li.open .material-symbols-outlined {
	color: #000;
	background-color: #fff!important;
	background: #fff!important;
}
.faq ul li div {
	overflow: hidden;
	transition: all 0.5s;
	border-radius: 10px;
	padding: 0px 20px;
	font-size: 15px;
	line-height: 24px;
}
.faq ul li.open div {
	height: auto;
	background-color: #F8F6F3;
	padding: 20px;
}
.morefaq {
	margin: 40px auto 0px auto;
}
.about {
	background-color: #F8F6F3!important;
}
.about .text {
	flex: 1.20;
}
.about .person {
	flex: 0.80;
	text-align: center;
}

.about h2 {
	font-weight: 500;
	font-size: 42px;
	line-height: 52px;
	letter-spacing: 0%;
	margin: 0px 0px 20px 0px;
}
.about h2 strong {
	font-weight: 700;
}
.about .person div {
    display: inline-block;
    width: 250px;
    padding: 20px 20px 20px 20px;
    border-radius: 1000px;
    background-color: #fff;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    height: 250px;
    overflow: hidden;
	transition: all 1s;
}

.about p {
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0%;
}
.about .person div.show {
	padding: 20px 20px 40px 20px;
    height: 320px;
}

.about .person div img {
	width: 250px;
	height: 250px;
	border-radius: 1000px;
	margin: 0px 0px 20px 0px;
}

.about .person div strong {
	display: block;
	font-weight: 700;
	font-size: 20px;
	margin: 0px 0px 0px 0px;
	transition: all 0.3s!important;
	opacity: 0!important;
}
.about .person div span {
	transition: all 0.6s!important;
	opacity: 0!important;
}
.about .person div.show strong, .about .person div.show span  {
	opacity: 1!important;
}

.footer {
	position: fixed !important;
    z-index: 2 !important;
    background-color: #2C2C2C !important;
    padding: 120px 0px !important;
    bottom: 50px;
    left: 0px;
    width: 100%;
    height: 340px;
}

.footer img {
	width: 40%;
}
.footer h4 {
	font-weight: 500;
	font-size: 42px;
	line-height: 52px;
	letter-spacing: 0%;
	margin: 30px 0px;
	color: #fff;
}
.footer h4 strong {
	font-weight: 700;
}
.footer .btn {
	display: inline-block;
	background-color: rgba(255,255,255,0.00);
	border: 2px solid #fff;
	color: #fff;
	text-transform: uppercase;
	transition: all 0.2s;
	padding: 12px 30px;
	width: auto;
	text-align: center;
}
.footer .btn:hover {
	background-color: rgba(0,0,0,1.00);
	color: #fff;
	border: 2px solid #000;
}

.footer form {
	display: block;
	padding: 30px;
	border-radius: 20px;
	background: linear-gradient(86.3deg, #CDA7FF 0%, #FFBCBD 100%);
}

.footer form .field {
	background-color: #fff;
	border-radius: 10px;
	padding: 10px 10px;
	margin: 0px 0px 10px 0px;
}
.footer form .field label {
	font-weight: 700;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0%;
	text-transform: uppercase;
	display: block;
	margin: 0px;
}
.footer form .field input {
	color: #0015FF;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px;
	width: 100%;
	border: 0px;
	font-family: "Inter", sans-serif;
	outline: none!important;
}
.footer form .field textarea {
	color: #0015FF;
	font-weight: 600;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0%;
	margin: 0px 0px 0px 0px;
	border: 0px;
	padding: 0px 0px;
	width: 100%;
	font-family: "Inter", sans-serif;
	outline: none!important;
}
.footer form button {
	background-color: #000!important;
	border: 1px solid #000!important;
	color: #fff!important;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0%;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.2s;
	cursor: pointer;
	margin: 13px 0px -5px 0px;
}
.footer form button:hover {
	background-color: #fff!important;
	color: #000!important;
	border: 1px solid #fff!important;
}
.grid2 {
	display: flex;
	gap: 10px;
}
.grid2 > div {
	flex: 1;
}
.bottom {
	position: fixed !important;
    z-index: 1 !important;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
	background-color: #000!important;
	padding: 0px!important;
}
.bottom .grid {
	padding: 0px!important;
	text-align: right;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	line-height: 50px;
	letter-spacing: 0%;
}


.video-frame {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #333;
	z-index: 10000;
}
.video-frame .cancel {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	color: #fff;
	cursor: pointer;
	z-index: 10001;
	font-size: 70px;
}
.video-frame .cancel img {
	width: 60px;
	height: 60px;
}
.video-frame video {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}


.overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 100000;
	background-color: rgba(0,0,0,0.50);
	opacity: 0;
	transition: all 0.2s;
}
.popup {
	width: 600px;
	border-radius: 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100001;
	overflow: hidden;
	transform: translate(-50%, -50%); /* this line centers it */
	background-color: #fff;
	opacity: 0;
	transition: all 0.2s;
	box-shadow: 0px 12px 16px 0px #00000026;
}
.overlay.show, .popup.show {
	opacity: 1;
}

.popup .h {
	background: linear-gradient(86.3deg, #CDA7FF 0%, #FFBCBD 100%);
	color: #fff;
	font-weight: 700;
	font-size: 26px;
	line-height: 34px;
	letter-spacing: 0%;
	padding: 19px 0px 19px 25px;
}
.popup .h span {
	float: right;
	margin: 0px 27px;
	color: #fff;
	cursor: pointer;
	font-size: 30px;
}
.popup .t {
	display: flex;
	padding: 20px 25px;
	gap: 40px;
}
.popup .t > div:first-child {
	flex: 1.7;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0%;
}
.popup .t > div:last-child {
	flex: 0.3;
}
.popup .t > div:last-child > div {
	display: table;
	height: 100%;
	width: 100%
}
.popup .t > div:last-child > div > div {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	width: 100%
}
.popup .t > div:last-child span {
	display: inline-block;
	color: #000;
	font-size: 40px;
	border-radius: 100px;
	width: 80px;
	height: 80px;
	background-color: #F8F6F3;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	line-height: 80px;
}
.mobile {
	display: none!important;
}
@media only screen and (min-width: 960px) and (max-width: 1200px) {
	.grid {
		padding: 0px 20px;
	}
	.video .grid div:first-child {
		font-size: 30px;
		line-height: 42px;
	}
	.reviews .revs .vp ul li em {
		font-weight: 500;
		font-size: 11px;
		line-height: 16px;
		letter-spacing: 0%;
		float: left;
		width: 35%;
	}
	.reviews .revs .vp ul li p {
		font-weight: 500;
		font-style: Italic;
		font-size: 16px;
		line-height: 26px;
		letter-spacing: 0%;
		display: block;
		margin: 0px 0px 0px 0px;
		height: 120px;
		overflow: hidden;
	}
		
	.upload .field .inner label {
		font-size: 23px;
		line-height: 27px;
		margin: 4px 0px 0px 0px;
	}	

}
@media only screen and (max-width: 960px) {
	
	.headernav .grid {
		margin: 0px 20px 0px 0px;
	}
	.mobile {
		display: inline-block!important;
	}
	.desktop {
		display: none!important;
	}
	.content > div.video {
		padding: 40px 0px 0px 0px!important;
	}
	.header img {
		display: inline-block;
		height: 40px;
		margin: 23px 0px 0px 0px;
	}
	.content > div {
    	padding: 40px 0px;
		overflow: hidden;
	}
	.headernav a {
		width: 50px;
		padding: 5px 0px;
	}
	.content {
		padding: 30vh 0px 0px 0px;
	}
	.grid {
		display:block;
		margin: 0px 20px;
	}
	.grid > div {
		margin: 30px 0px;
	}
	.intro {
		height:30vh;
	}
	.intro .grid {
		margin: 0px!important;
	}
	.hero-video {
		width: 130%;
    	height: 55%;
		top: 50%;
        min-width: auto;
        min-height: auto;
	}
	.hero-content {
		font-size: 22px;
		line-height: 100%;
		letter-spacing: 0%;
		text-align: right;
		bottom: 0px;
	}
	
	.video .grid div {
		font-size: 26px;
		line-height: 36px;
	}
	.video .grid div:last-child {
		margin-bottom: 20px !important;
	}
	.upload  {
		padding: 50px 0px 0px 0px!important;
	}
	.video-play-btn img {
		width: 80px;
	}
	.upload .grid {
		margin:0px;
	}
	.upload .field {
		border-radius: 0px;
		background: linear-gradient(180deg, #CDA7FF 0%, #FFBCBD 100%);

	}
	
	.upload .field .inner {
		position: relative;
		margin: 80px auto;
		width: 270px;
        height: 260px;
		border-radius: 30px;
		padding: 20px;
		background-color: #F8F6F3!important;
		box-shadow: 0px 10px 12px 0px #00000026;
	}
	.upload .info {
		float: none;
		background-color: #fff!important;
		color: #000!important;
		width: 30px;
		height: 30px;
		margin: 20px 30px 0px 0px;
		text-align: center;
		position: absolute;
		bottom: 20px;
        left: calc(50% - 15px);
	}
	.upload .info:hover {
		background-color: #fff!important;
		color: #000!important;
	}
	.upload .field .inner img {
	
	}
	.progressbar.mobile {
		z-index: 5;
	}
	.progressbar.dupl {
		z-index: 1;
		margin-top:-90px;
		transition: all 0.5s;
	}
	.progressbar.dupl.show {
		margin-top: 0px;
	}
	.upload .field .inner label {
		width: calc(100% + 20px);
        text-align: center;
        margin: 20px 0px 40px -10px;
        font-size: 22px;
		line-height: 26px;
	}
	.upload .field .inner label strong {
		display: block;
	}

	.upload .field {
    	height: auto;
	}
	.upload button {
		float: none;
		height: 62px;
		width: 100%;
		margin: 2px auto 0px auto;
		padding: 4px 0px 0px 15px!important;
		display: block;
		font-family: "Inter", sans-serif;
		font-weight: 800;
	
		font-size: 18px;
		line-height: 28px;
		
		letter-spacing: 4px;
		text-align: center;
	}
	.upload .info {
		position: absolute;
		left: 37px;
		bottom: 14px;
	}
	.clickon {
		position: absolute;
		bottom: 6px;
        right: 41px;
		font-weight: 500;
		font-size: 10px;
		line-height: 26px;
		text-align: right;
	}
	.upload button:hover {
		font-size: 16px;
		padding: 2px 0px 0px 5px;
		line-height: 28px;
	}
	@keyframes pulseSize {
	  from {
		font-size: 16px;
	  }
	  to {
		font-size: 18px;
	  }
	}
	#btnPolicySubmit {
		background: linear-gradient(86.3deg, #585858 0%, #000000 100%)!important;
		animation: pulseSize 1s infinite alternate ease-in-out!important;
	}
	.uploaded .progressbar > div.mobile span {
		display: none;
	}
	.uploaded .progressbar > div span {
		transition: all 0.2s;
		opacity: 1;
		position: relative;
		color: #fff;
		width: 80%;
		background: none;
		line-height: 62px;
		margin: 0px 0px 0px 64px;
		font-weight: 800;
		font-size: 14px;
		letter-spacing: 1px;
		text-align: center;
	}
	.uploaded .progressbar em div strong {
    	font-size: 12px;
	}
	.uploaded .progressbar em div {
		font-size: 9px;
		margin: 0px 0px 0px 0px;
		max-width: 150px;
		height: 31px;
		overflow: hidden;
	}
	.uploaded .progressbar.mobile {
		margin: 0px 0px 20px 0px;
	}
	.upload .field .inner.show.done {
		height: 330px;
	}
	.uploading .progressbar em, .uploaded .progressbar em {
		display: block;
		width: 100%;
	}	
	.uploading .progressbar em i, .uploaded .progressbar em i {
		display: inline-block;
		margin: -1px 10px 0px -6px!important;
		border-radius: 100px;
		width: 30px;
		vertical-align: middle;
		height: 30px;
		background-color: #565656;
	}
	
	.steps {
		padding: 40px 0px 60px 0px!important;
	}
	.steps .stepspng {
		float: none;
		width: 100%;
		height: auto;
		margin: 0px 0px 60px 0px;
	}
	.steps h2 {
		font-weight: 500;
		font-size: 26px;
		line-height: 36px;
		letter-spacing: 0%;
		margin: -10px 0px -10px 0px;
		text-align: center;
		padding: 0px;
	}
	.steps ul {
		margin: 60px 20px;
	}
	.steps ul li {
		margin:15px 0px;
		height:auto;
		border-radius: 100px;
	}
	.steps ul li p {
		display:none;
	}
	.steps ul li strong {
		margin:0px;
	}
	.steps ul li .info {
		bottom: 16px;
		right: 20px;
		width: 30px;
		height: 30px;
	}
	.steps ul li .info img {
		margin: 8px 0px 0px 0px;
	}
	.smaller > div {
		margin: 0px 0px 15px 0px!important;
	}
	.smaller > div:last-child {
		margin: 0px!important;
	}
	.reviews .img {
		text-align: center;
		margin: 20px 0px 50px 0px;
	}
	.reviews .revs .vp {
		width: calc(100% - 60px);
		height: 350px;
		overflow: hidden;
		margin: 0px 0px;
	}
	.reviews .revs .vp ul li img {
		float: right;
		margin: 0px;
	}
	.reviews .revs .vp ul li p {
		height: 270px;
		font-size: 18px;
	}
	.reviews .revs .bullets li {
		margin: 0px 5px 0px 0px;
	}
	.reviews .revs .bullets {
		text-align: left;
		position: absolute;
		z-index: 10000;
		list-style: none;
		margin: 0px;
		padding: 0px;
		bottom: 30px;
		left: 30px;
	}
	.reviews .img img {
		width: 80%;
	}
	.reviews .revs .vp ul li em {
		width: 75%;
		font-size: 12px;
	}
	.faq h3 {
		margin: -20px 0px 20px 0px;
		font-size: 26px;
		line-height: 36px;
	}
	.faq ul li span {
    	line-height: 20px!important;
		font-size: 14px!important;
	}
	.faq ul li .material-symbols-outlined {
		margin: 8px 10px 0px 10px;
		width: 24px;
		height: 24px;
	}
	.faq ul li span:nth-child(2) {
		padding: 10px 20px;
		font-weight: 700;
		font-size: 12px;
		letter-spacing: 0px;
	}
	.faq ul li div {
		font-weight: 500;
		font-size: 13px;
		line-height: 22px;
		letter-spacing: 0%;
	}
	.faq ul li .material-symbols-outlined {
		line-height: 27px!important;
	}
	
	.about h2 {
		font-weight: 500;
		font-size: 26px;
		line-height: 36px;
	}
	

	.about p {
		font-weight: 500;
		font-size: 13px;
		line-height: 22px;
		margin: 0px 0px 30px 0px;
	}
	.about .person {
		margin: 40px 0px;
	}
	.about .person div {
		text-align: left;
		height: 100px;
		position: relative;
		width: 100px;
	}
	.about .person div.show {
		padding: 10px;
		width: calc(100% - 20px);
		height: 100px;
	}
	.about .person div img {
		width: 100px;
		height: 100px;
		border-radius: 1000px;
		margin: 0px 0px 20px 0px;
	}
	.about .person div strong {
		display: inline-block;
		position: absolute;
		top: 40px;
		left: 140px;
		font-size: 20px;
		width: 210px;
		opacity: 0;
		transition: all 0.4s;
	}
	.about .person div.show strong {
		opacity: 1
	}

	.about .person div span {
		display: inline-block;
		position: absolute;
		top: 60px;
		left: 140px;
		width: 210px;
		font-size: 14px;
		opacity: 0;
		transition: all 0.4s;
	}
	.about .person div.show strong, .about .person div.show span {
		opacity: 1
	}
	
	.footer {
		position:relative !important;
		padding: 50px 0px !important;
		height:auto!important;
		bottom: auto;
	}
	.footer img {
		width: 70%;
	}
	.footer h4 {
		font-size: 24px;
		line-height: 34px;;
		margin: 30px 0px 36px 0px;
	}
	.footer form {
		display: block;
		text-align: left;
		margin: 50px 0px 0px 0px;
	}
	.footer .grid > div > br {
		display: none;
	}
	.footer .btn {
		width: auto;
		padding: 12px 30px;
		margin: 0px 5px 0px 0px;
		text-transform: uppercase;
	}
	.footer .btn:last-child {
		margin: 0px 0px 0px 0px;
	}
	.footer .grid {
		text-align:center;
	}
	.bottom {
		position:relative !important;
	}
	.bottom .grid {
		text-align: center;
	}
	.bottom .grid div {
		margin: 0px!important;
	}

	.popup {
		width: 90%;
	}
	.menu > div {
		display: block;
	}
	.menu > div > div:first-child ul {
		font-size: 24px;
		line-height: 34px;
		margin: 130px 0px 30px 0px;
	}
	.menu > div > div:first-child ul li a {
		padding: 0px 20px;
	}
	.menu > div > div:first-child ul li a.open {
		padding: 7px 20px!important;
		opacity: 1!important;
	}

	.menu > div > div:first-child > a {
		font-size: 13px;
		line-height: 18px;
		margin: 5px 20px;
	}
	

	.menuimg {
		position: relative;
		float: right;
		width: 50%;
		margin: -140px 0px 0px 0px;
	}
	.menu .menuoverlay {
    	margin: 0px 20px 0px 0px;
	}

}

