/* @import url(https://fonts.googleapis.com/css?family=opensans); */

.aaa {
	margin-bottom: 5px;
	border: none;
	height: 45px;
	width: 150px;
	color: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aaa a {
	text-decoration: none;
	color: #f9f9f9;
	text-align: center;
	width: 100%;
	height: 100%;
	margin-top: 5px;
}
/* styling the new added pages */
.about {
	margin-top: 50px;
	justify-content: center;
	width: 170px;
	height: 50px;
	margin-left: 45%;
	border-radius: 5px;
	background: white;
}

.about h2 {
	padding-left: 20px;
	padding-top: 5px;
	font-weight: lighter;

}

.col-lg-12 {
	display: flex;
	justify-content: space-around;
	gap: 10px;
	padding: 100px;
}
body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background-color: #f9f9f9;
	font-family: sans-serif;
}
body p{
	font-size: 13px;
	color: #082B37;
}
*{
	box-sizing: border-box;
}
/* .carousel .carousel-item {
	height: 500px;
}
.carousel-item img {
	height: 500px;
} */
header{
	display: flex;
	width: 100%;
	height: 90px;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	box-shadow: 0px 5px 12px rgba(0 0 0 /.15);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
header .hamburger{
	display: none;
	margin-right: 3rem;
	font-size: 1.2rem;
	padding: 0.35rem 0.7rem;
	background: transparent;
	color: #082B37;
	font-weight: bolder;
	border-radius: 8px;
	cursor: pointer;
}
header .logo{
	margin-left: 3rem;
}
header .logo a{
	text-decoration: none;
	color:#082B37;
	/* font-weight: bold; */
	font-family: sans-serif;
	font-size: 24px;
}
header .logo a small{
	font-weight: normal;
}
.center{
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 0 2.5rem;
}
.center li a{
	text-decoration: none;
	color: #082B37;
	font-weight: normal;
	position: relative;
	display: inline-block;
	font-size: 16px;
}
.center li a::before{
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	background-color: #082B37;
	bottom: 0;
	left: 0;
	transition: 0.5s;
}
.center li a:hover::before{
	width: 100%;
}
.icons{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1rem;
	margin-right: 3rem;
}
.icons i{
	font-size: 1rem;
	cursor: pointer;
	transition: 0.4s;
}
.icons i:hover{
	color: #da0037;
}


/* styling mob nav */
.mobile-nav{
	display: none;
	justify-content: flex-start;
	flex-flow: column;
	align-items: center;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(0, 38, 97, 0.7);
	transition: 0.6s;
	z-index: 20;
}
.mobile-nav .nav-btn{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 2rem;
}
.mobile-nav .nav-btn .logo a{
	text-decoration: none;
	color: #fff;
	font-weight: bolder;
	font-family: sans-serif;
	font-size: 1.5rem;	 
}
.mobile-nav .nav-btn .closeBtn{
	margin-right: 3rem;
	font-size: 1.2rem;
	padding: 0.4rem 1rem;
	background: #333;
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
}
.mob-nav{
	list-style: none;
	margin-top: 3rem;
}
.mob-nav li{
	margin: 20px 0;
	overflow: hidden;
}
.mob-nav li a{
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	text-decoration: none;
	transform: translateY(40px);
}
.mob-nav li a::before{
	content: "";
	position: absolute;
	width: 0;
	height: 5px;
	background-color: #fff;
	bottom: 0;
	left: 0;
	transition: 0.2s linear;
}
.mob-nav li a:hover::before{
	width: 100%;
}
.mobile-nav.active{
	right: 0;
}
.mobile-nav.active .mob-nav li a{
	transform: translateY(0);
	transition: 0.6s linear;
}
.mobile-nav.active .mob-nav li:nth-child(1) a{
	transition-delay: 0.2s;
}
.mobile-nav.active .mob-nav li:nth-child(2) a{
	transition-delay: 0.4s;
}
.mobile-nav.active .mob-nav li:nth-child(3) a{
	transition-delay: 0.6s;
}
.mobile-nav.active .mob-nav  li:nth-child(4) a{
	transition-delay: 0.8s;
}
.mobile-nav.active .mob-nav  li:nth-child(5) a{
	transition-delay: 1s;
}	

.action_btn{
    text-decoration: none;
    align-items: center;
    background: linear-gradient(to right, #92ffc0, #002661);
    color: #f9f9f9;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-size: small;
    border-radius: 5px;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover{
    scale: 1.05;
    color: #f9f9f9;
}
.action_btn:active{
    scale: 0.95;
}

section.hero{
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: palevioletred;
	background-image: url('../img/2.jpg');
	background-size: 100%;
	background-position: center;
	position: relative;
}
section.hero::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0 0 0 /.5);
}
section.hero .textBtn{
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	z-index: 20;
}
.textBtn p{
	/* font-family: fantasy; */
	color: white;
	/* font-size: 1.5rem; */
}
.textBtn button{
	outline: none;
	border: 1.5px solid #da0037;
	background-color: rgb(218, 0, 55);
	color: white;
	width: 140px;
	padding: 0.8rem 0;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: 0.4s;
}
.textBtn button:hover{
	background-color: rgba(218, 0, 55, 0);
	color: #fff;
	border: 1.5px solid #fff;
}

/* styling first section */
.jump{
	text-transform: capitalize;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 2em;
	margin-top: 9rem !important;
	
}
.jump .img{
	overflow: hidden;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* max-height: 100%; */
	width: 700px;
	margin-top: 2rem;
	/* padding-left: 10rem; */
	position: relative;
	z-index: 1;
	background: transparent;
}
.jump .img::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: inherit;
	height: inherit;
	background: radial-gradient(circle,#92ffc0, #f9f9f9, transparent);
	z-index: -1;
}
.jump .img img{
	transform: scale(1.3);
	object-fit: cover;
	/* filter: drop-shadow(0px 0px 10px rgb(173, 216, 230)); */
}
.jump button a{
	text-decoration: none;
	color: #f9f9f9;
}
.pone{
	font-size: 3em;
	font-weight: bold;
	color: #082B37;
	margin-top: 5rem;
}
.ptwo{
	
	color: #082B37;
}
.drops{
	display: flex;
	justify-content: space-around;
}
.p{
	font-size: 2em ;
	font-weight: bold;
	color: #082B37;
	padding-left: 1.5em;
}
.pe{
	font-size: 1em;
	font-weight: bold;
	color: #082B37;
}
.porpular{
	display: flex;
	justify-content: space-between;
	margin-top: 5rem;
}

.popup .overlay{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
	display: none;
}
.popup .content{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: #f9f9f9;
	width: 470px;
	height: 270px;
	z-index: 2;
	text-align: center;
	font-size: 11px;
	box-sizing: border-box;
	padding: 20px;
}
.popup .content h1{
	padding-top: 20px;
}
.popup .close-btn{
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 5px;
	width: 30px;
	height: 30px;
	/* background: #222; */
	color: #222;
	font-size: 30px;
	font-weight: 600;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	/* padding: 10px; */
}
.popup.active .overlay{
	display: block;
}
.popup.active .content{
	transform: translate(-50%, -50%) scale(1);
	transition: all 300ms ease-in-out;
}
/* grid styling */
.grid{
	display: grid;
	width: 100%;
	grid-gap: 6rem;
	grid-template-columns: repeat(auto-fit, minmax(15rem,1fr));
	align-items: start;
	margin-top: 0.8em;
}
.grid-item{
	background-color: #f9f9f9;
	overflow: hidden;
	box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: 0.3s;
	border-radius: 5px;
}
.grid-item:hover{
	transform: t
	ranslateY(-0.5%);
	box-shadow: 0 4rem 8rem rgba(0, 0,0, 0.3);
}
.card img{
	display: block;
	width: 100%;
	height: 20rem;
	object-fit: cover;
	overflow: hidden;
}
.grid-item .card-contentss{
	display: flex !important;
	justify-content: space-between !important;
	padding: 20px !important;
}
/* styling getting started */
.holder{
	display: flex;
	justify-content: space-evenly;
}
/* .holders{
	margin-top: 2rem;
} */
.holder .holders p{
	font-size: 13px;
}
.holders img{
	width: 7rem;
}
.holders .writeups{
	padding-top: 25px;
}
.holders .writeone{
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}

.holders .writetwo{
	display: flex;
	/* justify-content: space-between; */
	margin-top: 2rem;
	gap: 35px;
	
}
.holders .writetwo img{
	height: 9rem;
	width: 8rem;
}
.holders .writethree{
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	
}
/* styling inputfields */

.inputfields .form-select option{
	width: 100%;
	margin-top: 2rem;
	height: 2rem;
	padding: 1.5rem;

}
.inputfields .form-select .textss{
	font-size: 12px;
}
.community{
	width: 100%;
	height: 300px ;
	margin-top: 2rem;
	background-size: cover;
	object-fit: cover;
	color: #082B37;
	background-repeat: no-repeat;
	overflow: hidden;
	background-image: url(https://static.wixstatic.com/media/0ed918_d81f2997a38f41d0962d1f690deecabf~mv2.png/v1/fill/w_1674,h_474,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/pincon022%20(7).png);
	
}
.community h3{
	padding-left: 230px;
	margin-top: 1rem;
}
.community p{
	padding-left: 520px;
	margin-top: 3.5rem;
}
.grid .grid-item .testimony{
	font-weight: lighter;
	/* font-size: 9px; */
	color: #082B37;
	padding: 30px;
}
/* widget styling */
.tradingview-widget-container{
	padding-left: 5rem;
}

section .awader p{
	color: #fff !important;
}
section .awader h2{
	padding-left: 500px;
	padding-top: 15px;
}
section .awader .man{
	display: flex;
	justify-content: space-between;
}
/* section .awader .mum .col-lg-12{
	display: flex;
	justify-content: space-between;
} */

.Dom{
	display: flex;
	padding: 40px;
	justify-content: space-evenly;
}

.Dom .Dom1 .dom1{
	width: 500px;
	height: 400px;
	padding-left: 20px;
	object-fit: cover;
	border-radius: 25px;
	box-sizing: border-box;
	outline: none;
	background-repeat: no-repeat;
	}
.Dom .Dom2 .dom1{
	width: 500px;
	height: 400px;
	padding-left: 20px;
	background-repeat: no-repeat;
	object-fit: cover;
	border-radius: 25px;
	box-sizing: border-box;
	outline: none;
	
}
.Dom .Dom2 .dom11{
	width: 500px;
	height: 400px;
	padding-left: 20px;
	background-repeat: no-repeat;
	object-fit: cover;
	border-radius: 25px;
	box-sizing: border-box;
	outline: none;
}
.Dom .Dom2 .dom11 p,
.Dom .Dom2 .dom1 h1{
	padding-left: 20px;
	padding-top: 60px;
}
video{
	width: 900px;
	margin-left: 7em;
}
/* footer */
.main-footer{
	width: 100%;
	
	bottom: 0;
	padding: 100px 0 30px;
	background: linear-gradient(to right, #56a176, #134729);
	/* border-top-left-radius: 100px;
	border-top-right-radius: 100px; */
	/* border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px; */
	font-size: 13px;
	/* line-height: 20px; */
}
.auto-container{
	/* width: 85%;
	margin: auto; */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.main-footer ul li{
	list-style: none;
	margin-bottom: 12px;
}
.auto-container h5{
	margin-bottom: 30px;
	margin-left: 30px;
	color: #f9f9f9;
}
.main-footer ul a{
	text-decoration: none;
	color: #f9f9f9;
}
.main-footer form{
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border-bottom: 1px solid #f9f9f9;
	margin-bottom: 50px;
    gap: 15px;
	/* margin-left: 20px; */
}
.main-footer form .fa-regular{
	font-size: 18px;
	color: #f9f9f9;
}
.main-footer form input{
	width: 100%;
	background: transparent;
	color: #f9f9f9;
	border: 0;
	outline: none;
}
.main-footer button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
.main-footer button .fa-sharp{
    font-size: 16px;
	color: #f9f9f9;
}
.main-footer .social-icons{
	display: flex;
	justify-content: space-evenly;
}
.main-footer .social-icons .fa-brands{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #f9f9f9;
	background: transparent;
	cursor: pointer;
}
.main-footer hr{
	width: 90%;
	border: 0;
	border-bottom: 1px solid #fff;
	margin: 20px auto;
}
.main-footer .copyright{
	text-align: center;
	color: #f9f9f9;
}
.underline{
	width: 100%;
	height: 3px;
	background: #f9f9f9;
	border-radius: 3px;
	position: relative;
	top: 10px;
	left: 0;
}
@media screen and (max-width: 767px){
	.popup .content{
		width: 100%;
	}
	#google_translate_element{
		padding-top: 20px;
	}
	video{
		width: 100%;
		margin-left: 0;
	}
	.container{
		margin-top: 7em;
	}
	.center{
		display: none;
	}
	.icons{
		display: none;
	}
	header .hamburger{
		display: block;
	}
	.mobile-nav{
		display: flex;
	}
	.mobile-nav .nav-btn{
		gap: 6rem;
	}
	/* widget styling */
section .tradingview-widget-container{
	display:none!important;
}
	.jump{
		text-transform: capitalize;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: center;
		gap: 0em;
		margin-top: 5rem !important;
		font-size: small;
		margin-bottom: 1rem;
		display: block;
		
	}
	.jump .pone{
		font-size: 35px;
	}
	.jump .img{
		overflow: hidden;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* max-height: 100%; */
	width: 250px;
	margin-top: 2rem;
	/* padding-left: 10rem; */
	position: relative;
	z-index: 1;
	background: transparent;
	padding-left: 0em;
	}
	.drops{
		display: block;
	}
	.p{
		font-size: 2em;
		font-weight: bold;
		color: #082B37;
		padding-left: 0;
	}
	/* newly added */
	.grid{
		display: block;
		padding: 2rem;
	}
	.grid .grid-item{
		/* width: 300px; */
		justify-items: center !important;
		align-items: center !important;
		margin-bottom: 10px !important;
	}
	.porpular{
		display: none;
	}
	.none{
		display: none;
	}
	.holder{
		display: block;
	}
	.holder .img{
		display: none;
	}
	.holder .holders .iim{
		padding-top: 10px;
	}
	
	.inputfields{
		justify-content: space-around;
		align-items: center;
		width: 99%;
		box-sizing: border-box;
	}
	.trade{
		font-size: 50px;
		justify-content: center;
		align-items: center;
	}
	.col-lg-12 {
	display: block;
	/* justify-content: space-around; */
	/* gap: 5px; */
	padding: 50px;
	width: 100%;
	}
	.col-lg-12 .seconds{
		margin-top: -30px;
	}
	.col-lg-12 .second{
		align-items: center;
		justify-content: center;
	}
	.row .col-lg-12 .img12{
		display: none;
	}
	.row .col-lg-12 .img11{
		padding-left: 10rem;
		margin-top: -8rem;
	}
	
	.about{
		margin-left: 25%;
		align-items: center;
		justify-content: center;
	}
	.about h2{
		padding-left: 35px !important;
		padding-top: 8px !important;
	}
	/* awarder start */
	section .awader h2{
		padding-left: 130px;
		padding-top: 15px;
	}
	section .awader .man{
		display: block;
		/* justify-content: space-between; */
	}
	section .awader .man .col-lg-12{
		display: block !important;
	}
	section .awader .man img{
		/* width: 30px !important;
		height: 45px !important; */
		display: none;
	}
	.Dom{
		display: none !important;
	}

	.row355 .roll{
		display: block !important;
	}
	.row355 .roll img{
		height: 100px !important;
	}
	.row355 .roll .rolls{
		padding: 20px;
		float: bottom !important;
	}
	.row355 .roll .rolls h4{
		font-size: smaller;
	}
	.row355 .roll .rolls p{
		font-size: 9px;
	}
	.community{
		display: none;
	}
	.main-footer ul a{
		font-size: 13px !important;
		font-weight: lighter !important;
	}
	
}

@media screen and (max-width: 1024px) and (min-width: 768px){
	
	.center{
		display: none;
	}
	.icons{
		display: none;
	}
	header .hamburger{
		display: block;
	}
	.mobile-nav{
		display: flex;
	}
	.mobile-nav .nav-btn{
		gap: 20rem;
	}
	.jump{
		align-items: center;
		justify-content: center;
	}
	.jump .img{
		display: none;
	}
	.holder .img{
		display: none;
	}
	.grid{
		display: grid;
		width: 100%;
		grid-gap: 3rem;
		grid-template-columns: repeat(auto-fit, minmax(20rem,1fr));
		align-items: start;
		margin-top: 0.8em;
	}
	.drops{
		margin-top: 20px;
	}

}
