#head-top {
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/img02.jpg);
  background-size: cover;
  background-position: center;
  padding: 20px 15%;
}
#head-top > .row {
  /* /////////////////////////////// end first row/ //////////////////// */
}
#head-top > .row:nth-of-type(1) {
  width: 100%;
  height: 95px;
  display: flex;
  background-color: white;
  border-radius: 200px;
}
#head-top > .row:nth-of-type(1) > div {
  height: 100%;
}
#head-top > .row:nth-of-type(1) > div:first-child {
  width: 50%;
}
#head-top > .row:nth-of-type(1) > div:first-child > figure {
  width: 65%;
  height: 100%;
}
#head-top > .row:nth-of-type(1) > div:first-child > figure > img {
  height: 100%;
  padding: 10px 15px;
  border-radius: 20px;
}
#head-top > .row:nth-of-type(1) > div:last-child {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  padding: 5px 20px;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li {
  padding: 8px 15px 8px 15px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transition: 0.4s ease-in-out;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li:nth-of-type(1) {
  background-color: #7453fc;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li:nth-of-type(1) > a {
  color: white;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li:hover {
  background-color: #7453fc;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li:hover > a {
  color: white;
}
#head-top > .row:nth-of-type(1) > div:last-child > ul > li > a {
  color: rgb(36, 36, 36);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Medium";
  transition: 0.4s ease-in-out;
}
#head-top > .row:nth-of-type(2) {
  width: 100%;
  display: flex;
  padding-top: 150px;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) {
  padding-block: 30px;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) > .row {
  width: 100%;
  /* border: 2px solid orangered; */
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) > .row:nth-of-type(1) {
  color: white;
  display: flex;
  flex-wrap: wrap;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(1)
  > h2 {
  font-size: 20px;
  font-family: "Medium";
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(1)
  > h1 {
  width: 100%;
  font-size: 50px;
  text-transform: uppercase;
  font-family: "Bold";
  margin-top: 20px;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) > .row:nth-of-type(2) {
  margin-top: 30px;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) > .row:nth-of-type(2) > p {
  color: white;
  font-size: 15px;
  font-family: "Regular";
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(1) > .row:nth-of-type(3) {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span {
  font-size: 14px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  width: 180px;
  font-family: "Medium";
  cursor: pointer;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:hover:nth-of-type(1) {
  background-color: #7453fc;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:hover:nth-of-type(2) {
  background-color: white;
  color: #7453fc;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:nth-of-type(1) {
  color: white;
  border: 2px solid #7453fc;
  margin-right: 15px;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10;
  background-color: white;
  height: 2px;
  width: 80%;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:nth-of-type(2) {
  background-color: #7453fc;
  color: white;
}
#head-top
  > .row:nth-of-type(2)
  > div:nth-of-type(1)
  > .row:nth-of-type(3)
  > span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10;
  background-color: white;
  height: 2px;
  width: 80%;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(2) > figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#head-top > .row:nth-of-type(2) > div:nth-of-type(2) > figure > img {
  width: 80%;
}

main {
  width: 100%;
}
main #firstSection {
  width: 100%;
  background-image: url(../img/img05.jpg);
  background-size: cover;
  padding: 120px 0px 10px;
}
main #firstSection > div {
  width: 90%;
  margin: 0 auto;
  /* border: 1px solid rgb(30, 255, 0); */
  /* - --------------- first row ------------------- */
  /* ------------------------------- end first row ------------------- */
  /*------------------------------ second row------------------------------  */
  /*------------ end second row----------------------------------------------  */
}
main #firstSection > div:nth-of-type(1) {
  /* ---------------- card box ------------------- */
}
main #firstSection > div:nth-of-type(1) > h2 {
  padding-top: 30px;
  padding-bottom: 80px;
  line-height: 36px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  color: #fff;
  text-transform: capitalize;
  /* border: 1px solid red; */
  position: relative;
}
main #firstSection > div:nth-of-type(1) > h2 > span {
  color: #7453fc;
}
main #firstSection > div:nth-of-type(1) > h2::before {
  content: "";
  background-color: #7453fc;
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
main #firstSection > div:nth-of-type(1) > div {
  margin: 0 auto;
  width: 95%;
  /* border: 1px solid rgb(25, 80, 180); */
  display: flex;
  justify-content: space-between;
  /*------------ 6cards---------------- */
  /* ---------------- end card box ------------------- */
}
main #firstSection > div:nth-of-type(1) > div > div {
  width: 195px;
  height: 160px;
  border-radius: 20px;
  border: 1px solid #404245;
  background-color: rgb(40, 43, 47);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 160px;
  cursor: pointer;
}
main #firstSection > div:nth-of-type(1) > div > div > figure {
  background-color: white;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main #firstSection > div:nth-of-type(1) > div > div > h5 {
  font-size: 20px;
  color: white;
  margin-top: 20px;
  font-weight: 700;
  text-transform: capitalize;
}
main #firstSection > div:nth-of-type(1) > div > div > span {
  width: 46px;
  height: 46px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translate(-50%, 0);
  display: grid;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
main #firstSection > div:nth-of-type(1) > div > div > span:hover {
  background-color: #7453fc;
}
main #firstSection > div:nth-of-type(1) > div > div > span:hover > i {
  color: white;
}
main #firstSection > div:nth-of-type(1) > div > div > span > i {
  color: #7453fc;
  font-size: 24px;
  transition: all 0.4s ease;
}
main #firstSection > div:nth-of-type(1) > div > div:hover > span {
  opacity: 1;
  visibility: visible;
}
main #firstSection > div:nth-of-type(2) {
  /*------------------ collectionsCardBox-------------- */
}
main #firstSection > div:nth-of-type(2) > h3 {
  padding-top: 30px;
  padding-bottom: 80px;
  line-height: 36px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  color: #fff;
  text-transform: capitalize;
  /* border: 1px solid red; */
  position: relative;
}
main #firstSection > div:nth-of-type(2) > h3 > span {
  color: #7453fc;
}
main #firstSection > div:nth-of-type(2) > h3::before {
  content: "";
  background-color: #7453fc;
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
main #firstSection > div:nth-of-type(2) > .collectionsCardBox {
  width: 100%;
  /* border: 1px solid brown; */
  display: flex;
  justify-content: space-between;
  margin-bottom: 190px;
  /*-------------- cards css--------------- */
  /*-------------- cards css--------------------------- */
}
main #firstSection > div:nth-of-type(2) > .collectionsCardBox > div {
  width: 415px;
  height: 490px;
  border-radius: 20px;
  /* card 1 */
  /* card 2 */
  /* card 3 */
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > figure {
  width: 100%;
  height: 60%;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > figure
  > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div {
  width: 100%;
  height: 40%;
  border: 1px solid #404245;
  border-radius: 0 0 20px 20px;
  background-color: #282b2f;
  padding: 30px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > div:nth-of-type(1)
  > span {
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > div:nth-of-type(2) {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > div:nth-of-type(2)
  > span {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > a {
  width: 290px;
  height: 50px;
  background-color: #7453fc;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -10px;
  left: 50%;
  border-radius: 25px;
  transform: translate(-50%, 0);
  position: relative;
  transition: all 0.4s ease;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > a:hover {
  background-color: white;
  color: #7453fc;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(1)
  > div
  > a::after {
  content: "";
  width: 78%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > figure {
  width: 100%;
  height: 60%;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > figure
  > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div {
  width: 100%;
  height: 40%;
  border: 1px solid #404245;
  border-radius: 0 0 20px 20px;
  background-color: #282b2f;
  padding: 30px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > div:nth-of-type(1)
  > span {
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > div:nth-of-type(2) {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > div:nth-of-type(2)
  > span {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > a {
  width: 290px;
  height: 50px;
  background-color: #7453fc;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -10px;
  left: 50%;
  border-radius: 25px;
  transform: translate(-50%, 0);
  position: relative;
  transition: all 0.4s ease;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > a:hover {
  background-color: white;
  color: #7453fc;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(2)
  > div
  > a::after {
  content: "";
  width: 78%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > figure {
  width: 100%;
  height: 60%;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > figure
  > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div {
  width: 100%;
  height: 40%;
  border: 1px solid #404245;
  border-radius: 0 0 20px 20px;
  background-color: #282b2f;
  padding: 30px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > div:nth-of-type(1)
  > span {
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > div:nth-of-type(2) {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > div:nth-of-type(2)
  > span {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > a {
  width: 290px;
  height: 50px;
  background-color: #7453fc;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -10px;
  left: 50%;
  border-radius: 25px;
  transform: translate(-50%, 0);
  position: relative;
  transition: all 0.4s ease;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > a:hover {
  background-color: white;
  color: #7453fc;
}
main
  #firstSection
  > div:nth-of-type(2)
  > .collectionsCardBox
  > div:nth-of-type(3)
  > div
  > a::after {
  content: "";
  width: 78%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
main > #secondSection {
  width: 100%;
  /* border: 1px solid red; */
  background-image: url(../img/img13.jpg);
  background-size: cover;
  padding: 100px 0px;
}
main > #secondSection > div {
  width: 90%;
  margin: 0 auto;
  /* ------------ create NFT -------------- */
  /* --------------3section------------------ */
}
main > #secondSection > div:nth-of-type(1) {
  height: 125px;
  display: flex;
  justify-content: space-between;
}
main > #secondSection > div:nth-of-type(1) > h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
  padding-top: 30px;
  position: relative;
  color: white;
}
main > #secondSection > div:nth-of-type(1) > h2::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
}
main > #secondSection > div:nth-of-type(1) > a {
  width: 210px;
  height: 50px;
  background-color: #7453fc;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  position: relative;
  transition: all 0.4s ease;
}
main > #secondSection > div:nth-of-type(1) > a:hover {
  background-color: white;
  color: #7453fc;
}
main > #secondSection > div:nth-of-type(1) > a::after {
  content: "";
  width: 78%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
main > #secondSection > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
main > #secondSection > div:nth-of-type(2) > div {
  width: 80%;
  height: 100%;
  /* -------------1------------------ */
  /* --------------2------------- */
  /* -----------------3-------------- */
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1) {
  padding-top: 30px;
  position: relative;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1) > figure {
  width: 62px;
  height: 62px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1) > figure > img {
  width: 31px;
  height: 31px;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1) > h5 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: white;
  font-weight: 700;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1) > p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1)::after {
  content: "";
  width: 1px;
  height: 214px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(1)::before {
  content: "1";
  color: white;
  font-weight: 700;
  position: absolute;
  right: -3px;
  top: 0;
  display: none;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) {
  padding-top: 30px;
  position: relative;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) > figure {
  width: 62px;
  height: 62px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) > figure > img {
  width: 31px;
  height: 31px;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) > h5 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: white;
  font-weight: 700;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) > p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2) > p > span {
  color: #41aafa;
  cursor: pointer;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2)::after {
  content: "";
  width: 1px;
  height: 214px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(2)::before {
  content: "2";
  color: white;
  font-weight: 700;
  position: absolute;
  right: -3px;
  top: 0;
  display: none;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) {
  padding-top: 30px;
  position: relative;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) > figure {
  width: 62px;
  height: 62px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) > figure > img {
  width: 31px;
  height: 31px;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) > h5 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: white;
  font-weight: 700;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) > p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}
main > #secondSection > div:nth-of-type(2) > div:nth-of-type(3) > p > span {
  color: #41aafa;
  cursor: pointer;
}
main #items {
  width: 100%;
  background-image: url(../img/img05.jpg);
  background-position: center;
  background-size: cover;
  padding: 100px 0 80px 0;
}
main #items > h2 {
  padding-top: 30px;
  padding-bottom: 80px;
  line-height: 36px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  color: #fff;
  text-transform: capitalize;
  /* border: 1px solid red; */
  position: relative;
}
main #items > h2 > span {
  color: #7453fc;
}
main #items > h2::before {
  content: "";
  background-color: #7453fc;
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
main #items #itemsCards {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
main #items #itemsCards > div {
  height: 390px;
  width: 570px;
  border-radius: 20px;
  background-color: #282b2f;
  border: 1px solid #404245;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
main #items #itemsCards > div > figure {
  height: 100%;
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
}
main #items #itemsCards > div > figure > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main #items #itemsCards > div > div {
  width: 55%;
  height: 100%;
}
main #items #itemsCards > div > div > section {
  width: 100%;
}
main #items #itemsCards > div > div > section:nth-of-type(1) {
  height: 40%;
  border-bottom: 1px solid #535558;
}
main #items #itemsCards > div > div > section:nth-of-type(1) > h5 {
  color: white;
  text-transform: capitalize;
  font-size: 20px;
  font-family: "Bold";
}
main #items #itemsCards > div > div > section:nth-of-type(1) > div {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
main #items #itemsCards > div > div > section:nth-of-type(1) > div > figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
main
  #items
  #itemsCards
  > div
  > div
  > section:nth-of-type(1)
  > div
  > figure
  > img {
  width: 100%;
}
main #items #itemsCards > div > div > section:nth-of-type(1) > div > div {
  margin-left: 15px;
}
main #items #itemsCards > div > div > section:nth-of-type(1) > div > div > h6 {
  color: white;
  text-transform: capitalize;
  font-size: 15px;
  font-family: "Regular";
}
main #items #itemsCards > div > div > section:nth-of-type(1) > div > div > a {
  color: #7453fc;
  text-transform: capitalize;
  font-size: 15px;
  font-family: "Bold";
}
main #items #itemsCards > div > div > section:nth-of-type(2) {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 15px;
}
main #items #itemsCards > div > div > section:nth-of-type(2) > div {
  width: 100%;
}
main #items #itemsCards > div > div > section:nth-of-type(2) > div > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
}
main #items #itemsCards > div > div > section:nth-of-type(2) > div > div > p {
  color: white;
  text-transform: capitalize;
  font-size: 15px;
  font-family: "Regular";
}
main
  #items
  #itemsCards
  > div
  > div
  > section:nth-of-type(2)
  > div
  > div:nth-of-type(2)
  > p {
  font-size: 20px;
  font-family: "Bold";
}
main #items #itemsCards > div > div > section:nth-of-type(2) > a {
  color: #7453fc;
  font-family: "Bold";
  font-size: 15px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
main #team {
  width: 100%;
  height: 1500px;
  padding: 100px 0 80px 0;
  background-image: linear-gradient(
    to right top,
    #e9e9e9,
    #d9d9dd,
    #cac9d0,
    #bab9c4,
    #abaab8,
    #a09fbb,
    #9694be,
    #8a89c1,
    #827ed2,
    #7b72e2,
    #7664f0,
    #7453fc
  );
}
main #team > h2 {
  padding-top: 30px;
  padding-bottom: 80px;
  line-height: 36px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  color: #fff;
  text-transform: capitalize;
  /* border: 1px solid red; */
  position: relative;
}
main #team > h2 > span {
  color: #ffffff;
}
main #team > h2::before {
  content: "";
  background-color: #ffffff;
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
main #team > div {
  width: 100%;
  margin: 0 auto;
  height: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
}
main #team > div > div {
  width: 80%;
  height: auto;
  padding-block: 40px;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px -3px #000000;
}
main #team > div > div > figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
main #team > div > div > figure > img {
  width: 150px;
}
main #team > div > div > h2 {
  color: white;
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Bold";
  margin-bottom: 15px;
}
main #team > div > div > h5 {
  color: #7453fc;
  font-size: 17px;
  text-transform: capitalize;
  font-family: "Bold";
  margin-bottom: 30px;
}
main #team > div > div > div {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
main #team > div > div > div > a {
  color: #ffffff;
  font-size: 25px;
  transition: 0.4s ease-in-out;
}
main #team > div > div > div > a:hover {
  color: #7453fc;
}

#mobile-menu {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 20px;
}
#mobile-menu > span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid #7664f0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#mobile-menu > span > i {
  color: #7453fc;
  font-size: 22px;
  font-weight: bold;
} /*# sourceMappingURL=master.css.map */
