*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
ul li{
	list-style: none;
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: none!important;
}
li{
	list-style: none!important;
}
h1{
	font-size: 45px;
	font-family: 'Oswald', sans-serif;
}
h2{
	font-size: 25px;
	font-family: 'Playfair Display', serif;
}
p{
	font-size: 16px;
	color: #524b48;
}
.for-mobile{
	display: none;
}
#hero{
	display: flex;
	width: 100%;
}

.video-bg {
	position: relative;
	overflow: hidden;
	background: rgb(255, 255, 255);
    width: 100%;
    height: 90vh;
}
.video-bg:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 90vh;
   background: linear-gradient(0deg, rgba(215, 114, 218, 0.791) 0%, rgba(230, 125, 130, 0.848) 100%),url(../images/hero.jpg) center center no-repeat;
   background-size: cover;
	border-radius: 0 0 50% 50%/0 0 50% 50%;
}


.video{
	position: absolute;
	top: 50%;
	left: 50%;
}


.video-play-button2 {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
   background: #f70056; 
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button2:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #f70056;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button2:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #f70056;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button2:hover:after {
  background-color: darken(#1262FF, 10%);
}

.video-play-button2 img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button2 span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.call-to{
	display: flex;
	width: 100%;
	padding: 150px 0;
}
.btn{
	width: 100%;
	display: flex;
	justify-content: center;
}
.btn a{
  background: rgb(215,114,218);
	color: #fff;
	padding: 10px 56px;
	border-radius: 4px;
	margin: 10px 15px;
	text-transform: uppercase;
	transition: .6s;
}
.btn span a {
	background-color: #000;
}
.btn a:hover{
	background: #000;
	color: #fff;
}
.btn span a:hover{
  background: rgb(215,114,218);
}

#footer{
	width: 100%;
	padding: 50px 0;
	text-align: center;
  background: rgb(215,114,218);
background: -moz-linear-gradient(0deg, rgba(215,114,218,1) 0%, rgba(230,125,130,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(215,114,218,1) 0%, rgba(230,125,130,1) 100%);
background: linear-gradient(0deg, rgba(215,114,218,1) 0%, rgba(230,125,130,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d772da",endColorstr="#e67d82",GradientType=1);
}
#footer p{
  color: #fff;
}
#footer a{
	color: #000;
	font-weight: 700;
}