@charset "UTF-8";
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/Poppins-Light.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 200;
	src: url('../fonts/Poppins-Thin.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/Poppins-Medium.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}
@font-face
{
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 100;
	src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}
:root {
    --label-bg-color: #dae3ec;
    --li-bdr-color:#939393;
	--bg-section-1:#080808;
	--bg-section-2:#090909;
	--bg-section-3:#030017;
	--bg-section-4:#2C2424;
	--bg-section-5:#121318;

	
  }
 a{
	 text-decoration: none;
 }
  .bg-one{
	  background:var(--bg-section-1);
  }
  .bg-ones{
	  background:#090909de;
  }
  
  .bg-two{
	background:var(--bg-section-2);
}
.bg-three{
	background:var(--bg-section-3);
}
.bg-four{
	background:var(--bg-section-4);
}
.bg-five{
	background:var(--bg-section-5);
}
.sub-heading{
	width:100%;
	font-size: 34px;
	font-weight: 600;
	color:#FFF;
	margin-bottom: 60px;
}
::-webkit-scrollbar
{
	width: 8px;
	height: 5px;
}
::-webkit-scrollbar-track
{
	box-shadow: inset 0 0 5px grey;
	border-radius: 5px;
}
::-webkit-scrollbar-thumb
{
	background: #AC003A;
    background: #FFAE00;
	border-radius: 5px;
}

.btn-custom-rounded{
	border-radius: 50px;
	border:#731a6d solid 2px;
	color: #fff;
	background:#0b7bb0;
	outline:none;
	font-size:0.99rem;
	text-transform: uppercase;
	height: 50px;
	line-height: 50px;
	padding: 10px 25px;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.btn-custom-rounded:hover{
	background:#FFAE00;
	color:#fff;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.btn-rounded{
	border-radius: 50px;
	border:#731a6d solid 1px;
	color: #fff;
	background:#a22474;
	outline:none;
	font-size:0.99rem;
	text-transform: uppercase;
	height: 50px;
	line-height: 50px;
	padding: 10px 25px;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.btn-rounded:hover{
	/* background:#FFAE00;*/
	color:#fff; 
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}


.padding-100{
	padding:100px 0;
}
.padding-top-100{
	padding-top:100px;
}

/* our team */

.our-team-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.our-team-section:before {
    position: absolute;
    top: -0;
    left: 0;
    content: " ";
    background: url(img/service-section-bottom.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}
.our-team {
    padding: 30px 0 0px;
    /*background: #2b2727;*/
    text-align: center;
    overflow: hidden;
    position: relative;
    /*border-bottom: 5px solid #f3ad02;*/
	/*margin-bottom: 30px;*/
}
.our-team:hover{
    /*border-bottom: 5px solid #2f2f2f;*/
}

.our-team .pic{
    display: inline-block;
    /*width: 130px;*/
    /*height: 130px;*/
    width: 300px;
    height: 226px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}
.our-team .pic:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*background: #f7d600;*/
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 1;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic:before{
    height: 100%;
    /*background: #dfc103; */
 }
.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*background: #ffffff00;*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic:after{
    /*background: #FF6002;*/
}
.our-team .pic img {
    width: 110%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
    /*box-shadow: 0 0 0 14px #FF6002;*/
    transform: scale(0.7);
    position: relative;
    z-index: 2;
}
.our-team:hover .pic img{
    /*box-shadow: 0 0 0 14px #f7f5ec;*/
    transform: scale(0.7);
}
.our-team .team-content{ margin-bottom: 30px; }
.our-team .title{
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.our-team .subtitle{
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.our-team .post{
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform:capitalize;
}


/* Our Team */


/* FAQ  */

@-webkit-keyframes showTab {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes showTab {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.tabsy{
	width: 100%;
	margin: 0;
	padding: 0;
}
.tabsy>button {
	width: 100%;
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	outline: 0;
	border: 0;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: transparent
}

.tabsy>.tabButton {
	width: 20%;
	padding: 8px;
    border: solid 1px #e95cb6;
    position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin-top: 1px;
	
	color: #f5f5f5;
	text-align: center;
	-webkit-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out
}

.tabsy input {
	display: none
}

.tabsy>input:checked+label+.tab {
	display: block;
	width: 100%;
}

.tabsy>input:checked+label+.tab>.content {
	width: 100%;
	padding: 33px 100px;
	background:#232531;
	color:#fff;
	-webkit-animation: showTab 250ms ease-in-out;
	animation: showTab 250ms ease-in-out
}

.tabsy>.tab {
	background: #fff;
	display: none
}
.tabsy>input:checked+label::after{
	content: '';
	position: absolute;
   width: 0;
   height: 0;
   left: 50%;
   right: 50%;
   top:100%;
   margin: auto;
   border-top: solid 10px #e95cb6;
   border-left: solid 10px transparent;
   border-right: solid 10px transparent;
}

@media screen and (min-width: 768px) {
	.tabsy {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.tabsy>.tabButton {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		cursor: pointer
	}

	.tabsy>input:checked+label {
		background:#e95cb6;
		color: #fff;
		position: relative;
	}
	.tabsy>input:checked+label::after{
		 content: '';
		 position: absolute;
		width: 0;
		height: 0;
		left: 50%;
		right: 50%;
		top:100%;
		margin: auto;
		border-top: solid 10px #e95cb6;
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;
	}

	

	.tabsy>.tab {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2
	}
}


 /* accrodian */
.accordionTitle {
	cursor: pointer;
	margin: 0;
	position: relative;
  }
  .accordionIcon {
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
  }
  .accordionIcon::after{
	content: '';
	position: absolute;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: solid #e95cb6 1px;
	top: -13px;
	left: -6px;
  }
  .accordionIcon .line-01,
  .accordionIcon .line-02 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background-color: #e95cb6;
	transition: 0.3s;
  }
  .accordionIcon .line-02 {
	transform: rotate(90deg);
  }
  .accordionContent {
	display: none;
	border-top: #747171 solid 0.5px;
  }
  .accordion--open .line-02 {
	transform: rotate(0deg);
  }
  /* end Required CSS */
  
  
  .accordion {
	margin-top: -1px;
	border-top: 1px solid #e95cb6;
	border-bottom: 1px solid #e95cb6;
  }
  .accordionTitle {
	  padding: 20px 16px;
	  font-size: 1.25rem;
	  color:#fff;
	  transition: 0.2s;
	  font-weight: 600;
	  
  }
  .accordionContent {
	padding: 24px 16px 16px;
  }
  .accordionContent p {
	margin: 0 0 16px;
	color: #fff;
	font-size: 0.99rem;
	font-style: italic;
	font-weight: 400;
  }
  .accordionTitle:hover {
	/* background-color: #2986e2;
	color: #fff; */
  }
  
  .accordionTitle:hover .line-01,
  .accordionTitle:hover .line-02 {
	background-color: #FFAE00;
  }
  
  .accordion--open .accordionTitle {
	/* background-color: #2986e2; */
	color: #fff;
  }
  
  .accordion--open .line-01,
  .accordion--open .line-02 {
	background-color: #fff;
	background-color: #FFAE00;
  }

/* FAQ  */

/* international effort */
ul.right-sign{
	/*width: calc(100% - 250px);*/
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
ul.right-sign li{
	position: relative;
	padding-left:75px;
	margin-bottom: 30px;
	font-size: 1.25rem;
}
ul.right-sign li strong{
	color:#e95cb6;
}
ul.right-sign li span{
	color:#fff;
	font-style: italic;
	font-weight:300;
}
ul.right-sign li::after{
	position: absolute;
	content: '';
	width: 48px;
	height: 39px;
	background: url("../images/right.png") no-repeat 100% 100%;
	left: 0;
	top:0;
}
ul.right-sign li:last-child::after{	
	content: none;
	
}
ul.right-sign li:last-child span{
	font-style: normal;
}
ul.right-sign li:last-child span a{
	text-decoration: none;
	color:#FFAE00;
	font-weight: 600;
}
/* international effort close */

/* ratings */
ul.rating-box{
	width:100%;
	margin:0;
	padding: 0;
	display:flex;
	list-style: none;
	justify-content: space-between;

}
ul.rating-box li{
	width:23.5%;
	position: relative;
	text-align: center;
}
ul.rating-box li::after{
	content:'';
	position:absolute;
	width: 44px;
	height: 90px;
	background: url("../images/left-leaf.png") no-repeat 100% 100%;
	left: 0;
	top:0;
}
ul.rating-box li::before{
	content:'';
	position:absolute;
	width: 44px;
	height: 90px;
	background: url("../images/right-leaf.png") no-repeat 100% 100%;
	right: 0;
	top:0;
}
.rating-box li span:nth-child(1){
	font-size: 34px;
	font-weight: 600;
	color:#fff;

}
.rating-box li span:nth-child(2){
	font-size: 25px;
	font-weight: 500;
	color:#FFAE00;
	padding: 0 5px;
	
}
.rating-box li span:nth-child(3){
	font-size: 20px;
	font-weight: 500;
	color:#FFAE00;
	
}
.rating-text{
	font-size: 18px;
	font-weight: 600;
	color:#7B7870;
}
/* ratings */

.iconBox{
	width:100%;
	border-radius: 0.25rem;
    border: #e95cb6 solid 1px;
    background: #000000;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 200px;
	padding: 10px 10px;
	/*margin-bottom: 15px;*/
}
.iconBox strong{
	color: #fff;
	padding: 15px;
	font-size: 20px;
	font-weight: 600;

}
.iconBox .text-content{
	color:#fff;
	font-size: 0.99rem;
	font-weight: 400;
}
.cryptobox p{
	font-size: 24px;
	font-weight:400;
	color:#fff;
	line-height: 35px;
}
.cryptobox p.leftside{
	text-align: left;
}
.cryptobox p.rightside{
	text-align: right;
}

ul.stepbox{
	width:100%;
	margin: 0;
	padding: 0;
	display:flex;
	list-style: none;
	
}
ul.stepbox li{
	width:20%;
	display:flex;
	padding:0 15px;
	align-items:center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	color:#fff;
	border-radius: 7px;
	padding: 15px 15px;
	position: relative;
	border:solid #fff 2px;
	margin-right: -2px;
	min-height: 140px;
	box-shadow: 0 10px 20px rgba(255,255,255,0.19), 0 6px 6px rgba(255,255,255,0.23);
	
}
ul.stepbox li strong{
	font-size: 30px;
	font-weight: 700;
}
ul.stepbox li span{
	font-size: 20px;
	line-height:1.2;
	font-weight: 400;
}
ul.stepbox li:last-child::after,ul.stepbox li:last-child::before{
	content:none;
}
ul.stepbox li::after{
	position: absolute;
	content:'';
    width: 0;
    height: 0;    
    left: 100%;
    top: 44.4%;
	z-index: 999;    
   
}

ul.stepbox li::before{
	position: absolute;
	content:'';
    width: 0;
    height: 0;    
    left: 100%;
    top: 43%;
	z-index: 999;    
    border-top: solid 12px transparent;
    border-bottom: solid 12px transparent;
    border-left: solid 12px #fff;
}

ul.stepbox li:nth-child(1){
	background:#FF5B2D;
}
ul.stepbox li:nth-child(2){
	background:#FBB03B;
}
ul.stepbox li:nth-child(3){
	background:#8AC900;
}
ul.stepbox li:nth-child(4){
	background:#00B199;
}
ul.stepbox li:nth-child(5){
	background:#017FB2;
}


/*======================================== Road Map =============================*/
#roadmap{
	padding-bottom:93px;
}
.roadmap-outer{
    /* overflow: hidden; */
    position: relative;
}
.roadmap-outer .roadmap{
    position: relative;
    
}

.roadmap-outer .roadmap:nth-child(even){
	margin-top: -15px;
}
.roadmap-outer .roadmap:nth-child(odd){
	margin-top: -15px;
}
.roadmap-outer .roadmap:first-child{ 
	/* margin-top: -20px;  */
}
.roadmap-outer .roadmap:before,
.roadmap-outer .roadmap:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.roadmap-outer .roadmap:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.roadmap-outer .roadmap-icon{
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #e95cb6;
    border-right-color: #e95cb6;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(45deg);
}
.roadmap-outer .year{
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(165,165,165,0.2);
    margin: auto;
    font-size: 24px;
    font-weight: 600;
    color: #e95cb6;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-45deg);
}
.roadmap-outer .roadmap-content{
    width: 35%;
    float: right;
	display:flex;
	align-items:center;
	flex-direction: column;
	justify-content: center;
	min-height: 200px;
    /* background: #333C42; */
    /* padding: 20px 20px;
    margin: 50px 0 51px; */
    z-index: 1;
    position: relative;
	/* border-radius:5px; */
}
.roadmap-outer .roadmap-content:before{
    content: "";
    width: 20%;
    height: 15px;
    background: #e95cb6;
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    transform: translateY(-50%);
}
.roadmap-outer h3{
    color: #fff;
}
.roadmap-outer p{
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{ 
	transform: rotate(-135deg); 
}
.roadmap-outer .roadmap:nth-child(2n) .year{ 
	transform: rotate(135deg); 
}
.roadmap-outer .roadmap:nth-child(2n) .roadmap-content{ 
	float: left; 
}
.roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
    left: auto;
    right: -20%;
}
.roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
    border-top-color: #e95cb6;
    border-right-color: #e95cb6;
}
.roadmap-outer .roadmap:nth-child(2n) .year{ 
	color: #e95cb6; 
}

.roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{ 
	background: #e95cb6; 
}
.roadmap-outer .roadmap:nth-child(3n) .roadmap-icon{
    /* border-top-color: #C88B08;
    border-right-color: #C88B08; */
}
.roadmap-outer .roadmap:nth-child(3n) .year{ 
	/* color: #4646cf;  */
}
.roadmap-outer .roadmap:nth-child(3n) .roadmap-content,
.roadmap-outer .roadmap:nth-child(3n) .roadmap-content:before{ 
	/* background: #4646cf;  */
}
.roadmap-outer .roadmap:nth-child(4n) .roadmap-icon{
    /* border-top-color: #3f3fce;
    border-right-color: #3f3fce; */
}
.roadmap-outer .roadmap:nth-child(4n) .year{ 
	/* color: #3f3fce;  */
}
.roadmap-outer .roadmap:nth-child(4n) .roadmap-content,
.roadmap-outer .roadmap:nth-child(4n) .roadmap-content:before{ 
	/* background: #3f3fce;  */
}

.roadmap-content-box{
	width:100%;
	background: #333C42;
	padding:15px 20px;
	border-radius: 5px;
}
.roadmap-content h3{
	font-size: 0.99rem;
	color:#e95cb6;
	margin-bottom:10px;
}
ul.roadmap-text{
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.roadmap-text li{
	position: relative;
	font-size: 13px;
	color:#fff;
	padding-left: 15px;;
}
ul.roadmap-text li::after{
	position: absolute;
	content:'';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #e95cb6;
	top:7px;
	left:0;
}


.aboutus p{
	font-size: 0.99rem;
	font-weight: 400;
	color:#fff;
}
.video-embed {
    width: 100%;
   
    cursor: pointer;
   
}

.payment-logo-section {
	width:100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display:flex;
	justify-content:space-between;
}
.payment-logo-section li{
	width:23%;
	border:solid #e95cb6  1px;
	border-radius: 5px;
	background:#fff;
	padding: 5px;
	height: 42px;
}


/*    footer     */

.footer{
	background:#121318;
	width:100%;
	padding: 40px 0;
	border-top:solid #e95cb6 1px;
}
.footer .headings{
	font-weight: 600;
	font-size: 20px;
	color:#e95cb6;
	margin-bottom:20px;
}
p.copyright{
	color: #fff;
}
p.copyright a{
	color: #e95cb6;
	text-decoration: none;
}
ul.links{
	width:100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.links li{
	position: relative;
	display:block;
	padding-left: 20px;
}
ul.links li a{
	color:#fff;
	text-decoration: none;
	font-size: 0.99rem;
	font-weight: 400;
}
ul.links li::after{
	position: absolute;
	content:'';
	width: 11px;
	height:2px;
	left: 0;
	top:10px;
	background:#e95cb6;
}
.col-count{
	column-count: 2;
}
.bdr-top-1{
	width:100%;
	clear: both;
	height:1px;
	background:#e95cb6;
	margin: 50px 0;
}
p.footer-about{
	 max-width: 330px;
}

/*    footer     */


.banner{
	width: 100%;
	height:100%;	
	/*background:url('../images/banner_bg.jpg');*/
	background:url('../../geometric.jpg');
		/*background:url('../../1s.png');*/
	
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;	
    overflow: hidden;
	
	/* height:100vh; */
}
.mr-110{
	margin-right: 100px;
}
.logo-section img{
	position: relative;
	top:-57px;
	width: 20%;
}
.liftside{
	float: right;
	text-align: right;
}
p.topheading{
	max-width: 540px;
	width:100%;
	font-size: 50px;
	line-height: 1;
	font-weight: 500;
	color:#a22474;
}
.topheading span{
	color:#0267c0;
}
p.mainheading{
	font-size: 25px;
	font-weight: 400;
	color:#a22474;
	padding: 50px 0;
}
.socialmedia{
	text-align: right;
	float: right;
}
.header{
	width:100%;
	/*background:rgba(255,255,255,0.28);*/
	height: 80px;
	display:flex;
	align-items:center;
	    margin-left: 38px;
}

.cal-bg {
    background-image: url(../images/cal-bg.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}
.calculation-box table{
	color:#fff;
}
.calculation-box table tr ,.calculation-box table th, .calculation-box table td{
	border-color: #64CA73;
}
.tabletwo table td ,.tabletwo table th{
	padding:9px 5px;
}
.tablethree table td ,.tablethree table th{
	padding:6px 5px;
}
.calculater{

}
.table-border{
	width:100%;
	padding: 10px 10px 0px 10px;
	border:#707070 solid 1px;
	border-radius: 4px;
}
.calculation-box{
	width:100%;
	margin:10px 0 0 0;
	padding:20px 15px 10px 15px;
	background:#121318;
}
.calculation-box .headings{
	font-size: 20px;
	color:#FFAE00;
	font-weight: 400;
	margin-bottom: 10px;
}
.calculater select{
	max-width: 502px;
	
}
.calculater label{
	font-size: 20px;
	color:#fff;
	margin-bottom: 15px;
}
.calculater .form-select {
    display: block;
    width: 100%;
	min-height:50px;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: transparent;
	   background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 2px solid #FFAE00;
    border-radius: 0.25rem;
  
}
.calculater select option {
	background-color: #FFAE00 !important;
	padding:5px 0;
  }

.demo-3 {
	--color-text: #fbd54a;
	--color-bg: #333;
	--color-link: #4d4f5f;
	--color-link-hover: #bfb5b5;
	--color-info: #fff;
	--color-main-bg: #24262d;
	--path-fill-1: #000000;
	--path-fill-2: #1d1d1f;
	--path-fill-3: #fbd54a;
	--color-title: #fff;
	/* --font-family-title: "Arapey", serif; */
	--font-size-title: 2vmax;
	--font-weight-title: 400;
	--color-menu: #000000;
	--color-menu-hover: #fff;
	/* --font-family-menu: "Arapey", serif; */
	--font-size-menu: 2vmax;
	--font-weight-menu: 400;
	--button-bg: #fff;
	--button-circle: #ada4a4;
	--button-line: #222;
  }
  
  /* Fade effect */
  .js body {
	opacity: 0;
	transition: opacity 0.3s;
  }
  
  .js body.render {
	opacity: 1;
  }
  
  /* a {
	text-decoration: none;
	color: #5d93d8;
	color: var(--color-link);
	outline: none;
  }
  
  a:hover,
  a:focus {
	color: #423c2b;
	color: var(--color-link-hover);
	outline: none;
  } */
  
  .hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
  }
  
  /* Top Navigation Style */
  .codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 1em 0 0;
	text-align: center;
	white-space: nowrap;
  }
  
  .codrops-icon {
	display: inline-block;
	margin: 0.15em;
	padding: 0.25em;
  }
  
  .global-menu {
	width: 100vw;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 100;
  }
  
  .global-menu__item {
	color: #FFF;
	/* font-family: var(--font-family-menu); */
	font-size: var(--font-size-menu);
	font-weight: var(--font-weight-menu);
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
	display: block;
	margin: 0.25em 0;
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: ease-in;
  }
  
  .global-menu__item--demo-3 {
	transition: transform 0.1s, opacity 0.1s;
	transform: translateY(100%);
	transition-timing-function: ease-out;
  }
  
  .global-menu__item:hover {
	color: var(--color-menu-hover);
  }
  
  .global-menu__item.is-opened {
	opacity: 1;
	transform: translateY(0) rotate(0);
	pointer-events: auto;
	transition-timing-function: ease;
  }
  
  .global-menu__item:nth-of-type(1) {
	transition-delay: 0s;
  }
  
  .global-menu__item.is-opened:nth-of-type(1) {
	transition-delay: 0.85s;
  }
  
  .global-menu__item:nth-of-type(2) {
	transition-delay: 0.05s;
  }
  
  .global-menu__item.is-opened:nth-of-type(2) {
	transition-delay: 0.8s;
  }
  
  .global-menu__item:nth-of-type(3) {
	transition-delay: 0.1s;
  }
  
  .global-menu__item.is-opened:nth-of-type(3) {
	transition-delay: 0.75s;
  }
  
  .global-menu__item:nth-of-type(4) {
	transition-delay: 0.15s;
  }
  
  .global-menu__item.is-opened:nth-of-type(4) {
	transition-delay: 0.7s;
  }
  
  /* demo 3 */
  .global-menu__item--demo-3.is-opened {
	transition-duration: 0.3s;
  }
  
  .global-menu__item--demo-3:nth-of-type(1) {
	transition-delay: 0s;
  }
  
  .global-menu__item--demo-3.is-opened:nth-of-type(1) {
	transition-delay: 0.65s;
  }
  
  .global-menu__item--demo-3:nth-of-type(2) {
	transition-delay: 0s;
  }
  
  .global-menu__item--demo-3.is-opened:nth-of-type(2) {
	transition-delay: 0.7s;
  }
  
  .global-menu__item--demo-3:nth-of-type(3) {
	transition-delay: 0s;
  }
  
  .global-menu__item--demo-3.is-opened:nth-of-type(3) {
	transition-delay: 0.75s;
  }
  
  .global-menu__item--demo-3:nth-of-type(4) {
	transition-delay: 0s;
  }
  
  .global-menu__item--demo-3.is-opened:nth-of-type(4) {
	transition-delay: 0.8s;
  }
  
  .shape-overlays {
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
  }
  
  .shape-overlays.is-opened {
	pointer-events: auto;
  }
  
  .shape-overlays__path:nth-of-type(1) {
	fill: var(--path-fill-1);
  }
  
  .shape-overlays__path:nth-of-type(2) {
	fill: var(--path-fill-2);
  }
  
  .shape-overlays__path:nth-of-type(3) {
	fill: #023682;
  }
  
  .shape-overlays__path:nth-of-type(4) {
	fill: var(--path-fill-4);
  }
  
  @-webkit-keyframes intervalHamburgerBorder {
	0% {
	  opacity: 1;
	  transform: scale(1);
	}
	80% {
	  transform: scale(1.6);
	}
	100% {
	  opacity: 0;
	  transform: scale(1.6);
	}
  }
  @keyframes intervalHamburgerBorder {
	0% {
	  opacity: 1;
	  transform: scale(1);
	}
	80% {
	  transform: scale(1.6);
	}
	100% {
	  opacity: 0;
	  transform: scale(1.6);
	}
  }
  .hamburger {
	width: 64px;
	height: 64px;
	display: block;
	position: relative;
	cursor: pointer;
	position: absolute;
	/*top: 2.25em;*/
	top:8px;
	right: 2.25em;
	z-index: 110;
	border-radius: 50%;
	background-color: var(--button-bg);
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .hamburger::after {
	width: 64px;
	height: 64px;
	box-sizing: border-box;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 4px solid var(--button-circle);
	border-radius: 50%;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: intervalHamburgerBorder;
	animation-name: intervalHamburgerBorder;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
  }
  
  .hamburger__line {
	width: 28px;
	height: 2px;
	overflow: hidden;
	position: absolute;
	z-index: 10;
  }
  
  .hamburger__line-in {
	width: 84px;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
  }
  
  .hamburger__line-in::before,
  .hamburger__line-in::after {
	width: 28px;
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	background-color: var(--button-line);
  }
  
  .hamburger__line-in::before {
	left: -56px;
  }
  
  .hamburger__line-in::after {
	left: 0;
  }
  
  .hamburger__line--01,
  .hamburger__line--02,
  .hamburger__line--03,
  .hamburger__line--cross01,
  .hamburger__line--cross02 {
	left: 18px;
  }
  
  .hamburger__line--01 {
	top: 24.6px;
  }
  
  .hamburger__line--02,
  .hamburger__line--cross01,
  .hamburger__line--cross02 {
	top: 31px;
  }
  
  .hamburger__line--03 {
	top: 37.4px;
  }
  
  .hamburger__line--cross01 {
	transform: rotate(45deg);
  }
  
  .hamburger__line--cross02 {
	transform: rotate(-45deg);
  }
  
  .hamburger__line {
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .hamburger__line-in {
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .hamburger__line-in::before,
  .hamburger__line-in::after {
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-property: transform;
  }
  
  .hamburger__line-in--cross01,
  .hamburger__line-in--cross02 {
	transform: translateX(-33.3%);
  }
  
  .hamburger__line-in--01 {
	transition-delay: 0.2s;
  }
  
  .hamburger__line-in--02 {
	transition-delay: 0.25s;
  }
  
  .hamburger__line-in--02::before,
  .hamburger__line-in--02::after {
	transition-delay: 0.05s;
  }
  
  .hamburger__line-in--03 {
	transition-delay: 0.3s;
  }
  
  .hamburger__line-in--03::before,
  .hamburger__line-in--03::after {
	transition-delay: 0.1s;
  }
  
  .hamburger__line-in--cross01 {
	transition-delay: 0s;
  }
  
  .hamburger__line-in--cross02 {
	transition-delay: 0.05s;
  }
  
  .hamburger__line-in--cross02::before,
  .hamburger__line-in--cross02::after {
	transition-delay: 0.1s;
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--01,
  .hamburger.is-opened-navi .hamburger__line-in--02,
  .hamburger.is-opened-navi .hamburger__line-in--03 {
	transform: translateX(33.3%);
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--cross01,
  .hamburger.is-opened-navi .hamburger__line-in--cross02 {
	transform: translateX(0);
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--01 {
	transition-delay: 0s;
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--02 {
	transition-delay: 0.05s;
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--03 {
	transition-delay: 0.1s;
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--cross01 {
	transition-delay: 0.25s;
  }
  
  .hamburger.is-opened-navi .hamburger__line-in--cross02 {
	transition-delay: 0.3s;
  }
  
  .hamburger:hover .hamburger__line-in::before,
  .hamburger:hover .hamburger__line-in::after {
	transform: translateX(200%);
  }
  
  .hamburger:hover .hamburger__line-in--01::before,
  .hamburger:hover .hamburger__line-in--01::after,
  .hamburger:hover .hamburger__line-in--02::before,
  .hamburger:hover .hamburger__line-in--02::after,
  .hamburger:hover .hamburger__line-in--03::before,
  .hamburger:hover .hamburger__line-in--03::after {
	transition-duration: 1s;
  }
  
  .hamburger:hover .hamburger__line-in--cross01::before,
  .hamburger:hover .hamburger__line-in--cross01::after,
  .hamburger:hover .hamburger__line-in--cross02::before,
  .hamburger:hover .hamburger__line-in--cross02::after {
	transition-duration: 0s;
  }
  
  .hamburger.is-opened-navi:hover .hamburger__line-in--cross01::before,
  .hamburger.is-opened-navi:hover .hamburger__line-in--cross01::after,
  .hamburger.is-opened-navi:hover .hamburger__line-in--cross02::before,
  .hamburger.is-opened-navi:hover .hamburger__line-in--cross02::after {
	transition-duration: 1s;
  }
  
  .hamburger.is-opened-navi:hover .hamburger__line-in--01::before,
  .hamburger.is-opened-navi:hover .hamburger__line-in--01::after,
  .hamburger.is-opened-navi:hover .hamburger__line-in--02::before,
  .hamburger.is-opened-navi:hover .hamburger__line-in--02::after,
  .hamburger.is-opened-navi:hover .hamburger__line-in--03::before,
  .hamburger.is-opened-navi:hover .hamburger__line-in--03::after {
	transition-duration: 0s;
  }
  
  @media screen and (min-width: 55em) {
	.demos {
	  display: flex;
	  padding-right: 80px;
	  justify-self: end;
	}
  
	.demo {
	  display: block;
	  width: 17px;
	  height: 17px;
	  margin: 0 4px;
	  border-radius: 50%;
	  background: var(--color-link);
	}
  
	a.demo--current {
	  background: var(--color-link-hover);
	}
  
	.demo span {
	  position: absolute;
	  line-height: 1;
	  right: 100%;
	  display: none;
	  margin: 0 1em 0 0;
	}
  
	.demo--current span {
	  display: block;
	}
  }
  @media screen and (max-width: 55em) {
	.hamburger {
	  position: fixed;
	  top: 0.5em;
	  right: 0.5em;
	  transform: scale(0.75);
	}
  
	.content {
	  height: auto;
	  min-height: 0;
	  padding-bottom: 10em;
	  flex-direction: column;
	}
  
	.content--fixed {
	  position: relative;
	  z-index: 0;
	  display: block;
	  padding: 0.85em;
	}
  
	.codrops-header {
	  flex-direction: column;
	  align-items: center;
	}
  
	.codrops-header__title {
	  font-weight: bold;
	  padding-bottom: 0.25em;
	  text-align: center;
	}
  }
  
  
   ul.top-divided-section {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: end;
	float: right;
}

ul.top-divided-section li {
	display: inline-block;
	margin-right: 5px;
}

.goog-te-banner {
	display: none;
}

.goog-te-banner-frame {
	display: none;
}

.goog-logo-link {
	display: none;
}

.goog-text {
	display: none;
}

.goog-te-gadget {
	color: transparent !important;

}

.skiptranslate {

	margin-top: 0px !important;
}

#goog-gt-tt {
	display: none;
}

#goog-gt-tt .logo {
	display: none;
}

.goog-tooltip {
	display: none;
}

.goog-te-combo {
	border: 2px solid #fff;
	background-color: #ffae00;
	padding: 7px 15px;
	border-radius: 25px;
	color: #fff;
	font-style: inherit;
	font-family: 'Poppins' !important;
	font-size: 18px !important;
	outline: none;
	font-variant: all-petite-caps;
}

.goog-te-gadget {
	color: transparent !important;
	white-space: nowrap;
	font-size: 18px;
}

.top-divided-section li select option {
	background: rgba(0, 0, 0, 0.9);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.goog-te-banner-frame {
	display: none !important
}

@media (max-width: 575.98px) { 
	.footer .headings {		
		margin-top: 15px;
	}

	.footer{
		font-size: 0.75rem;
		padding: 0 0 0;
	}
	ul.links li a{
		font-size: 0.75rem;
	}
	.col-count{
		-moz-columns: 2 auto;
		-webkit-columns: 2 auto;
		columns: 2 auto;
	}
	.bdr-top-1 {		
		margin: 15px 0 15px;
	}
	.socialmedia {		
		justify-content: center;
		align-content: center;
		float: none;
	}
	p.copyright{
		text-align: center;
	}
	.padding-top-100{
		padding-top: 25px;
	}
	.risk-warning p{
		font-size: 0.85rem;
	}
	.risk-warning img{
		height: 150px;
	}
	.sub-heading {
		width: 100%;
		font-size: 34px;
		font-weight: 600;
		color: #FFF;
		margin-bottom: 60px;
	}
	.sub-heading {		
		font-size: 24px;		
		margin-bottom: 15px;
	}
	.padding-100{
		padding: 25px 0;
	}
	.payment .col-sm-4 img{
		margin-top: 15px;
	}
	.tabsy > .tabButton{
		width: 100%;
	}
	.tabsy > input:checked + label + .tab > .content{
		padding: 25px 15px 15px;
	}
	.accordionTitle {
		padding: 15px 15px;
		font-size: 0.99rem;
		color: #fff;
		transition: 0.2s;
		font-weight: 600;
	  }
	  .accordionContent {
		padding: 15px 15px 15px;
		width: 100%;
		border-top: solid 1px;
	  }
	  .accordionContent p {	
		font-size: 0.85rem;		
	  }

	  ul.stepbox {		
		flex-direction: column;
	 }
	 ul.stepbox li {
		 width: 100%;
		 margin-top: -2px;
	 }
	 ul.stepbox li::before {
		position: absolute;
		content: '';
		width: 0;
		height: 0;
		left: 50%;
		top: 100%;
		z-index: 999;	
		border-top: solid 12px #fff;
		border-left: solid 12px transparent;
		border-right: solid 12px transparent;
	}
	ul.stepbox li::after {
		position: absolute;
		content: '';
		width: 0;
		height: 0;
		left: 50.5%;
		top: 100%;
		z-index: 999;		
	}
	ul.stepbox li:nth-child(1)::after{	
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;	 
		border-top: solid 10px #FF5B2D;			
	}
	ul.stepbox li:nth-child(2)::after{		  
		border-top: solid 10px #FBB03B;
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;
	}
	ul.stepbox li:nth-child(3)::after{		 
		border-top: solid 10px #8AC900;
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;
	}
	ul.stepbox li:nth-child(4)::after{	   
		border-top: solid 10px #00B199;
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;
	}
	.cryptobox p.rightside{
		text-align: center;
		font-size: 0.99rem;
		line-height: 1.5;
	}
	.cryptobox p.leftside{
		text-align: center;
		font-size: 0.99rem;
		line-height: 1.5;
	}
	.cryptobox .col-sm-6:nth-child(3){
		order: 4;
	}
	.cryptobox .col-sm-6:nth-child(4){
		order: 3;
    }

	ul.rating-box{
		flex-wrap: wrap;
	}
	ul.rating-box li{
		width: 49%;
		position: relative;
		text-align: center;
		min-height: 90px;
		margin-bottom: 15px;
	}
	.rating-box li span:nth-child(1) {
		font-size: 25px;		
	  }
	  .rating-box li span:nth-child(2) {
		font-size: 20px;
		font-weight: 500;
		color: #FFAE00;
		padding: 0 5px;
	  }
	  .rating-box li span:nth-child(3) {
		font-size: 18px;		
	  }
	  .rating-text {
		font-size: 16px;		
	  }

	  ul.right-sign {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		list-style: none;
	  }
	  ul.right-sign li {
		position: relative;
		padding-left: 63px;
		margin-bottom: 20px;
		font-size: 0.99rem;
	  }
	  .aboutus p:nth-child(1){
		  margin-top: 15px;
	  }
	  .aboutus p{
		font-size: 0.9rem;
		line-height: 1.5;
	}
	.secondimg{
		display:none;
	}
	.banner{		
		height:100vh;
	}
	
	ul.top-divided-section{
		justify-content:start;
		left: -35px !important;
		position: relative;
	}
	.goog-te-gadget .goog-te-combo{
		width:120px!important;
	}
	.logo-section img {
          position: relative;
          top: 0px;
          height: 50px;
          margin-top:10px;
          margin-bottom:15px;
    }
	ul.top-divided-section{
		justify-content:start;
	}

 }


 @media (max-width: 767.98px) {
 .roadmap-outer .roadmap{
	margin-top: 0;
	overflow: hidden;
}
.roadmap-outer .roadmap:before,
.roadmap-outer .roadmap:nth-child(2n):before{
	box-shadow: none;
}
.roadmap-outer .roadmap-icon,
.roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
	margin-top: -30px;
	margin-bottom: 20px;
	position: relative;
	transform: rotate(135deg);
}
.roadmap-outer .year,
.roadmap-outer .roadmap:nth-child(2n) .year{ 
	transform: rotate(-135deg); 
}
.roadmap-outer .roadmap-content,
.roadmap-outer .roadmap:nth-child(2n) .roadmap-content{
	width: 100%;
	float: none;
	border-radius: 0 0 20px 20px;
	
	padding: 25px 20px;
	margin: 0 auto;
}
.roadmap-outer .roadmap-content:before,
.roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
	width: 15px;
	height: 40px;
	position: absolute;
	top: -22px;
	left: 50%;
	z-index: -1;
	transform: translate(-50%,0);
}
.img-block {
    margin: 0 0 40px;
}
.mb-120 {
    margin-bottom: 60px;
}
.text-block p:last-of-type{
	margin:0;
}
.roadmap-outer .roadmap,
.roadmap-outer .roadmap:first-child{
	margin:0 0 20px;
	position: relative;
}
.roadmap-outer .roadmap:last-child{
	margin:0;
}
#roadmap{
	padding-bottom:60px;
}
.roadmap-outer{
	margin-top:-20px;
}
.roadmap-content-box {
	margin-top: -10px;
	border-radius: 0 0 12px 12px;

	min-height: 160px;
display: flex;
flex-direction: column;
align-items: center;
  }
  p.topheading {
	max-width: 540px;
	width: 100%;
	font-size: 250%;
	line-height: 1;
	
  }
  p.mainheading {
	font-size: 150%;
	font-weight: 400;
	color: #680745;
	padding: 50px 0;
  }
  .logo-section img{
	position: relative;
	/*top:-1px;*/
}

/* .banner{	
	height:100vh;
} */

}


@media (min-width: 576px) and (max-width: 767.98px) { 

	.footer{
		font-size: 0.75rem;
		padding: 15px 0 0;
	}
	ul.links li a{
		font-size: 0.75rem;
	}
	.col-count{
		-moz-columns: 2 auto;
		-webkit-columns: 2 auto;
		columns: 2 auto;
	}
	.bdr-top-1 {		
		margin: 15px 0 15px;
	}
	.padding-top-100{
		padding-top: 25px;
	}
	.risk-warning p{
		font-size: 0.85rem;
	}
	.padding-100{
		padding: 25px 0;
	}
	.tabsy > .tabButton{
		width: 100%;
	}
	.tabsy > input:checked + label + .tab > .content{
		padding: 25px 15px 15px;
	}

	 .accordionTitle {
		padding: 15px 15px;
		font-size: 0.99rem;
		color: #fff;
		transition: 0.2s;
		font-weight: 600;
	  }
	  .accordionContent {
		padding: 15px 15px 15px;
		width: 100%;
		border-top:#fff solid 1px;
	  }
	  .accordionContent p {	
		font-size: 0.85rem;		
	  }
	  .tabsy > .tabButton {
		font-size: 0.99rem;
		width: 100%;
	  }
	.tabsy > input:checked + label + .tab > .content {
		width: 100%;
		padding: 25px 15px 15px;
	}
	.accordionTitle {
		padding: 15px 15px;
		font-size: 0.9rem;		
	}
	.accordionContent p {
		margin: 0 0 15px;
		color: #fff;
		font-size: 0.8rem;		
	}
	.cryptobox p.rightside{		
		font-size: 0.99rem;
		line-height: 1.5;
	}
	.cryptobox p.leftside{		
		font-size: 0.99rem;
		line-height: 1.5;
	}
	ul.stepbox li strong {
		font-size: 1.2rem;
		font-weight: 700;
	  }
	ul.stepbox li span {
		font-size: 0.75rem;
		line-height: 1.2;
		font-weight: 400;
	}
	.iconBox strong {
		color: #fff;
		padding: 10px;
		font-size:18px ;
		font-weight: 600;
	}
	.iconBox .text-content {
		color: #fff;
		font-size: 0.8rem;
		font-weight: 400;
	}
	ul.rating-box{
		flex-wrap: wrap;
	}
	ul.rating-box li{
		width: 49%;
		position: relative;
		text-align: center;
		min-height: 90px;
		margin-bottom: 15px;
	}
	ul.right-sign {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		list-style: none;
	}
	ul.right-sign li {
		position: relative;
		padding-left: 63px;
		margin-bottom: 20px;
		font-size: 0.99rem;
	}
	.aboutus p{
		font-size: 0.9rem;
		line-height: 1.5;
	}
	.banner{
		height:100vh;
	
	}
	.goog-te-gadget .goog-te-combo{
		max-width:160px;
		width: 100%;
	}
	.goog-te-combo {	
		padding: 3px 12px;
		border-radius: 25px;	
		font-size: 18px !important;
		outline: none;
		font-variant: all-petite-caps;
	  }
	  	ul.top-divided-section{
		justify-content:start;
	}
	  .logo-section img {
          position: relative;
          top: 0px;
          height: 105px;
    }
	
}


@media (min-width: 768px) and (max-width: 991.98px) {
	.footer{
		font-size: 0.75rem;
		padding: 15px 0;
	}
	ul.links li a{
		font-size: 0.75rem;
	}
	.col-count{
		-moz-columns: 2 auto;
		-webkit-columns: 2 auto;
		columns: 2 auto;
	}
	.bdr-top-1 {		
		margin: 15px 0 15px;
	}
	.padding-top-100{
		padding-top: 25px;
	}
	.risk-warning p{
		font-size: 0.85rem;
	}

	.tabsy > .tabButton {
		font-size: 0.99rem;
	}

	.tabsy > input:checked + label + .tab > .content {
		width: 100%;
		padding: 25px 15px 15px;
	}

	.accordionTitle {
		padding: 15px 15px;
		font-size: 0.9rem;		
	}
	.accordionContent p {
		margin: 0 0 15px;
		color: #fff;
		font-size: 0.8rem;		
	}
	.padding-100 {
		padding: 50px 0;
	}
	.sub-heading {
		width: 100%;
		font-size: 30px;
		font-weight: 600;
		color: #FFF;
		margin-bottom: 20px;
	}
	.accordionContent {
		padding: 15px 15px 15px;
		width: 100%;
		border-top:#fff solid 1px;
	}
	.cryptobox p.rightside{		
		font-size: 0.99rem;
		line-height: 1.5;
	}
	.cryptobox p.leftside{		
		font-size: 0.99rem;
		line-height: 1.5;
	}
	ul.stepbox li span {
		font-size: 0.99rem;
		line-height: 1.2;
		font-weight: 400;
	}
	ul.right-sign {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		list-style: none;
	}
	ul.rating-box{
		flex-wrap: wrap;
		justify-content: center;
	}
	ul.rating-box li{
		width: 32%;
		position: relative;
		text-align: center;
		min-height: 90px;
		margin-bottom: 15px;
	}
	.aboutus p{
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.roadmap-outer .roadmap{ 
		margin-top: -135px; 
	}
	.roadmap-outer .roadmap-content:before{ 
		left: -4%; 
	}
	.roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{ 
		right: -4%; 
	}
    .iconBox{
		min-height: 354px;
	}
	.roadmap-content-box {
		
		position: absolute;
	}
	ul.stepbox li:nth-child(1)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #FF5B2D;
	}
	ul.stepbox li:nth-child(2)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #FBB03B;
	}
	ul.stepbox li:nth-child(3)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #8AC900;
	}
	ul.stepbox li:nth-child(4)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #00B199;
	}

	p.topheading{
		font-size: 250%;
		line-height: 1.3;
	}
	p.mainheading {
		font-size: 20px;
		font-weight: 400;
		color: #fff;
		padding: 50px 0;
	  }
	  .banner{
		padding-bottom: 50px;	
	  }
	  ul.top-divided-section{			
		margin-right: 96px;
	}
	
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.v-line{
		position: relative;
	}
	
	.v-line::after{
		position: absolute;
		content: '';
		height: calc(100% - 50px);
		left: -45px;
		top: 50px;
		width: 1px;
		background: #FFAE00;
	}
	.v-line::before{
		position: absolute;
		content: '';
		height: calc(100% - 50px);
		right: 11px;
		top: 50px;
		width: 1px;
		background: #FFAE00;
	}
	.footer{		
		padding: 15px 0;
	}
	.bdr-top-1 {		
		margin: 15px 0 15px;
	}
	ul.right-sign {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		list-style: none;
	}
	.padding-100 {
		padding: 50px 0;
	  }
	.sub-heading {		
		margin-bottom: 40px;
	}
	.rating-text {
		font-size: 16px;
		padding: 0 10px;		
		
	}
	.roadmap-outer .roadmap{ 
		margin-top: -107px; 
	}
	.roadmap-outer .roadmap-content:before{ 
		left: -18%; 
	}
	.roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{ 
		right: -18%; 
	}
	.iconBox{
		min-height: 290px;
	}

	.roadmap-content-box {
		width: 100%;
		background: #333C42;
		padding: 5px 10px;
		border-radius: 5px;
	  }
	  ul.stepbox li:nth-child(1)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #FF5B2D;
	}
	ul.stepbox li:nth-child(2)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #FBB03B;
	}
	ul.stepbox li:nth-child(3)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #8AC900;
	}
	ul.stepbox li:nth-child(4)::after{
		position: absolute;
		content:'';   
		border-left: solid 10px #00B199;
	}
	.banner{
		height:100vh;

	}
	ul.top-divided-section{			
		margin-right: 96px;
	}
}


@media (min-width: 1200px) { 

	.v-line{
		position: relative;
	}
	
	.v-line::after{
		position: absolute;
		content: '';
		height: calc(100% - 50px);
		left: -76px;
		top: 50px;
		width: 1px;
		background: #e95cb6;
	}
	.v-line::before{
		position: absolute;
		content: '';
		height: calc(100% - 50px);
		right: 28px;
		top: 50px;
		width: 1px;
		background: #e95cb6;
	}

	ul.stepbox li:nth-child(1)::after{
		position: absolute;
		content:'';  
		border-top: solid 10px transparent;
		border-bottom: solid 10px transparent;	  
		border-left: solid 10px #FF5B2D;
	}
	ul.stepbox li:nth-child(2)::after{
		position: absolute;
		content:'';   
		border-top: solid 10px transparent;
		border-bottom: solid 10px transparent;
		border-left: solid 10px #FBB03B;
	}
	ul.stepbox li:nth-child(3)::after{
		position: absolute;
		content:'';   
		border-top: solid 10px transparent;
		border-bottom: solid 10px transparent;
		border-left: solid 10px #8AC900;
	}
	ul.stepbox li:nth-child(4)::after{
		position: absolute;
		content:'';   
		border-top: solid 10px transparent;
		border-bottom: solid 10px transparent;
		border-left: solid 10px #00B199;
	}
	.banner{
		
	padding-bottom: 95px;;
	}
	
	ul.top-divided-section{			
		margin-right: 96px;
	}

 }


 .bg-footer{
	width: 100%;
	height: 100%; 
	/*background: linear-gradient( rgba(17,17,17,0.1), rgba(17,17,17,0.1) ), url('../images/footer.jpg');*/
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;
    overflow: hidden;		
 }

 .bg-team{
	width: 100%;
	height: 100%; 
	background: linear-gradient( rgba(17,17,17,0.1), rgba(17,17,17,0.1) ), url('../images/team.jpg');
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;
    overflow: hidden;		
 }

 .bg-faq{
	width: 100%;
	height: 100%; 
	background: linear-gradient( rgba(17,17,17,0.1), rgba(17,17,17,0.1) ), url('../images/faq.jpg');
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;
    overflow: hidden;		
 }

 .bg-calculater{
	width: 100%;
	height: 100%; 
	background: linear-gradient( rgba(17,17,17,0.1), rgba(17,17,17,0.1) ), url('../images/calculater.jpg');
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;
    overflow: hidden;		
 }

 .bg-header{
	width: 100%;
	height: 100%; 
	background: linear-gradient( rgba(17,17,17,0.1), rgba(17,17,17,0.1) ), url('../images/header.jpg');
    background-position: 100% top;
    background-repeat: repeat;
    background-attachment: inherit;
    background-size: cover;
    overflow: hidden;		
 }

 #scrolltop {
	display: none;
  }
  
  #rocketmeluncur {
	position: fixed;
	bottom: 50px;
	z-index: 7;
	display: none;
	visibility: hidden;
	width: 26px;
	height: 48px;
	right: 25px;
	background: url(../images/toptoback.png) no-repeat 50% 0;
	opacity: 0;
	-webkit-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
	-moz-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -moz-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
	transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  
  #rocketmeluncur i {
	display: block;
	margin-top: 48px;
	height: 14px;
	background: url(../images/toptoback.png) no-repeat 50% -48px;
	opacity: .5;
	-webkit-transition: -webkit-transform .2s;
	-moz-transition: -moz-transform .2s;
	transition: transform .2s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0
  }
  
  #rocketmeluncur:hover {
	background-position: 50% -62px
  }
  
  #rocketmeluncur:hover i {
	background-position: 50% 100%;
	-webkit-animation: flaming .7s infinite;
	-moz-animation: flaming .7s infinite;
	animation: flaming .7s infinite
  }
  
  #rocketmeluncur.showrocket {
	visibility: visible;
	opacity: 1
  }
  
  #rocketmeluncur.launchrocket {
	background-position: 50% -62px;
	opacity: 0;
	-webkit-transform: translateY(-800px);
	-moz-transform: translateY(-800px);
	-ms-transform: translateY(-800px);
	transform: translateY(-800px);
	pointer-events: none
  }
  
  #rocketmeluncur.launchrocket i {
	background-position: 50% 100%;
	-webkit-transform: scale(1.4, 3.2);
	-moz-transform: scale(1.4, 3.2);
	transform: scale(1.4, 3.2)
  }
