html{
	height: 1674px;
	font-weight:100;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 50em;
/*   letter-spacing:-0.03em; */
}

/* stiky call to action*/

.stikyButton {
  position: fixed;
  z-index: 9999;
  bottom: 25px;
  right: 25px;
  border-radius: 50% ;
  border: 2px solid #000000;
  background-color:rgba(0, 0, 0, 0.621) ;
  width: 100px;
  height: 100px;
  transition: 0.5s;
  cursor: pointer;
}
.stikyButton:hover {
  transform: scale(1.5);
}

p {
	font-size: 64px;
	color: white;
	letter-spacing: 10px;
}

.nextSection {
	height: 800px;
	background: lightslategrey;
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
  height: 100vh;
  width: 100%;
  position: relative;
	overflow: hidden;
}

.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.svg-container {
  width: 100%;
  height: 100%;
	position: absolute;
	top: 0;
}

svg {
	width: 100%;
	height: 100%;
	overflow: visible;
	display: block;
}
svg text {
    text-anchor: middle;
}
svg mask rect {
/*   fill: rgba(255, 255, 255, 0.8); */
  fill: white;
}
svg > rect {
    fill: white;
    -webkit-mask: url(#mask);
    mask: url(#mask);
}

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
/* 	border: 10px solid black; */
  overflow: hidden;
}

video{
  min-height: 100%;
  min-width: 100%;
  height: 150%;
  width: 150%;
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate( -50%, -50%);
}