@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: green;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    /* padding: 0 1rem; */
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav_n {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: 0rem 0rem .2rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color);
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 32px;
    background-color: var(--white-color);

}

.height-100 {
    margin-top: 4rem;
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .show {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
}


/*================================= main =================================*/




.card-text {
    text-align: right;
    font-size: larger;
    padding: 0 1rem;
    font-family: 'Baloo Bhaina 2', cursive;
    font-family: 'Bree Serif', serif;
    font-family: 'Castoro Titling', cursive;
    font-family: 'Mingzat', sans-serif;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    opacity: .5;
}

.card-title1 {
    background-color: green;
    padding: 1rem;
    color: white;
    border-radius: 1rem 1rem 0rem 0rem;
    text-align: center;
    font-size: 1.4rem;

}

.card-title2 {
    background-color: green;
    color: white;
    border-radius: 1rem 1rem 0rem 0rem;
    font-size: 1.4rem;
}

table th,td {
     border: none;
    padding: 5rem;
}


/*=========================== GENELOGY ===========================*/

.cir {
    background-color: green;
    padding: 1rem;
    border-radius: 40% 40% 40% 0%;
    font-size: 1.5rem;
    color: #fff;
}

.deco {
    text-decoration: none;
}

.siz {
    font-size: .7rem;
}

.siz1 {
    font-size: 1.5rem;
}


/*========================== Profile  ==========================*/
 
 
 
.con {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
    text-align: center;
}
.con .btn {
	position: relative;
	top: 0;
	left: 0;
	width: 250px;
	height: 50px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.con .btn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
	transition: 0.5s;
	backdrop-filter: blur(15px);
}
.con .btn:hover a {
	letter-spacing: 3px;
}
.con .btn a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
    border: none;
}
.con .btn:hover a::before {
	transform: skewX(45deg) translate(200px);
    border: none;
}
.con .btn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
    border: none;
}
.con .btn:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}

.con .btn::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.con .btn:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
    border: none;
}
.con .btn:nth-child(1)::before, /*chnage 1*/
.con .btn:nth-child(1)::after {
	background: #ff1f71;
	box-shadow: 0 0 5px #ff1f71, 0 0 15px #ff1f71, 0 0 30px #ff1f71,
		0 0 60px #ff1f71;
}
.con .btn:nth-child(2)::before, /* 2*/
.con .btn:nth-child(2)::after {
	background: #2db2ff;
	box-shadow: 0 0 5px #2db2ff, 0 0 15px #2db2ff, 0 0 30px #2db2ff,
		0 0 60px #2db2ff;
}
.con .btn:nth-child(3)::before, /* 3*/
.con .btn:nth-child(3)::after {
	background: #1eff45;
	box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
		0 0 60px #1eff45;
}



/* input types */
/* 
.inner input
{
  height:40px;
  border-radius:40px;
  background:transparent;
  border:1.5px solid #000;
  background-color:#183d84;
}
.inner select
{
  border-radius:40px;
  background:transparent;
  border:1.5px solid #000;
  background-color:#183d84;
}
.inner input[type="submit"]
{
  position:relative;
  text-align:center;
  width:2;
  padding:6px 20px;
  font-size:18px;
  color:yellow;
  font-weight:400;
  border:2px solid #fe4066;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  border-radius:100px;
  transition:1.5s;
}
.inner input[type="submit"]:hover
{
  box-shadow: 0 2px 10px 0 #fe4066, 0 2px 10px 0 #fe4066;
  text-shadow:0 0 4px yellow, 0 0 5px yellow; 
} */



/*======================= Edit Profile =======================*/
.sub-link {
    padding: .3rem;
    text-decoration: none;
} 

.sub-link:hover {
     color: #000;
    font-weight: 500;
}

/*======================= TEAM =======================*/

.team_beauty {
    width: 100%;
    padding: .5rem;
    border: none;
    border-radius: .5rem;
  }

  .team_beauty option {
    padding: .1rem;
  }

  

  /*======================= website =======================*/

  




/* current page */

div.rel {
    position: relative;
}

div.abso {
    position: absolute;
    top: 0;
    right: 0;
}





.bttn1 {
    margin-top: 1rem;
    color: white;
    background-color: yellowgreen;
    padding: 1rem;

    font-size: 20px;
}

.bttn2 {
    color: white;
    padding: 1rem;
    font-size: 20px;
    border: 2px solid white;
    text-decoration: none;
}

.ca {
    color: white;
    font-size: 1.2rem;
}

.ca1 {
    color: white;
    font-size: 1.1rem;
    opacity: .5;
}

.ca2 {
    color: white;
    font-size: 1rem;
    opacity: .5;
    text-align: center;
}

.cen20 {
    color: white;
    text-align: center;
}

.cen23 {
    color: white;
    text-align: left;
}

.cen21 {
    font-size: 2.3rem;
    font-weight:700;
    color: white;
}

.opa2 {
    font-size: 1rem;
    opacity: .5;
    color: white;
}

.image1 {
    margin-top: 5rem;
    position: relative;
     width: 100%;
}

.image2 {
    position: absolute;
    top: 31px;
    left: 30px;
    width: 100%;
}

.rotate {
    animation: rotation 9s infinite linear;
    width: 100%;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.fa1 {
    color: #cbfb45;
}

.img1 {
    position: relative;
    border-radius: 5rem;
    height: 3.5rem;
 }

.img2 {
    text-decoration: none;
    color: white;
    opacity: .5;
    padding: .8rem 2.5rem;
    border: 2px solid white;
    font-weight: bold;
    font-size: 1.2rem;
}

.img3 {
    text-decoration: none;
    color: white;
    opacity: .5;
    padding: .8rem 2.5rem;
    border: 2px solid white;
    font-weight: bold;
    font-size: 1.2rem;
}

.img4 {
    text-decoration: none;
    color: white;
    opacity: .5;
    padding: .8rem 2.5rem;
    border: 2px solid white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* faq */

summary {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-radius: 30px 10px;
    padding-left: 2rem;
}

details>summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}

details[open]>summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}

details>summary::-webkit-details-marker {
    display: none;
}

.faq__content {
    padding-left: 2rem;
    color: white;
}

.email1 {
    border: 1px solid black;
    background-color: #cbfb45;
    padding: .6rem 2rem;
    font-size: 1.2rem;
}

.sub {
    padding: .6rem 2.2rem;
    background-color: black;
    color: #cbfb45;
    font-size: 1.2rem;
}

/* fotter */

.fotter {
    /* background: url('../img/footer.png'), no-repeat; */

    padding: 1rem;
    color: white;
    overflow: auto;
    font-family: 'Cinzel', serif;
    font-family: 'Labrada', serif;
    text-decoration: none;

}



.foo {
    text-decoration: none;
    font-weight: bold;
    color: #f0002a;
}

.collr {
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    font-family: 'Cinzel', serif;
    font-family: 'Labrada', serif;
}

.opta11 {
    text-decoration: none;
    color: white;
    font-weight: bold;
    opacity: 0.5;
}

.boot10 {
    background-color: #cbfb45;
    padding: .8rem;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.boot10:hover {
    background-image: url(../images/img14.svg);
    text-decoration: none;
    color: #000;
    font-weight: bold;


}

/* .blockchain */
.cett {
    text-align: center;
    padding: 1rem;
    color: #ffff;
}

#car {
    padding: 2rem;
}

ul li::before {
    color: red;
    font-weight: bold;
    width: 1em;
    font-size: 1rem;

}

.cad1 {
    margin-left: 2rem;
}

.cad2 {
    margin-right: 2rem;
}

.cen22 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
}

.opa3 {
    opacity: .5;
    color: white;
    text-align: center;
}

.but10 {
    text-decoration: none;
    text-align: center;
}



.image11 {
    margin-top: 5rem;
    position: relative;
    left: 0;
}

.image12 {
    position: absolute;
    top: 0px;
    left: 75px;
}




.rot:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}


.hoo {
    max-width: 400px;
    background-color: #232325;
    color: #;
}




.swiper {
    width: 600px;
    height: 300px;
}

#value {
    font: 800 40px system-ui;
    color: white;
}

#value1 {
    font: 800 40px system-ui;
    color: white;
}

#value2 {
    font: 800 40px system-ui;
    color: white;

}

/* div {
    font: 800 40px system-ui;
  } */




#borderimg {
    border: 10px solid transparent;
    padding: 15px;
    border-image: url(/assets/images/border.png) 30 round;
}


#borderimg1 {
    border: 10px solid transparent;
    padding: 15px;
    border-image: url(/assets/images/border.png) 30 stretch;
    background-image: linear-gradient(to right, red, yellow);

}





/* Wallet 3rd page */

.he {
    font-weight: bolder;
    font-size: 2.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.he1 {
    font-weight: bolder;
    font-size: 2.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

.pa {
    font-size: 1.1rem;
    font-weight: bold;
    float: right;
    text-decoration: none;
    color: black;
    background-image: linear-gradient(red, yellow, green);

}

.pa:hover {
    text-decoration: none;

}

.tab table,
th {
    padding: .9rem 2rem;
}

.tab table,
td {
    font-size: 1rem;
    opacity: .9;
    padding: 1rem 2rem;

}

 

.bb {
    font-size: 1.2rem;
    border: 1px solid yellow;
    border-radius: 10px;
    padding: .15rem;
    color: white;
    opacity: 1;
    font-weight: 600;
    text-align: center;
    padding: .34rem 1.8rem;
    text-decoration: none;
}

.bb:hover {
    font-size: 1.2rem;
    border: 2px solid yellow;
    background-color: #cbfb45;
    border-radius: 10px;
    padding: .15rem;
    color: rgb(101, 101, 101);
    opacity: 1;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: .34rem 1.8rem;
    text-decoration: none;
    background-image: radial-gradient(circle, red, yellow, green);
    box-shadow: 5px 5px blue, 10px 10px red, 15px 15px green;
}

.dib {
    width: 100%;
    height: 150px;
    background-color: #70833c;
    border: 1px solid black;
    position: absolute;
}

#myDiv1 {
    transform: matrix(1, -0.02, 0, 1, 0, 0);
    width: 100%;
    height: 150px;
    background-color: #cbfb45;
    border: 1px solid black;
}

.opa1 {
    font-size: 1rem;
    opacity: .5;
    color: white;
    text-align: center;
}


.hoo1 {
    border-radius: 2rem;
    background-color: #232325;
    border-radius: 1rem;
    padding: 2.5rem;
    color: white;

}

.hoo1:hover {
    background-color: #cbfb45;
    color: black;
}

.hoo2 {
    border-radius: 2rem;
    background-color: #232325;
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    line-height: 1.4rem;

}

.image3 {
    top: -30px;
    text-align: center;

}

.bb1 {
    text-decoration: none;
    background-color: #cbfb45;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
}





.bb1:hover {
    text-decoration: none;
    border-radius: 1rem .5rem 1rem .5rem;
}

.bb2 {
    text-decoration: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid white;
    margin-left: 1rem;
}

.bb2:hover {
    color: black;
    border-radius: 1rem .3rem 1rem .3rem;
    text-decoration: none;
    background-image: linear-gradient(to right, red, orange, green, blue, lightblue, yellow);
}







.bb3 {
    text-decoration: none;
    background-color: #cbfb45;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 900;
    margin-left: 5rem;

}

.bb3:hover {
    color: #000;
    text-decoration: none;
    border-radius: 1rem .5rem 1rem .5rem;
}

/* .bd1 {
    text-decoration: none;
    color: white;
    padding: .5rem 2rem .5rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid white;
    margin-left: 1rem;
} */
.bd1:hover {
    color: black;
    border-radius: 1rem .3rem 1rem .3rem;
    text-decoration: none;
    background-image: linear-gradient(to right, red, orange, green, blue, lightblue, yellow);

}














.button10 {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10rem;
    background-color: blueviolet;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button10:hover {
    /* the color of text you want to show after hover */
    color: black;

}

.button10::after {
    /* this is what all  will be done when mouse outs from the button */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(147, 159, 31);
    z-index: -1;
    border-radius: 10rem;
    transition: 0.3s ease all;
    transform: scale(0, 1);
    /* this is you are to change for diffirent transition; */

    transform-origin: bottom left;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);


}

.button10:hover::after {
    transform: scale(1, 1);
    transform-origin: top left;
}

.image4 {
    background-image: url(/assets/img/phon2.png);
    background-repeat: no-repeat;
    background-position: left bottom, right bottom;
    top: 30px
}

.image5 {
    position: absolute;
}

#myday {
    transform: rotate(30deg);
    z-index: ;
}

.ad {
    z-index: 1;
}


/*------------------- LANDING PAGE -------------------*/

.pa0 {
    color: white;
    font-size: 1rem;
}

.pa1 {
    color: white;
    font-size: .9rem;
    opacity: .5;
}

.toop {

    left: -50px;
}

.taap {
    color: white;
    font-size: .9rem;
    opacity: .5;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.cen25 {
    font-size: 2rem;
    font-weight: bolder;
    color: white;
}

.cen24 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;

}

.dac {
    padding: .4rem 1rem .001rem 2rem;
}

.hoov:hover {
    background-color: #cbfb45;
    color: #000;
}

.opa4 {
    opacity: .5;
    color: white;
}

.cat {
    color: #fff;
    font-weight: bold;
}

.catb {
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #cbfb45;
    padding: .7rem 1.8rem;
    text-decoration: none;
}

.catb:hover {
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #cbfb45;
    padding: .7rem 1.8rem;
    text-decoration: none;
    border: 5px dotted red;
    border-radius: 5px 25px;
}

.cen212 {
    font-size: 2rem;
    font-weight: 800;
    color: black;
    text-align: center;
}

.cen213 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
}

.opa33 {

    color: black;
    text-align: center;
}

.opa333 {

    color: white;
    text-align: center;
}

.cat5 {
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.cap {
    font-size: .8rem;
    background-color: #232325;
    color: white;
    padding: .4rem .7rem;
    border-radius: 2rem;
    margin: .2rem;
}

.raaa:hover #imga {
    background-color: #cbfb45;
}

.cap:hover {
    background-image: radial-gradient(circle, yellow, green);

}

.deco {
    text-decoration: none;
    color: white;
    font-size: .9rem;
    font-weight: bold;
    margin-left: 1rem;
    opacity: .5;

}

.deco:hover {
    color: #cbfb45;
    opacity: 1;
}



.bb10 {
    text-decoration: none;
    background-color: #cbfb45;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 900;
    margin-left: 1rem;
}

.bb10:hover {
    color: #000;
    text-decoration: none;
    border-radius: 1rem .5rem 1rem .5rem;
}

.bat {
    margin-left: 1rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.bat:hover {
    color: #cbfb45;

}

.search {
    text-align: center;
    padding: 1rem 4rem;
    background-color: #cbfb45;
    outline: none;
}

.bb11 {
    text-decoration: none;
    background-color: #000;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 900;
    margin-left: 1rem;
}

.bd2 {
    text-decoration: none;
    color: black;
    padding: 1rem 2rem;
    font-size: .9rem;
    font-weight: bold;
    border: 1px solid black;
    margin-left: 1rem;
    background-color: #cbfb45;
    width: 100%;
}

.sub1 {
    padding: .9rem 2.2rem;
    background-color: black;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.sub1:hover {
    padding: .9rem 2.2rem;
    background-color: black;
    color: white;
    font-size: 1.2rem;
    background-image: radial-gradient(red, green);
    font-style: italic;
    border-radius: 1rem 0rem;
}

.taap1 {
    color: white;
    font-size: 1rem;
    opacity: .5;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.taap2 {
    color: black;
    font-size: 1rem;
    opacity: .5;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.foat {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

.bb20 {
    text-decoration: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid white;

}

.bb21 {
    text-decoration: none;
    color: black;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid black;

}

.collr1 {
    font-size: 1.2rem;
    text-decoration: none;
    color: black;
    font-family: 'Cinzel', serif;
    font-family: 'Labrada', serif;
}
 
 
  




.padd1 {
    background-color: #4749d8;
    color: white;
    padding: .3rem;
    font-weight: bold;
    font-size: .7rem;
    text-align: center;
  }
  
  .padd1 .nav-item a {
    color: white;
  }
  
  .padd1 h4 {
    color: #8cbc07;
    font-weight: bold;
  }
  
  

  /* counting  */

  @property --num {
    syntax: "<integer>";
   }
  
  .count {
    animation: counter 5s alternate ease-in-out;
    counter-reset: num var(--num);
    font: 700 40px system-ui;
    padding: 2rem;
  }
  .count::after {
    content: counter(num);
  }
  
  @keyframes counter {
    from {
      --num: 0;
    }
    to {
      --num: 300;
    }
  }



  /*================= SIGNIN & REGISTER =================*/
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');

input {
  caret-color: red;
}

/* .img {
  background-image: url(../images/);
  background-size: cover;
  background-repeat: no-repeat;
} */

.bod {
  margin: 2rem 0rem;
  width: 100vw;
  height: 100%;
  background: #ecf0f3;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  place-items: center;
  overflow: auto;
  font-family: poppins;
}

.con_bodys {
  position: relative;
  width: 350px;
   border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  background: green;
  color: #000;
}

.brand-logo {
  height: 100px;
  width: 100px;
  background: url("https://img.icons8.com/color/100/000000/twitter--v2.png");
  margin: auto;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 7px 7px 10px #cbced1, -7px -7px 10px white;
}

.brand-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
}

.inputs {
  text-align: left;
  margin-top: 30px;
}

input {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: #000;
} 

label {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: #fff;
}

label {
  margin-bottom: 4px;
}

label:nth-of-type(2) {
  margin-top: 12px;
}

input::placeholder {
  color: gray;
}

.inpt {
  background: #ecf0f3;
  padding: 10px;
  padding-left: 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

/* .button {
  color: white;
  margin-top: 20px;
  background: #1DA1F2;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 6px 6px 6px #cbced1, px white;
  transition: 0.5s;
} */

/* .button:hover {
  background-color: rgb(222, 141, 220);
} */

.bttn a {
  color: white;
  margin-top: 50px;
  background: green;
  padding: .5rem;
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 6px 6px 6px #cbced1, 0px -1px 1px white;
  transition: 0.5s;
}

/* h1 {
  position: absolute;
  top: 0;
  left: 0;
} */




/* button */


 
.coon {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
    text-align: center;
}
.coon .btn {
	position: relative;
	top: 0;
	left: 0;
	width: 250px;
	height: 50px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.coon .btn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
	transition: 0.5s;
	backdrop-filter: blur(15px);
}
.coon .btn:hover a {
	letter-spacing: 3px;
}
.coon .btn a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
    border: none;
}
.coon .btn:hover a::before {
	transform: skewX(45deg) translate(200px);
    border: none;
}
.coon .btn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
    border: none;
}
.coon .btn:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}

.coon .btn::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.coon .btn:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
    border: none;
}
.coon .btn:nth-child(1)::before, /*chnage 1*/
.coon .btn:nth-child(1)::after {
	background: #ff1f71;
	box-shadow: 0 0 5px #ff1f71, 0 0 15px #ff1f71, 0 0 30px #ff1f71,
		0 0 60px #ff1f71;
}
.coon .btn:nth-child(2)::before, /* 2*/
.coon .btn:nth-child(2)::after {
	background: #2db2ff;
	box-shadow: 0 0 5px #2db2ff, 0 0 15px #2db2ff, 0 0 30px #2db2ff,
		0 0 60px #2db2ff;
}
.coon .btn:nth-child(3)::before, /* 3*/
.coon .btn:nth-child(3)::after {
	background: #1eff45;
	box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
		0 0 60px #1eff45;
}

