/* navbar */
/* .logo{
    width: 100px;
    height: 100px;
} */
.nav {
  padding: 3rem 0;
}
.nav__icon,
.nav__close,
.nav__bgOverlay {
  display: none;
}
.nav__wrapper {
  display: flex;
  justify-content: space-between;
}
.nav__list li {
  display: inline-block;
  margin: 0 1.5rem;
}
.nav__list,
.nav__link {
  font-size: 1.6rem;
  font-family: Poppins;
  color: var(--white-1);
  padding: 0.3rem;
}
.nav__list li:hover .nav__link {
  color: rgb(136, 136, 136);
}

@media only screen and (max-width: 768px) {
  .nav {
    position: relative;
  }
  .nav__icon {
    display: block;
    color: rgb(255, 253, 253);
  }
  .nav__icon svg,
  .nav__close svg {
    color: white;
    /* pointer-events: none; */
    cursor: pointer;
    height: 30px;
    width: 30px;
  }
  .nav__close {
    display: none;
    position: absolute;
    color: black;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
  }
  .nav__list {
    z-index: 1000;
    position: absolute;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 80%;
    /* background: var(--lightGreen-1);
        */
    background-image: linear-gradient(45deg, #000000, #000000);
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    transform: translateX(0%);
    overflow: hidden;
    transition: 0.3s ease-in tranform;
  }
  .nav__list.show {
    transform: translateX(-100%);
  }
  .nav__list li {
    display: none;
    text-align: right;
    margin-bottom: 1rem;
  }
  .nav__list a {
    font-size: 2rem;
    font-family: Poppins;
  }
  .nav__bgOverlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    height: 100vh;
    width: 100%;
    /* background:rgba(218, 238, 218, 0.322); */
    display: none;
  }
  .nav__bgOverlay.active {
    display: none;
  }
}
.btn1 {
  font-size: 1.6rem;
  color: var(--green-1);
  font-family: "Bree Serif", serif;
  border-radius: 10px;
  padding: 1rem 2rem;
}

.primary-btn {
  color: var(--white-1);
  border: 2px solid rgb(231, 231, 231);
  /* background-color: var(--green-1); */
}
.primary-btn1 {
  color: var(--white-1);
  border: 2px solid rgb(231, 231, 231);
  border-radius: 30px;
  /* background-color: var(--green-1); */
  width: 50px;
  height: 50px;
}
.btn:hover,
.btn1:hover {
  background: linear-gradient(90deg, #4b84ef, #fa11ac);
  color: #000000;
  /* background-color: blueviolet; */
}
.animate_text {
  background: linear-gradient(90deg, #4b84ef, #fa11ac);
  /* text-decoration-color: var(--gradient); */
  /* color:linear-gradient(90deg, #4b84ef, #fa11ac); */
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.white {
  color: white;
}
.extralarge {
  /* font-family: Poppins; */
  font-family: "Bree Serif", serif;
  font-size: 8rem;
}
.small{
  font-size: 3rem; 
  margin:10px 5px;
}
.heroimg img {
  width: 90%;
  height: auto;
  margin: 0 10rem;
}

.animateimg {
  animation: shimmy 3s infinite;

  transform: translate();
  animation-direction: alternate;

}
@keyframes shimmy {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-20px, 50px);
  }
}

.heading {
  font-size: 4rem;
  color: white;
  text-align: center;
  margin: 3rem;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.heading1 {
  font-size: 4rem;
  color: white;
  /* text-align: center; */
  margin: 2rem 0arem;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.card {
  cursor: pointer;
  width: 30rem;
  /* border: 5px solid rgb(0, 0, 0); */
  border-radius: 10px;
  color: white;
  /* background-image: linear-gradient(
    180deg
    , #374058, #232c43); */
  /* background-color: hsla(0, 0%, 28%, 0); */
  background-color: rgba(241, 241, 241, 0.158);
  padding: 10px;
  /* height: 500px; */
  margin: 0 auto;
}
.card:hover {
  background-image: linear-gradient(90deg, #4b84ef, #fa11ac);
}
.card-body {
  padding: 20px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 5px;
}
.card-title {
  font-family: "Bree Serif", serif;
  font-size: 3rem;
  /* margin: 1rem; */
  margin-bottom: 1rem;
}
.card-text {
  font-family: Raleway;
  font-size: 2rem;
  /* margin: 1rem; */
  /* padding: 1rem; */
  line-height: 3rem;
}
.text {
  font-size: 3rem;
  cursor: default;
  margin: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  font-family: Popins;
}
.container {
  /* margin-bottom: 5rem; */
}
.row {
  /* padding: 3rem; */
}
.col {
  /* border: 2px solid grey; */
}
/* .text:hover{
    background-image: linear-gradient(90deg, #4b84ef, #fa11ac);
    color: rgb(0, 0, 0);
  
} */
.toke {
  font-size: 3rem;
  cursor: default;
  padding: 10px;

  /* font-family: Popins; */
}
.para {
  line-height: 3rem;
}
.card1 {
  cursor: default;
  width: 25rem;
  border: 2px solid rgb(247, 247, 247);
  border-radius: 20px;
  color: rgb(255, 255, 255);
  /* background-image: linear-gradient(
    180deg
    , #374058, #232c43);
    background-color: hsla(0, 0%, 100%, 0); */
  background-color: rgba(56, 56, 56, 0.322);
  /* padding: 10px; */
  height: auto;
}
.color{
  background-color: rgba(56, 56, 56, 0.322);
}
.card1:hover {
  background-image: linear-gradient(180deg, #374058, #232c43);
  background-color: hsla(0, 0%, 100%, 0);
}
.card-body1 {
  padding: 10px;
  border: 0px solid white;
  border-radius: 0px;
}

.card-text1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  /* margin: 1rem; */
  /* padding: 1rem; */
  line-height: 2rem;
}
.que {
  /* text-align: left; */
  background-color: rgba(128, 128, 128, 0.178);
  border-radius: 60px;
  width: 68%;
  /* height: auto; */
  margin: 0 auto;
  border: 2px solid white;
}
.ques {
  font-size: 3rem;
  color: white;
  text-align: center;
  margin: 1.2rem;
  font-weight: bold;
  font-family: 'Bree Serif', serif;
  /* text-align: left; */
}
.arrow img {
  /* padding: 10px; */
  border: 2px solid white;
  padding: 0px;
  margin-top: 0rem;
  border-radius: 31px;
  background-color: #3f3dd1ec;
  cursor: pointer;
  /* transform: rotate(90deg); */
}

.answer {
  text-align: center;
  font-size: 2rem;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 2rem;
  /* padding: 4rem; */
}

.accordian {
  padding: 2rem;
}

.img img {
  margin: 3rem auto;
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}
.link {
  font-size: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  color: rgb(0, 0, 0);
  margin: 1rem;
  text-align: left;
}
.link:hover {
  color: white;
}

.my {
  color: black;
  font-size: 2.3rem;
  font-family:  "Bree Serif", serif;;
}
.my:hover {
  background-color: var(--gradient);
}
.my span {
  color: #0300ad;
  font-family: Poppins;
  font-size: 2.5rem;
}

@media only screen and (max-width: 768px) {
     body{
    scroll-behavior: smooth;
   background: linear-gradient(90deg, #242629, #2b3183);; 
     /* background: url("./meta gaming images/—Pngtree—purple colorful technology times blockchain_1014404.jpg") repeat  ;*/
   
  
  
}
  .extralarge {
    /* font-family: Poppins; */
    font-family: "Bree Serif", serif;
    font-size: 5rem;
    text-overflow: ellipsis;
  }
  .small{
    font-size: 2rem;
    margin: 0px;
  }
  .heroimg img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .about {
    display: block;
  }
  .d-flex,
  .justify-content-evenly {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  }
  .card{
    margin: 1rem auto;
  }
  .row{
    display: block;
    /* width: 40rem; */
  }
  .col
  {
    margin: auto auto;
    width: 100%;
  }

  .img img {
    /* margin: 0rem auto; */
    width:100%;
    /* width: 300rem; */
    height: auto;
  }
}

.display{
  display: block;
}

.arrowstyle{
  transform:rotate(90deg);
}

.main {
  width: 55vw;
  background: inherit;
  margin: auto;
  position: relative;
  top: 2vh;
  height: auto;
  padding: 2vw;
  padding-top: 0vw;
  padding-bottom: 2vw
}


.sec {
  border: 1px solid rgb(71, 71, 71);
  font-size: 1.5vw;
  width: 100%;
  background-color: orange;
  padding: 1.5vw;
  cursor: pointer;
  margin-top: 0.5vw;
  background-color: #08080877;
  text-align: left;
  color: #9e9e9e;
  border-radius: 10px;
}
.sec:hover {
  width: 110%;
  padding: 2vw;
  animation-name: rotate;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1
}

.fa {
  float: right
}

.collapsable {
  width: 100%;
  background-color: pink;
  padding: 2vw;
  font-size: 1.2vw;
  display: none;
  color: #eeeeee;
  background-color: #08080877;
  border-radius: 10px;
}
.sec i {
  font-size: 2vw;
  color: #616161
}
@media only screen and (max-width: 425px) {
  .main {
      width: 90vw
  }

  .sec {
      font-size: 4.5vw;
      width: 100%;
      padding: 4.5vw;
      margin-top: 1.5vw
  }

  .sec:hover {
      width: 110%;
      padding: 6vw
  }

  .collapsable {
      width: 100%;
      padding: 6vw;
      font-size: 3.6vw;
      display: none
  }

  .sec i {
      font-size: 6vw
  }
}
