*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

ul{
    list-style: none;
}

.header{
    position: relative;
    width: 100%;
    height: 100vh;

    background-repeat: no-repeat;
    background-size: cover;
}

.header .navbar{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding-top: 20px;
}


.logo a{
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 20px;
    margin-left: 2vw;
	margin-right: 5vw;
}

.menu ul li{
    display: inline-block;
	padding: 5px;
    cursor: pointer;
    align-items: center;
    
}

.menu ul li a{
    text-decoration: none;
    color:#fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
	padding: 30px 20px;
	transition: all 0.3s;
}

.menu ul li a:hover{
    color:#c32865;
}

.header .contact-info{
    color: #fff;
    margin-left: auto;
	padding-right: 2%;
}

.menu {
    margin-right: auto;
}

.header .contact-info ul{
    margin-left: 100px;
}

.header .contact-info ul li{
    display: inline-block;
}

.header .contact-info ul li a{
    color: #fff;
    font-size: 15px;
	padding: 30px 5px;
    transition: all 0.3s;
}

.header .contact-info ul li a:hover{
    color:#c32865;
}

.header .contact-info ul li a.sep{
    margin: 0 28px;
    opacity: 0.3;
}


.title h1 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.title hr {
	margin-left: 2.5%;
	width: 95%;
	border: none;
  	height: 5px;
  	/* Set the hr color */
  	color: #000;  /* old IE */
  	background-color: #000;
}

.content {
	margin-left: 5%;
	margin-top: 15px;
	font-size: 25px;
	margin-right: 4vw;
}

.navbar {
	background: black;
	padding-bottom: 15px;
}
.app-text{
    padding-left: 440px
}

.app-text h3{
    margin-top: 100px;
    font-size: 25px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.app-text h1{
    font-size: 80px;
    position: relative;
    color: #fff;
    margin-top: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.app-text h1 span{
    color: #c32865;
}

.app-text p{
    font-size: 19px;
    margin: 30px 30px 30px 0;
    letter-spacing: 1px;
    color: #fff;
    padding-right: 250px;
    line-height: 1.5;
}

.btn-group{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.primary-btn:before{
    content: '';
    position: absolute;
    width: 400px;
    height: 1px;
    border-top: 1px solid #fff;
    top: 88%;
    left: 0;
}

.play-btn{
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.play-btn:hover .play-btn-inner i,
.play-btn:hover span{
    color: #c32865;
    transition: all 0.5s;
    border-color: #c32865;
}

.btn-group span{
    font-size: 20px;
    margin-left: 24px;
    color: #fff;
    cursor: pointer;
}

.play-btn-inner i{
    color: #fff;    
    font-size: 15px;
    display: inline-flex;
    width: 80px;
    height: 80px;
    padding-left: .25rem;
    -webkit-transition: border-color .3s ease-out;
    transition: border-color .3s ease-out;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-icons{
    position: fixed;
    right: 50px;
    bottom: 2%; 
}

.social-icons ul li{
    width: 50px;
    height: 50px;
    display: inline-block;
	border-width: 5px;
	border-color: #000;
	border-radius: 10px;
}

.social-icons ul li a{
    display: block;
    color: #000;
    text-align: center;
    padding: 12px 17px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
	border: #000;
	
}

.social-icons ul li a:hover{
    background: #c32865;
    color: #fff;
}


.copy-right{
    position: absolute;
    left: 50px;
    bottom: 4%;   
}

.copy-right p{
    color: #fff;
}


