:root {
  --main_purple: rgb(138, 87, 222);
  --main_purple_transparent: rgba(138, 87, 222, 0.5);
  --main_purple_transparent_light: rgba(138, 87, 222, 0.1);
}
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  font-family: Tahoma, sans-serif;
  font-weight: 400;
  line-height: 34px;
  margin: 0;
  padding: 0;
  color: rgb(190, 171, 223);
  overflow-x: hidden !important;
  background: rgba(0, 0, 0, 0)
    linear-gradient(167deg, rgb(40, 13, 87) 0%, rgb(54, 63, 159) 100%) repeat
    scroll 0% 0%;
  position: relative;
}
a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: var(--main_purple);
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: transparent none repeat scroll 0% 0%;
  transition: all 150ms ease 0s;
}
header.is-sticky {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px;
  background: rgb(42, 20, 97) none repeat scroll 0% 0%;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.igm-responsive-nav {
  display: none;
  width: 100%;
  min-height: 50px;
}
@media screen and (max-width: 992px) {
  .igm-nav {
    display: none;
  }
  .igm-responsive-nav {
    display: block;
  }
}
.igm-nav > .navbar,
.igm-responsive-nav > .navbar {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
}
.igm-nav > .navbar > .navbar-logo,
.igm-responsive-nav > .navbar > .navbar-logo {
  flex: 0.05;
  display: inline-flex;
}
.igm-nav > .navbar > .navbar-items,
.igm-responsive-nav > .navbar > .navbar-items {
  flex: 2;
}
.igm-responsive-nav > .navbar > .navbar-items {
  text-align: right;
}
.igm-nav > .navbar > .navbar-items.right {
  flex: 1.1;
}
.igm-nav > .navbar > .navbar-logo > img {
  width: 100px;
  cursor: pointer;
  transition: all 0.3s;
}
.is-sticky > .igm-nav > .navbar > .navbar-logo > img {
  width: 90px;
}
.igm-nav > .navbar > .navbar-logo > img:hover,
.igm-responsive-nav > .navbar > .navbar-logo > img:hover {
  opacity: 0.8;
}
.igm-nav > .navbar > .navbar-items > ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}
.igm-nav > .navbar > .navbar-items:not(.right) > ul {
  padding-left: 0;
}
.igm-nav > .navbar > .navbar-items.right > ul {
  margin-right: 0;
  flex-direction: row-reverse;
  padding-left: 0;
}
.igm-nav > .navbar > .navbar-items > ul > li {
  position: relative;
  transition: all 0.3s;
  padding: 48px 0px 48px 25px;
  font-size: 13px;
}
.igm-nav > .navbar > .navbar-items > ul > li > a.world-cup-link {
  color: red;
  background-color: white;
  padding: 10px;
  border-radius: 4px;
}
.igm-nav > .navbar > .navbar-items > ul > li > a.world-cup-link:hover {
  color: rgb(255, 111, 111);
}
.icon-edit,
.icon-sign-in-alt {
  font-size: 15px;
  margin-right: 2px;
}
.igm-nav > .navbar > .navbar-items > ul > li > a:not(.world-cup-link)::after {
  background-color: rgb(251, 123, 129);
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1.5px;
  width: 100%;
  transform-origin: left top;
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.5s
    cubic-bezier(0.47, 0.94, 0.04, 0.98);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.47, 0.94, 0.04, 0.98);
  transition: transform 0.5s cubic-bezier(0.47, 0.94, 0.04, 0.98);
}
.igm-nav > .navbar > .navbar-items > ul > li > a:hover::after {
  transform: scale(1, 1);
}
.navbar-button {
  padding: 10px 15px;
  border: 1px var(--main_purple) solid;
  border-radius: 3px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .navbar-button {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .navbar-button {
    font-size: inherit;
  }
}
.navbar-button:hover {
  color: white;
  box-shadow: 0 0 4px 2px var(--main_purple_transparent);
  background-color: var(--main_purple_transparent_light);
}
.navbar-button::after {
  display: none !important;
}
.igm-nav > .navbar > .navbar-items > ul > li > .sub-menu {
  display: none;
  flex-direction: column;
  width: 100px;
  position: absolute;
  padding: 0 10px;
  top: 90px;
  left: 0%;
  text-align: center;
  border-radius: 3px;
  background-color: white;
  box-shadow: 0 0 5px 1px #999;
  transform: scale(1);
  transition: transform 0.3s;
}
.is-sticky > .igm-nav > .navbar > .navbar-items > ul > li > .sub-menu {
  top: 100%;
}
.igm-nav > .navbar > .navbar-items > ul > li:hover > .sub-menu {
  display: flex;
  animation: open_submenu 0.3s;
}
.sub-menu > a {
  color: black;
  cursor: pointer;
}
.sub-menu > a:hover {
  opacity: 0.7;
}
@keyframes open_submenu {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.igm-nav > .navbar > .navbar-items.right > ul > li > #language {
  background-color: white;
  color: black;
  padding: 6.5px 4px;
  border-radius: 50%;
}
.is-sticky > .igm-nav > .navbar > .navbar-items > ul > li {
  padding: 12px 0px 12px 30px;
}
.igm-responsive-nav > .navbar {
  min-height: 75px;
  padding: 0px 15px;
}
.igm-responsive-nav > .navbar > .navbar-logo > img {
  width: 90px;
  cursor: pointer;
  transition: all 0.3s;
}
.igm-responsive-nav > .navbar > .navbar-items > button {
  display: inline-block;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 10px;
  transition: all 0.3s;
}
.igm-responsive-nav > .navbar > .navbar-items > button:hover {
  background: rgba(245, 245, 245, 0.1);
}
.igm-responsive-nav > .navbar > .navbar-items > button:active {
  opacity: 0.8;
  background: rgba(245, 245, 245, 0.2);
}
.igm-responsive-nav > .navbar > .navbar-items span {
  display: inline-flex;
  width: 40px;
  height: 25px;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
  margin: 10px 0;
  box-sizing: inherit;
}
.igm-responsive-nav > .navbar > .navbar-items span::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 8px;
  border-bottom: 3px solid white;
  box-sizing: content-box;
}
.igm-responsive-nav > .navbar > .navbar-items > ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 99999;
  left: -75vw;
  top: 0;
  margin: 0;
  padding: 0;
  width: 75vw;
  background-color: white;
  height: 100vh;
  box-shadow: 0 0 10px black;
  list-style: none;
  transition: all 0.3s;
}
.igm-responsive-nav > .navbar > .navbar-items > ul > li {
  height: 60px;
  width: 100%;
}
.igm-responsive-nav > .navbar > .navbar-items > ul > li > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: black;
  border-bottom: 1px rgb(230, 230, 230) solid;
}
.igm-responsive-nav > .navbar > .navbar-items > ul > li > a:hover {
  color: var(--main_purple);
}
#overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100vh;
  transition: all 0.3s;
}
.main-banner {
  width: 100%;
  margin-top: 170px;
  background: transparent none repeat scroll 0% 0%;
  padding: 0px 0px 80px 0px;
}
.main-banner > .container {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-gap: 0.75rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .main-banner > .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .main-banner {
    margin-top: 50px;
  }
}
.main-banner > .container > div {
  min-height: 500px;
  padding: 20px 0;
}
.title-box > h1 {
  font-weight: 350;
  font-size: 60px;
  line-height: 75px;
  color: white;
}
.title-box > p {
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 20px;
}
.stage-box {
  position: relative;
}
#stand {
  width: 100%;
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: 2;
}
#floating-igmc-logo {
  width: 76%;
  position: absolute;
  left: 12%;
  bottom: 180px;
  z-index: 2;
  animation: float 5.75s linear infinite alternate;
}
#light-beam {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0%;
  z-index: 3;
  opacity: 0.7;
}
@keyframes float {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, -11px) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.custom-button {
  cursor: pointer;
  display: inline-flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  border: 0px none;
  min-width: 170px;
  padding: 12px;
  border-radius: 3px;
  transition: all 450ms ease 0s;
  position: relative;
  color: var(--main_purple);
  background-color: rgb(238, 230, 250);
  z-index: 999;
}
.custom-button.one {
  margin-bottom: 10px;
  background: var(--main_purple) none repeat scroll 0% 0%;
  color: rgb(255, 255, 255);
}
.custom-button.one:hover {
  background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  color: var(--main_purple);
}

.custom-button.two {
  background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  color: rgb(251, 123, 129);
}
.custom-button.two:hover {
  background: rgb(251, 123, 129) none repeat scroll 0% 0%;
  color: rgb(255, 255, 255);
}
.p2p-banner,
.mastercup-banner {
  width: 100%;
  background: transparent none repeat scroll 0% 0%;
  padding: 0px 0px 80px 0px;
}
.mastercup-banner {
  margin: 120px 0;
}
:is(.p2p-banner, .mastercup-banner) > .container {
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-gap: 0.75rem;
  align-items: start;
}
:is(.p2p-banner, .mastercup-banner) > .container > .title-box > h1 {
  font-size: 55px;
  text-align: center;
}
:is(.p2p-banner, .mastercup-banner)
  > .container
  > :is(.p2p-exchange-box, .mastercup-box) {
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
  justify-content: end;
}
#circle-igm {
  width: 170px;
  height: 170px;
}
#arrows {
  height: 140px;
}
#mastercup-image {
  width: 100%;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
  border-radius: 25px;
}
@media screen and (max-width: 992px) {
  :is(.p2p-banner, .mastercup-banner) > .container {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
  :is(.p2p-banner, .mastercup-banner)
    > .container
    > :is(.p2p-exchange-box, .mastercup-box) {
    justify-content: center;
  }
}
@media screen and (max-width: 660px) {
  :is(.p2p-banner, .mastercup-banner)
    > .container
    > :is(.p2p-exchange-box, .mastercup-box) {
    flex-direction: column;
    justify-content: center;
  }
  #arrows {
    transform: rotate(90deg);
  }
}
.spinning-coin {
  box-sizing: border-box;
  padding: 35px;
  background-image: url(https://igm.games/assets/img/payment-orbit.png);
  background-size: cover;
}
.whitepapers > a {
  color: blue;
  text-decoration: underline;
}
.tokenomic-table {
  width: 100%;
  max-width: 700px;
  float: left;
}
.igmc-logo {
  width: 100%;
  max-width: 300px;
  float: left;
  margin: 90px auto;
}
.tokenomic-table td {
  font-size: 15px;
  text-align: left;
  padding: 10px;
  word-break: break-all;
}
/* Footer Area Start */
footer {
  padding: 0px 0px 50px 0px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 100px;
  grid-gap: 0;
  grid-auto-flow: dense;
}
.footer-top > div > h6 {
  font-size: 14px;
  line-height: 25px;
  margin: 0;
}
.footer-top > div > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  max-width: 260px;
  max-height: 150px;
  font-size: 14px;
  line-height: 25px;
  padding: 0;
}
.footer-top > div > .footer-logo > img {
  width: 50%;
}
.footer-top > div > .info {
  list-style-type: none;
  margin: -10px 10px 0 10px;
}
.footer-top > div > .info > li > a {
  margin-left: 7px;
}
.footer-top > div > .social {
  flex-direction: row;
  margin: 0 10px;
}
.footer-top > div > .social > li {
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .social,
  .info {
    margin-left: 35px !important;
  }
  .footer-top > div {
    text-align: center;
  }
  .footer-top > div > ul {
    margin: 0 auto 25px auto;
  }
  .footer-top > div > .social {
    justify-content: center;
  }
}
.footer-bottom {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-menu {
  order: 2;
  padding: 0px;
  list-style: none;
  margin: 0px;
}
.footer-menu > li {
  display: inline-block;
  font-size: 18px;
}
.footer-menu > li + li {
  margin-left: 40px;
}
.copyright-text {
  order: 1;
  margin: 0px;
  font-size: 18px;
  line-height: 38px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    display: block;
    margin-top: 30px;
  }
  .footer-menu {
    text-align: center;
    margin-bottom: 40px;
  }
  .footer-menu > li {
    display: block;
  }
  .footer-menu > li + li {
    margin-left: 0px;
    margin-top: 40px;
  }
  .copyright-text {
    text-align: center;
  }
}
/* Footer Area End */
#ad-container {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 99999;
}
#ad-container > div {
  position: relative;
  max-width: 900px;
}
#ad-container > div img {
  width: 100%;
}
#ad-container > div > b {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 2px;
  line-height: 1;
  font-size: 15px;
  background: rgba(200, 200, 200, 0.6);
  color: #ddd;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #ad-container {
    bottom: -12px;
  }
  #ad-container img {
    min-height: 70px;
  }
}
