* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
body {
  width: 100%;
  height: 100svh;
  background-image: url(../images/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.popup {
        display: grid;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 99999;
        top: 0;
        left: 0;
        background-color: rgb(51 50 50 / 56%);
        backdrop-filter: blur(5px);
      }
      .popup .con_pop {
        margin-inline: auto;
        width: min(100% - 10px, 800px);
        position: relative;
      }
      .pop {
        width: 100%;
      }
      .close {
        position: absolute;
        top: -60px;
        right: 5px;
      }
      .close img {
        width: 50px;
        transition: all 0.5s ease;
      }
      .close img:hover {
        transform: scale(1.1);
      }
section {
  margin-bottom: 1rem;
}
:root {
  --max-width: 1100px;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
ul {
  text-decoration: none;
}
li {
  list-style: none;
  text-align: center;
}
header {
  width: 100%;
  /* height: fit-content; */
  padding: 1rem 0;
  background-color: #00000062;
  display: grid;
  place-items: center;
}
.wrapper {
  max-width: var(--max-width);
}
header .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.logo {
  width: 300px;
}
.social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /*gap: 0.5rem;*/
  padding-left:0;
}
.social li img {
  width: 90%;
}
main {
  max-width: var(--max-width);
  position: relative;
  margin: 0 auto;
  margin-top: 1rem;
}

.swiper-slide img {
  width: 100%;
}
.links {
  background-color: #00000062;
  border: 1px yellow solid;
  padding: 1rem 2rem 0;
}
.link_wrapper {
  width: 45%;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
.link {
  background: linear-gradient(#fb4544, #c10b0a);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  margin-bottom: 1rem;
}
.link a {
  display: inherit;
}
.link img {
  width: 90%;
}
.number {
  font-size: 2.5rem;
  font-weight: bolder;
  color: rgb(61, 61, 61);
  display: inline-block;
  background-color: #f5e3b3;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  margin-left: 0.5rem;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ms,
.url {
  font-size: 1rem;
  font-weight: bold;
  color: white;
}
.dragon,
.coins {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .logo {
    width: 23vw;
  }
  header {
    padding: 1rem;
  }
  .wrapper {
    padding: 0 1rem;
  }
  .link_wrapper {
    width: 45vw;
  }
}
@media screen and (max-width: 900px) {
  .link_wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  section {
    margin-bottom: unset;
  }
  body {
    background-image: url(../images/m_bg.webp);
    background-size: 100%;
    background-color: #c02225;
  }
  main{
	  display: flex;
    flex-direction: column;
	  margin-top: 0rem;
  }
  .number {
    background-color: unset;
    color: red;
    background-image: url(../images/m_number.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8vw 7vw;
    border: unset;
  }
  header 
  {
    padding: .5rem 0;
    background-color: transparent;
  }

  .desktop,
  .dragon {
    display: none;
  }
  .swiper-slide img {
    border-radius: 20px;
  }
  .logo {
    padding-top: 0rem;
    width: 50%;
  }
  .mobile {
    display: block;
  }
  .links {
    background-color: unset;
    border: unset;
    padding: 0 1rem;
    position: relative;
    top: -75px;
  }
  .links ul {
    padding-bottom: .5rem;
  }
  .link {
    background: url(../images/m_links_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: .5rem;
    
  }
  .logo {
    margin: 0 auto;
  }
  /* .social_top,
  .social_bottom {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 0 auto;
  }
  .social_bottom li img {
    width: 80%;
  }
  .social_top li img,
  .social_bottom li img {
    z-index: 2;
    position: relative;
  } */
  .link_wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  /* new */
  .aside_links {
    position: fixed;
    right: 10px;
    top: 22%;
    z-index: 5;
  }
  .aside_links li{
    margin-bottom: 5px;
  }
  .hero {
    /*width: 100%;
    position: relative;
    top: -25px;*/
	width: 88%;
    position: relative;
    top: -25px;
    display: flex;
    justify-content: center;
    align-self: center;
  }
  .number {
    font-size: 6vw;
    width: 9vw;
    height: 9vw;
    margin-left: 1.5rem;
  }
  .ms,
  .url {
    font-size: 3vw;
  }
  .link img {
    width: 19vw;
    margin-right: 1.5rem;
  }
  /* new */
}
@media screen and (max-width: 550px) {
  .link_wrapper,
  .social_top,
  .social_bottom {
    width: 90%;
  }
  /* .social_bottom li img {
    width: 42vw;
  }
  main{
   margin-top: 0;
  }
  .social_top li img {
    width: 27vw;
  } */
  .number {
    font-size: 6vw;
    width: 11vw;
    height: 11vw;
   /*padding-top: 0.3rem;*/
  }
  .ms,
  .url {
    font-size: 3vw;
  }
  .link img {
    width: 22vw;
    margin-right: 1.5rem;
  }
  .mobile.aside_links img{
    max-width: 90%;
    height: auto;
  }
}
