/* --------------------------------
Base Layout
-------------------------------- */
body{
    overflow-x: hidden;
}
body::-webkit-scrollbar{
}
.container{
	text-align: center;
	height: auto;
	margin: 0 auto;
	padding: 64px 0;		
}
.row {margin-bottom: 32px;}
.animated{visibility:hidden;}
.visible{visibility:visible;}
/* --------------------------------
Page Loader
-------------------------------- */
#preloader {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
}

.loader {
    position: absolute;
    margin: -65px 0 0 -65px;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 84px;
    height: 84px;
    margin: 6px;
    border: 5px solid #000;
    border-radius: 50%;
    animation: lds-ring 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.25s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.2s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.1s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* --------------------------------
Navigation Bar
-------------------------------- */
/* Logo Style */
.site-logo{
	float: left;
	position: relative;
	top: 40%;
	text-transform: uppercase;
	color:#fff;
	font-size: 26px;
	font-weight: 400;
}
.site-logo:hover{color:#f4f4f4;}
/* Nav Menu */
.hide-nav{
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
.show-nav{
    box-shadow: 0px 2px 8px -2px rgba(0,0,0,0.5);
}
#hidenav{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 11%;
    
    transform:translateY(50%);
    
    z-index: 999;
}
#navigation{
	position: fixed;
	height: 78px;
	width: 100%;
	z-index: 100;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
    background: #1F2223;
}
.nav-container{
	margin:0 auto;
	width:100%;
	height: 100%;
	max-width: 1100px;
}
.mobile-nav-button{
	display: none;
	color:#fff;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size:40px;
	position: absolute;
	right:20px;
	top:50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.mobile-nav-button:hover {color:#f4f4f4;}
.nav-menu{
	position: relative;
	top: 18%;
	float: right;
	height: 100%;
}
.nav li {
	float: left;
 	position: relative;
}
.nav li a{
	display: block;
	text-transform: uppercase;
	color: #fff;
	padding:18px 0px;
	font-size: 13px;
	font-weight: 700;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.nav li a:after{
	content:"";
	color:#1E86F9;
	font-weight: 300;
	padding: 15px;
	border-bottom:none;
}
.nav li:last-child a:after{
	content:"";
	padding-right: 0;
}
.nav li a.selected,
.nav li a:hover,
.nav li a.current {color:#333;}
/* Drop Down Navigation */

.nav li i{
	margin-left: 3px;
	font-size: 8px;
	vertical-align:10%;
}
.nav ul {
	margin: 20px 0 0 0;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 1;    
	background: #fff;   
	box-shadow: 0px 1px 4px rgba(0,0,0, 0.1); 
	transition: all .2s ease-in-out;
}
.nav li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}
.nav ul li {
	float: none;
	display: block;
}
.nav ul a {   
	padding: 10px;
	width: 100%;
	min-width: 150px;
	display: block;
	white-space: nowrap;
	float: none;
}
.nav ul a:after {content:"";}
.nav ul a:hover {
	color: #444;
	background-color: rgba(108,108,108, .3);
}
/* --------------------------------
Home (swiper) Section
-------------------------------- */ 
.swiper-container {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
.swiper-container .swiper-slide {
    cursor: grab;
    text-align: center;

/* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
} 
.swiper-container .swiper-slide:nth-child(1){
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.9)), url(../images/wallpaper01.jpg);
    background-size: cover;
    background-position: center;
}
.swiper-container .swiper-slide:nth-child(2){
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.9)), url(../images/wallpaper02.jpg);
    background-size: cover;
    background-position: center;
}
.swiper-container .swiper-slide:nth-child(3){
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.9)), url(../images/wallpaper03.jpg);
    background-size: cover;
    background-position: center;
}
.swiper-container .swiper-slide:nth-child(4){
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.9)), url(../images/wallpaper04.jpg);
    background-size: cover;
    background-position: center;
}
/* --------------------------------
About Section
-------------------------------- */
.about h1{
    text-transform: none;
    padding: 10px;
    font-size: 3.3em;
    color: #1F2223;
    text-transform: uppercase;
}
.about h2{
    text-transform: none;
    padding: 10px;
    font-size: 1.8em;
    color: #444;
    margin: 0;
}
.about h3{
    text-transform: none;
    padding: 20px;
    font-size: 30px;
    color: #444;
    margin: 0;
}
.client-logos{
	background: #000;
}
.welcome{
    z-index: 99;
    position: absolute;
    width: 100%;
    margin: 200px auto;
}
.welcome h2{
    color: #fff;
    text-align: center;
    font-size: 2.5em;
    opacity: .9;
}
.welcome h4{
    color: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    opacity: .9;
}
.btn-down{
    opacity: .9;
    padding:20px;
}
.btn-down a{
	color: #fff;
	background: #1F2223;
	display: inline-block;
    width: 150px;
    height: 46px;
    margin: 17px;
    text-transform: none;
	font-weight: 300;
	cursor: pointer;
    border: 0px;
	border-radius: 20px;
}
.btn-down a:hover{
	background: #fff;
}
.btn-down a:focus{
	outline: none;
}
.btn-down h3{
    text-transform: none;
    color: #fff;
    font-size: 17px;
    padding: 2px;
    
}
.btn-down h3:hover{
    color: #1F2223;
    font-size: 17px;
    padding: 2px;
}
.review iframe{
    width: 100%;
    height: 315px;
    max-width: 560px;
}
/* --------------------------------
Footer
-------------------------------- */
#footer-bottom .social-links {margin-bottom: 24px;}
#footer-bottom .social-links li {
	display: inline-block;
	margin: 0 4px;
}
#footer-bottom .social-links li a{
	display: block;
	padding: 10px 0;
    font-size: 25px;
	width: 46px;
	height: 46px;
	background: #666;
	color: #fff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
#footer-bottom .social-links li a:hover{
	background: rgba(47, 47, 47, 1);
}
#footer-bottom{
	position: relative; 
	background: #1F2223;
	color: #999;
}
#footer-bottom .container {padding:24px 0;}
#footer-bottom h2 {color: #fff;}
/* --------------------------------
login.php
-------------------------------- */
.cont {
    position: relative;
    width: 25%;
    height: 440px;
    padding: 5px;
    margin: 40px auto;
}
.form {
    width: 100%;
    height: 100%;
}
.form h2 {
    font-size: 30px;
    color: #444;
    margin: 0;
}
.forgot-password {
    margin: 10px;
    padding: 10px;
}
.forgot-password a {
    font-size: 20px;
    color: #444;
}
h1,
h2,
.user,
.pass {
    display: block;
}
.pass {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 0px;
    border: 1px solid #000;
}
.user {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 20px;
    border: 1px solid #000;
}
.user:hover {
    background: #fff;
    border: 1px solid #000;
}
.pass:hover {
    background: #fff;
    border: 1px solid #000;
}
.login {
    color: #fff;
    background: #1F2223;
    display: inline-block;
    width: 180px;
    height: 50px;
    text-transform: none;
    font-weight: 300;
    cursor: pointer;
    font-size: 25px;
    border: 0px;
    border-radius: 30px;
}
.login:hover {
    background: #fff;
    color: #000;
    transition: all .3s;
}
@media only screen and (min-width : 280px) {
    .cont {
        width: 90%
    }
}
@media only screen and (min-width : 480px) {
    .cont {
        width: 60%
    }
}
@media only screen and (min-width : 768px) {
    .cont {
        width: 40%
    }
}
@media only screen and (min-width : 992px) {
    .cont {
        width: 30%
    }
}
/* --------------------------------
paywant_pro_api.php
-------------------------------- */
.buypoints{
    width: 100%;
    height: 80px;
}
.buypoints h1 {
    font-size:50px;
    margin: 20px auto;
    padding-top: 20px;
}
.payment-methods{
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    
}
.payment-methods form{
    margin: auto;
    display: flex;
    flex-direction: column;
}
.payment-methods select{
    margin: auto;
    width: auto;
    height: 30px;
}
.input-name{
    margin: auto;
    width: 200px;
    height: 30px;
}
.img-payment{
    margin: 10px auto;
    width: 300px;
    height: 100px;
}
.payment-methods img{
    width: 100%;
    max-width: 600px;
}
.payment-methods p{
    font-size: 28px;
    margin: 30px auto; 
}
.payment-methods h3{
    font-size: 20px;
    margin: 0px auto 0px;
    padding: 0;
}
/* --------------------------------
forgot-password.php
-------------------------------- */
.text-form h1{
    font-size: 30px;
}
.forms{
    margin: 60px auto 0px;
}
.forms form input{
    width: 100%;
    max-width: 300px;
    height: 45px;
    margin: 10px;
}
.forms form select{
    width: 100px;
    height: 35px;
    font-size: 14px;
    padding: 5px;
    margin: 10px;
}
.forms form button{
    width: 170px;
    height: 35px;
    font-size: 18px;
    padding: 5px;
    margin: 10px;
	color: #fff;
	background: #1F2223;
	display: inline-block;
    width: 180px;
    height: 50px;
    text-transform: uppercase;
	cursor: pointer;
	border-radius: 30px;
    border: 0px;
}
.forms form button:hover{
	background: #fff;
    transition: all .8s;
    border: 1px solid #000;
    color: #333;
}
/* --------------------------------
buy.php
-------------------------------- */
.buying{
    margin: 50px auto;
}
.buying h1{
    font-size: 40px;
    margin: 0px auto;
}
.buying h2{
    font-size: 22px;
    padding: 0;
    margin: 0px auto;
    color: #E7551B;
}
.buypack{
  text-align: center;
  margin: 0 auto;
  height: auto;
  width:100%;
  display: inline-block;
  margin: 10px auto;
}
.buypack fieldset {
	width: 100%;
    max-width: 400px;
	margin: 30px 40px 0px 40px;
	display: inline-block;
    border: 2px dotted #333;
}
.buypack fieldset legend{
    padding: 10px;
    font-size: 22px;
}
.buypack fieldset .buy-button{
    width: 170px;
    height: 35px;
    padding: 5px;
    margin: 10px;
	background: #1F2223;
	display: inline-block;
    width: 180px;
    height: 50px;
    text-transform: uppercase;
	cursor: pointer;
	border-radius: 30px;
    border: 0px;
    font-size: 20px;
	color: #fff;
    font-weight: 700;
}
.buypack fieldset .buy-button:hover{
	background: #fff;
    transition: all .8s;
    border: 1px solid #1F2223;
    color: #111;
}
.payment-offers {
  margin: 0 auto;
  height: 460px;
  margin-top: 10px;
  width:700px;
  box-shadow: 0 0 8px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.24);
  margin-bottom: 20px;
}
.banner-1-ads {
  box-shadow: 0 0 8px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.24);
  width: 256px;
  height:720px;
  margin-top:-920px;
  float:left;
  margin-left:15px;
}
.banner-2-ads {
  box-shadow: 0 0 8px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.24);
  width: 256px;
  height:720px;
  margin-top:-920px;
  float:right;
  margin-right:15px;
}