/*-----------------------------------------------------General defs---------------------------------------------*/

@font-face {
  font-family: 'SegoeUI';
  src: url('SegoeUI.woff') format('woff'), url('SegoeUI.ttf') format('truetype'), url('SegoeUI.svg#SegoeUI') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'segoeui';
  src: url('segoeui.eot');
  src: url('segoeui.woff2') format('woff2'), url('segoeui.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Adobe-gothic';
  src: url('AdobeGothicStd-Bold-Alphabetic.eot');
  src: url('AdobeGothicStd-Bold-Alphabetic.eot?#iefix') format('embedded-opentype'), url('AdobeGothicStd-Bold-Alphabetic.woff2') format('woff2'), url('AdobeGothicStd-Bold-Alphabetic.woff') format('woff'), url('AdobeGothicStd-Bold-Alphabetic.ttf') format('truetype'), url('AdobeGothicStd-Bold-Alphabetic.svg#AdobeGothicStd-Bold-Alphabetic') format('svg');
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-color: #55ff63;
  --secondary-color: #444444;
  --accent-color: #55aaff;
  --alt-text-color: #c2c3c3;
  --secondary-text-color: #95989a;
  --primary-font: SegoeUI, segoeui, sans-serif;
  --secondary-font: Adobe-gothic, sans-serif;
  --control-background: #444;
    --control-buttons: #55ff63;
    --control-track: #95989a;
}

.gc {
  color: var(--primary-color);
}

.bc {
  color: var(--accent-color);
}

html, body {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

body {
  font-family: var(--primary-font);
  color: var(--secondary-color);
}

/* hyperlink attr */

a {
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.telegram-group {
    position: fixed;
    top: 88vh;
    right: 15px;
    display: flex;
    color: #444;
    z-index: 10;
    font-family: roboto;

}

.telegram-group .members{
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    position: relative;
    text-align: right;
    box-shadow: 0 0 5px white;
}

.telegram-group .members:after{
    content:'';
    width: 5px;
    height: 5px;
    background: #f5f5f5;
    position: absolute;
    left: 100%;
    transform-origin: center;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    box-shadow: 0 0 5px white;
}

.telegram-group .fab{
    margin: 10px 0 10px 10px;
    font-size: 3rem;
    color: #0088cc;
    border-radius: 300%;
    background: white;
    box-shadow: 0 0 7px white;
    text-shadow: 0 0 5px white;
}

.container {
  width: 100%;
  transform-style: preserve-3d;
  perspective: 10000px
}

canvas {
  width: 100%;
  z-index: 0;
  position: absolute;
}

.menu-top-desktop {
  position: fixed;
  height: 60px;
  width: 100%;
  z-index: 1000000000000000;
  transition: .2s
}

.menu-top-desktop img {
  height: 100%;
  float: left;
  transition: .2s
}

.menu-top-desktop ul {
  float: right;
  list-style: none;
  height: 100%;
  margin: 0;
  font-size: 1.1vw;
  display: flex;
  align-items: center;
}

.menu-top-desktop li {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  color: #fff;
  transition: 0.5s;
}

.menu-top-desktop li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  background: #55ff63;
  transition: 0.5s;
}

.menu-top-desktop .menu-button {
  height: 60%;
  margin: 0 50px;
  border: 2px solid #55ff63;
  border-radius: 30px;
  overflow: hidden;
  font-weight: bold;
}

.menu-top-desktop .fa-telegram-plane {
  font-size: 1.5rem
}

.menu-top-desktop li:hover:before {
  height: 100%;
}

.menu-top-desktop li:hover {
  color: #444;
}

#md.scrolled {
  background: white;
}

#md.scrolled li {
  color: #444;
}

.menu-top-mobile {
  position: fixed;
  z-index: 100000;
  height: 63px;
  width: 100%;
  display: none;
}

#mm.scrolled {
  background: white;
}

#mm.scrolled .line {
  background-color: #444;
}

.menu-top-mobile>img {
  height: 100%;
  float: left;
}

.menu-top-mobile>ul {
  list-style: none;
  text-align: center;
  background: white;
  padding: 0;
  width: 70%;
  height: 91vh;
  overflow: scroll;
  position: absolute;
  top: 61px;
  right: 0;
  margin: 0;
  transform-origin: 100% 0%;
  transform: scale3d(1, 0, 1);
  opacity: 0;
  transition: 0.5s;
}

.menu-top-mobile>ul.swish {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.menu-top-mobile>ul li {
  padding: 20px;
  margin: 10px;
  transition: 0.5s
}

.menu-top-mobile>ul li:hover {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
}

.hamburger {
  position: absolute;
  top: 7px;
  right: 15px;
}

.hamburger .line {
  width: 40px;
  height: 5px;
  background-color: white;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-6.is-active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
  width: 0px;
}

#hamburger-6.is-active .line:nth-child(1), #hamburger-6.is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  -o-transform: translateY(13px);
  transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(90deg);
  -ms-transform: translateY(-13px) rotate(90deg);
  -o-transform: translateY(-13px) rotate(90deg);
  transform: translateY(-13px) rotate(90deg);
}

/*-------------------------------------Banner---------------------------------------------------*/

.bannerw {
  background: #55ff63 url('../img/pattern.png') !important;
  color: #444;
  position: fixed;
  z-index: 1000;
  top: 60px;
  padding: 20px;
  width: 100%;
  text-align: center;
  transition: 0.5s;
}

.bannerw span {
  padding: 10px;
  background: #44444475;
  border-radius: 10px;
  margin: 10px;
  border: 3px solid #44444459;
  color: white;
  transition: 0.5s;
}

#whhyps:hover {
  text-decoration: underline;
}

.bannerw span:hover {
  background: #444444d1;
}

.closew:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.bannerw>.closew {
  font-size: 1rem;
  position: relative;
  margin: 12px;
  top: 0;
  left: 33vw;
  background: none;
  border: none;
  color: #444;
}

/*---------------------------------------------Landing Page-------------------------------------------------*/

.left-wrapper{
	width: 50%;
}

.right-wrapper {
  width: 50%;
}

.landing {
  width: 100%;
  height: auto;
  padding: 10% 0 0 30px;
  background-color: #444;
  background-image: url(../img/back-1.png);
  background-size: cover;
  display: flex;
}

.landing h1 {
  height: 145px;
  font-family: var(--secondary-font);
  width: 100%;
  color: var(--alt-text-color);
}

.landing h2 {
  margin: 1.03em 0 0 0;
  color: white;
}

.landing h3 {
  font-weight: normal;
  width: 100%;
  color: white;
}

.landing .fadeInLeft {
  animation-delay: 4.2s;
}

.landing .ratings-holder {
  display: flex;
  position: relative;
  z-index: 2
}

.landing .rating {
  width: 90px;
  height: 90px;
  margin: 5px;
  background: #444;
  padding: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 3px solid white;
  color: #55ff63;
  border-radius: 10px;
  transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.landing .rate {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0;
}

.landing .rater {
  width: 100%;
}

.landing .rating:hover {
  border-radius: 50%;
  color: #444;
  background: #55ff63;
}

.landing .rating:hover .rater {
  filter: brightness(0);
}

.landing .social-links {
  font-size: 1.2rem;
  padding: 10px;
  padding-left: 0;
  position: relative;
  z-index: 10;
}

.landing .social-links i {
  margin: 10px;
}

.landing .social-links i:hover {
  color: var(--accent-color);
}

.landing .social-links .fa-facebook.zoomIn {
  animation-delay: 5s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-instagram.zoomIn {
  animation-delay: 5.2s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-twitter.zoomIn {
  animation-delay: 5.4s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-btc.zoomIn {
  animation-delay: 5.6s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-github.zoomIn {
  animation-delay: 5.8s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-reddit-alien.zoomIn {
  animation-delay: 6s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-linkedin.zoomIn {
  animation-delay: 6.2s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-medium-m.zoomIn {
  animation-delay: 6.4s;
  animation-duration: 0.2s;
}

.landing .social-links .fa-telegram-plane.zoomIn {
  animation-delay: 6.6s;
  animation-duration: 0.2s;
}

.landing .extra-links {
  height: 80px;
  padding: 50px;
  padding-left: 0;
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
}

.landing a {
  text-decoration: none;
  width: 40%;
}

.landing .extra-links div {
  color: white;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  transition: 0.5s;
  width: 70%;
  text-align: center;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.extra-links #extra-bounty {
  animation-delay: 6.8s;
  background: var(--primary-color);
}

.extra-links #extra-whitelist {
  animation-delay: 7.2s;
  background: white;
  color: #444;
}

.extra-links #extra-telegram {
  animation-delay: 7s;
  background: var(--accent-color);
}

.extra-links #extra-bounty:hover {
  background: none;
  border: 1px solid;
  color: var(--primary-color);
}

.extra-links #extra-whitelist:hover {
  background: none;
  border: 1px solid;
  color: white;
}

.extra-links #extra-telegram:hover {
  background: none;
  border: 1px solid;
  color: var(--accent-color);
}

.landing canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

@-moz-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

.scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  transform: scale(0.8);
}

.scroll-btn>* {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #7f8c8d;
  color: #ffffff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  opacity: 0.5
}

.scroll-btn>*:hover, .scroll-btn>*:focus, .scroll-btn>*.active {
  color: #ffffff;
}

.scroll-btn>*:hover, .scroll-btn>*:focus, .scroll-btn>*:active, .scroll-btn>*.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid white;
  border-radius: 23px;
}

.scroll-btn .mouse>* {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: white;
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}


.right-wrapper {
    font-family: poppins;
    width: 48%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
}

.right-wrapper .wrap-r {
    width: 100%;
    background: white;
    text-align: center;
    box-sizing: border-box;
    padding: 60px 30px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.right-wrapper .wrap-r>p {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
}

.right-wrapper .pre-sale-date {
    border: 1px solid #55ff63;
    width: 80%;
    position: relative;
    padding: 20px;
}

.right-wrapper .pre-sale-date p {
    font-size: 1.5rem;
    margin: 0;
    position: relative;
}



.right-wrapper .pre-sale-date h2 {
    width: 65%;
    margin: -20px auto 10px auto;
    padding: 10px;
    font-size: 2rem;
    background: white;
    color: #444;
    transform: translateY(-50%);
}

.right-wrapper .pre-sale-date .discounts {
    width: 16vh;
    height: 16vh;
    background: #55aaff;
    position: absolute;
    border-radius: 50%;
    top: 0;
    right: 0;
    transform: translateX(50%) translateY(-50%);
    color: white;
    font-size: 0.8rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.right-wrapper .pre-sale-date .discounts .large-p {
    font-size: 2.1rem;
}

.right-wrapper .time {
    font-size: 4rem;
    color: #55ff63;
    margin: 30px 0 20px 0;
    font-family: 'Source Code Pro';
    animation: boom 1s alternate infinite;
}

@keyframes boom{
	0%{
		transform: scale(1);
	}

	100%{
		transform: scale(1.1);
	}
}

.right-wrapper .progress-holder {
    width: 75%;
    position: relative;
}

.right-wrapper .progress {
    width: 100%;
    height: 30px;
    background: #444;
    border-radius: 30px;
    position: relative;
}

.right-wrapper .progress .done {
    width: 14%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
    #606dbc,
    #606dbc 10px,
    #465298 10px,
    #465298 20px);
    border-radius: 30px;
    position: relative;
}

.right-wrapper .progress-holder .progress-labels {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.right-wrapper .progress-holder .progress-labels .start {
    margin: 0;
    position: absolute;
    top: 0;
    transform: translateX(-35%);
    left: 0;
}

.right-wrapper .progress-holder .progress-labels .end {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(35%);
}

.right-wrapper .progress-holder .ticks {
    position: absolute;
    height: 20px;
    width: 100%;
    transform: translateY(-50%);
}


.right-wrapper .progress-holder .ticks .start {
    position: absolute;
    top: 0;
    left: 0;
}

.right-wrapper .progress-holder .ticks .end {
    position: absolute;
    top: 0; 
    right: 0;
}

.right-wrapper .progress .done:after {
    content: '14% \A |';
    display: block;
    position: absolute;
    left: 100%;
    white-space: pre;
    bottom: 100%;
    transform: translateX(-50%);
    line-height: 1;
}

.right-wrapper .progress-holder:after {
    content: 'Growth Phase Hardcap' !important;
    position: absolute;
    bottom: 100%;
    left: 104%;
}

.right-wrapper .j-token-buy {
    width: 40%;
    height: 60px;
    background: #444;
    margin: 60px auto;
    box-sizing: border-box;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #55ff63;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px #444;
    transition: 0.5s;
}

.right-wrapper .j-token-buy:hover{
    transform: scale(1.05)
}


/*------------------------------------------Docs+Social page-----------------------------------------*/

.sign-up-form {
  padding: 30px;
  background: #55ff63;
  box-sizing: border-box;
  height: auto;
  float: left;
  width: 100%;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: 0.7s cubic-bezier(0.5, -0.48, 0.54, 1.47);
}

#subscription-form.flip {
  transform: none;
}

.sign-up-form input[type="email"] {
  height: 100%;
  padding: 15px;
  width: 90.3%;
  background: #4444442c;
  border: none;
  outline: none;
  transition: 0.3s;
}

.sign-up-form button {
  height: 100%;
  padding: 16.2px;
  width: 7.2%;
  background: #444444;
  border: none;
  outline: none;
  float: right;
  color: #55ff63;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.sign-up-form button:before {
  content: '';
  width: 250%;
  height: 250%;
  background: white;
  border-radius: 50%;
  position: absolute;
  right: -250%;
  bottom: -250%;
  z-index: 0;
  transition: 1s;
}

.sign-up-form button span {
  position: relative;
  transition: 1s;
  z-index: 1;
}

.sign-up-form input[type="email"]:focus {
  border-left: 5px solid #444;
  width: 89.8%;
  background: linear-gradient(90deg, #4444442c, #4444442c, transparent, transparent);
}

.sign-up-form button:hover:before {
  right: -60%;
  bottom: -70%;
}

.sign-up-form button:hover span {
  color: #444;
}

.documentation, .follow-us {
  width: 100%;
  float: left;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.documentation {
  background: white
}

.documentation:after {
  content: '';
  clear: both;
  display: block;
}

.documentation .docs-holder {
  width: 100%;
  height: 245px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.documentation .docs-holder .button {
  width: 35%;
  padding: 10px;
  margin: 10px auto;
  height: 40px;
  background: #444;
  border-radius: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px #4444446c;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  transform: scale3d(0, 0, 0);
}

#overview.zoom {
  transform: scale3d(1, 1, 1);
}

#whitepaper.zoom {
  transition: 0.9s;
  transform: scale3d(1, 1, 1);
}

#token_sale.zoom {
  transition: 1.1s;
  transform: scale3d(1, 1, 1);
}

.documentation .docs-holder .button:after {
  content: '\00bb';
  box-sizing: border-box;
  width: 60%;
  padding: 10px 50px;
  font-size: 2.5rem;
  color: #444;
  height: 270%;
  position: absolute;
  background: #55ff63;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  transition: 0.5s;
}

.documentation .docs-holder .button:hover:after {
  transform: translateX(-100px) translateY(-65px);
}

.documentation .docs-holder .button img {
  width: 10%;
  height: 85%;
  margin: 0 25px 0 5px;
  filter: invert(100);
}

.documentation .docs-holder a {
  text-decoration: none;
  color: white;
  width: 100%;
  outline: none;
}

.follow-us:after {
  content: '';
  clear: both;
  display: block;
}

.documentation>h2, .follow-us>h2 {
  font-size: 2rem;
  color: var(--secondary-color);
}

.follow-us {
  background: #f3f3f3;
}

.follow-us .social-links {
  margin-top: 80px;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #7b7b7b;
}

.follow-us .social-links i {
  background: white;
  padding: 20px;
  transition: 0.2s;
  transform: scale(0);
  transform-origin: left;
  margin: -5px;
}

.follow-us .social-links i:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.follow-us .news-links{
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.follow-us .news-links a {
  margin: 0 10px;
}

.follow-us .news-links img{
  height: 100%;
}

#ui-1.flip {
  transition: transform 0.2s;
  transform: none;
}

#ui-2.flip {
  transition: transform 0.3s;
  transform: none;
}

#ui-3.flip {
  transition: transform 0.4s;
  transform: none;
}

#ui-4.flip {
  transition: transform 0.5s;
  transform: none;
}

#ui-5.flip {
  transition: transform 0.6s;
  transform: none;
}

#ui-6.flip {
  transition: transform 0.7s;
  transform: none;
}

#ui-7.flip {
  transition: transform 0.8s;
  transform: none;
}

#ui-8.flip {
  transition: transform 0.9s;
  transform: none;
}

#ui-9.flip {
  transition: transform 1s;
  transform: none;
}

/*-------------------------------------------About Page---------------------------------------*/

.about-scx {
  float: left;
  background: var(--secondary-color);
  height: auto;
}

.about-scx:after {
  content: '';
  clear: both;
  display: block;
}

.about-scx>div {
  float: left;
}

.about-scx .generic-image {
  width: 40%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.about-scx .generic-image img {
  height: 100%;
}

.about-scx .about {
  color: var(--secondary-text-color);
  width: 55%;
  padding: 30px;
}

.about-scx .about h2 {
  font-size: 2rem;
}

.about-scx .about p {
  margin-top: 40px;
  line-height: 1.5;
  padding-right: 60px;
}

#ui-10 {
  transform: translateX(15%);
  opacity: 0;
  transition: 1s;
}

#ui-11 {
  transform: translateX(20%);
  opacity: 0;
  transition: 1.5s;
}

#ui-10.float {
  transform: none;
  opacity: 1;
}

#ui-11.float {
  transform: none;
  opacity: 1;
}

/*---------------------------------------Partners------------------------------------*/

.partners {
  height: auto;
  float: left;
  width: 100%;
  display: inline-block;
}

.partners h2 {
  font-size: 2rem;
  padding: 30px;
  width: 100%;
  text-align: left;
}

.partners>div {
  display: grid;
  grid-template-columns: repeat(5, 210px);
  grid-gap: 4%;
  grid-auto-rows: 300px;
  width: 92%;
  margin: 0 auto;
}

.partners img {
  width: 90%;
}

.partners>div div:before {
  pointer-events: none;
  position: absolute;
  content: '';
  bottom: -30px;
  left: 5%;
  height: 10px;
  width: 90%;
  filter: alpha(opacity=0);
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: -moz-radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: -o-radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -o-transition-property: transform, opacity;
  -ms-transition-property: transform, opacity;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.partners>div div:hover:before {
  filter: alpha(opacity=100);
  opacity: 1;
}

.partners>div div {
  transition: transform 0.3s;
}

.partners>div div:hover {
  transform: translateY(-10px);
}

/*--------------------------------------Features page--------------------------*/

.features {
  float: left;
  width: 100%;
  height: auto;
  position: relative;
  color: var(--secondary-color)
}

.features img {
  max-height: 80px;
  max-width: 80px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

.features .ctn strong {
  padding: 35px;
  text-align: center;
}

.features .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, 230px);
  grid-gap: 10px;
  margin: 0 auto;
  grid-auto-rows: 300px;
  width: 100%;
  justify-content: center;
}

.features .ctn {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-flow: column;
  transition: 0.5s;
  color: var(--secondary-text-color);
  opacity: 0;
  transform: translateY(100px);
}

.features .ctn:hover {
  box-shadow: 3px 6px 20px #44444424;
}

.features .ctn p {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features header h2 {
  width: 100%;
  padding: 30px;
  margin: 0;
  font-size: 2rem !important;
}

#ui-16.rise, #ui-17.rise, #ui-18.rise, #ui-19.rise, #ui-20.rise, #ui-21.rise, #ui-22.rise, #ui-23.rise, #ui-24.rise, #ui-25.rise, #ui-26.rise {
  opacity: 1;
  transform: none;
}

#ui-16 {
  transition: transform 0.2s, opacity 0.2s;
}

#ui-17 {
  transition: transform 0.4s, opacity 0.4s;
}

#ui-18 {
  transition: transform 0.6s, opacity 0.6s;
}

#ui-19 {
  transition: transform 0.8s, opacity 0.8s;
}

#ui-20 {
  transition: transform 1s, opacity 1s;
}

#ui-21 {
  transition: transform 0.2s, opacity 0.2s;
}

#ui-22 {
  transition: transform 0.4s, opacity 0.4s;
}

#ui-23 {
  transition: transform 0.6s, opacity 0.6s;
}

#ui-24 {
  transition: transform 0.8s, opacity 0.8s;
}

#ui-25 {
  transition: transform 1s, opacity 1s;
}

/*---------------------------------Tools and Tech page----------------------------------------------*/

.tech {
  float: left;
  width: 100%;
}

.tech>h2 {
  font-size: 2rem;
  padding: 30px;
}

.tech>p {
  padding-left: 30px;
  padding-bottom: 30px
}

.tech .tech-holder {
  width: 100%;
  color: var(--secondary-text-color);
}

.tech .tech-holder .techs {
  width: 23%;
  float: left;
  background: var(--secondary-color);
  margin: 1%;
  box-sizing: border-box;
  transform-origin: 100% 100%;
  transform: rotateX(70deg);
}

.tech .techs h3 {
  font-weight: bolder;
  font-size: 1.75rem;
  font-family: var(--secondary-font);
  margin-top: -7px;
  margin-bottom: 20px;
  transition: .5s;
  transform: translateX(55%);
}

.techs:hover h3 {
  transform: translateX(32%) translateY(-2%);
}

.techs:hover img {
  transform: translateX(100%);
}

.techs:hover .tech-img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.tech .tech-img {
  text-align: left;
  padding-top: 45px;
  padding-left: 20px;
  padding-bottom: 55px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  transition: .5s;
}

.tech .tech-img img {
  width: 30%;
  transition: .5s;
}

.tech .techs p {
  padding: 30px;
}

.tech #swatel .tech-img {
  background: #0de258;
}

.tech #swata .tech-img {
  background: #18a973;
}

.tech #swiot .tech-img {
  background: #18a9a9;
}

.tech #swbin .tech-img {
  background: #187fa9;
}

.tech #swatel h3 {
  color: #0de258;
}

.tech #swata h3 {
  color: #18a973;
}

.tech #swiot h3 {
  color: #18a9a9;
}

.tech #swbin h3 {
  color: #187fa9;
}

#swatel {
  transition: 0.5s;
}

#swata {
  transition: 0.7s;
}

#swiot {
  transition: 0.9s;
}

#swbin {
  transition: 1.1s;
}

#swatel.rotate {
  transform: none;
  transition: transform 0.5s;
}

#swata.rotate {
  transform: none;
  transition: transform 0.7s;
}

#swiot.rotate {
  transform: none;
  transition: transform 0.9s;
}

#swbin.rotate {
  transform: none;
  transition: transform 1.1s;
}

/*-----------------------------Globe+Circulation+workflow+Token allocation+Asset allocation------------------------*/

.waste {
  float: left;
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  align-items: center;
}

.waste img {
  width: 35%;
  height: 35%;
  opacity: 0;
  transition: 1s;
  transform: translateX(-50%);
}

.waste div {
  width: 65%;
}

.waste h2 {
  text-align: center;
  font-size: 2rem;
  opacity: 0;
  transition: 1s;
  transform: translateY(80px);
}

.waste p {
  box-sizing: border-box;
  padding: 0 135px;
  text-align: center;
  opacity: 0;
  transition: 1.2s;
  transform: translateY(100px);
}

.waste>canvas {
  z-index: -1;
  position: absolute;
}

.token_c {
  float: left;
  width: 100%;
}

.token_c img {
  display: none;
}

.token_c iframe {
  border: none;
  width: 100%;
  height: 900px;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

.token_c h2 {
  font-size: 2rem;
  padding: 30px;
}

.workflow {
  float: left;
  width: 100%;
}

.workflow #mobile_wf {
  display: none;
}

.workflow img {
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

.workflow h2 {
  font-size: 2rem;
  padding: 30px;
}

.token_a, .asset_a {
  float: left;
  width: 100%;
  display: flex;
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  margin: -4px;
  align-items: center;
  padding: 20px;
}

.token_a img, .asset_a img {
  width: 50%;
  height: 50%;
}

.token_a h2, .asset_a h2 {
  width: 50%;
  text-align: center;
  font-size: 2rem;
}

.h_d {
  float: left;
  width: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  position: relative;
  margin: -4px;
}

.h_d hr {
  margin: 0;
  width: 15%;
  border: none;
  border-top: 1px solid var(--secondary-text-color);
}

#ui-26.float, #ui-27.float, #ui-28.float {
  transform: none;
  opacity: 1;
}

#ui-31, #ui-33 {
  transform: translateX(-50%);
  opacity: 0;
  transition: 1s;
}

#ui-32, #ui-34 {
  transform: translateX(50%);
  opacity: 0;
  transition: 1s;
}

#ui-29.fade, #ui-30.fade {
  transform: none;
  opacity: 1;
}

#ui-31.float, #ui-32.float, #ui-33.float, #ui-34.float {
  transform: none;
  opacity: 1;
}

/*--------------------------------------------Featured on------------------------------------------------*/

.featured {
  float: left;
  width: 100%;
  height: auto;
  padding: 30px;
}

.featured .brands {
  width: 10vw;
  height: 10vw;
  margin: 0;
  padding: .7vw;
  border: 1px solid #9999996e;
  transform-origin: center;
  transition: .5s;
}

.featured .featured-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.featured .brands img {
  height: 90%;
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
  transition: .5s;
}

.featured h2 {
  font-size: 2rem
}

.featured .brands:hover img {
  filter: sepia() saturate(10000%) hue-rotate(60deg)
}

.featured .brands:hover {
  transform: scale(.9);
  border: 1px solid #55ff63;
}

.featured>canvas {
  z-index: -1;
  position: absolute;
}

/*----------------------------------------------------------Roadmap---------------------------------------------*/

.roadmap {
  float: left;
  width: 100%;
}

.detail-excerpt {
  color: #444 !important;
}

.zoomtimeline.mode-3dslider .details-container>input:checked+.detail .the-year {
  top: 470px !important;
  color: #444
}

.the-year {
  color: #444
}

.detail-image {
  margin-top: 56px
}

.zoomtimeline.mode-3dslider .yearlist-con:after {
  background-color: #4444442c !important;
}

.zoomtimeline.mode-3dslider .details-container .detail .detail-image {
  opacity: 0.1 !important;
}

.zoomtimeline.mode-3dslider .details-container>input:checked+.detail .detail-image {
  opacity: 1 !important;
}

.roadmap>canvas {
  z-index: -1;
  position: absolute;
}

.roadmap h2 {
  font-size: 2rem;
  padding: 30px;
}

#zoomtimeline5 {
  transform: scale3d(1, 0, 1);
  opacity: 0;
  transition: 1s;
}

#zoomtimeline5.zap {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.roadmap>p {
  margin: 0 0 0 30px;
}

.roadmap>p a{color: #55ff63}
/*-------------------------------------------------------FAQs-----------------------------------------------------------*/

.faq {
  float: left;
  width: 100%;
}

.faq .card {
  width: 18vw;
  height: 16vw;
  float: left;
  margin: 3vw;
}

.faq .front {
  background: #444;
  color: #95989a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

.faq .back {
  border: 1px solid #444;
  color: #95989a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 0.8rem;
}

.faq h2 {
  font-size: 2rem;
  padding: 30px;
}

.faq .front:hover {
  color: springgreen;
  font-weight: bold;
}

#c-1, #c-2, #c-3, #c-4, #c-5, #c-6, #c-7, #c-8 {
  opacity: 0;
  transform: translateY(100px);
}

#c-1.rise, #c-2.rise, #c-3.rise, #c-4.rise, #c-5.rise, #c-6.rise, #c-7.rise, #c-8.rise {
  opacity: 1;
  transform: none;
}

#c-1.rise {
  transition: 0.2s;
}

#c-2.rise {
  transition: 0.4s;
}

#c-3.rise {
  transition: 0.6s;
}

#c-4.rise {
  transition: 0.8s;
}

#c-5.rise {
  transition: 01s;
}

#c-6.rise {
  transition: 1.2s;
}

#c-7.rise {
  transition: 1.4s;
}

#c-8.rise {
  transition: 1.6s;
}

/*--------------------------------------------------------Team page-------------------------------------------------------*/

.team {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.team>h2 {
  width: 100%;
  font-size: 2rem;
  margin-left: 30px;
  color: #444;
}

.team a {
  color: white;
}

.team a:visited {
  color: white;
}

.team figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 20px 2.5%;
  min-width: 200px;
  max-width: 264px;
  max-height: 330px;
  width: 48%;
  height: auto;
  background: #55aaff;
  text-align: center;
  box-shadow: 0 0 6px #00000024;
}

.team img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 1;
  transition: opacity 0.35s, transform 0.5s;
}

.team figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.team .jazz h2 {
  text-align: left;
  padding: 0px 10px;
  color: #fff;
  font-weight: normal;
  font-family: sans-serif;
  transition: 0.35s;
  font-size: 1.3rem;
  background: #55ff63;
  padding: 10px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  position: absolute;
  top: -45px;
  left: -35px;
}

.team i {
  padding: 3px;
}

.team .jazz figcaption {
  flex-flow: column;
  transform: scale(0.8);
  color: white;
  font-family: SegoeUI;
  transition: 0.35s;
}

.team .jazz p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: 0.35s;
}

.team .jazz .mobile {
  flex-flow: row;
  transform: none;
  display: none;
}

.team .jazz .mobile p {
  opacity: 1;
  top: 83%;
  color: #444;
  background: white;
  width: 100%;
  margin: 0;
  left: 0;
  transform: none;
  padding: 20px 0;
  box-shadow: 0 -3px 10px #4444442c
}

.team .jazz .mobile p>a {
  color: #444;
}

.team .jazz:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  transition: 0.35s;
  transform: rotate(45deg) scale3d(1, 0, 1);
}

.team .jazz:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}

.team .jazz:hover figcaption {
  transform: scale(1)
}

.team .jazz:hover h2 {
  box-shadow: none;
  background: transparent;
  top: 30%;
  left: 5%;
  color: #fff;
}

.team .jazz:hover p {
  opacity: 1;
}

.team .jazz:hover:after {
  transform: rotate(45deg) scale3d(1, 1, 1);
}

.team .jazz:hover #ceo {
  left: 13%;
}

.team .jazz:hover #coo {
  left: 5%;
}

.team .jazz:hover #cao {
  left: -2%;
  top: 26%;
  text-align: center;
}

.team .jazz:hover #crdo {
  left: 20%;
}

.team .jazz:hover #ld {
  left: 10%;
}

.team .jazz:hover #bd {
  left: -1%;
  text-align: center;
  top: 21%;
}

.team .jazz:hover #ml {
  text-align: center;
  left: -1%;
  top: 20%;
}

.team .jazz:hover #bda {
  left: 11%;
  top: 28%;
}

.team .jazz:hover #bis {
  top: 25%;
  left: 0;
  text-align: center;
}

.team .jazz:hover #ps {
  left: 1%;
}

.team .jazz:hover #wd {
  left: 10%;
}

/*--------------------------------------------_Advisors--------------------------------*/

.advisors {
  float: left;
  width: 100%;
}

.advisors .wrapper {
  display: grid;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(auto-fill, 319px);
  grid-gap: 30px 0px;
  justify-content: center;
}

.advisors .about__slot {
  grid-row: span 1;
  grid-column: span 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.advisors .headshot {
  width: 70%;
  height: 70%;
  margin: 0 auto;
  border-radius: 50%;
  background-size: 100% !important;
  transition: 0.3s;
  box-shadow: 0 3px 5px #44444460;
}

.advisors .about-info {
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.advisors .name {
  width: 100%;
  height: 30%;
  transition: 0.2s;
  position: absolute;
  top: 70%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advisors .bio {
  height: 70%;
  background: #44444488;
  width: 90%;
  position: absolute;
  top: 100%;
  color: white;
  transition: 0.2s;
  word-wrap: break-word;
  padding: 20px;
  text-align: center;
}

.advisors .about__slot:hover .headshot {
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.advisors .about__slot:hover .name {
  background: #44444488;
  color: white;
}

.advisors .name.movetop {
  top: 0;
  background: #44444488;
  color: white;
  box-shadow: 0 0 10px black;
}

.advisors .bio.shower {
  top: 30%;
}

.advisors .headshot.flatten {
  border-radius: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
}

.advisors #advisorh {
  font-size: 2em;
  color: #444;
  padding: 30px;
}

.advisors .bt {
  font-size: 0.78rem;
}

.advisors a {
  color: white
}

.advisors a:visited {
  color: white
}

/*----------------------------------------------------------Medium Feed-------------------------------------------------*/

body .medium-feed {
  font-family: roboto;
  margin: 0;
  padding: 30px;
  float: left;
  width: 100%;
}
body .medium-feed .gc {
  color: #55ff63;
}
body .medium-feed a {
  color: #95989a;
  text-decoration: none;
}
body .medium-feed h1 {
  font-family: poppins;
}
body .medium-feed #content-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .medium-feed #content-wrapper .content {
  background: #fff;
  border: 1px solid rgba(68,68,68,0.298);
  border-radius: 15px;
  width: 25vw;
  box-sizing: border-box;
  margin: 1vw;
  transition: 0.2s ease-out;
}
body .medium-feed #content-wrapper .content:hover {
  animation: 0.5s animations forwards;
}
body .medium-feed #content-wrapper .content .content-title {
  font-family: poppins;
  padding: 10px 30px;
}
body .medium-feed #content-wrapper .content .content-author {
  font-weight: bold;
  font-size: 0.8rem;
  padding-left: 30px;
  color: #55ff63;
}
body .medium-feed #content-wrapper .content .content-date {
  padding: 10px;
  background: #444;
  color: #55ff63;
  font-weight: bold;
  font-family: poppins;
  width: 20%;
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}
body .medium-feed #content-wrapper .content .content-string {
  padding: 30px;
}
body .medium-feed #content-wrapper .content img {
  width: 100%;
}
@-moz-keyframes animations {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(1.045, 0, 0, 0, 0, 1.045, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(1.088, 0, 0, 0, 0, 1.088, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.114, 0, 0, 0, 0, 1.114, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.121, 0, 0, 0, 0, 1.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.115, 0, 0, 0, 0, 1.115, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.105, 0, 0, 0, 0, 1.105, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(1.098, 0, 0, 0, 0, 1.098, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(1.096, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.101, 0, 0, 0, 0, 1.101, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-webkit-keyframes animations {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(1.045, 0, 0, 0, 0, 1.045, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(1.088, 0, 0, 0, 0, 1.088, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.114, 0, 0, 0, 0, 1.114, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.121, 0, 0, 0, 0, 1.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.115, 0, 0, 0, 0, 1.115, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.105, 0, 0, 0, 0, 1.105, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(1.098, 0, 0, 0, 0, 1.098, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(1.096, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.101, 0, 0, 0, 0, 1.101, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-o-keyframes animations {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(1.045, 0, 0, 0, 0, 1.045, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(1.088, 0, 0, 0, 0, 1.088, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.114, 0, 0, 0, 0, 1.114, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.121, 0, 0, 0, 0, 1.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.115, 0, 0, 0, 0, 1.115, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.105, 0, 0, 0, 0, 1.105, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(1.098, 0, 0, 0, 0, 1.098, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(1.096, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.101, 0, 0, 0, 0, 1.101, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes animations {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(1.045, 0, 0, 0, 0, 1.045, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(1.088, 0, 0, 0, 0, 1.088, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.114, 0, 0, 0, 0, 1.114, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.121, 0, 0, 0, 0, 1.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.115, 0, 0, 0, 0, 1.115, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.105, 0, 0, 0, 0, 1.105, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(1.098, 0, 0, 0, 0, 1.098, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(1.096, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.101, 0, 0, 0, 0, 1.101, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}



/*---------------------------------------------------------Twitter feed-------------------------------------------------*/

.twitter-feed {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  background: var(--secondary-color);
  height: 660px;
  box-sizing: border-box;
}

.twitter-feed iframe {
  margin: 30px !important;
  z-index: 2;
}

.twitter-feed>canvas {
  position: absolute;
  z-index: 0;
}

/*-----------------------------------------------------------Footer---------------------------------------------------*/

.footer {
  float: left;
  width: 100%;
  background: var(--secondary-color);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary-text-color);
  border-top: 5px solid var(--primary-color);
  padding-bottom: 20px;
}

.footer #fi-1 {
  width: 25%;
  height: 25%;
}

.footer h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-size: 2rem;
  margin: 0;
}

.footer form {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px;
}

.footer form input[type="email"] {
  width: 50%;
  height: 60px;
  box-sizing: border-box;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 7px;
}

.footer form button {
  width: 7%;
  background: var(--primary-color);
  border: none;
  outline: none;
  border-radius: 7px;
  margin-left: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.footer form button:hover {
  background: none;
  color: var(--primary-color);
  border: 1px solid;
}

.footer #fi-2 {
  width: 3%;
  height: 3%;
}

.footer p {
  margin: 0;
  margin-top: 10px;
  font-size: 0.8rem;
}

.footer #fp-1 {
  margin: 0;
  font-size: 0.5rem;
}

.footer .social-links {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
  font-size: 1rem;
}

.footer .social-links i {
  padding: 30px;
}

.footer .social-links i:hover {
  color: var(--primary-color);
}

.footer #fp-3 a {
  color: white;
  text-decoration: underline;
  text-decoration-style: dotted;
  font-weight: bold;
}

.footer a {
  text-decoration: none;
  color: #95989a;
}

ul.footer-menu-text {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0;
  font-size: 0.6rem
}

ul.footer-menu-text li {
  margin: 0 auto;
  padding: 20px 30px;
  position: relative;
  transition: 0.5s;
}

ul.footer-menu-text li:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background: #55ff63;
  top: 0;
  left: 45%;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: 0.5s;
  z-index: 2;
}

ul.footer-menu-text li:after {
  content: '';
  width: 150%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -35%;
  top: 10%;
  z-index: 0;
}

#f-m-l:after {
  left: -100%;
}

#f-m-f:after {
  left: 100%;
}

ul.footer-menu-text li:hover:before {
  background: #fff;
}

ul.footer-menu-text li:hover {
  color: white;
}

.footer .terms {
  text-decoration: underline dotted;
  cursor: pointer;
}

.overlay {
  position: fixed;
  z-index: 1000000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #4444448c;
  transition: 0.5s;
  display: none;
  color: #95989a;
}

.conditions {
  position: relative;
  font-size: 0.8rem;
  padding: 60px;
  margin: 60px;
  background: white;
  height: 65vh;
  box-shadow: 0 0 5000px #444
}

.conditions h2 {
  font-size: 2rem;
  font-family: 'Poppins'
}

.conditions h3 {
  font-size: 1.5rem;
}

.conditions .close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  margin: 10px;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.5s
}

.conditions .close:hover {
  color: coral;
}

.mCS-tncs.mSCB_dragger_bar {
  width: 3px;
  transition: 0.3s;
}

.mCS-tncs.mSCB_dragger {
  background: #8888886c
}

/*------------------------------------------Media Queries------------------------------------------*/

@media screen and (max-width: 800px) {
  h2 {
    text-align: center;
  }
  
  .bannerw{
    display: flex;
    align-items: center;
    height:  35px;
  }
  
  .bannerw>.closew{
    left: -3vw
  }
  .menu-top-desktop {
    display: none;
  }
  .menu-top-mobile {
    display: inline-block;
  }
  .landing {
    padding: 40% 0 0 0px;
    display: block;
  }

  .landing a {
    width: 30%;
  }

  .landing .left-wrapper {
    width: 100%;
    padding-left: 30px
  }

  .landing .right-wrapper {
    width: 100%;
  }

  .landing .right-wrapper .pre-sale-date h2 {
    text-align: center
  }

  .landing .right-wrapper .time {
    font-size: 2.6rem;
  }

  .landing h1 {
    height: 165px;
    width: 90%;
    font-size: 1.5rem;
  }
  .landing h2 {
    text-align: left;
  }
  .landing h3 {
    width: 85%;
    font-size: 0.9rem;
  }
  .landing .ratings-holder {
    flex-wrap: wrap;
  }
  .landing button {
    width: 86.9%;
    margin: 2px 2px 2px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
  }
  .landing .social-links {
    font-size: 1rem;
  }
  .landing .extra-links {
    font-size: 0.7rem;
    height: 180px;
    width: 80%;
    display: block;
    padding: 25px;
    margin-left: -15px;
  }
  .landing .extra-links div {
    color: white;
    padding: 20px;
    margin: 4px;
    border-radius: 10px;
    transition: 0.5s;
    float: unset;
    width: 80%;
    font-size: 1rem;
    text-align: center;
  }
  .landing .scroll-btn {
    display: none;
  }
  .flip-clock-label {
    display: none;
  }
  .documentation .docs-holder .button {
    width: 75%;
  }
  .documentation>h2 {
    margin-top: 0
  }
  .follow-us .news-links {
    height: auto;
    flex-wrap: wrap;
  }
  .follow-us .news-links a {
    width: 40%
  }

  .follow-us .news-links img {
    height: auto;
    width: 100%;
  }
  .about-scx .generic-image img {
    display: none;
  }
  .about-scx .about p {
    padding-right: 45px;
    text-align: center;
  }
  .about-scx .about {
    width: 95%;
    font-size: 0.8rem;
  }
  .sign-up-form button {
    width: 99.8%;
  }
  .partners>div {
    grid-template-columns: repeat(auto-fill, 158px);
    grid-auto-rows: 160px;
    justify-content: center;
  }
  .aprtners>h2 {
    text-align: center;
  }
  .features .wrapper {
    grid-template-columns: repeat(auto-fill, 100px);
    grid-auto-rows: 150px;
    font-size: 0.6rem;
  }
  .features header h2, .about-scx .about h2 {
    width: 85%;
  }
  .features img {
    max-height: 50px;
    max-width: 50px;
    margin: 0 auto;
    position: relative;
    padding: 0px;
  }
  .features .ctn strong {
    padding: 0px;
    text-align: center;
  }
  .tech>p {
    padding: 0 20px 20px 20px;
    margin: 0;
    text-align: center;
    font-size: 0.8rem;
  }
  .techs p {
    font-size: 0.8rem
  }
  .tech>h2 {
    margin: 0;
  }
  .tech .tech-holder .techs {
    width: 90%;
    margin: 5%;
  }
  .tech .tech-holder {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .waste {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  .waste img {
    width: 100%;
  }
  .waste p {
    display: none;
  }
  .token_c iframe {
    display: none;
  }
  .token_c img {
    display: block;
    width: 100%;
  }
  .token_c h2 {
    margin: 0;
  }
  .workflow h2 {
    margin: 0;
  }
  .workflow img {
    opacity: 1;
    transform: none;
    display: none;
  }
  .workflow #mobile_wf {
    display: block;
  }
  .token_a {
    flex-flow: column-reverse;
    margin: 0;
    margin-top: -4px;
    padding: 0
  }
  .token_a h2 {
    width: 100%;
  }
  .token_a img {
    width: 95%;
  }
  .asset_a {
    flex-flow: column;
    margin: 0;
    margin-top: -4px;
    padding: 0;
    padding-bottom: 30px
  }
  .asset_a h2 {
    width: 100%;
  }
  .asset_a img {
    width: 95%;
  }
  .featured {
    box-sizing: border-box;
  }
  .featured canvas {
    width: 90%;
  }
  .featured .featured-holder {
    justify-content: center;
  }
  .featured .featured-holder .brands {
    width: 19.9vw;
    height: 19.9vw;
  }
  .zoomtimeline.mode-3dslider .details-container>.detail {
    width: 250px !important;
    margin-left: -125px !important;
  }
  .detail-excerpt {
    font-size: 12px !important
  }
  .faq .card {
    margin: 3vw;
    width: 40vw;
    height: 40vw;
  }
  .faq #p-8-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .faq .back {
    color: #444;
    font-size: 0.5rem;
    box-sizing: border-box;
  }
  .faq .front {
    font-size: 0.7rem;
    box-sizing: border-box;
  }
  .poweredby div {
    flex-wrap: wrap;
  }
  .poweredby div img {
    height: 50%;
  }
  .team .jazz:after {
    display: none;
  }
  .team .jazz h2 {
    font-size: 1rem;
    top: -35px;
    left: -26px;
  }
  .team .jazz figcaption p {
    display: none;
  }
  .team .jazz .mobile {
    display: flex !important;
  }
  .team .jazz .mobile p {
    font-size: 0.8rem;
    display: block;
    top: 82%;
    padding: 11px 0 15px 0;
  }
  .advisors .wrapper {
    display: grid;
    grid-auto-rows: 180px;
    grid-template-columns: repeat(auto-fill, 180px);
    grid-gap: 30px 0px;
    justify-content: center;
  }
  
  body .medium-feed #content-wrapper .content {
    width: 90vw
  }

  body .medium-feed {
    padding: 0;
  }

  .footer #fi-1 {
    width: 85%;
    height: 85%;
  }
  .footer h2 {
    font-size: 1.7rem;
    padding: 0 15px;
  }
  .footer form input[type="email"] {
    width: 65%;
  }
  .footer form button {
    width: 20%;
  }
  .footer #fi-2 {
    width: 8%;
    height: 8%;
  }
  .footer #fp-1 {
    font-size: 0.8rem
  }
  .footer .social-links i {
    padding: 10px;
  }
  .footer ul.footer-menu-text {
    display: none;
  }
  .overlay {
    position: fixed;
    z-index: 1000000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #4444448c;
  }
  .conditions {
    font-size: 0.8rem;
    padding: 30px;
    margin: 20px;
    background: white;
    height: 85vh;
    box-shadow: 0 0 5000px #444;
  }
  .conditions .close {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 1000;
    margin: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.5s;
  }
}


.video-element {
    width: 81vw;
    height: 90vh;
    position: relative;
    background: black;
    overflow: hidden;
    margin: 30px 9vw;
    float: left;
}

.video-element .video-logo{
    position: absolute;
    width: 15%;
    margin: 20px;
    opacity: 0.5;
    filter: drop-shadow(0 0 5px #444)
}

.video-element .video-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    color: #55ff63;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    background: #44444480;
    z-index: 10;
    transition: 0.2s;
}

.video-element video {
    width: 100%;
    height: 100%;
}

.video-element .control-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--control-background);
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    transition: 0.2s;
    transform: translateY(100%);
    opacity: 0;
}

.video-element .control-box .play-pause {
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: no-repeat;
    border: none;
    box-sizing: border-box;
    padding: 10px;
    color: var(--control-buttons);
    outline: none;
    transition: 0.2s;
    margin: 0 10px 0 0;
    width: 30px;
    cursor: pointer;
}



.video-element .control-box .progress-slider {
    width: 80%;
    cursor: pointer;
}

.video-element .control-box .completed-track {
    height: 3px;
    width: 0;
    background: var(--control-buttons);
    position: absolute;
    left: 40px;
}

.video-element .control-box .completed-track {
    height: 3px;
    width: 0;
    background: var(--control-buttons);
    position: absolute;
    left: 40px;
}

.time-duration {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 0 5px;
    font-family: monospace;
    color: var(--control-buttons);
}


.video-element .control-box .full-screen,
.video-element .control-box .mute-button {
    height: 100%;
    background: no-repeat;
    border: none;
    box-sizing: border-box;
    padding: 10px;
    color: var(--control-buttons);
    outline: none;
    transition: 0.2s;
    margin: 0 0 0 10px;
    width: 35px;
    cursor: pointer;
}

.video-element .control-box .mute-button {
    margin: 0 10px 0 0;
}

.video-element .control-box .play-pause:hover,
.video-element .control-box .mute-button:hover,
.video-element .control-box .full-screen:hover {
    background: var(--control-buttons);
    color: white;
}


.video-element .control-box .volume-button {
    width: 8%;
    position: relative;
    right: 10px;
    cursor: pointer;
}


.video-element .control-box .present-volume {
    height: 3px;
    width: 0;
    background: var(--control-buttons);
    position: absolute;
    right: 30px;
    transform-origin: left;
}

video::-moz-focus-outer {
    border: 0;
}

input::-moz-focus-outer {
    border: 0;
}

button::-moz-focus-outer {
    border: 0;
}




/*Range styling*/

input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}


input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: var(--control-buttons);
    border-radius: 50%;
    margin-top: -8.5px;
}


input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--control-buttons);
    border-radius: 50%;
    border: none;
}


input[type=range]::-ms-thumb {
    width: 20px;
    height: 20px;
    background: var(--control-buttons);
    border-radius: 50%;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: var(--control-track)
}

input[type=range]::-mo-range-track {
    width: 100%;
    height: 3px;
    background: var(--control-track)
}

input[type=range]::-ms-track {
    width: 100%;
    height: 3px;
    background: var(--control-track)
}


input[type=range]::-ms-fill-lower {
    background: var(--control-buttons)
}

input[type=range]::-ms-fill-upper {
    background: var(--control-track)
}


@media screen and (max-width: 800px) {
  .video-element {
    width: 100vw;
    height: 40vh;
    margin: 0;
  }
}


@-webkit-keyframes rotatinging /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatinging {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotatinging {
  -webkit-animation: rotatinging 2s linear infinite;
  -moz-animation: rotatinging 2s linear infinite;
  -ms-animation: rotatinging 2s linear infinite;
  -o-animation: rotatinging 2s linear infinite;
  animation: rotatinging 2s linear infinite;
}


#carousel2 {
    display: none !important;
}


@media screen and (max-width: 800px) {
	#carousel {display: none!important}
	#carousel2 {display: flex!important}
}


.d-lang-item {
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    justify-content: space-between;
    transition: 0.3s;
    cursor: pointer;
}

.d-lang-item:hover {
    background: white;
    color: #444;
}


.lang-nav-menu {
    width: 15%;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 1000000000000;
    background: white;
    box-shadow: 0 3px 5px #4444442c;
    padding: 0;
    transition: 0.3s ease-out;
    height: 0;
    overflow: hidden;
}

.lang-nav-menu a{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.lang-nav-menu a:hover {
    background: #55ff63;
}

.lang-nav-menu img{
    height: 100%;
}


.m-lang-item li {
    height: 70px;
    display: flex;
    padding: 5px !important;
    align-items: center;
    justify-content: space-evenly;
}

.m-lang-item img {
    height: 100%;
}


@media screen and (max-width: 700px) {
    .lang-nav-menu {
        width: 100%;
        top: 90px;
        padding: 0px 10px;
    }
}


body .token-sale-dets {
  float: left;
  font-family: roboto, sans-serif;
  display: flex;
  width: 100%;
  background: #444;
  color: #fff;
  align-items: center;
}
body .token-sale-dets strong {
  color: #55ff63;
}
body .token-sale-dets .left {
  width: 70%;
  line-height: 30px;
  padding: 30px;
}
body .token-sale-dets .left .big-data {
  display: flex;
  align-items: center;
  line-height: 15px;
  background: #fff url("https://swachhcoin.com/img/pattern.png");
  margin: 30px 0;
  color: #444;
}
body .token-sale-dets .left .big-data .capp {
  width: 25%;
  padding: 16px;
}
body .token-sale-dets .left .big-data .h-cap {
  color: #0de358;
}
body .token-sale-dets .left .big-data .s-cap {
  color: #18a973;
}
body .token-sale-dets .left .big-data .p-cap {
  color: #18a9a9;
}
body .token-sale-dets .left .big-data .c-cap {
  color: #187fa9;
}
body .token-sale-dets .left .big-data h3,
body .token-sale-dets .left .big-data p {
  margin: 0;
}
body .token-sale-dets .left .big-data p {
  font-size: 2rem;
  padding-top: 20px;
}
body .token-sale-dets .left .big-data h3 {
  font-size: 0.9rem;
}
body .token-sale-dets .left i {
  color: #f76969;
  font-size: 3rem;
}
body .token-sale-dets .left a[href="token-pdf.pdf"] {
  font-size: 2.2rem;
  color: #95989a;
  padding: 0px;
  text-decoration: none;
  border-bottom: 1px dashed;
  margin: 5px;
  line-height: 70px;
}
body .token-sale-dets .left .purchase-methods {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .token-sale-dets .left .purchase-methods .currencies-dets {
  width: 40px;
  height: 40px;
  margin: 10px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 3px 5px rgba(0,0,0,0.471);
  overflow: hidden;
  background: #fff;
}
body .token-sale-dets .left .purchase-methods .currencies-dets:hover {
  transform: scale(1.1);
}
body .token-sale-dets .left .purchase-methods .currencies-dets img {
  height: 100%;
}
body .token-sale-dets .right {
  width: 30%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 20px;
  background: #55ff63 url("https://swachhcoin.com/img/pattern.png");
  box-shadow: -3px 3px 5px rgba(0,0,0,0.471);
}
body .token-sale-dets .right h2 {
  width: 80%;
  font-size: 3rem;
  padding: 0 30px 100px 30px;
  margin: 0;
  color: #444;
  margin-top: 20px;
}
body .token-sale-dets .right form {
  width: 80%;
}
body .token-sale-dets .right input {
  width: 100%;
  height: 50px;
  background: no-repeat;
  border: none;
  outline: none;
  border-bottom: 2px solid #444;
  margin: 10px;
  padding: 20px 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  color: #444;
  font-family: roboto;
  transition: 0.3s;
}
body .token-sale-dets .right input:focus {
  border-bottom: 5px solid #fff;
}
body .token-sale-dets .right button {
  width: 100%;
  margin: 10px 10px 30px 10px;
  height: 60px;
  font-size: 2rem;
  background: #444;
  border: none;
  font-family: roboto;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 3px 5px #444;
  color: #fff;
  transition: 0.3s ease-out;
  cursor: pointer;
}
body .token-sale-dets .right button:hover {
  transform: scale(1.05);
}

