/*
font-family: 'Poppins', sans-serif;
font-family: 'Rubik', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Saira', sans-serif;
font-family: 'Saira Semi Condensed', sans-serif;
font-family: 'Exo', sans-serif;
font-family: 'Exo 2', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Bai Jamjuree', sans-serif;
font-family: "SuiGenerisRg-Regular";

light - 300
regular - 400
medium - 500
semi-bold  - 600
bold - 700
extra-bold - 800
black - 900
*/


@font-face {font-family: "SuiGenerisRg-Regular";
  src: url("fonts/5a7db2db0a7c1a9f98bfad78893257cd.eot"); /* IE9*/
  src: url("fonts/5a7db2db0a7c1a9f98bfad78893257cdd41d.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("fonts/5a7db2db0a7c1a9f98bfad78893257cd.woff2") format("woff2"), /* chrome、firefox */
  url("fonts/5a7db2db0a7c1a9f98bfad78893257cd.woff") format("woff"), /* chrome、firefox */
  url("fonts/5a7db2db0a7c1a9f98bfad78893257cd.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("fonts/5a7db2db0a7c1a9f98bfad78893257cd.svg#SuiGenerisRg-Regular") format("svg"); /* iOS 4.1- */
}

body {
	
	font-family: 'Poppins', sans-serif;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	background: #fff url(images/depo-bg.jpg) no-repeat top center;
	background-attachment:fixed;
    background-size: cover;
}

a {
	
	cursor:pointer !important;
	text-decoration:none !important;
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.rotating {
	-webkit-animation: rotating 3s linear infinite;
	animation: rotating 3s linear infinite;
}
.rotating.fast {
	-webkit-animation: rotating 0.5s linear infinite;
	animation: rotating 0.5s linear infinite;
}

@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotating {
    from{
        -moz-transform: rotate(0deg);
    }
    to{
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

 /*rotating*/
#spinner {
	-webkit-animation: rotatings 3s linear infinite;
	animation: rotating 3s linear infinite;
}
#spinner.fast {
	-webkit-animation: rotatings 1s linear infinite;
	animation: rotating 1s linear infinite;
}

@-webkit-keyframes rotatings {
    from{
        -webkit-transform: rotatez(0deg);
    }
    to{
        -webkit-transform: rotatey(360deg);
    }
}

@-moz-keyframes rotatings {
    from{
        -moz-transform: rotatex(0deg);
    }
    to{
        -moz-transform: rotatey(360deg);
    }
}


.social {
  position: fixed;
  top: 40%;
  z-index: 99999;
  width: 5%;
}
.social ul {
	
  padding: 0px;
  -webkit-transform: translate(-270px, 0);
  -moz-transform: translate(-270px, 0);
  -ms-transform: translate(-270px, 0);
  -o-transform: translate(-270px, 0);
  transform: translate(-270px, 0);
}

.social ul li {
	
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 320px;
  text-align: right;
  padding: 10px;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.social ul li:hover {
	
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}

.social ul li a {
	
    text-align: center;
    color: #292ea6;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.social ul li:hover a {
	
  color: #f7c324;
}

.social ul li .fb {
	
	color: #fff;
    background: #3b5998;
}

.social ul li .twit {
	
	color: #fff;
    background: #55acee;
}

.social ul li .insta {
	
	color: #fff;
    background: #e4405f;
}

.social ul li .tele {
	
	color: #fff;
    background: #0088CC;
}

.social ul li:hover i {
	
  color: #fff;
  background: #292ea6;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.social ul li i {
	
    margin-left: 10px;
	color: #000;
    background: #fff;
	padding: 10px;
	border-radius: 50px;
	width: 36px;
	height: 36px;
	font-size: 18px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.banner-bg {
	
    background:#182866 url(images/banner-bg.jpg) no-repeat top center;
    background-size: cover;
    min-height:1000px;
    padding: 0px 0px 30px;
	-webkit-perspective: 440px;
   perspective: 440px;
  -webkit-transform-style: preserve-3d;
   transform-style: preserve-3d;
}

.btc-bg {
	
    background:url(images/btc-bg.png) no-repeat top center;
    background-size: cover;
    min-height:1000px;
    padding: 0px 0px 0px;
}

.banner-bg .top {
	
    padding: 0px 0px 0px;
}

.banner-bg .top .top-start {
	
    padding: 30px 0px 20px;
}

.banner-bg .top .top-start p {
	
	font-family: 'Titillium Web', sans-serif;
	font-size:15px;
	font-weight:500;
	color:#fff;
	margin:0px 0px 0px 0px;
}

.banner-bg .top .top-but {
	
	padding: 20px 0px 20px;
}

.banner-bg .top .top-but a {
	
	font-family: 'Rubik', sans-serif;
	font-size:14px;
	font-weight:400;
	color:#fff;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 10px;
}

.banner-bg .top .top-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.banner-bg .top .top-but .button-blue {
	
    color: #fff;
    background-color: #375afd;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.banner-bg .top .top-but .button-blue:hover {
	
	background:#3c3b3e;
    -webkit-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.banner-bg .top .top-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.banner-bg .top .top-but .button-slanted-content img {
	
    position: relative;
    right: 8px;
}

.banner-bg .top .top-but .button-black {
	
    color: #fff;
    background-color: #3c3b3e;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.banner-bg .top .top-but .button-black:hover {
	
	background:#375afd;
    -webkit-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

header {
	
    width: 100%;
    background: #060c2c no-repeat center;
    background-size: cover;
    padding:20px 0px 20px 0px;
}

header .navbar-inverse { 

	margin:0; 
	min-height:auto; 
	border-radius:0; 
	border:0;
	background:none;
}
 
header .navbar-collapse {
	
	 padding:0;
}

header .navbar-right {
	
	margin: 0;
	margin-right: 0px;
}

header .navbar-inverse .navbar-nav > li { 

	padding:20px 18px;
	display:inline-block; 
	vertical-align:middle; 
	float:none;
}

header .navbar-inverse .navbar-nav > li > a { 
   
	font-size: 14px;
    color: #ffffff;
    text-transform:uppercase;
    transition: .3s;
    vertical-align: middle;
    padding: 10px 0px 8px 0px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
	border-bottom: 2px solid transparent;
}
	
header .navbar-inverse .navbar-nav > li > a:hover { 

	transition:.3s; 
	color:#7af1ff;
	border-bottom: 2px solid #f7c324;
}

header .navbar-inverse .navbar-nav > li .btn { 

	height:43px;
	line-height:40px; 
	padding:0 20px !important;
}

header .navbar-inverse .navbar-header {
	
	padding: 0;
}

header .navbar-inverse .navbar-header a { 

	display:inline-block; 
}

header .navbar-inverse .navbar-header a img { 
	display:inline-block;
	transform-origin: 100% 0;
}

header .navbar-inverse .navbar-header a img:hover{
	
		animation-name: wobble-bottom;
		animation-duration: 1s;
		animation-timing-function: ease-in-out;
		animation-iteration-count: 1;
}

@keyframes wobble-bottom {
	16.65% {
		transform: skew(-12deg);
	}

	33.3% {
		transform: skew(10deg);
	}

	49.95% {
		transform: skew(-6deg);
	}

	66.6% {
		transform: skew(4deg);
	}

	83.25% {
		transform: skew(-2deg);
	}

	100% {
		transform: skew(0);
	}
}

header .navbar-inverse .navbar-nav > li.btn_menu {
	
	
	padding: 17px 3px;
}
header .navbar-inverse .navbar-nav > li a.btn.btn-primary { 

	min-width:128px; 
	height:43px; 
	line-height:43px; 
	box-shadow:none;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
	
    border-color: #feb729 !important;
}


header .head-but2{
	
	font-size: 15px;
    color: #060c2c !important;
    background: #f7c324;
    border-radius: 50px;
    border: 1px solid #f7c324;
    outline: none;
    display: inline-block !important;
    box-shadow: inset 0 0 0 0 #375afd;
    transition: 0.7s;
    padding: 8px 18px 8px 18px !important;
    border-bottom: 2px transparent !important;
}

header .head-but2:hover {
	
	color: #fff !important;
    background: #375afd !important;
    border: 1px solid #375afd !important;
    transition: 0.7s;
    box-shadow: inset 0 35px 0 0 #375afd;
    border-bottom: 2px solid transparent !important;
}

.plan-bg {
	
	background:transparent;
	background-size:cover;
	padding:30px 0px 30px 0px;
}

.plan-bg .plan {
	
	padding:0px 0px 0px 0px;
}

.plan-bg .plan .plans {
	
    background: url(images/planbg1.png) no-repeat top center;
    background-size: cover;
    width: 230px;
    min-height: 240px;
    margin: 20px auto 20px;
    transition: 0.7s;
    text-align: center;
    border-radius: 0px;
    position: relative;
    z-index: 9999;
    cursor: pointer;
}

.plan-bg .plan .plans:hover {
	
    
}

.plan-bg .plan .plans:hover .plan-per h2, .plan-bg .plan .plans .plan-per h2:hover {
	
	color: #03d1ff;    
    transform: translateX(8px);
    transform: translateX(-8px);
}

.plan-bg .plan .plans:hover .plan-icon, .plan-bg .plan .plans .plan-icon:hover {
	
    border-bottom: 3px solid #f7c324;
	transition:0.7s;
}

.plan-bg .plan .plans .plan-icon {
	
	padding: 10px 0px 10px 0px;
    text-align: right;
    border-bottom: 3px solid white;
	transition:0.7s;
}

.plan-bg .plan .plans .plan-icon span {
	
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    background: #2c3eee;
    display: inline-block;
    margin: 16px 0px 0px 14px;
    text-transform: uppercase;
    float: left;
    width: 60px;
    text-align: center;
    position: relative;
}

.plan-bg .plan .plans .plan-per {
	
	padding: 10px 0px 10px 0px;
}

.plan-bg .plan .plans .plan-per h2 {
	
	font-family: "SuiGenerisRg-Regular";
	font-size:36px;
	font-weight:400;
	color:#cb9429;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 6px 0px;
}

.plan-bg .plan .plans .plan-per h2 span {
	
	font-family: 'Rubik', sans-serif;
	font-size:30px;
	font-weight:400;
}

.plan-bg .plan .plans .plan-per p {
	
	font-family: 'Rubik', sans-serif;
	font-size:18px;
	font-weight:400;
	color:#ffffff;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.plan-bg .plan .plans .plan-min {
	
	padding: 6px 0px 0px 0px;
}

.plan-bg .plan .plans .plan-min h4 {
	
	font-family: 'Saira', sans-serif;
	font-size:18px;
	font-weight:500;
	color:#efd000;
	transition:0.7s;
	margin:0px 0px 6px 0px;
}

.plan-bg .plan .plans .plan-min p {
	
	font-family: 'Saira', sans-serif;
	font-size:18px;
	font-weight:500;
	color:#fff;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.plan-bg .plan .plan-head {
	
	padding:50px 0px 0px 0px;
}

.plan-bg .plan .plan-head h2 {
	
	font-family: 'Exo', sans-serif;
	font-size:40px;
	font-weight:600;
	color:#fff;
	margin:0px 0px 0px 0px;
	text-transform:uppercase;
}

.plan-bg .plan .plan-but {
	
	padding:30px 0px 0px 20px;
	position: relative;
    z-index: 99999;
}

.plan-bg .plan .plan-but a {
	
	font-family: 'Saira', sans-serif;
	font-size:30px;
	font-weight:500;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.plan-bg .plan .plan-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.plan-bg .plan .plan-but .button-yellow {
	
    color: #000;
    background: #f7c324;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin: 0px;
    line-height: 40px;
    display: inline-block;
    box-shadow: -4px 5px 0 1px rgba(247, 195, 36, 0.62);
    transition: 0.7s;
}

.plan-bg .plan .plan-but .button-yellow:hover {
	
	color:#fff;
	background:#375afd;
    box-shadow:-4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition:0.7s;
}

.plan-bg .plan .plan-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.plan-bg .plan .plan-but p {
	
	font-family: 'Saira', sans-serif;
	font-size:16px;
	font-weight:400;
	color:#fff;
	text-transform:uppercase;
	transition:0.7s;
	margin:16px 0px 0px 20px;
}

.plan-bg .plan .plan-top {
	
	padding:20px 0px 20px 0px;
}

.plan-bg .plan .planbg1 {
	
     margin: 80px 0px 0px 0px;
}

.plan-bg .plan .planbg2 {
	
    margin: 65px 0px 0px 0px;
}

.plan-bg .plan .planbg3 {
	
    margin: 50px 0px 0px 0px;
}

.plan-bg .plan .planbg4 {
    
	margin: 40px 0px 0px 0px;
}

.plan-bg .plan .planbg5 {
    
	margin: 13px 0px 0px 0px;
}

.plan-bg .plan .planbg6 {
    
	margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg7 {
	
     margin: 40px 0px 0px 0px;
}

.plan-bg .plan .planbg8 {
	
    margin: 25px 0px 0px 0px;
}

.plan-bg .plan .planbg9 {
	
    margin: 10px 0px 0px 0px;
}

.plan-bg .plan .planbg10 {
    
	margin: 0px 0px 0px 0px;
}

.plan-bg .plan-calculator {
	
	padding:30px 0px 0px 20px;
}

.plan-bg .plan-calculator .cal1 {
	
	padding:30px 0px 20px 0px;
	float:left;
	width: 230px;
}

.plan-bg .plan-calculator .cal1 h4 {
	
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 20px;
    font-weight:400;
    color: #ffffff;
    margin: 0px 0px 0px 0px;
	text-transform:uppercase;
}

.plan-bg .plan-calculator .cal2 {
	
	padding:20px 0px 20px 0px;
	float:left;
}

.plan-bg .plan-calculator .cal2 select {
	
    width: 300px;
    height: 44px;
    background: url(images/calselect-bg.png) no-repeat top center;
    background-size: cover;
    border: 1px solid transparent;
    text-align: right;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #f7c324 !important;
    outline: none;
    border-radius: 0px;
    padding: 0px 0px 0px 16px;
	cursor:pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
	position:relative;
    z-index: 99999;
}

.plan-bg .plan-calculator .cal2 input {
	
    width: 300px;
    height: 44px;
    background: url(images/calinput-bg.png) no-repeat top center;
    background-size: cover;
    border: 1px solid transparent;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #f7c324;
    outline: none;
    border-radius: 0px;
    padding: 0px 0px 0px 16px;
	position:relative;
    z-index: 99999;
}

.plan-bg .plan-calculator .plan-calimg {
	
	padding:30px 0px 30px 0px;
	text-align:center;
}

.plan-bg .plan-calculator .plan-maincal {
	
	text-align:center;
}

.plan-bg .plan-calculator .plan-maincal1 {
	
	text-align:center;
	padding: 0px 70px 0px 0px;
}

.plan-bg .plan-calculator .plan-calbg {
	
    background: #060c2c;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg);
    padding: 16px 0px 16px 0px;
    margin: 0px 0px 30px 0px;
	display:inline-block;
    box-shadow: -5px 5px 0 1px rgba(6, 12, 44, 0.52);
}

.plan-bg .plan-calculator .plan-calbg .plan-calbg1 {
	
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    transform: skew(20deg);
    padding: 0px 0px 0px 0px;
    text-align: center;
}

.plan-bg .plan-calculator .plan-calbg .plan-calbg1 p {
	
	margin: 0px 0px 0px 0px;
}

.plan-bg .plan-calculator .plan-calbg .plan-calbg1 input {
	
	width: 200px;
    height: 44px;
    background: transparent;
    border: 1px solid transparent;
    text-align: center;
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    outline: none;
    border-radius: 0px;
    padding: 0px 0px 0px 16px;
}

.plan-bg .plan-calculator .plan-calbg .plan-calbg1 h4 {
	
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 18px;
    font-weight:600;
    color: #f7c324;
    margin: 10px 0px 0px 0px;
	text-transform:uppercase;
}

.about-bg {
	
    background:#fff url(images/about-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.about-bg .about {

    padding: 80px 0px 30px;
}

.about-bg .about .video-bg {
	
	background:url(images/video-img.png) no-repeat top center;
	background-size:cover;
	min-height:410px;
	position:relative;
}

.about-bg .about .video-bg .video-but {
	
	padding: 290px 0px 30px 80px;
}

.about-bg .about .video-bg .video-but a {
	
	font-family: 'Exo', sans-serif;
	font-size:20px;
	font-weight:500;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.about-bg .about .video-bg .video-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.about-bg .about .video-bg .video-but .button-transparent {
		
	color: #ffffff;
    background: transparent;
    border: 1px solid #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 40px 5px 40px;
    margin: 0px;
    line-height: 40px;
    display: inline-block;
    box-shadow:-4px 5px 0 1px rgba(255, 255, 255, 0.27);
    transition: 0.7s;
    outline: 1px solid white;
    outline-offset: -7px;
}

.about-bg .about .video-bg .video-but .button-transparent:hover {
	
	color: #fff;
    border: 1px solid #375afd;
    background: #375afd;
    box-shadow: -4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition: 0.7s;
}

.about-bg .about .video-bg .video-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.about-bg .about .about-text {
	
    background: #fff no-repeat top center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    background-size: cover;
    min-height: 380px;
    position: relative;
    top: 0px;
    right: 0;
    left: -170px;
    bottom: 0px;
    width: 690px;
}

.about-bg .about .about-text .about-head {
	
	padding: 10px 20px 0px 20px;
}

.about-bg .about .about-text .about-head h2 {
	
	font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #18161b;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 12px 0px;
    border-bottom: 2px solid #cecece;
}

.about-bg .about .about-text .about-head p {
	
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #8f939b;
    margin: 20px 0px 0px 0px;
    line-height: 26px;
}

.about-bg .about .about-text .about-but {
	
    padding: 20px 40px 20px 0px;
    text-align: right;
}

.about-bg .about .about-text .about-but a {
	
	font-family: 'Poppins', sans-serif;
	font-size:20px;
	font-weight:400;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.about-bg .about .about-text .about-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.about-bg .about .about-text .about-but .button-transparent {
		
	color: #15befc;
    background: transparent;
    border: 1px solid #15befc;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 40px 5px 40px;
    margin: 0px;
    line-height: 40px;
    display: inline-block;
    box-shadow:-4px 5px 0 1px rgba(255, 255, 255, 0.27);
    transition: 0.7s;
    outline: 1px solid #15befc;
    outline-offset: -7px;
}

.about-bg .about .about-text .about-but .button-transparent:hover {
	
	color: #fff;
    border: 1px solid #375afd;
    background: #375afd;
    box-shadow: -4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition: 0.7s;
}

.about-bg .about .about-text .about-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.about-bg .advan {
	
	padding:50px 0px 30px 0px;
	text-align:center;
}

.about-bg .advan .advan1 {
	
	padding:0px 0px 0px 0px;
	margin:20px auto 20px;
	text-align:center;
}

.about-bg .advan .advan1 img {
	
	margin:0px 0px 10px 0px;
}

.about-bg .advan .advan1 h4 {
	
	font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #18161b;
    margin: 10px 0px 0px 0px;
}

.about-bg .advan .advan1 p {
	
	font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5b5b5b;
    margin: 20px 0px 0px 0px;
    line-height: 26px;
}

.refer-bg {
	
    background:#18229a url(images/refer-bg.jpg) no-repeat top center;
    background-size: cover;
	background-attachment:fixed;
    padding: 30px 0px 30px;
}

.refer-bg .refer-head {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.refer-bg .refer-head h2 {
	
    font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom:1px solid #2f0e65;
}

.refer-bg .refer {
	
    padding: 30px 0px 30px;
}

.refer-bg .refer .refer-text {
	
    padding: 50px 0px 30px;
}

.refer-bg .refer .refer-text p {
	
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0px 0px 0px 0px;
    line-height: 28px;
}

.refer-bg .refer .refer-sub {
	
    padding: 0px 0px 0px;
	display:inline-block;
}

.refer-bg .refer .refer-sub h2 {
	
    font-family: 'Exo', sans-serif;
	font-size:70px;
	font-weight:700;
	color:#f7c324;
    margin: 0px 0px 0px 0px;
}

.refer-bg .refer .refer-sub h2 span {
	
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 14px 0px 10px 16px;
    float: right;
	line-height: 28px;
}

.refer-bg .refer .refer-but {
	
    padding: 30px 0px 30px;
}

.refer-bg .refer .refer-but a {
	
	font-family: 'Open Sans', sans-serif;
	font-size:18px;
	font-weight:500;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.refer-bg .refer .refer-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.refer-bg .refer .refer-but .button-black {
	
    color: #ffffff;
    background: #060c2c;
    text-align: center;
    padding: 10px 30px 5px 30px;
    margin: 0px;
    line-height: 40px;
    display: inline-block;
    box-shadow: -4px 5px 0 1px rgb(17, 24, 99);
    transition: 0.7s;
}

.refer-bg .refer .refer-but .button-black:hover {
	
	color:#fff;
	background:#375afd;
    box-shadow:-4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition:0.7s;
}

.refer-bg .refer .refer-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.refer-bg .refer .refer-but .button-slanted-content i {
	
	color: #f7c324;
    position: relative;
    left: 10px;
}

.refer-bg .refer .refer-img {
	
    padding: 0px 0px 30px;
}

.refer-bg .refer .refer-img img {
	
     animation-duration: 2s;
}

.floater-2 {
	
    -webkit-animation: floater-2 infinite 4s ease-in-out;
    -moz-animation: floater-2 infinite 4s ease-in-out;
    animation: floater-2 infinite 4s ease-in-out;
    animation-fill-mode: forwards;
}

@-webkit-keyframes floater {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -20px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes floater {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -20px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}

@-webkit-keyframes floater-2 {0% {transform: translate3d(0px, 0px, 0px);}80% {transform: translate3d(0px, -10px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes floater-2 {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -10px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}


.certificate-bg {
	
    background:#fff url(images/certificate-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.certificate-bg .certificate {
	
	background:url(images/cer-bg.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
	margin:50px 0px 30px 0px;
	min-height:500px;
}

.certificate-bg .certificate .certificate-img {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.certificate-bg .certificate .certificate-img img {
	
	margin:auto;
}

.certificate-bg .certificate .certificate-text {
	
    padding: 30px 0px 20px;
}

.certificate-bg .certificate .certificate-text h2 {
	
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0px 0px 0px 0px;
	text-transform:uppercase;
}

.certificate-bg .certificate .certificate-text p {
	
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 20px 0px 0px 0px;
    line-height: 22px;
}

.certificate-bg .certificate .certificate-cont {
	
    padding: 0px 0px 16px;
}

.certificate-bg .certificate .certificate-cont h2 {
	
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0px 0px 10px 0px;
	text-transform:uppercase;
}

.certificate-bg .certificate .certificate-cont h4 {
	
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f7c324;
    margin: 0px 0px 10px 0px;
}

.certificate-bg .certificate .certificate-cont p {
	
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.certificate-bg .certificate .certificate-but {
	
    padding: 0px 0px 20px;
	position:relative;
	z-index: 99999;
}

.certificate-bg .certificate .certificate-but a {
	
	font-family: 'Rubik', sans-serif;
	font-size:14px;
	font-weight:500;
	text-transform:uppercase;
	transition:0.7s;
    margin: 0px 0px 14px 10px;
    display: inline-block;
}

.certificate-bg .certificate .certificate-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.certificate-bg .certificate .certificate-but .button-yellow {
	
    color: #18161b;
    background: #f7c324;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin: 0px;
    line-height: 30px;
    display: inline-block;
    box-shadow: -4px 5px 0 1px rgba(247, 195, 36, 0.62);
    transition: 0.7s;
}

.certificate-bg .certificate .certificate-but .button-yellow:hover {
	
	color:#f7c324;
	background:#375afd;
    box-shadow:-4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition:0.7s;
}

.certificate-bg .certificate .certificate-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.certificate-bg .certificate .certificate-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.certificate-bg .certificate .certificate-but .button-blue {
	
    color: #f7c324;
    background-color: #375afd;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    box-shadow: -4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition:0.7s;
}

.certificate-bg .certificate .certificate-but .button-blue:hover {
	
	background:#f7c324;
	color:#18161b;
    box-shadow:  -4px 5px 0 1px rgba(247, 195, 36, 0.62);
    transition:0.7s;
}

.certificate-bg .certificate .certificate-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.certificate-bg .certificate .sec-bg {
	
    background: #18161b;
    background-size: cover;
    padding: 20px 20px 20px 20px;
    margin: 30px 30px 30px 0px;
	min-height: 386px;
}

.certificate-bg .certificate .sec-bg .sec-bg1 {
	
   padding:20px 20px 20px 20px;
   position:relative;
   z-index: 99999;
}

.certificate-bg .certificate .sec-bg h2 {
	
    font-family: 'Saira', sans-serif;
    font-size: 24px;
    font-weight:600;
	color:#f7c324;
    text-transform: uppercase;
    transition: 0.7s;
    margin: 0px 0px 10px 0px;
	text-align:center;
}

.certificate-bg .certificate .carousel-inner { 

	width:100%;
	text-align:center;
}

.certificate-bg .certificate .carousel-control { 

	bottom:0;
	top:66px;
}

.certificate-bg .certificate .carousel-control.right { 

    background: url(images/sec-right1.png) no-repeat top center !important;
    background-size: cover;
    width: 60px;
    height: 60px;
    z-index: 1;
    right: -66px !important;
    top: 110px;
    opacity: 1;
	transition:0.7s;
}

.certificate-bg .certificate .carousel-control.right:hover { 

    background: url(images/sec-right2.png) no-repeat top center !important;
    background-size: cover;
    width: 60px;
    height: 60px;
    z-index: 1;
    right: -66px !important;
    top: 110px;
    opacity: 1;
	transition:0.7s;
}

.certificate-bg .certificate .carousel-control.left {
	 
    background: url(images/sec-left1.png) no-repeat top center !important;
	background-size: cover;
	width: 60px;
    height: 60px;
    z-index: 1;
    left: -74px;
    top: 100px;
    opacity: 1;
	transition:0.7s;
}

.certificate-bg .certificate .carousel-control.left:hover {
	 
    background: url(images/sec-left2.png) no-repeat top center !important;
	background-size: cover;
	width: 60px;
    height: 60px;
    z-index: 1;
    left: -74px;
    top: 100px;
    opacity: 1;
	transition:0.7s;
}

.certificate-bg .certificate .carousel-inner>.item>img { 

	margin:auto;
}

.certificate-bg .certificate .item p span { 

	font-family: 'Rubik', sans-serif;
	font-size:14px;
	font-weight:500;
	color:#f7c324;
}

.certificate-bg .certificate .item p { 
	
	font-family: 'Rubik', sans-serif;
	font-size:14px;
	font-weight:400;
	color:#fff;
	margin:15px 0px 0px 0px;
	text-align:left;
}

.depo-bg {
	
    background:#fff url(images/depo-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.depo-bg .depo-head {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.depo-bg .depo-head h2 {
	
    font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #18161b;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom:2px solid #3a019778;
}

.depo-bg .lastFiveDetails {
	
    padding: 10px 0px 10px 0px;
}

.depo-bg .lastFiveDetails .depo-title {
	
    padding: 30px 0px 15px;
}

.depo-bg .lastFiveDetails .depo-title h4 {
	
	font-family: 'Exo', sans-serif;
    font-size:24px;
    font-weight:600;
	text-transform:uppercase;
    color: #3179d1;
    margin: 0px 0px 0px 26px;
}

.depo-bg .lastFiveDetails .depo-title p {
	
	font-family: 'Exo', sans-serif;
    font-size:24px;
    font-weight:600;
	text-transform:uppercase;
    color: #18161b;
    margin: 0px 0px 0px 26px;
}

.depo-bg .lastFiveDetails .sta {
	
    padding: 8px 0px 30px;
}

.depo-bg .lastFiveDetails .sta .sta1 {
	
	padding: 6px 0px 6px;
	margin:14px auto 14px;
    background: #fff;
    border: 1px solid #c6c6c6;
}

.depo-bg .lastFiveDetails .sta .sta1 h4 {
	
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #18161b;
    margin: 0px 0px 0px 20px;
}

.depo-bg .lastFiveDetails .sta .sta1 h4 span {
	
	font-weight:500;
    color: #3179d1;
    float: right;
    padding: 0px 30px 0px 0px;
}

.depo-bg .lastFiveDetails .sta .sta1 h4 span b {
	
	font-weight:500;
}

.depo-bg .lastFiveDetails .depobg1 {
	
	padding:18px 0px 0px 0px;
}

.depo-bg .lastFiveDetails table {
	
    width: 90%;
    text-align: left;
    max-width: 460px;
    margin: auto;
}

.depo-bg .lastFiveDetails table td {
	
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 16px;
    color: #aaaaaa;
    font-weight: 600;
    padding: 0px 0px 0px 10px !important;
    background: transparent;
    border: transparent;
}

.depo-bg .lastFiveDetails table td p {
	
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 12px;
    color: #aaaaaa;
    font-weight:400;
    padding: 0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.depo-bg .lastFiveDetails table td:nth-child(2) {
	
	text-align: center;
	padding-left: 0px !important;
	padding-right: 0px !important;
	color:#ff9900;
}

.depo-bg .lastFiveDetails table tr:nth-child(odd) {
	
    height: 70px;
    background: url(images/depobg1.png) no-repeat top center;
    background-size: contain;
}

.depo-bg .lastFiveDetails table tr:nth-child(even) {
	
    height: 70px;
    background: url(images/depobg1.png) no-repeat top center;
    background-size: contain;
}

.test-bg {
	
    background:#fff url(images/test-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.test-bg .test-head {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.test-bg .test-head h2 {
	
    font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #18161b;
    margin: 0px 0px 0px 0px;
}

.test-bg .testimonial { 

	width: 100%;
    position: relative;
    padding: 80px 0px 30px 0px;
    background: url(images/testimonial-bg.png) no-repeat top center;
    background-size: cover;
    min-height: 500px;
}

.test-bg .testimonial .testimonial_content { 

	width:100%; 
	display:inline-block; 
	text-align:center;
	padding:10px;
}

.test-bg .testimonial .testimonial_content p { 
	
	font-family: 'Rubik', sans-serif;
	width:100%; 
	display:inline-block; 
	font-size:16px; 
	color:#fcf9f9; 
	font-weight:500; 
	line-height:30px; 
	font-style:italic; 
	margin-bottom:30px; 
	position:relative;
}

.test-bg .testimonial .testimonial_content p:before { 

	content:""; 
	position:absolute; 
	background:url(images/quote_icon.png) no-repeat center; 
	width:37px;
	height:31px;
	left: -50px;
}

.test-bg .testimonial .testimonial_detail { 

	width:100%; 
	display:inline-block; 
	position:relative; 
	padding-top:40px;
}

.test-bg .testimonial .testimonial_detail:before { 

	content:""; 
	position:absolute; 
	background:url(images/testimonial_line.png) no-repeat center; 
	width:460px; 
	height:14px; 
	left:0; 
	right:0; 
	top:0; 
	margin:auto;
}

.test-bg .testimonial .testimonial_detail img { 

	display:inline-block;
	border-radius:50%; 
	margin-bottom:10px;
}

.test-bg .testimonial .testimonial_detail h5 { 
	
	font-family: 'Rubik', sans-serif;
	font-size:16px; 
	color:#fff; 
	text-transform:uppercase; 
	line-height:30px;
	font-weight:700;
}

.test-bg .testimonial .testimonial_detail h5 small { 
	
	font-family: 'Rubik', sans-serif;
	display:block; 
	font-size:12px; 
	color:#fff;
	font-weight:500;
}

.test-bg .testimonial .carousel_buttons { 

	width:100%; 
	display:inline-block; 
	position:absolute; 
	left:0; 
	right:0; 
	top:0; 
	bottom:0; 
	margin:auto;
}

.test-bg .testimonial .carousel_buttons a { 

	display:inline-block; 
	font-size:25px; 
	color:#fff; 
	background:#375afd; 
	width:50px; 
	height:50px; 
	text-align:center;
	border-radius:50%; 
	position:absolute; 
	z-index:2; 
	top:0; 
	bottom:0; 
	margin:auto;
}

.test-bg .testimonial .carousel_buttons a i { 

	display:inline-block; 
	line-height:50px;
}

.test-bg .testimonial .carousel_buttons .prev { 

	left: 20px;
	z-index: 99999;
}

.test-bg .testimonial .carousel_buttons .next { 

	right: 20px;
	z-index: 99999;
}

.test-bg .testimonial .carousel_buttons a:hover { 

	background:#fbd741;
}

.test-bg .testimonial .carousel_buttons a:hover i {
	
	color:#1e1e1e;
}

.foot-bg {
	
    background:#0f2187 url(images/foot-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.foot-bg .foot-head {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.foot-bg .foot-head h2 {
	
    font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 0px 0px;
	padding: 0px 0px 20px 0px;
    border-bottom: 1px solid #595959;
}

.foot-bg .payments {
	
	padding: 30px 0px 70px;
}

.foot-bg .payments .payment-carousel li {
	
	display: inline-block;
}

.foot-bg1 {
	
    background:#060c2c no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
}

.foot-bg1 .foot-menu {
	
    padding: 0px 0px 0px;
}

.foot-bg1 .foot-menu .foot-logo {
	
    padding: 30px 0px 30px;
	z-index:99999;
	position:relative;
}

.foot-bg1 .foot-menu .foot-logo a img { 

	display:inline-block;
	transform-origin: 100% 0;
}

.foot-bg1 .foot-menu .foot-logo a img:hover{
	
	animation-name: wobble-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
}

.foot-bg1 .foot-menu .foot-links {
	
    padding: 50px 0px 30px;
	z-index: 99999;
    position: relative;
}

.foot-bg1 .foot-menu .foot-links ul {
	
    margin: 0px;
    padding: 0px;
	list-style:none;
}

.foot-bg1 .foot-menu .foot-links ul li {
	
    padding: 10px 10px;
    display: inline-block;
}

.foot-bg1 .foot-menu .foot-links ul li a {
	
	font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    transition: 0.7s;
    vertical-align: middle;
    padding: 0px 0px 8px 0px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.foot-bg1 .foot-menu .foot-links ul li a:hover {
	
    transition: 0.7s;
    color: #7af1ff;
    border-bottom: 2px solid #f7c324; 
}

.foot-bg1 .foot-menu .foot-links ul li .head-but2{
	
	font-size: 15px;
    color: #060c2c !important;
    background: #f7c324;
    border-radius: 50px;
    border: 1px solid #f7c324;
    outline: none;
    display: inline-block !important;
    box-shadow: inset 0 0 0 0 #375afd;
    transition: 0.7s;
    padding: 8px 18px 8px 18px !important;
    border-bottom: 2px transparent !important;
}

.foot-bg1 .foot-menu .foot-links ul li .head-but2:hover {
	
	color: #fff !important;
    background: #375afd !important;
    border: 1px solid #375afd !important;
    transition: 0.7s;
    box-shadow: inset 0 35px 0 0 #375afd;
    border-bottom: 2px solid transparent !important;
}

.copy-bg {
	
    padding:10px 0px 30px;
}

.copy-bg .top {
	
    padding: 0px 0px 0px;
}

.copy-bg .top .top-start {
	
    padding: 30px 0px 20px;
}

.copy-bg .top .top-start p {
	
	font-family: 'Titillium Web', sans-serif;
	font-size:15px;
	font-weight:500;
	color:#fff;
	margin:0px 0px 0px 0px;
}

.copy-bg .top .top-but {
	
	padding: 20px 0px 20px;
	z-index: 99999;
    position: relative;
}

.copy-bg .top .top-but a {
	
	font-family: 'Rubik', sans-serif;
	font-size:14px;
	font-weight:400;
	color:#fff;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 10px;
}

.copy-bg .top .top-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.copy-bg .top .top-but .button-blue {
	
    color: #fff;
    background-color: #375afd;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.copy-bg .top .top-but .button-blue:hover {
	
	background:#3c3b3e;
    -webkit-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.copy-bg .top .top-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.copy-bg .top .top-but .button-slanted-content img {
	
    position: relative;
    right: 8px;
}

.copy-bg .top .top-but .button-black {
	
    color: #fff;
    background-color: #3c3b3e;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.copy-bg .top .top-but .button-black:hover {
	
	background:#375afd;
    -webkit-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    transition:0.7s;
}

.copy-bg .copy-text {
	
	padding:80px 0px 30px 0px;
	text-align:center;
}

.copy-bg .copy-text p {
	
	font-family: 'Rubik', sans-serif;
	font-size:16px;
	font-weight:500;
	color:#f7c324;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

@media only screen and (max-width: 1200px){
	
	header .navbar-inverse .navbar-header a {
	  width: 180px;
	}
	header .navbar-inverse .navbar-nav > li.btn_menu {
	  padding: 17px 0;
	}
	header .navbar-inverse .navbar-nav > li {
	  padding: 0 6px;
	}
	header .navbar-inverse .navbar-header {
	  padding: 9px 0;
	}
	
	header .navbar-inverse .navbar-header {
		margin-left: 0;
	}
	header .navbar-inverse .navbar-header {
		margin-left: 0;
	}
	
	header .navbar-right {
		margin-right: 0;
	}

}

@media only screen and (max-width: 1199px){
	
	header .navbar-inverse .navbar-nav > li {
	padding: 10px 10px;
	}
	header .navbar-inverse .navbar-nav > li > a {
		font-size: 14px;
	}
	
	header .navbar-inverse .navbar-nav > li .btn {
		min-width: 115px;
	}
	 
	 header .navbar-inverse .navbar-nav > li a.btn.btn-primary {
		min-width: 110px;
	}
	.plan-bg .plan-calculator .plan-cal {
		padding: 0px 0px 0px 0px;
		text-align: center;
	}
	.plan-bg .plan-calculator .cal1 {
		padding: 0px 0px 20px 0px;
		float: left;
		width: 230px;
	}
	.plan-bg .plan-calculator .cal2 {
		padding: 0px 0px 20px 0px;
		float: left;
	}
	.about-bg .about .about-text {
		min-height: 350px;
		position: relative;
		top: 0px;
		right: 0;
		left: -170px;
		bottom: 0px;
		width: 630px;
	}
	.foot-bg1 .foot-menu .foot-logo {
		padding: 30px 0px 30px;
		text-align: center;
	}
	.foot-bg1 .foot-menu .foot-links {
		padding: 0px 0px 30px;
		text-align: center;
	}
	.foot-bg1 .foot-menu .foot-links ul li {
		padding: 10px 5px;
		display: inline-block;
	}
}

@media only screen and (max-width: 991px){
	.banner-bg .top .top-start {
		padding: 20px 0px 20px;
	}
	header .navbar-inverse {
	  text-align: center;
	}
	header .navbar-inverse .navbar-header {
	  width: 100%;
	}
	header .navbar-inverse .navbar-nav > li.btn_menu {
	  padding: 4px 0;
	}
	header .navbar-inverse .navbar-nav > li > a {
		    padding: 0px 0px 8px 0px;
	}
	.plan-bg .plan .plan-top {
		padding:0px 0px 20px 0px;
	}
	.plan-bg .plan .planbg1, .plan-bg .plan .planbg2, .plan-bg .plan .planbg3, .plan-bg .plan .planbg4, .plan-bg .plan .planbg5, .plan-bg .plan .planbg6,
	.plan-bg .plan .planbg7, .plan-bg .plan .planbg8, .plan-bg .plan .planbg9, .plan-bg .plan .planbg10 {
		
		margin:20px auto 20px;
	}
	.plan-bg .plan .plan-head {
		padding: 30px 0px 0px 0px;
		text-align: center;
	}
	.plan-bg .plan .plan-but {
		padding: 30px 0px 30px 0px;
		text-align: center;
	}
	.about-bg .about .video-bg .video-but {
		padding: 260px 0px 30px 0px;
		text-align: center;
	}
	.about-bg .about .about-text {
		padding: 30px 0px 30px 0px;
		min-height: auto;
		position: relative;
		top: 0px;
		right: 0;
		left: 0px;
		bottom: 0px;
		width: auto;
	}
	.about-bg .about .about-text .about-but {
		padding: 30px 0px 10px 20px;
		text-align: left;
	}
	.refer-bg .refer .refer-text {
		padding: 0px 0px 30px;
	}
	.refer-bg .refer .refer-but {
	}
	.refer-bg .refer .refer-img {
		padding: 30px 0px 30px;
	}
	.refer-bg .refer .refer-img img {
		margin: auto;
	}
	.certificate-bg .certificate {
		padding: 30px 30px 30px 30px;
		min-height: 0px;
	}
	.certificate-bg .certificate .sec-bg {
		background: #18161b;
		background-size: cover;
		padding: 20px 20px 20px 20px;
		margin: 30px 30px 30px 30px;
		min-height: 386px;
	}
	.depo-bg .lastFiveDetails .depo-title {
		padding: 30px 0px 0px;
		text-align: center;
	}
	.depo-bg .lastFiveDetails .depo-title h4 {
		margin: 0px 0px 0px 0px;
	}
	.depo-bg .lastFiveDetails .depo-title p {
		margin: 0px 0px 0px 0px;
	}
	.depo-bg .lastFiveDetails table tr:nth-child(odd) {
		height: 81px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: cover;
	}
	.depo-bg .lastFiveDetails table tr:nth-child(even) {
		height: 81px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: cover;
	}
	.test-bg .testimonial .carousel-inner {
	  padding-bottom: 40px;
	}
	.test-bg .testimonial .carousel_buttons .prev {
		left: 10px;
	}
	.test-bg .testimonial .carousel_buttons .next {
		right: 10px;
	}
	.foot-bg1 .foot-menu .foot-logo a img {
		display: block;
		margin: auto;
	}
	.foot-bg1 .foot-menu .foot-links {
		padding: 0px 0px 30px;
		text-align: center;
	}
	.copy-bg .top .top-start {
		padding: 20px 0px 20px;
	}
	.copy-bg .copy-text {
		padding:30px 0px 30px 0px;
		text-align:center;
	}
	.copy-bg .top .top-start {
		padding: 20px 0px 0px;
		text-align: center;
	}
	.copy-bg .top .top-but {
		padding: 20px 0px 20px;
		text-align: center;
	}
}

@media only screen and (max-width: 767px){
	header .navbar-inverse {
		text-align: left;
	}
	header .navbar-toggle{ margin: 12px 0; border:0; background:#375afd; border-radius:0;}
	header .navbar-inverse .navbar-toggle:hover, 
	header .navbar-inverse .navbar-toggle:focus{  background:#f7c324;}
	header .navbar-inverse .navbar-toggle:hover .icon-bar, 
	header .navbar-inverse .navbar-toggle:focus .icon-bar{ background-color:#f5f5f5;}
	header .navbar-inverse .navbar-nav > li {
	  padding: 6px;
	  width: 100%;
	}
	header .navbar-inverse .navbar-nav > li > a:hover {
		border-bottom:2px solid transparent;
	}
	.plan-bg .plan .plan-head h2 {
		font-size: 30px;
	}
	.foot-bg .payments {
		text-align: center;
	}
	.foot-bg1 .foot-menu .foot-links ul li {
		padding: 10px 4px;
		display: block;
	}
	.copy-bg {
		padding: 10px 0px 0px;
	}
	.copy-bg .top {
		padding: 30px 0px 0px;
	}
}

@media only screen and (max-width: 560px) {

	.plan-bg .plan-calculator .cal1 {
		padding: 0px 0px 20px 0px;
		float: none;
		width:unset;
	}
	.plan-bg .plan-calculator .cal2 {
		padding: 0px 0px 20px 0px;
		float: none;
	}
	/*.depo-bg .lastFiveDetails table tr:nth-child(odd) {
		height: 70px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: contain;
	}
	.depo-bg .lastFiveDetails table tr:nth-child(even) {
		height: 70px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: contain;
	}*/
	.depo-bg .lastFiveDetails table td {
		font-family: 'Bai Jamjuree', sans-serif;
		font-size: 14px;
		color: #aaaaaa;
		font-weight: 600;
		padding: 0px 0px 0px 15px !important;
		background: transparent;
		border: transparent;
	}
	.test-bg .testimonial .testimonial_detail:before { 
		display:none;
	}
}

@media only screen and (max-width: 380px) {
	header {
		position: relative;
    	z-index: 99999;
	}
}



@media only screen and (max-width: 360px) {
	
	.depo-bg .lastFiveDetails table {
		width: 100%;
		text-align: left;
		max-width: 460px;
		margin: auto;
	}
	.depo-bg .lastFiveDetails table tr:nth-child(odd) {
		height: 70px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: contain;
	}
	.depo-bg .lastFiveDetails table tr:nth-child(even) {
		height: 70px;
		background: url(images/depobg1.png) no-repeat top center;
		background-size: contain;
	}
	.depo-bg .lastFiveDetails table td {
		font-family: 'Bai Jamjuree', sans-serif;
		font-size: 14px;
		color: #aaaaaa;
		font-weight: 600;
		padding: 0px 0px 0px 15px !important;
		background: transparent;
		border: transparent;
	}
}



@-webkit-keyframes floater-body {0% {transform: translate3d(0px, 0px, 0px) rotate(0);}50% {transform: translate3d(0px, -5px, 0px) rotate(-3deg);}100% {transform: translate3d(0px, 0px, 0px) rotate(0);}}
@keyframes floater-body {0% {transform: translate3d(0px, 0px, 0px) rotate(0);}50% {transform: translate3d(0px, -5px, 0px) rotate(-3deg);}100% {transform: translate3d(0px, 0px, 0px) rotate(0);}}

@-webkit-keyframes floater-body-2 {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -4px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes floater-body-2 {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -4px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}

@-webkit-keyframes tapmove {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(15px, 0px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes tapmove {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(15px, 0px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}

@-webkit-keyframes tapbodymove {0% {transform: rotate(0);}50% {transform: rotate(8deg);}100% {transform: rotate(0);}}
@keyframes tapbodymove {0% {transform: rotate(0);}50% {transform: rotate(8deg);}100% {transform: rotate(0);}}

@-webkit-keyframes hands {0% {transform: rotate(0);}50% {transform: rotate(-10deg);}100% {transform: rotate(0);}}
@keyframes hands {0% {transform: rotate(0);}50% {transform: rotate(-10deg);}100% {transform: rotate(0);}}

@-webkit-keyframes bodymove {0% {transform: rotate(0);}50% {transform: rotate(8deg);}100% {transform: rotate(0);}}
@keyframes bodymove {0% {transform: rotate(0);}50% {transform: rotate(8deg);}100% {transform: rotate(0);}}

@-webkit-keyframes floater {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -20px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes floater {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -20px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}

@-webkit-keyframes floater-2 {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -10px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}
@keyframes floater-2 {0% {transform: translate3d(0px, 0px, 0px);}50% {transform: translate3d(0px, -10px, 0px);}100% {transform: translate3d(0px, 0px, 0px);}}

@-webkit-keyframes bar {0% {transform: scaleY(1);}30% {transform: scaleY(0.6);}60% {transform: scaleY(0.8);}80% {transform: scaleY(0.5);}100% {transform: scaleY(1);}}
@keyframes bar {0% {transform: scaleY(1);}30% {transform: scaleY(0.6);}60% {transform: scaleY(0.8);}80% {transform: scaleY(0.5);}100% {transform: scaleY(1);}}

@-webkit-keyframes spin {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}
@keyframes spin {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}

@-webkit-keyframes shot-1 {0% {transform:translateX(0) translateY(0) rotate(-75deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(-75deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(-65px) rotate(-75deg);opacity: 0;}}
@keyframes shot-1 {0% {transform:translateX(0) translateY(0) rotate(-75deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(-75deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(-65px) rotate(-75deg);opacity: 0;}}

@-webkit-keyframes shot-2 {0% {transform:translateX(0) translateY(0) rotate(-90deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(-90deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(0) rotate(-90deg);opacity: 0;}}
@keyframes shot-2 {0% {transform:translateX(0) translateY(0) rotate(-90deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(-90deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(0) rotate(-90deg);opacity: 0;}}

@-webkit-keyframes shot-3 {0% {transform:translateX(0) translateY(0) rotate(-105deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(-105deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(65px) rotate(-105deg);opacity: 0;}}
@keyframes shot-3 {0% {transform:translateX(0) translateY(0) rotate(-105deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(-105deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(-230px) translateY(65px) rotate(-105deg);opacity: 0;}}

@-webkit-keyframes shot-4 {0% {transform:translateX(0) translateY(0) rotate(65deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(65deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(75px) translateY(-48px) rotate(65deg);opacity: 0;}}
@keyframes shot-4 {0% {transform:translateX(0) translateY(0) rotate(65deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(65deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(75px) translateY(-48px) rotate(65deg);opacity: 0;}}

@-webkit-keyframes shot-5 {0% {transform:translateX(0) translateY(0) rotate(90deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(90deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(150px) translateY(10px) rotate(90deg);opacity: 0;}}
@keyframes shot-5 {0% {transform:translateX(0) translateY(0) rotate(90deg);opacity: 0;}75% {transform:translateX(0) translateY(0) rotate(90deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(150px) translateY(10px) rotate(90deg);opacity: 0;}}

@-webkit-keyframes shot-6 {0% {transform:translateX(0) translateY(0) rotate(105deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(105deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(200px) translateY(60px) rotate(105deg);opacity: 0;}}
@keyframes shot-6 {0% {transform:translateX(0) translateY(0) rotate(105deg);opacity: 0;}80% {transform:translateX(0) translateY(0) rotate(105deg);opacity: 0;}90% {opacity: 1;}100% {transform:translateX(200px) translateY(60px) rotate(105deg);opacity: 0;}}

@-webkit-keyframes blink-1 {0% {opacity:0;}20% {opacity:1;}40% {opacity:0;}100% {opacity:0;}}
@keyframes blink-1 {0% {opacity:0;}20% {opacity:1;}40% {opacity:0;}100% {opacity:0;}}
@-webkit-keyframes blink-2 {20% {opacity:0;}40% {opacity:1;}60% {opacity:0;}100% {opacity:0;}}
@keyframes blink-2 {20% {opacity:0;}40% {opacity:1;}60% {opacity:0;}100% {opacity:0;}}
@-webkit-keyframes blink-3 {40% {opacity:0;}60% {opacity:1;}80% {opacity:0;}100% {opacity:0;}}
@keyframes blink-3 {40% {opacity:0;}60% {opacity:1;}80% {opacity:0;}100% {opacity:0;}}

@-webkit-keyframes cloudmove-1 {0% {transform: translate3d(-50px, 40px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(-50px, 40px, 0px);}}
@keyframes cloudmove-1 {0% {transform: translate3d(-50px, 40px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(-50px, 40px, 0px);}}

@-webkit-keyframes cloudmove-2 {0% {transform: translate3d(40px, 20px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(40px, 20px, 0px);}}
@keyframes cloudmove-2 {0% {transform: translate3d(40px, 20px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(40px, 20px, 0px);}}

@-webkit-keyframes cloudmove-3 {0% {transform: translate3d(40px, 20px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(40px, 20px, 0px);}}
@keyframes cloudmove-3 {0% {transform: translate3d(-50px, 40px, 0px);}50% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(-50px, 40px, 0px);}}

@-webkit-keyframes rain {0% {transform:translateY(0);opacity: 0;}50% {opacity: 1;}100% {transform:translateY(100px);opacity: 0;}}
@keyframes rain {0% {transform:translateY(0);opacity: 0;}50% {opacity: 1;}100% {transform:translateY(100px);opacity: 0;}}

@-webkit-keyframes cloudmove {0% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(800px, 0px, 0px);}}
@keyframes cloudmove {0% {transform: translate3d(0px, 0px, 0px);}100% {transform: translate3d(800px, 0px, 0px);}}

@-webkit-keyframes lever {0% {transform: rotate(0);}70% {transform: rotate(0);}80% {transform: rotate(30deg);}90% {transform: rotate(30deg);}100% {transform: rotate(0);}}
@keyframes lever {0% {transform: rotate(0);}70% {transform: rotate(0);}80% {transform: rotate(30deg);}90% {transform: rotate(30deg);}100% {transform: rotate(0);}}

@-webkit-keyframes playmove {0% {transform: translateY(40%);opacity: 0;}30% {transform: translateY(40%);opacity: 0;}40% {transform: translateY(0);opacity: 1;}70% {transform: translateY(0);opacity: 1;}80% {transform: translateY(-40%);opacity: 0;}100% {transform: translateY(40%);opacity: 0;}}
@keyframes playmove {0% {transform: translateY(40%);opacity: 0;}30% {transform: translateY(40%);opacity: 0;}40% {transform: translateY(0);opacity: 1;}70% {transform: translateY(0);opacity: 1;}80% {transform: translateY(-40%);opacity: 0;}100% {transform: translateY(40%);opacity: 0;}}


@keyframes bounceIn {
0%, 2%, 4%, 6%, 8%, 10% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
2% {
-webkit-transform: scale3d(1.2, 1.2, 1.2);
transform: scale3d(1.2, 1.2, 1.2);
}
4% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
6% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
8% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
10% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}

@-webkit-keyframes bounceIn {
0%, 2%, 4%, 6%, 8%, 10% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
2% {
-webkit-transform: scale3d(1.2, 1.2, 1.2);
transform: scale3d(1.2, 1.2, 1.2);
}
4% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
6% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
8% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
10% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}




/**

* Cart Page Table responsive css Styles.

**/



@media only screen and (max-width: 991px) {



  /* Force table to not be like tables anymore */

  .cart-page table, .cart-page thead, .cart-page tbody, .cart-page th, .cart-page td, .cart-page tr { 

    display: block; 

  }

  

  /* Hide table headers (but not display: none;, for accessibility) */

  .cart-page thead tr { 

    position: absolute;

    top: -9999px;

    left: -9999px;

  }

  

  .cart-page tr { border: 1px solid #ccc; }

  

  .cart-page td { 

    /* Behave  like a "row" */

    border: none;

    border-bottom: 1px solid #eee; 

    position: relative;

    padding-left: 50%; 

  }

  

  .cart-page td:before { 

    /* Now like a table header */

    /* Top/left values mimic padding */

      position: absolute;

      top: 0;

      left: 0;

      width: 100%;

      padding-left: 40px;

      white-space: nowrap;

      font-size: 16px;

      color: #000;

      font-weight: 500;

      background-color: #F9F9F9;

      line-height: 60px;

      text-align: left;

  }

  .cart-page .table > tbody > tr > td.preview {

        padding: 85px 50px 25px;

  }

  .cart-page .table > tbody > tr > td {

        padding: 80px 40px 25px;

  }

  .cart-page .table > tbody > tr > td.del-item {

    text-align: left;

  }

  /*

  Label the data

  */

.cart-page td:nth-of-type(1):before { content: "Preview"; }

.cart-page td:nth-of-type(2):before { content: "Product"; }

.cart-page td:nth-of-type(3):before { content: "Price"; }

.cart-page td:nth-of-type(4):before { content: "Quantity"; }

.cart-page td:nth-of-type(5):before { content: "Total"; }

.cart-page td:nth-of-type(6):before { content: "Delete Item"; }

}



























/******* edited style ******/





/******* edited style ******/





/*represent start*/



.represent {

font-family: 'Titillium Web', sans-serif;

position:relative;

width:100%;

margin:0;

}

.represent .title {

    padding-bottom: 15px;

	font-weight:bold;

    text-transform: uppercase;

    text-align: center;

    color: #363636;

}

.represent .sub_title {

    max-width: 600px;

    padding-bottom: 20px;

    text-align: center;

    color: #959595;

    position: relative;

	margin-bottom: 30px;

}

.represent .sub_title:after {

    content: "";

    width: 30%;

    height: 2px;

    background: #363636;

    position: absolute;

    bottom: 0;

    left: 35%;

}



.represent .content {

min-width:300px;

padding-top:15px;

padding-bottom:15px;

}

.represent .content .tie {

font-size:21px;

font-weight: 600;

text-transform: uppercase;

padding:15px 0 6px;

}

.represent .content .cont {

color: #959595;

font-size: 15px;

padding-bottom: 10px;

text-align: justify;

}

.represent .content .cont:before {

    content: "";

    width: 30%;

    height: 2px;

    background: #e5493a;

    position: absolute;

    bottom: 15px;

    left: 35%;

}





@media (min-width:992px) {

	.represent .title {

		font-size:30px;

	}

	.represent .sub_title {

    font-size: 18px;

	}

}



@media (min-width:768px) and (max-width:991px) {

	.represent .title {

		font-size:24px;

	}

	.represent .sub_title {

    font-size: 16px;

	}

}

@media (max-width:767px) {

	.represent .title {

		font-size:20px;

	}

	.represent .sub_title {

    font-size: 14px;

	}

}





/*represent ends*/





/*register start*/



.banner_content {

width:100%;

margin-top:30px;

padding:15px 0;

background-color:#e2e2e2;

}

.banner_content .banner_tie {

width:100%;

padding: 15px;

box-sizing: border-box;

}

.banner_content .cont {

width:100%;

padding:0 15px;

box-sizing: border-box;

}

.banner_content .cont .text span {

font-size:18px;

text-transform:uppercase;

} 

.banner_content .cont textarea {

    width: 100%;

	height:39px;

	border: 2px solid #d8d8d8;

    margin-bottom: 15px;

    line-height: 33px;

    padding: 0 3px;

}

.refer_link {

line-height:60px;

border-radius:3px;

font-size:18px;

background-color:#3e3343;

padding:0 15px;

display:inline-block;

box-sizing: border-box;

color: #16c9f6;

margin-bottom:30px;

}



@media (max-width:768px) {

.refer_link , .dash_reflink a {

font-size:14px !important;

line-height:24px;

}

}



.dash_upline , .dash_reflink{

    font-size: 18px;

	color:#000;

}

.dash_upline a , .dash_reflink a{

	display:inline-block;

    font-size: 24px;

    font-weight: 600;

	color:#111930;

}

.dash_upline a:hover , .dash_reflink a:hover {

text-decoration:none;

}

.dash_referral {

padding:30px 0 0;

border-top: 2px solid #111930;

}

.dash_security .title {

    font-size: 21px;

    font-weight: 600;

	padding:10px 0;

}

.dash_security .content {

position:relative;

display:inline-flex;

margin-right: 30px;

width:150px;

}

.dash_security input[type=radio] {

opacity:0;

position:relative;

width:32px;

height:32px;

line-height:32px;

z-index:1;

cursor:pointer;

}

.dash_security  p {

display:inline-block;

font-size: 18px;

line-height: 36px;

padding-left: 15px;

}

.dash_security input[type=radio] + span {

display:inline-block;

position: absolute;

top: 3px;

left: 0;

}

.dash_security input[type=radio] + span:before {

content:url(images/disabled.html);

width:32px;

height:32px;

}

.dash_security input[type=radio]:checked + span:before {

content:url(images/enabled.html);

}

.dash_security .dash_btn {

margin-top:30px;

}



.dash_edit {

position:relative;

margin:0;

}

.dash_edit .dash_acc_detail {

background-color:#1498dc;

color:#fff;

padding:30px 0;

}

.dash_edit .dash_acc_detail .cont {

display:inline-flex;

width: 100%;

align-items: center;

}

.dash_edit .dash_acc_detail .tie {

width:50%;

padding: 6px 0;

font-size:18px;

}

.dash_edit .dash_acc_detail .form-control {

    display: block;

    width: 100%;

    height: 36px;

	padding:0 0 0 12px;

    font-size: 18px;

	line-height:inherit;

    color: #fff;

    margin: 0;

    background-color: transparent;

    background-image: none;

    border: none;

    border-radius: 0;

    -webkit-box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.30);

    box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.30);

    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;

    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

}

.dash_edit .dash_acc_detail .form-control:focus {

    border-color: #66afe9;

    outline: 0;

    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);

    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);

}





/*register ends*/




.get-started {

    min-height: 1080px;
	padding: 30px 0 90px;
    overflow: hidden;
}

.get-started .tablet {
	
    position: relative;
}

.get-started .tablet::after {
	
    content: '';
    display: block;
    width: 1046px;
    height: 918px;
    background: url(images/tablet.html) center no-repeat;
    position: absolute;
    top: 55px;
    right: 0;
}

.get-started .polygon-wrapper {
	
    position: relative;
    margin-top: 355px;
    min-height: 220px;
}

.get-started .polygon-wrapper::before {
	
    width: 714px;
    height: 823px;
    top: -375px;
    left: -71px;
    background: url(images/polygon-wrapper.html) center no-repeat;
}

.get-started .polygon {
	
    position: absolute;
    width: 170px;
    height: 196px;
}

.get-started .polygon:hover::before {
	
    transform: scale(1);
}

.get-started .polygon-1 {
	
    left: 50%;
    margin-left: -85px;
    top: -310px;
}

.get-started .polygon-1::before {
	
    background: url(images/polygon-1-hover.html) center no-repeat;
}

.get-started .polygon::before {
	
    left: -8px;
    width: 186px;
    height: 216px;
    background: url(images/polygon-1-hover.html) center no-repeat;
    z-index: 2;
    transform: scale(.9);
    transition: all .3s ease;
}

.get-started .polygon::after, .get-started .polygon::before {
	
    top: 0;
    right: 0;
    margin: auto;
    position: absolute;
    bottom: 0;
    content: '';
}

.get-started .polygon-wrapper::after, .get-started .polygon-wrapper::before {
	
    content: '';
    display: block;
    position: absolute;
}

.get-started .polygon-1 span {
	
    top: 0;
    left: 50%;
    margin-left: -21px;
}

.get-started .polygon span {
	
    position: absolute;
    display: block;
    color: #fff;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 30px;
    width: 42px;
    height: 42px;
    z-index: 12;
    text-align: center;
}

.get-started .polygon-1::after {
	
    background: url(images/polygon-1.html) center no-repeat;
}

.get-started .polygon::after {
	
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 10;
}

.get-started .polygon-wrapper::after {
	
    width: 553px;
    height: 520px;
    background: url(images/arrow-bg.html) center no-repeat;
    top: -161px;
    right: 49px;
}

.get-started .polygon-2 {
	
    top: -155px;
    right: -30px;
}

.get-started .polygon-2::before {
	
    background: url(images/polygon-2-hover.html) center no-repeat;
}

.get-started .polygon-2::after {
	
    background: url(images/polygon-2.html) center no-repeat;
}

.get-started .polygon-2 span {
	
    top: 50px;
    right: 0;
}

.get-started .polygon-3 {
	
    top: 155px;
    right: -30px;
}

.get-started .polygon-3::before {
	
    background: url(images/polygon-3-hover.html) center no-repeat;
}

.get-started .polygon-3::after {
	
    background: url(images/polygon-3.html) center no-repeat;
}

.get-started .polygon-3 span {
    top: 110px;
    right: 0;
}

.get-started .polygon-4 {
	
    left: 50%;
    margin-left: -85px;
    top: 310px;
}

.get-started .polygon-4::before {
	
    background: url(images/polygon-4-hover.html) center no-repeat;
}

.get-started .polygon-4::after {
	
    background: url(images/polygon-4.html) center no-repeat;
}

.get-started .polygon-4 span {
    bottom: 0;
    left: 50%;
    margin-left: -21px;
}

.get-started .polygon-5 {
	
    top: 155px;
    left: -28px;
}

.get-started .polygon-5::before {
	
    background: url(images/polygon-5-hover.html) center no-repeat;
}

.get-started .polygon-5::after {
	
    background: url(images/polygon-5.html) center no-repeat;
}

.get-started .polygon-5 span {
	
    top: 110px;
    left: 0;
}

.get-started .polygon-6 {
	
    top: -155px;
    left: -28px;
}

.get-started .polygon-6::before {
	
    background: url(images/polygon-6-hover.html) center no-repeat;
}

.get-started .polygon-6::after {
	
    background: url(images/polygon-6.html) center no-repeat;
}

.get-started .polygon-6 span {
	
    top: 50px;
    left: 0;
}

.get-started .get-started-content {
	
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 460px;
    text-align: center;
    color: #000;
    margin: 0 auto;
    display: none;
}

.get-started .get-started-content .title {
	
    font-size: 24px;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 30px;
}

.get-started .get-started-content .content {
	
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
	font-family: 'Bai Jamjuree', sans-serif;
}

.btn-title-block {
	
	font-size: 16px;
    color: #fff;
	text-transform:uppercase;
    background: linear-gradient(135deg, #5561b2 40%, #b225f1 100%);
    border-radius: 50px;
    border: 1px solid #9b33e1;
    outline: none;
    display: inline-block;
    box-shadow: inset 0 0 0 0 #eca334;
    transition: 0.7s;
	font-family: 'Bai Jamjuree', sans-serif;
	padding: 10px 30px;
	font-weight:700;
	margin-top: 10px;
}

.btn-title-block:hover {
	
    color: #071c56 !important;
    background: #eca334 !important;
    border: 1px solid #eca334 !important;
    transition: 0.7s;
    box-shadow: inset 0 35px 0 0 #eca334;
}

#education {
    padding: 100px 0;
    overflow: hidden;
}

#education .img-wrapper {
	
    position: relative;
    margin-bottom: 70px;
}

/*#education .img-wrapper::before {
	
    content: '';
    display: block;
    background: url(images/after-img.png) center no-repeat;
    width: 278px;
    height: 274px;
    position: absolute;
    left: -197px;
    top: -90px;
}

#education .img-wrapper.right::before {
	
    width: 286px;
    height: 384px;
    left: auto;
    right: -181px;
    top: -96px;
    background: url(images/after-img-right.png) center no-repeat;
}*/

#education .img-wrapper img {
	
    margin: 0 auto;
    box-shadow: 3px 3px 20px 3px rgba(0,0,0,.5);
}

#education .text-wrapper {
	
    margin-bottom: 70px;
	font-family: 'Bai Jamjuree', sans-serif;
}

#education .text-wrapper .education-title {
	
    margin: 85px 0 25px 100px;
    font-size: 30px;
    color: #260a8c;
}

#education .text-wrapper .education-title span {
	
    display: inline-block;
    width: 100%;
    position: relative;
}

#education .text-wrapper .education-title span::after {
	
    content: '';
    display: block;
    position: absolute;
    width: 33px;
    height: 38px;
    background: url(images/title-after.png) center no-repeat;
    left: -60px;
    top: 50%;
    margin-top: -19px;
    z-index: 10;
}

#education .text-wrapper .education-description {
	
    color: #333;
    font-size: 16px;
    margin: 0 0 25px 100px;
}

#education .text-wrapper.right {
	
    text-align: right;
}

#education .text-wrapper.right .education-title {
	
    margin: 85px 100px 25px 0;
}

#education .text-wrapper.right .education-title span::after {
	
    transform: rotate(180deg);
    right: -60px;
    left: auto;
}

#education .text-wrapper.right .education-description {
	
    margin: 0 100px 25px 0;
}

@media (max-width: 1199px) {
	
.get-started .polygon::before{display:none;}
	
.get-started .polygon {
    width: 150px;
}
.get-started .polygon-1 {
    top: -290px;
    margin-left: -75px;
}

.get-started .polygon-1::after {
	
    background-size: 100%;
}

.get-started .polygon-2 {
    top: -143px;
    right: -20px;
}

.get-started .polygon-2::after {
	
    background-size: 100%;
}

.get-started .polygon-3 {
    top: 143px;
    right: -20px;
}

.get-started .polygon-3::after {
	
    background-size: 100%;
}

.get-started .polygon-4 {
    top: 290px;
    margin-left: -75px;
}

.get-started .polygon-4::after {
	
    background-size: 100%;
}

.get-started .polygon-5 {
    top: 143px;
    left: -20px;
}

.get-started .polygon-5::after {
	
    background-size: 100%;
}

.get-started .polygon-6 {
    top: -143px;
    left: -20px;
}
.get-started .polygon-6::after {
	
    background-size: 100%;
}
.get-started .polygon-1 span {
    top: 18px;
}
.get-started .polygon-4 span {
    bottom: 18px;
}

#education .text-wrapper .education-title {
    margin: 20px 0 25px 100px;
}

#education .text-wrapper.right .education-title {
    margin: 20px 100px 25px 0;
}
}

@media (min-width: 768px){
.col-sm-push-6 {
    left: 50%;
}
}

@media (min-width: 768px){
.col-sm-pull-6 {
    right: 50%;
}
}

@media (max-width:991px){
	
.get-started .tablet{
	display:none;
}

#education .text-wrapper .education-title {
    margin: 20px 0 25px;
    font-size: 24px;
}

#education .text-wrapper .education-title span::after {
	
	display:none;
}

#education .text-wrapper .education-description {
    margin: 0 0 25px;
}

#education .text-wrapper.right .education-title {
    margin: 20px 0 25px;
}

#education .text-wrapper.right .education-description {
    margin: 0 0 25px;
}

}

@media (max-width:767px){
	#education .img-wrapper::before{
		display:none;
	}
	#education .text-wrapper.right {
    text-align: left;
	}
}

@media (max-width:680px){.get-started{min-height:790px}.get-started .get-started-content{margin:0 auto}}

@media (max-width:540px){.get-started .get-started-content .btn-title-block{max-width:100%;margin-left:13px}}

@media (max-width:680px){.get-started .polygon{float:left}.get-started .polygon-1,.get-started .polygon-2,.get-started .polygon-3,.get-started .polygon-4,.get-started .polygon-5,.get-started .polygon-6{position:relative;left:auto;right:auto;top:auto;bottom:auto;margin-left:10px;margin-right:10px}.get-started .polygon-wrapper-next{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}}

@media (max-width: 680px){
.get-started .polygon-wrapper {
    width: 100%;
    margin: 0 auto;
	
}

.get-started .polygon-wrapper::before {
	
   	background: transparent;
}

.get-started .polygon-wrapper::after {
	
   	background: transparent;
}
}

/***************** login starts ************/

.innerpage_banner1 {
	
    min-height: 150px;
    width: 100%;
    background:#060c2c no-repeat top center;
	background-size: cover;
}

 .inner_page_infos {
    margin-top: 40px;
    width: auto;
    padding-left: 35px;
    background: transparent;
    padding-right: 35px;
    padding-bottom:40px;
    display: inline-block;
}

.inner_page_infos h3 {
	
     font-size:36px;
     color: #fff;
     font-weight:700;
     margin: 30px 0px 30px 0px;
	 font-family: 'Josefin Sans', sans-serif;
	 text-transform: uppercase;
}

@media only screen and (max-width: 1199px){
	 .inner_page_infos h3 {
     font-size:30px;
     color: #fff;
     font-weight:700;
     margin: 0px 0px 30px 0px;
     line-height: normal;
	 font-family: 'Bai Jamjuree', sans-serif;
	 text-transform: uppercase;
}
}

.inner_page_infos h4 {
	
	font-size: 20px;
    font-weight:500;
    color: #ccc;
	 margin: 0px 0px 30px 0px;
	font-family: 'Bai Jamjuree', sans-serif;
	text-transform: uppercase;
}

.inner_page_infos p {
	
	font-size:18px;
    font-weight: 400;
    color: #ccc;
	margin: 0px 0px 0px 0px;
	font-family: 'Bai Jamjuree', sans-serif;
}

.bounty_card-top {
	
	background:#212892;
	padding:25px 0px 45px 0px;
	color:#fff;
	margin:20px 0;
	border-radius:3px;
}

.bounty_card-top--bonus {

	font-family: 'Bai Jamjuree', sans-serif;
	text-align:right;
}

.bounty_card-top--title {
	
	font-size:20px;
	font-family: 'Bai Jamjuree', sans-serif;
	font-weight:600;
	text-align:left;
}

.bounty_card-body--description {
	
	
}

.bounty_card-body--description p {
	
    font-size: 14px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
    color: #000;
    text-align: left;
    margin: 0px 0px 0px 0px;
}

.bounty-img {
	
	padding:50px 0px 30px 0px;
	text-align: center;
}

.bounty-img img {
	
	 width: 200px;
	 margin:0px auto 40px;
}

.bounty-img a {
	
	font-size: 14px !important;
    color: #fff !important;
    background: #375afd;
    border-radius: 5px;
    border: 1px solid #375afd !important;
    outline: none;
    box-shadow: inset 0 0 0 0 #212892;
    transition: 0.7s;
    text-transform: uppercase;
    padding: 10px 40px !important;
    font-weight: 600;
	margin-left: 5px;
}

.bounty-img a:hover {
	
    color: #fff !important;
    background: #212892;
    border: 1px solid #212892 !important;
    transition: 0.7s;
    box-shadow: inset 0 35px 0 0 #212892;
}

.card_content-text {
	
    padding: 0;
    line-height: 20px;
}

.card_content-text--list {
	
    margin-top: 25px;
    border-top: 1px solid #c6c2c2;
    padding-top: 25px;
}

.card_content-text--list p {
	
	font-family: 'Bai Jamjuree', sans-serif;
    font-weight:600;
    color: #375afd !important;
	font-size:18px !important;
	margin:0px 0px 10px 0px;
}

.card_content-text--list ul {
	
    padding: 0;
}

.card_content-text--list ul li {
	
    list-style: none;
    padding:2px 0px !important;
	font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
    color: #000;
}

.card_content-text--list1 {
	
	    padding-top: 15px;
}

.card_content-text--list1 p {
	
    margin:2px 0px 0px 0px;
	font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
    color: #000;
	font-size:15px;
}

.card_content-text--list1 p span {

	color:#212892;
}

.card_content-text--list1 p span:hover {
	
    color: #444;
}

.bounty-review {
	
	text-align: center;
}

.bounty_review-block-title {
	
	text-align: center;
    background: #212892;
    color: #fff;
    display: inline-block;
    margin: 60px auto 60px auto;
    padding: 20px 25px;
    border-radius: 100px;
}

.how-bg {
	
	background: #fff url(images/depo-bg.jpg) no-repeat center fixed;
    background-size: cover;
    padding: 30px 0px 30px;
}

.how-bg .how-head {
	
	padding:30px 0px 0px;
}

.how-bg .how-head h2 {
	
	font-family: 'Titillium Web', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #001331;
    margin: 0px 0px 0px 0px;
}

.how-bg .how-head p {
	
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #375afd;
    margin: 10px 0px 0px 0px;
}

.how-bg .how-start {
	
	padding:50px 0px 30px;
}

.how-bg .how-start .text-wrapper {
	
	padding:30px 0px 30px;
}

.how-bg .how-start .text-wrapper h3 {
	
	font-size: 22px;
    color: #262a96;
    font-weight: 600;
    margin: 0px 0px 10px 0px;
    line-height: normal;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
}

.how-bg .how-start .text-wrapper .how-cont {
	
	padding: 0px 0px 0px;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #060c2c;
    line-height: 26px;
}

.how-bg .how-start .how-but {
	
	padding: 20px 0px 20px;
}

.how-bg .how-start .how-but a {
	
	font-family: 'Exo', sans-serif;
	font-size:18px;
	font-weight:600;
	color:#fff;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 10px;
}

.how-bg .how-start .how-but .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.how-bg .how-start .how-but .button-blue {
	
    color: #fff;
    background-color: #375afd;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 42px 5px 42px;
    margin:0px;
    line-height: 30px;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: 5px 5px 0 1px rgba(0,0,0,.15);
    box-shadow: -4px 5px 0 1px rgba(55, 90, 253, 0.62);
    transition:0.7s;
}

.how-bg .how-start .how-but .button-blue:hover {
	
    background: #f7c324;
    color: #18161b;
    -webkit-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    -moz-box-shadow: inset 2px 2px 0 1px rgba(0,0,0,.15);
    box-shadow: -4px 5px 0 1px rgba(247, 195, 36, 0.62);
    transition:0.7s;
}

.how-bg .how-start .how-but .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.how-bg .how-start .img-wrapper {
	
	padding:30px 0px 30px;
}

.how-bg .how-start .img-wrapper img {
	
	margin:auto;
}

.how-bg .how1 {
	
	padding:30px 0px 30px;
}

.how-bg .how1 .how-img {
	
	padding:30px 0px 30px;
}

.how-bg .how1 .how-img a {
	
	font-family: 'Saira', sans-serif;
	font-size:30px;
	font-weight:500;
	text-transform:uppercase;
	transition:0.7s;
	margin:0px 0px 0px 0px;
}

.how-bg .how1 .how-img .button-slanted {
	
    -ms-transform: skewX(17deg);
    -webkit-transform: skewX(17deg);
    transform: skewX(17deg);
}

.how-bg .how1 .how-img .button-img {
	
	color: #000;
    background: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 30px 5px 30px;
    margin: 0px;
    line-height: 40px;
    display: inline-block;
    box-shadow: -4px 5px 0 1px rgb(182, 183, 184);
    transition: 0.7s;
}

.how-bg .how1 .how-img .button-img:hover {
	
	color: #fff;
    background: #f5f5f5;
    box-shadow: -4px 5px 0 1px rgba(34, 41, 147, 0.42);
    transition: 0.7s;
}

.how-bg .how1 .how-img .button-slanted-content {
	
    -ms-transform: skewX(-17deg);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    display: inline-block;
}

.how-bg .how1 .how-text {
	
	padding:30px 0px 30px;
}

.how-bg .how1 .how-text p {
	
	font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}


 /***************************************************dashboard********************************************************/
 


.innerpage_banner {
    min-height: 150px;
    /*background-size: auto 100%;*/
    width: 100%;
    background: #13013e url(images/foot-bg.jpg) no-repeat top center;
	background-size: cover;
}
 .inner_page_info {
    margin-top: 35px;
    width: auto;
    padding-left: 35px;
    background: transparent;
    padding-right: 35px;
    padding-bottom: 0px;
    display: inline-block;
}
 .inner_page_info h3 {
    font-size: 34px;
    color: #fff;
    font-weight:600;
    margin: 30px 0px 30px 0px;
    line-height: normal;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
}

.inner_page_info h3 span {
	
	color:#f7c324;
}

@media only screen and (max-width: 1199px){
	 .inner_page_info h3 {
     font-size:30px;
     color: #fff;
     font-weight:800;
     margin: 0px 0px 30px 0px;
     line-height: normal;
	 font-family:'Bai Jamjuree', sans-serif;
	 text-transform: uppercase;
}
}

.full {
    /* width: 100%;
     float: left;
     margin: 0;
     padding: 0;*/
	 text-align: center;
}
  .heading_main {
     float: left;
     width: 100%;
     text-align: center;
     margin-bottom: 35px;
	 /*margin-top: 30px;*/
}
.heading-main h2 {
	
	font-size: 45px;
    color: #222;
    line-height: 36px;
    font-weight: 400;
    text-transform: none;
    line-height: normal;
    letter-spacing: -0.5px;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
}
.heading_main span {
    color: #550ae7;
    font-family: 'PT Sans', sans-serif;
    font-weight:700;
    font-size: 38px;
	text-transform: uppercase;
}
.heading_main span::after {
    border-bottom: solid #ff7300 4px;
    color: #fff;
    padding-bottom: 15px;
    content: "";
    display: block;
    width: 120px;
    margin: 0 auto -10px;
} 

.main_title{ width:100%; margin-bottom:30px;}
.main_title h2{ font-size:33px;font-family: "open Sans", sans-serif; }
.main_title span {
	font-size: 33px;
	font-weight: 400;
	font-family: "open Sans", sans-serif;
	padding-top: 20px;
	display: inline-block;
	width: 100%;
	color: #6f8ef3;
}

.form_block {
	width: 100%;
	display: inline-block;
	margin-bottom: 30px;
}
.form_block span {
	width: 100%;
	display: inline-block;
	position: relative;
}

.form_block span a {
	
	color: #375afd;
    font-size: 16px;
    font-weight: bold;
	transition:0.7s;
}

.form_block span a:hover {
	
	color: #000;
	transition:0.7s;
    font-size: 16px;
    font-weight: bold;
}

.form_block span [type="text"], .form_block span [type="email"], .form_block span [type="password"], .form_block span [type="number"], .form_block span textarea {
	padding: 0 60px 0 0;
}


.form_block.dark span [type="text"], .form_block.dark span [type="email"], .form_block.dark span [type="password"], .form_block span.dark [type="number"], .form_block span.dark textarea


{ color:#000000;}

.form_block span i {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    position: absolute;
    left: 10px;
    top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #061b3f;
    border: 1px solid #05183a;
    border-radius: 50px;
}

.form_box {
    width: 100%;
    display: inline-block;
    padding: 0px 0px 30px;
    margin-bottom: 0px;
    background: transparent;
    background-size: cover;
    font-family: "open Sans", sans-serif;
}

.form_box h2 {
	text-align: center;
	padding: 15px 0;
	color: #14228b;
}

.forgot_pwd span {
	font-size: 14px;
	color: #fff;
	text-transform: capitalize;
}
.forgot_pwd span a {
	font-size: 14px;
	color: #375afd;
	float: right;
}

.inner-bg  {

    background: #fff url(images/depo-bg.jpg) no-repeat top center fixed;
    background-size: cover;
	padding:0px 0px 30px 0px;
}


.success {
	  background: linear-gradient(1deg, #171858, #2b792b); background-size: 400% 400%;
  	

-webkit-animation: AnimationName 5s ease infinite;
-moz-animation:AnimationName 5s ease infinite;
animation: AnimationName 5s ease infinite;
   border-radius: 0;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
  color: #fff;
  font-size: 12px;
  padding: 1px 10px;
opacity: 0.7; display:inline-block;
}
.msg {
	color: #000;
	font-size: 13px;
	margin: 10px 0;
	text-align: center;

}
.msg.black {
	color: #fff;

}



.frmcont.textarea span i {
  bottom: inherit;
  top: 0;
}





.error {
  background: linear-gradient(1deg, #171858, #b93b37);
  
   background-size: 400% 400%;
-webkit-animation: AnimationName 5s ease infinite;
-moz-animation: AnimationName 5s ease infinite;
animation: AnimationName 5s ease infinite;
  border-radius: 0;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
  color: #fff;
  font-size: 12px;
  padding: 1px 10px;
  opacity: 0.7;display:inline-block;
}
.msg li {
	display: inline-block;
	list-style-type: none;
 margin: 5px 0;
}
.after_reg {
    color: #000;
}
.after_reg h3 {
  color:#1d62ad;
  font-size: 23px;
}

.after_reg p{ margin-bottom:10px;
}
.after_reg b{ 
    color: #375afd;
    font-size: 18px;
}

.msg .error i {
  background-color: #b93b37;
  color: #fff;

}

.msg .success i {
  background-color: #2b792b;
  color: #fff;

}
.msg i {

  margin-right: 5px;
  padding: 10px;
}

@-webkit-keyframes AnimationName {
    0%{background-position:63% 0%}
    50%{background-position:38% 100%}
    100%{background-position:63% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:63% 0%}
    50%{background-position:38% 100%}
    100%{background-position:63% 0%}
}
@keyframes AnimationName {
    0%{background-position:63% 0%}
    50%{background-position:38% 100%}
    100%{background-position:63% 0%}
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */

  color: rgba(255, 255, 255, 0.5);

}

::-moz-placeholder { /* Firefox 19+ */

  color: rgba(255, 255, 255, 0.5);

}

:-ms-input-placeholder { /* IE 10+ */

  color: rgba(255, 255, 255, 0.5);

}

:-moz-placeholder { /* Firefox 18- */

  color: rgba(255, 255, 255, 0.5);

}











/***************** login ends ************/



/***************** signup starts ************/



.sign_bg  {

/*background-color: #e9e9e9;*/

}



.regpage {

    position: relative;
    width: 100%;
    min-width: 300px;
    max-width: 450px;
    box-sizing: border-box;
    padding: 30px;
    box-shadow: 0px 1px 12px 6px;
    background-color: #ff671e66;
    border: 5px solid #375afd;
    border-radius: 20px;


}



.regpage .main_tie {

font-family: 'Rajdhani', sans-serif;

padding-bottom: 30px;

font-size:30px;

font-weight:bold;

    color: #000;

}



.regpage table tr td{

border-bottom: 20px solid transparent;

color: #3e3343;

}

.regpage table {

width:100%;

}

.regpage .table-responsive {

border:none;

}

.regpage table .inpts , .regpage table textarea {

position:relative;

max-width: 300px;

height:39px;

width:100%;

}

.regpage table tr td , .regpage table tr td a , .regpage table .sbmt{

    font-family: 'Rajdhani', sans-serif;

    font-weight: 600;

    font-size: 18px;

}



::-webkit-input-placeholder { /* Chrome/Opera/Safari */

  color: rgba(255, 255, 255, 0.5);

  position:absolute;

  bottom:0;

}

::-moz-placeholder { /* Firefox 19+ */

  color: rgba(255, 255, 255, 0.5);

}

:-ms-input-placeholder { /* IE 10+ */

  color: rgba(255, 255, 255, 0.5);

}

:-moz-placeholder { /* Firefox 18- */

  color: rgba(255, 255, 255, 0.5);

}













/***************** signup ends ************/



/***************** support starts ************/





 .sup_bg  {

/* background-image:url(images/banner-2.jpg);

background-position:center;

background-size: cover;*/

  /*  background-color: #e9e9e9;*/

}


.supage .supageright {

    width: 100%;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.3);
    background-color: #ff671e66;
    border: 5px solid #375afd;
    box-shadow: 0px 1px 12px 6px;
    border-radius: 20px;
	margin-bottom:40px;
}

.supage .supageright img{
	
	max-width: 100%;
    padding-bottom: 18px;
}

.supage .supageright .sup-head{
	
	padding-top: 13px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #6b1d0b;
}

.supage .supageleft {

    width: 100%;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.3);
    background-color: #ff671e66;
    border: 5px solid #375afd;
    box-shadow: 0px 1px 12px 6px;
    border-radius: 20px;
	margin-bottom:40px;
}



.supage .main_tie {

font-family: 'Rajdhani', sans-serif;

padding-bottom: 30px;

font-size:30px;

font-weight:bold;

    color: #000;

}



.supage .supageleft .table-responsive {

border:none;

}

.supage .supageleft table {

    width: 100%;

}

.supage .supageleft table tr td{

border-bottom: 20px solid transparent;

color: #3e3343;

}

.supage .supageleft .inpts , .supage .supageleft table textarea {

position:relative;

max-width: 300px;

width:100%;

}

.supage .supageleft .inpts {

height:39px;

}

.supage .supageleft table tr td , .supage .supageleft table tr td a , .supage .supageleft table .sbmt{

    font-family: 'Rajdhani', sans-serif;

    font-weight: 600;

    font-size: 18px;

}



.sup_bg .table-responsive {

/*border:none;*/

}











/***************** support ends ************/





/***************** Dashboard starts ************/



.user_page {

width:100%;

position:relative;

border:none;

overflow-x: hidden;

background-color:#fff;

padding:30px;

box-sizing:border-box;

}

@media screen and (max-width: 420px){

.user_page {

padding:30px 10px;

}

}

.user_page .list {

/*min-width:240px;

max-width:460px;*/

width:100%;

height:180px;

/*display:inline-block;*/

/*background: -webkit-linear-gradient(135deg , #1498dc , #0572ab , rgba(69, 20, 220, 0.75));

background: -o-linear-gradient(135deg , #1498dc , #0572ab , rgba(69, 20, 220, 0.75));

background: -moz-linear-gradient(135deg , #1498dc , #0572ab , rgba(69, 20, 220, 0.75));

background: linear-gradient(135deg , #1498dc , #0572ab , rgba(69, 20, 220, 0.75));*/

margin-bottom:30px;

/*box-sizing: border-box;*/

padding: 15px;

color:#fff;

    border: 1px solid #1c78d4;

    background: #323254;

}

.user_page .list:first-child {

/*margin-right:20px;*/

}

.user_page .list p{

font-size:21px;

line-height:36px;

}

.user_page .list span , .dash_title{

font-size:24px;

display:block;

font-weight:bold;

}

.dash_cont{

font-size:16px;

display:block;

color:#9c9c9c;

}

.user_page .content , .dash_referral .content {

    display: inline-block;

    float: none;

    min-width: 245px;

    max-width: 315px;

    padding: 15px 0 15px 6%;

    margin-bottom: 15px;

    margin-right: 15px;

    box-sizing: border-box;

    background-color: #e2e2e2;

    text-align: left;

    background-image: url(images/chart.html);

    background-repeat: no-repeat;

    background-position-x: 93%;

    background-position-y: 69%;

}

.user_page .content .tie , .dash_referral .content .tie {

	font-size: 18px;

}

.user_page .content .num , .dash_referral .content .num {

font-family: 'Oswald', sans-serif;

	font-size: 27px;

    font-weight: 600;

	    color: #111930;;

}





.inner-content {

	padding: 45px 0 100px 0px;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 16px;

	line-height: 24px;

	color: #808080;

}

.innerContentTitle {

	font-family: 'Roboto Slab', serif;

	font-weight: 400;

	font-size: 30px;

	color: #1e1e1e;

	margin-bottom: 27px;

}

.innerContentTitle span {

	font-weight: 300;

}

.innerContentSubTitle {

	background: #101010;

	font-family: 'Source Sans Pro', sans-serif;

	color: #ffffff;

	font-size: 18px;

	text-transform: uppercase;

	padding: 10px 0px 10px 20px;

	margin: 0px;

	overflow: hidden;

}

.innerContentSubTitle label {

	float: right;

	text-align: right;

	font-weight: normal;

	padding-right: 20px;

}



.statusDis {

	max-width: 280px;

	height: 150px;

	width: 100%;

	margin-right: 15px;

	background-color: #f85c37;

	text-align: center;

	color: #fff;

	float: left;

	padding-top: 27px;

}

.adminStatusDisplay .statusDis h2 {

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 30px;

	margin: 20px 0px;

}

.adminStatusDisplay .statusDis h4 {

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 18px;

	margin: 5px 0px;

	text-transform: uppercase;

}

 h3.depositWithdrwaInfo {

    background: #375afd;

    font-family: 'Source Sans Pro', sans-serif;

    color: #ffffff;

    font-size: 18px;

    text-transform: uppercase;

    padding: 17px 10px 17px 10px;

    margin: 0px;

    overflow: hidden;

	text-align: center;

}

 h5.affiliateLink {

    background: #000;

    font-family: 'Source Sans Pro', sans-serif;

    color: #fff;

    font-size: 18px;

    padding: 25px 10px 30px 10px;

    margin: 0px;

    overflow: hidden;

	text-align: center;

	margin-bottom: 10px;

}



 h5.affiliateLink a {

 	

 	 color: #f2730b;

 }

.amtDetails {

	padding: 20px 0px;

}

.amtDetails .amtDis {

	width: 100%;

	height: 62px;

	border: 1px solid #969696;

	padding: 10px;

	overflow: hidden;

	margin-bottom: 10px;

}

.amtDetails .amtDis .nAme {

    width: 60%;

    height: 40px;

    float: left;

    background-color: #0d0625;

    color: #ef9043;

    font-family: 'Source Sans Pro', sans-serif;

    font-size: 16px;

    line-height: 38px;

    text-transform: uppercase;

    padding-left: 20px;

}

.amtDetails .amtDis .aMt {

	width: 40%;

	height: 40px;

	float: left;

	background-color: #c8c8c8;

	color: #06123c;

	font-family: 'Source Sans Pro', sans-serif;

	font-weight: 600;

	font-size: 18px;

	line-height: 38px;

	padding-left: 20px;

}

.inner-content h5.affiliateLink a {

    color: #ffffff;

	text-decoration: none;

}

.inner-content h5.affiliateLink a:hover {

    color: #ffffff;

	text-decoration: underline;

}





.adminStatusDisplay .statusDis:last-child {

	margin-right: 0px;

}



.adminStatusDisplay .statusDis {

    max-width: 280px;
    height: 150px;
    width: 100%;
    margin-right: 15px;
    background-color: orange;
    text-align: center;
    color: #101010;
    float: left;
    padding-top: 27px;

}



.adminStatusDisplay {



	padding: 20px 0px 20px 0px;

}





.amountDeposit {

	padding: 12px 0px 18px;

}

.amountDeposit .dollar {

	width: 77px;

	height: 52px;

	float: left;

	padding-left: 22px;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 30px;

	color: #18428c;

	line-height: 48px;

}

.amountDeposit .amt {

	width: 270px;

	height: 50px;

	float: left;

	/*background-color: #c8c8c8;*/

	padding-left: 22px;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 30px;

	color: #18428c;

	line-height: 48px;

}

.depositFunds {

	padding: 8px 0px;

}

.depositFunds .fundsFrom {

	width: 290px;

	height: 40px;

	background: url("images/fundsFromBg.html") no-repeat 0 4px;

	border: 1px solid #c8c8c8;

	margin: 10px 0px;

	padding-left: 30px;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 16px;

	line-height: 38px;

	color: #555555;

}

.clearfix {

	clear: both;

}



.spendBut {

	width: 170px;

	height: 50px;

	background-color: #18428c;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 16px;

	text-align: center;

	line-height: 49px;

	color: #f7c524;

	text-transform: uppercase;

	border: none;

}

.spendBut:hover { 

	background-color: #2554a8;

}



.adminPlans {

	padding: 30px 0px 40px 0px;

}

.adminPlans .plan {

	width: 190px;

	height: 120px;

	float: left;

	background: url("images/planBg.html") no-repeat 0 0;

	margin-left: 10px;

	margin-right: 10px;

	margin-bottom: 20px;

}

.adminPlans .plan h1 {

    font-family: 'Roboto Slab', serif;

    font-weight: 700;

    font-size: 50px;

    color: #18428c;

    padding: 0px;

    margin: 0px;

    text-align: center;

}

.adminPlans .plan h3 {

    font-family: 'Roboto Slab', serif;

    font-weight: 400;

    font-size: 18px;

    color: #01182b;

    margin: 0px;

    padding: 4px 0 7px;

    text-align: center;

}

.adminPlans .plan h4 {

    font-family: 'Comfortaa', cursive;

    font-weight: 700;

    font-size: 17px;

    color: #ebebeb;

    margin: -13px;

    padding: 6px 0;

    text-align: center;

}







.dash_tie span {

line-height:36px;

font-size:24px;

color:#3e3343;

font-weight:bold;

display: block;

border-bottom:2px solid #111930;

margin-bottom:20px;

text-align:left;

font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;

}



.dash_detail {

position:relative;

min-width:300px;

border:3px solid #16c9f6;

max-width:480px;

display:inline-table;

min-height:120px;

margin-right: 6%;

box-sizing: border-box;

padding: 10px 15px;

padding-left: 50px;

background-image: url(images/banner-3.html);

background-position: center;

margin-bottom:30px;

}

.dash_detail .dash_pic {

    position: absolute;

    left: -15%;

    width: 90px;

    height: 90px;

    top: 15px;

}

.dash_detail .dash_pic img {

max-width:100%;

border: 3px solid #16c9f6;

border-radius: 50%;

background-color: #324a5e;

}



.dash_detail .dash_text p {

    text-transform: inherit;

    color: #000;

    font-size: 15px;

    line-height: 30px;

    font-weight: 500;

	font-family: 'Raleway', sans-serif;

	text-align:left;

}

.dash_detail .dash_text p span {

float:right;

}





/***************** Dashboard end ************/









/********** registration part Media query **********/



@media (min-width:1200px){	

	

.mega_tourch {

height:28%;

}	

.mega_tourch .touch {

left:12%;

}

	

}





@media (min-width:992px) and (max-width:1199px){	

	

.mega_tourch {

height:20%;

}	

.mega_tourch .touch {

left:12%;

}

	

}









@media (min-width:600px) and (max-width:991px){	

	

.mega_tourch {

height:15%;

}	

.mega_tourch .touch {

left:9%;

}	



}



@media (max-width:600px){	

	

.mega_tourch {

height:9%;

}

.mega_tourch .touch {

left:6%;

}	

	

}



@media (max-width:992px) {



.box6 , .box6 p , .box6 a  {

width:100%;

font-family: 'Bai Jamjuree', sans-serif;

font-size:100%;

line-height:24px;

color: #000;

padding:15px 0;

border:none;

}







input, textarea {

width:auto;

height:auto;

}



input[type=submit] {

width: auto;

background: #1c78d4;

border: 1px solid #1c78d4;

color:#fff;

}



input[type=submit] {

width: auto;

background: #1c78d4;

border: 1px solid #1c78d4;

color:#fff;

}

input[type=submit]:hover {

background:#fff;    

color: #1c78d4;

border: 1px solid #1c78d4;

}



}







/********** account-main page **********/





@media (max-width:420px) {



 

.member_detail , .member_detail table {

font-size:100%;

}





}



/*.menu ul li a {

padding:20px;

}*/



.tik , .users{

width:100%;

}



.tik .contents1 p {

	    position: relative;

    width: 100%;

	color:#202223;

}

.tik .contents1 span {

    height: 100px;

    width: 100px;

    border-radius: 50%;

    background-color: #242e35;

    position: absolute;

left: 40px;

	}

	.tik .contents1 span img {

	padding:15px 0;

	}

.tik .contents1 {

padding:20px 0px;

text-align:center;

line-height:45px;

position:relative;

background-color:#f3af27;

width: 180px;

margin:10px;

    display: inline-block;

}



.member_detail {

    font-family: 'Roboto', sans-serif;

    /* background: #212424; */

    border-radius: 5px;

}



.member_detail .left , .member_detail .rightmembox{

    height: auto;

    background: rgba(255, 255, 255, 0.25);

	margin-bottom:30px;

}



.member_detail .left .boxcontent , .member_detail .rightmembox .boxcontent{

border: 2px solid #192134;

	    box-sizing: border-box;

    padding: 15px;

	    border-radius: 5px;

width:100%;

}

.member_detail .left .memtitlebox , .member_detail .rightmembox .memtitlebox{

    background: #00bff3;

    color: #FFFFFF;

    padding: 13px 20px;

    text-align: center;

    font-size: 16px;

    border-radius: 5px;

    text-transform: uppercase;

}

.member_detail .left .boxcontent .usimg {

    text-align: center;

    width: 100%;

    margin: 10px 0px 10px 0px;

}

.member_detail table tr td {

    border-bottom: 1px solid #012670;

    /* border-left: 1px solid #ffcc00; */

    color: #012670;

    line-height: 30px;

}



/********** registration part **********/



.navigation .menutxt:before {

    position: absolute;

    width: 100%;

    height: 100%;

    content: "";

    background-color: #3e3343;

    left: 0;

    top: -53px;

	transition:0.8s;

	z-index:-1;

}



.navigation .menutxt:hover:before {

    position: absolute;

    width: 100%;

    height: 100%;

    content: "";

    background-color: #3e3343;

    left: 0;

    top: 0px;

	transition:0.8s;

}



.navigation .menutxt {

position:relative;

overflow:hidden;

}



.navigation .menutxt

{

    font-size: 16px;

    width: 240px;

    display: inline-block;

    text-align: left;

    text-decoration: none;

    line-height: 50px;

    color: #101010;

    font-weight: 600;

    border: 1px solid #375afd;

    margin-bottom: 5px;

    background-color: #375afd;



}



.navigation .menutxt:hover

{

	color: #375afd;
    text-decoration: none;

    border: 1px solid #101010;

    background-color: #101010;

	transition: 0.8s;

}



@media (min-width:993px) {









.sidebar {

display:none;

}



.dash_head {

background-image:url(images/dash.html); 

background-position:10px; 

background-repeat:no-repeat; 

background-color:#790b57; 

padding:30px 15px; 

width:240px; 

border-bottom: 1px solid #fff;

}



.dash_head p {

color:#fff; 

font-size:24px; 

padding-left: 64px;

}



}





@media (max-width:993px) {





.left-navigation .fullnav li {

display:inline-block;

}





.right-navigation .table-responsive {

border:none;

}

.right-navigation {

width:96%;

position:relative;

left:0px;

padding-right: 0;

}

.sidebar .menutxt

{

    font-size: 16px;

    width: 270px;

    float: left;

    text-decoration: none;

    line-height: 50px;

    color:#fff;

background-color: #790b57;



}

.sidebar .menutxt:hover

{

color:#202223;

text-decoration:underline;

background-color: #16c9f6;

}

.sidebar .full_menu ul li a {

display:block;



color:#fff;

font-family: 'Titillium Web', sans-serif;

text-transform:uppercase;

font-size:15px;

line-height:50px;

text-align:left;

}









 

.sidebar .dash_head {

display:block;

background-image:url(images/dash.html); 

background-position:10px; 

background-repeat:no-repeat; 

background-color:#790b57; 

padding:30px 15px; 

width:100%; 

border-bottom: 1px solid #fff;

}



.sidebar .dash_head p {

color:#fff; 

font-size:24px; 

padding-left: 64px;

}



.sidebar ul {

margin:0;

}



.sidebar  {

  min-height: 758px;

  z-index:5;

  position:absolute;

  top: 15%;

  left: 0;

  bottom: 0;

  width: 270px;

  background: #000;

  text-align: center;

  color: #fff;

  -webkit-transform: translate3d(-270px, 0, 0);

  -moz-transform: translate3d(-270px, 0, 0);

  -ms-transform: translate3d(-270px, 0, 0);

  -o-transform: translate3d(-270px, 0, 0);

  transform: translate3d(-270px, 0, 0);

}

.show {

  -webkit-transform: translate3d(0, 0, 0);

  -moz-transform: translate3d(0, 0, 0);

  -ms-transform: translate3d(0, 0, 0);

  -o-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);

  /* older webkit */

  -webkit-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  -moz-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  -o-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* easeInOutBack */

}

.animate {

  -webkit-transition: all .3s;

  -moz-transition: all .3s;

  -ms-transition: all .3s;

  -o-transition: all .3s;

  transition: all .3s;

}

.fixed_menu {

    width: 30px;

    height: 100%;

    background: #3e3343;

    position: absolute;

    right: -30px;

    top: 0px;

    font-size: 18px;

    box-sizing: border-box;

    padding: 10px 3px;

	cursor: pointer;

}



.fixed_menu .text_title {

position: absolute;

    right: -100px;

    top: 150px;

    color: #fff;

    width: 233px;

    text-align: right;

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -ms-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

}

  .animate span {

    display: block;

    width: 100%;

    height: 4px;

    background-color: #fff;

}

.animate span + span {

    margin-top: 4px;

}





}







@media (min-width:992px) {



.box6{

width:100%;

font-family: 'Bai Jamjuree', sans-serif;

font-size:14px;

line-height:24px;

color: #000;

padding:30px 0;

border:none;

}





#formname{

text-align: center;

    text-transform: uppercase;

    color:#000000;

    font-size: 21px;

	border:3px solid #09b719;

	}

#formname_main

{

    color: #375afd;

    text-transform: uppercase;

    font-size: 24px;

    text-align: center;

    /* background: #f85c37; */

    border-radius: 0px;

    padding: 10px 0;

    margin: 0 auto;

    font-family: 'Roboto', sans-serif;

    font-weight: bold;

}









}



.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default.focus, .open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover {

background:#fff;    color: #e05057;

	    border: 1px solid #e05057;

}


input.sbmt{

    background: #375afd;
    color: #fff;
    border: 1px solid #375afd;
    padding: 10px 42px;
    font-size: 16px;
    outline: none;
    box-shadow: inset 0 0 0 0 #f7c324;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Bai Jamjuree', sans-serif;
    border-radius: 50px;
    margin-top: 15px;
    outline: none;

}

input.sbmt:hover

{
    background: #f7c324;
    color: #000 !important;
    box-shadow: inset 100px 0px 0px 0px #f7c324;
    border: 1px solid #f7c324;
}


.com-page input[type="text"], .com-page input[type="passowrd"], .com-page input[type="email"], .com-page input[type="number"] {
	color: #000;
}

.form-control {

    display: block;

    width: 96%;

    height: 34px;

    padding: 6px 12px;

    font-size: 14px;

    line-height: 1.42857143;

    color: #555;

margin: 0 auto;

    background-color: #fff;

    background-image: none;

    border: 1px solid #ccc;

    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);

    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);

    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;

    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

}





#formname_sub

{

color:#222;

text-transform:uppercase;

font-size:18px;

text-align:center;

/*background:#D1A703;*/

padding: 10px;

width:400px;

border-bottom: 5px solid #222;

margin:5px 0px;

font-family: 'Roboto', sans-serif;

}



.alls{

height:auto !important;

}

span#menu-icon{

height: 51px;

float: left;

width: 55px;

/*border-right: 5px solid #FFFFFF;*/

margin-right: 10px;

}

table.account_table{

    font-size: 16px;

    width: 100%;

    float: left;

    text-decoration: none;

    line-height: 50px;

    font-weight: bold;

    color: white;

    padding: 0;

    margin-left: 6px;

    margin-top: 6px;

}

table.account_table img

{

max-width:100%;

border-radius: 7px;

}

table.account_table img a

{

opacity:0.4;

filter:alpha(opacity=40);

}

table.account_table img a:hover

{

opacity:1.0;

filter:alpha(opacity=100);

text-decoration:none;

}

.account_table img

{

max-width:100%;

}

.account_table img:hover

{

transform:scale(1.1);transition:all 300ms ease-in-out; -ms-transition:all 300ms ease-in-out;

}







table.make_deposit td.second{

background:#242e35;

    color: #fff;

    padding: 10px;

}

table.make_deposit td.first{

background:#242e35;

    color: #fff;

    padding: 10px;

		font-family: 'Roboto', sans-serif;

	

}

.memberuser

{

float:left;

width:100%;

  /*  background: #D1A703;*/

	height:100px;

}

.memberuser table tr td

{

color:#FF0000;

font-family: 'Roboto', sans-serif;

font-size:16px;

}





.left-navigation .navigation ul  {

	background-color: #10101059;

    box-sizing: border-box;

    padding: 20px 0;

	list-style:none;

}

.left-navigation .navigation , .right-navigation .navigation {

margin:0;

}

.right-navigation {

padding:30px 0;

}

.register {

    padding: 30px;

    /*background-color: #fff;*/

    box-sizing: border-box;

	/*border-radius: 15px;*/

}





@media screen and (min-width: 992px){



.left-navigation {

min-width:270px;

max-width:315px;

}

}

@media screen and (max-width: 991px){

.right-navigation {

padding:30px 0 30px 15px;

}

}



.navigation

{

opacity:1;

margin-top:0px;

    padding: 0;

}

.navigations td

{

font-family: 'Roboto', sans-serif;

    color: #E7BA04;

    font-size: 18px;

    border: 1px solid;

    border-color: #fff;

    padding: 0;

    background-color:#1f1f1f;

	   /* box-shadow: inset 0 0 0 0 #003399;*/

    -webkit-transition: all ease 0.8s;

    -moz-transition: all ease 0.8s;

    transition: all ease 0.8s;

	/*    border-radius: 7px;*/

}

.navigations th

{

font-family: 'Roboto', sans-serif;

    color: #FFFFFF;

    font-size: 20px;

    border-color: #666a6b;

    background-color:#7545b4;

}

.navigations td:hover

{

	font-family: 'Roboto', sans-serif;color:#E7BA04;font-style: Narrow;

	font-size: 18px;padding-left:20px;border:1px solid #fff; /*border-color:#666a6b;*/     color: #08072b;

	/* box-shadow: inset 0 0 0 0 #003399;*/

	background-color:#eaa22f;

}

.register table {

background-image:url(images/banner_10.html); 

background-position:center;

background-size:cover;

}

.register table tr th {

color: #fff;
    padding: 15px;
    text-align: left;
    /* border: 1px solid #f1a52d; */
    /* background-color: #f1a52d; */
    box-sizing: border-box;
    font-family: 'Bai Jamjuree',sans-serif;
    font-size: 16px;

}

	.register table tr td

	{

    font-family: 'Bai Jamjuree',sans-serif;
    font-size: 15px;
    /* background: #00a085; */
    color: #000;
    line-height: 18px;
    border-radius: 3px;
    padding: 15px;
    border: 1px solid transparent;
    text-align: left;

/*background: linear-gradient( to bottom , #ffffff, #dfdfdf);*/

	}

/*

.inheader{

    background: #E4B704;	

}

.item {

    background: #F5F2DC;

	}*/

	

	

.table_r

{

width:100%;

height:auto;

}

.table_r .table_r1

{

width: 64.5%;

height: 200px;

background:#fff;

float: left;

font-family: 'Roboto', sans-serif;

border-radius: 0px;

 margin: 0px 0px 0px 0px;

}

.table_r .table_r1 .left

{

float:left;

width:44%;

    margin: 10px 0px 0px 0px;

}

.table_r .table_r1 .left img

{

max-width:100%;

}

.table_r .table_r1 .right

{

float:left;

width:50%;

    margin: 0px 0px 0px 0px;

}

.table_r .table_r1 .right .text1

{

color: #fff;

font-family: "Open Sans",sans-serif;

font-size: 25px;

text-transform: uppercase;

padding: 55px 0px 0px 0px;

font-weight: bold;

}

.table_r .table_r1 .right .text2

{

    color: #fff;

    font-family: 'Open Sans', sans-serif;

    font-size: 25px;

    font-weight: 600;

    text-transform: inherit;

    padding: 13px 0px 0px 20px;

    font-weight: bold;

}

.table_r .table_r1 .reg

{

    float: left;

    width: 50%;

    background: #3f78ea;

    height: 75px;

    border-radius: 0px 0px 0px 0px;

	    margin: 20px 0px 0px 0px;

}

.table_r .table_r1 .reg .title

{

    font-family: 'Ubuntu', sans-serif;

    font-size: 18px;

    text-transform: inherit;

    color: #fff;

    font-weight: 500;

text-align:center;

    margin: 16px 0px 0px 0px;

}

.table_r .table_r1 .reg .subtitle

{

    font-family: 'Ubuntu', sans-serif;

    font-size: 18px;

    text-transform: inherit;

    color: #fff;

    font-weight: 500;

text-align:center;

    margin: 2px 0px 0px 0px;

}

.table_r .table_r1 .last

{

    float: left;

    width: 50%;

    background: #003399;

    height: 75px;

    border-radius: 0px 0px 0px 0px;

	    margin: 20px 0px 0px 0px;

}

.table_r .table_r1 .last .title

{

    font-family: 'Ubuntu', sans-serif;

    font-size: 18px;

    text-transform: inherit;

    color: #fff;

    font-weight: 500;

text-align:center;

    margin: 16px 0px 0px 0px;

}

.table_r .table_r1 .last .subtitle

{

    font-family: 'Ubuntu', sans-serif;

    font-size: 18px;

    text-transform: inherit;

    color: #fff;

    font-weight: 500;

text-align:center;

    margin: 2px 0px 0px 0px;

}

.table_r .table_center

{

float:left;

width:20%;

}

.table_r .table_r2

{

    width: 30%;

/*height: 235px;

background: #212424;*/

    float: left;

font-family: 'Roboto', sans-serif;

	border-radius: 5px;

	    margin: -10px 0px 0px 7px;

}

.table_r .table_r2 .button

{

float:left;

width:100%;

}

.table_r .table_r2 .button .but1

{

text-align:center;

width:100%;

margin: 0px 0px 0px 0px;

}

.table_r .table_r2 .button .but1 a

{

text-decoration: none;

    font-family: 'Roboto', sans-serif;

    font-size: 20px;

    color: #fff;

    background: #3f78ea;

        padding: 5px 29px;

    text-transform: inherit;

    font-weight: 500;

    box-shadow: inset 0 0 0 0 #003399;

    -webkit-transition: all ease 0.8s;

    -moz-transition: all ease 0.8s;

    transition: all ease 0.8s;

}

.table_r .table_r2 .button .but1 a:hover {

    color: #fff;

    box-shadow: inset 0px 100px 0px 0px #003399;

}

.table_r .table_r2 .button .but2

{

text-align:center;

width:100%;

margin: 71px 0px 0px 0px;

}

.table_r .table_r2 .button .but2 a

{

text-decoration: none;

    text-decoration: none;

    font-family: 'Roboto', sans-serif;

    font-size: 20px;

    color: #ffffff;

    background: #003399;

    padding: 5px 29px;

    text-transform: inherit;

    font-weight: 500;

    box-shadow: inset 0 0 0 0 #3f78ea;

    -webkit-transition: all ease 0.8s;

    -moz-transition: all ease 0.8s;

    transition: all ease 0.8s;

}

.table_r .table_r2 .button .but2 a:hover {

    color: #fff;

    box-shadow: inset 0px 100px 0px 0px #3f78ea;

}

.table_r .table_r2 .button .but3

{

text-align:center;

width:100%;

margin: 141px 0px 0px 0px;

}

.table_r .table_r2 .button .but3 a

{

    text-decoration: none;

    font-family: 'Roboto', sans-serif;

    font-size: 20px;

    color: #fff;

    background: #3f78ea;

    padding: 5px 29px;

    text-transform: inherit;

    font-weight: 500;

    box-shadow: inset 0 0 0 0 #003399;

    -webkit-transition: all ease 0.8s;

    -moz-transition: all ease 0.8s;

    transition: all ease 0.8s;

}

.table_r .table_r2 .button .but3 a:hover {

    color: #fff;

    box-shadow: inset 0px 100px 0px 0px #003399;

}

.table_r .table_r2 .button .but4

{

text-align:center;

width:100%;

margin: 213px 0px 0px 0px;

}

.table_r .table_r2 .button .but4 a

{

text-decoration: none;

    font-family: 'Roboto', sans-serif;

    font-size: 20px;

    color: #fff;

    background: #003399;

        padding: 5px 29px;

    text-transform: inherit;

    font-weight: 500;

    box-shadow: inset 0 0 0 0 #3f78ea;

    -webkit-transition: all ease 0.8s;

    -moz-transition: all ease 0.8s;

    transition: all ease 0.8s;

}

.table_r .table_r2 .button .but4 a:hover {

    color: #fff;

    box-shadow: inset 0px 100px 0px 0px #3f78ea;

}

.table_r .table_r3

{

width: 30%;

height: 235px;

background: #212424;

float: left;

font-family: 'Roboto', sans-serif;

border-radius: 5px;

 margin: 0px 0px 0px 7px;

}

.table_rr1

{

width:100%;

float:left;

height:auto;

}

.valids td

{

	font-family: Arial, Helvetica, sans-serif;color:#606362;font-style: Narrow;/*border:1px solid;*/

	font-size: 20px;padding-left:17px;/*border-color:#000000;*//*border-radius:10px;*/

/*	background:#18BD9B;*/

}

.valids td.plan

{

	background:url('images/plan_bg.html') no-repeat;

	height:93px;

}

.valids td.plan1

{

	    background: #CFD6E6;

	height:50px;

}

.valids td.plan b{

    font-size: 20px;

    color: #1B1B1B;

    text-transform: uppercase;

}

.valids b

{

font-family:Arial, Helvetica, sans-serif;font-style:Narrow;font-size:18px;color:#2BB8DA;

}

.valids a

{

color::#2BB8DA;font-family:Arial, Helvetica, sans-serif;font-style:Narrow;font-size:16px; text-decoration:none;

}

.maketb

{

float:left;

width:100%;

}

.maketb .tb1

{

width:50%;

float:left;

}

.maketb .tb1

{

width:50%;

float:right;

}

.icon {

    position: relative;

    float: left;

    width: 40px;

    height: 40px;

    background: #e82b25;

    /*-webkit-border-radius: 2px 0 0 2px;

    -moz-border-radius: 2px 0 0 2px;*/

    border-radius: 0px 0 0 0px;

}

h1 {

  text-align: center;

  font-family: Tahoma, Arial, sans-serif;

  color: #06D85F;

  margin: 80px 0;

}

.box {

  width: 40%;

  margin: 0 auto;

  background: rgba(255,255,255,0.2);

  padding: 35px;

  border: 2px solid #fff;

  border-radius: 20px/50px;

  background-clip: padding-box;

  text-align: center;

}

.button {

  font-size: 1em;

  padding: 10px;

  color: #fff;

 /* border: 2px solid #06D85F;*/

  border-radius: 20px/50px;

  text-decoration: none;

  cursor: pointer;

  transition: all 0.3s ease-out;

}

/*.button:hover {

  background: #06D85F;

}

*/

.overlay {

  position: fixed;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background: rgba(0, 0, 0, 0.7);

  transition: opacity 500ms;

  visibility: hidden;

  opacity: 0;

}

.overlay:target {

  visibility: visible;

  opacity: 1;

}

.popup {

  margin: 70px auto;

  padding: 20px;

  background: #fff;

  border-radius: 5px;

  width: 30%;

  position: relative;

  transition: all 5s ease-in-out;

}

.popup h2 {

  margin-top: 0;

  color: #333;

  font-family: Tahoma, Arial, sans-serif;

}

.popup .close {

  position: absolute;

  top: -1px;

  right: 13px;

  transition: all 200ms;

  font-size: 30px;

  font-weight: bold;

  text-decoration: none;

  color: #333;

}

.popup .close:hover {

  color: #10e1d5;

}

.popup .content {

  max-height: 100%;

  overflow: auto;

}

@media screen and (max-width: 700px){

  .box{

    width: 70%;

  }

  .popup{

    width: 70%;

  }

.bounceInDown {

    -webkit-animation-name: bounceInDown;

    animation-name: bounceInDown;

	}

.animated

{

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

	}

	

	

.signupalign

{

width:100%;

}

.signupalign .tab1

{

float:left;

width:50%;

}	

.signupalign .tab2

{

float:right;

width:40%;

}		

	

	

	.supportcon

	{

	float:left;

	width:100%;

	}

	.supportcon .sup1

	{

	float:left;

	width:50%;

}

	.supportcon .sup2

	{

	float:left;

	width:45%;

}

    

	

	/*************login redirect style **************/

	.loginrebg

	{

	background:#000000;

	height:700px;

	}

	.loginrecontainer

	{

	float:left;

	width:100%;

	}

	

	

		/*************login redirect style **************/

		

		

/*****poput calc***********************/

h1 {

  text-align: center;

  font-family: Tahoma, Arial, sans-serif;

  color: #06D85F;

  margin: 80px 0;

}

.box {

  width: 40%;

  margin: 0 auto;

  background: rgba(255,255,255,0.2);

  padding: 35px;

  border: 2px solid #fff;

  border-radius: 20px/50px;

  background-clip: padding-box;

  text-align: center;

}

.button {

  font-size: 1em;

  padding: 10px;

  color: #fff;

 /* border: 2px solid #06D85F;*/

  border-radius: 20px/50px;

  text-decoration: none;

  cursor: pointer;

  transition: all 0.3s ease-out;

}

/*.button:hover {

  background: #06D85F;

}

*/

.overlay {

  position: fixed;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background: rgba(0, 0, 0, 0.7);

  transition: opacity 500ms;

  visibility: hidden;

  opacity: 0;

}

.overlay:target {

  visibility: visible;

  opacity: 1;

}

.popup {

  margin: 70px auto;

  padding: 20px;

  background: #000;

  border-radius: 5px;

  width: 30%;

  position: relative;

  transition: all 5s ease-in-out;

  opacity:0.8;

}

.popup h2 {

  margin-top: 0;

  color: #333;

  font-family: Tahoma, Arial, sans-serif;

}

.popup .close {

  position: absolute;

  top: -1px;

  right: 13px;

  transition: all 200ms;

  font-size: 30px;

  font-weight: bold;

  text-decoration: none;

  color: #369223;

}

.popup .close:hover {

  color:#000;

}

.popup .content {

  max-height: 100%;

  overflow: auto;

}

@media screen and (max-width: 700px){

  .box{

    width: 70%;

  }

  .popup{

    width: 70%;

  }

.bounceInDown {

    -webkit-animation-name: bounceInDown;

    animation-name: bounceInDown;

	}

.animated

{

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

	}

/*****poput calc***********************/





@-webkit-keyframes zoomIn {

 0% {

    opacity: 0;

    -webkit-transform: scale3d(.3,.3,.3);

    transform: scale3d(.3,.3,.3);

}

50% {

    opacity: 1;

}

}



@keyframes zoomIn {

0% {

    opacity: 0;

    -webkit-transform: scale3d(.3,.3,.3);

    transform: scale3d(.3,.3,.3);

}

50% {

    opacity: 1;

}

}







































