/* AntelopeSwap.com CSS
Author: Antelope Rogers
 */
 html {
	 height: -webkit-fill-available;
 }
html, body {
	padding: 0px;
	margin: 0px;
	background:#000;
	color: rgba(233, 233, 233, 1);
	font-family: Open Sans, sans-serif;
	font-size: 12px;
	height: 100%;
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
	min-height: -webkit-fill-available;
}
body {
	height: 100vh;
	overflow-x: hidden;
	width: 100%;
	margin-bottom: 40px;
}
/*********************** containers ***********************/
.container {
	max-width: 1200px;
	margin: auto
}
.textpage, .textbox {
	width: 100%;
	max-width: 750px;
	padding: 0 8px;
	margin:50px  auto;
}
.tall {
	min-height: 80vh;
	padding: 80px 0px
}
.flex-row {
  display:flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: center;
  align-items: center
}
.flex-col {
  display:flex;
  flex-direction:column;
  box-sizing: border-box;
  justify-content: center
}
.col-2 {
  align-items: start;
  max-width: 1000px;
  box-sizing: border-box;
}
.col1-3 {
	width: 30%;
	min-height:300px;
	padding:20px;
	box-sizing: border-box;
}
.col1-3 img {
  max-width: 100%;
  height: auto;
}
.col2-3 {
  width: 70%;
  box-sizing: border-box;
}
.col1-2 { 
  width: 50%;
  box-sizing: border-box;
}
.content {
  margin: 40px auto;
}
.gap-12 {
  gap: 12px;
}
.gap-24 {
  gap: 24px;
}
.gap-48 {
  gap: 48px;
}
.pad-12 {
  padding: 12px;
}
.pad-24 {
  padding: 24px;
}
.pad-32 {
  padding: 32px;
}
.pad-48 {
  padding: 48px;
}
.right {
	text-align: right;
	justify-content: end
}
.left {
	text-align: left;
	justify-content: start
}
.top {
	justify-content: start
}
.mid {
  align-items: center;
}
.center {
	text-align: center
}
.wide {
	justify-content: space-between
}  
/*********************** Images ***********************/
 
.image-only {
  padding:0px;
  min-height:1vh;
}
.image-only img {
	height: 500px;
} 
.img {
	border-radius:20px;
	border:1px solid #964336;
	max-width: 700px;
	max-height: 700px;
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}
.img-600 {
	max-width: 600px;
	width: 100%;
}
.tokens img {
	height: 60px;
	width: 60px;
}
.activate .img {
	width: auto !important
}

/*********************** TEXT ***********************/
h1, h2, h3, h4 {
	font-family: Oswald;
	font-weight:600;
	margin: 0;
	padding: 0
}
h1 {
	font-size:7rem;
	line-height:7rem;
	font-weight: 900
}
h2 {
	font-size:4.5rem;
	line-height:6rem;
}
h3 {
	font-size:3rem;
	line-height:4rem;
	font-weight: 300
}
h4 {
	font-size:2rem;
	line-height:2.5rem;
	font-weight: 300
}
.small {
	font-size:1rem;
}
blockquote {
	background: rgba(0,0,0,.8);
	padding: 40px;
	border-radius: 20px;
	max-width: 800px;
	margin: auto
}
p, ul, li, blockquote {
	font-size:1.5rem;
	line-height:2.5rem;
	color: #eee
}
.textpage p, .textpage li {
	font-size: 1.5rem;
	line-height: 2.75rem
}
.textbox {
	font-size:2rem;
	line-height: 2.5rem;
}
p {
	margin: 0
}
/*********************** forms ***********************/
form {
	max-width: 400px;
	width: 100%;
	padding: 20px 0px;
}
input, textarea {
	line-height:24px;
	padding:8px;
	font-size: 1.25rem;
	border-radius: 20px;
	border: none;
	font-family:Open-Sans, sans-serif
}
textarea {
	height: 100px;
}
button[type="submit"] {
	width: 100%;
}
.form-success, .form-error {
  padding: 12px;
  margin-top: 16px;
  width: 350px;
  border-radius: 28px;
  font-size: 2rem;
  text-align: center;
  font-family: 'Oswald';
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}
.form-success {
  background-color: #105758;
  color: #49FFE4;
}
.form-error {
  background-color: #964336;
  color: #fff;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.fade-out-up {
  animation: fadeOutUp 0.6s ease-in forwards;
}

@keyframes fadeInUp {
  0% {
	opacity: 0;
	transform: translateY(20px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  0% {
	opacity: 1;
	transform: translateY(0);
  }
  100% {
	opacity: 0;
	transform: translateY(-20px);
  }
}
/*********************** links and buttons ***********************/
a:hover, input:hover, button:hover, *:hover, a img:hover, .album a:hover {
	  transition:all .3s linear;  
}
a {
	color: #49FFE4;
	text-decoration: none
}
a:hover {
	color: #EBDEBE
}
.button {
	font-family: oswald;
	color: #fff;
	text-decoration: none;
	text-align: center;
	width: fit-content;
	border: 0;
}
.button-lg {
	border-radius: 36px;
	padding: 0 32px;
	line-height: 72px;
	height: 72px;
	font-size: 32px;
}
.button-med {
	border-radius: 28px;
	padding: 0 24px;
	line-height: 56px;
	height: 56px;
	font-size: 24px;
}
.primary {
	background: #49FFE4;
	color: #000
}
.primary:hover {
	background: #964336;
	color: #fff
}
.secondary {
	background: none
}
.teal {
	background: #105758
}
button.teal {
	color: #fff
}
button.teal:hover {
	background: #49FFE4;
	color: #000
}
.red {
	background: #964336
}
a.red:hover {
	background: #49FFE4;
	color: #000
}
.blue {
	background: #172B3B
}
.black {
	background: #000
}
.stripe {
	background: url(images/stripe3.png) no-repeat center bottom;
	background-size: cover;
}
/*********************** header ***********************/
.header {
	justify-content: space-between;
	height: 68px;
	padding: 6px 80px 6px 12px;
	box-sizing:border-box;
	position: relative;
	z-index: 1000
}
.header h1 {
	height: 60px;
	width: 200px;
	background: url(images/horizontal-teal.svg) no-repeat;
	background-size: contain;
	text-indent: -100000px;
}
/*********************** menu **********************/
.slideout {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
	height: 100vh;
  transition: right 0.4s ease;
  padding: 24px;
  padding: 72px 0px 0px;
  flex-direction:column;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 100000;
}
#menu-toggle:checked + label + .slideout {
  right: 0;
}
.menuicon {
  position: absolute;
  top: 0;
  right:0;
  z-index: 100000;
  cursor: pointer;
  width: 68px;
  height: 68px;
}
.close {
  position: absolute;
  top: 0;
  left:0;
  z-index: 1100;
  cursor: pointer;
  width: 72px;
  height: 72px;
}
.close svg, .menuicon svg {
	color: #49FFE4
}
.close:hover svg, .menuicon:hover svg {
	color: #FFF
}
.slideout ul, .slideout li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.headmenu {
	width: 100%;
}
.headmenu li a {
	display: block;
	box-sizing: border-box;
	padding: 24px;
	width: 100%;
	font-size:2.5rem;
	font-family: Oswald
}
.headmenu li a:hover, .close:hover, .menuicon:hover {
	background:#964336;
	color: #FFF !important
}
.slideout ul.social {
	padding: 24px !important;
	flex-direction: row;
}
.close {
	position: absolute;
	top:0;
	right: 0;
}
.header svg {
	color:#49FFE4
}
.menufoot {
	justify-content: space-between;
	align-items: end;
	flex-direction: row !important;
	width: 100%;
}

.menufoot ul {
	padding: 24px;
	font-family: oswald;
}
/*********************** footer ***********************/
footer {
  padding:40px 40px 60px;
  border-top:1px solid #49FFE4;
}
.copy p {
  font-size:16px;
  font-family:Oswald;
  font-weight:400;
	color:#49FFE4 !important;
}
footer h1 {
	text-indent:-10000000px;
	background:url(https://243048326.fs1.hubspotusercontent-na2.net/hubfs/243048326/Horizontal-teal.svg) no-repeat left;
	background-size: contain;
	width:300px;
	height:80px;
	margin:0px;
	padding:0px;
}
.footermenus ul {
  list-style:none;
  padding:0;
  margin:0;
}
.footermenus ul li {
  padding:0;
  margin:0;
  font-family: Oswald, sans-serif
}
.infomenu, .social {
  gap:20px;
}
 ul.social a {
   display: block;
   text-indent: 100000px;
}
#bs, #ig, #tw, #yt {
  height:40px;
  width:40px;
}
#si {
	background:url(images/signal1.png) no-repeat center;
	background-size:contain;	
	height: 42px;
	width: 244px;
	display:block;
	text-indent: 100000px;
	font-size: 0;
}
#si:hover {
	  background:url(images/signal1-hover.png) no-repeat center;
	  background-size:contain;
  }
#bs {
  background:url(https://243048326.fs1.hubspotusercontent-na2.net/hubfs/243048326/bs.svg) no-repeat center;
  background-size:contain;
}
#yt {
  background:url(https://243048326.fs1.hubspotusercontent-na2.net/hubfs/243048326/yt.svg) no-repeat center;
  background-size:contain;
}
#ig {
  background:url(https://243048326.fs1.hubspotusercontent-na2.net/hubfs/243048326/ig.svg) no-repeat center;
  background-size:contain;
}
#tw {
  background:url(https://243048326.fs1.hubspotusercontent-na2.net/hubfs/243048326/tw.svg) no-repeat center;
  background-size:contain;
}
/*********************** Fine Tuning ***********************/
#section-1 {
	padding:80px 0px 60px;
	min-height: 80vh
}
.home #section-14 {
	padding: 0
}
.textsection {
	margin:40px auto !important;
	max-width: 700px;
	padding: 8px;
}
.array {
	padding: 20px;
	width:100%;
	justify-content: space-evenly
}
.array svg {
	height: 48px;
	width: 48px;
}
.home #section-7, .what #section-8 {
	background: #172B3B;
	background: linear-gradient(137deg,rgba(23, 43, 59, 1) 0%, rgba(16, 87, 88, 1) 100%) fixed;
	padding: 40px 8px;
}
.home #section-7 .contain, .what #section-8 .container  {
	max-width: 600px;
	margin:auto;
}
ol.howto  {
	list-style: none !important;
	counter-reset: item !important; 
	margin:20px 0px;
	padding:0
}
ol.howto li {
	background:#00273C;
	border-radius:50px;
	padding:10px 20px;
	counter-increment: item !important;
	font-size: 20px; 
	line-height: 32px;
	margin:10px 0px;
	display: flex;
}
ol.howto li:before {
	content: counter(item)  ". " !important;
	margin-right: 10px;
  }
 
 /*********************** Animations ***********************/
.slide-in-left, .slide-in-right, .cascade-item {
opacity: 0;
transform: translateX(0);
transition: all 0.5s ease-out;  /* was 0.8s */
will-change: transform, opacity;
}

.slide-in-left {
transform: translateX(-50px);
}

.slide-in-right,
.cascade-item {
transform: translateX(50px);
}

.animate-in {
opacity: 1;
transform: translateX(0);
}

@media screen and (max-width: 1000px) {
html, body {
	font-size: 10px;
}
.textpage {
	padding:100px 80px;
}
.home #section-7 {
	justify-content: center;
	display: flex;
}
.tall {
	min-height: 50vh;
	padding: 80px 0px;
}
.home #section-1, .what #section-1, .what #section-9 {
	display:flex;
	padding-top: 60px;
	flex-direction: column;
	align-items: center;
	height:auto !important;
	min-height: auto;
	max-height: auto;
	height: auto !important;
	min-height: auto;
}
.what section.tall {
	padding: 20px
}
blockquote {
	margin: 4px;
}

@media screen and (max-width: 800px) {
.textpage {
	padding:100px 40px;
}
.flex-row {
	flex-direction: column;
}
.col1-2, .col2-3, .col1-3 {
	width: 100%;
	padding: 0
}
.array {
	display:flex;
	flex-direction: row;
}
.slideout { 
	max-width:412px; !important;
	width: 100%
}
footer {
	padding: 20px 12px 60px;
	border-top: 1px solid #49FFE4;
	gap: 20px;
}
footer p {
	text-align: center
}
.footermenus ul {
	display: flex;
	flex-direction:row
}
.header {
	display: flex;
	flex-direction: row;
	background:#105758;
	justify-content: flex-start;
	padding: 6px;
}
p, li {
	font-size:2rem;
	line-height:3rem
}
.what #section-4 .container, .what #section-6 .container, .activate #section-3 .container, .activate #section-5 .container  {
	flex-direction: column-reverse
}
@media screen and (max-width: 500px) {
body {
	font-size: 10px;
	height: 100vh;
	overflow-y: scroll;
	position: relative;
	background: #000 !important
}
.headmenu li a {
	font-size:3.5rem;
	padding: 36px 24px
}
#section-1 {
	padding:20px 12px 60px !important;
	min-height: 80vh
}
#section-1 h1, #section-1 h2, #section-1 h3 {
	text-align: center
}
.what #section-1 h1 {
	font-size: 5rem;
	line-height: 6rem;
}
.what #section-1 .textbox {
	margin: 0
}
.what img {
	max-width: 100%;
}
.textpage {
	padding:0px 20px;
}
.textpage h1 {
	text-align: center;
	font-size: 5rem
}
.tall {
	padding: 36px 0px;
}
.header h1 {
	display: none
}
blockquote h2 {
	font-size:3rem 
}
.what section.tall {
	padding:48px 20px
}
 .gap-24 {
   gap: 12px;
   
 } .gap-48 {
   gap: 24px;
 }
 .pad-12 {
   padding: 6px;
 }
 .pad-24 {
   padding: 12px;
 }
 .pad-32 {
   padding: 16px;
 }
 .pad-48 {
   padding: 24px;
 } 
.footermenus {
	gap: 24px
}
.tokens img {
	height: 40px;
	width: 40px;
}

.activate .img {
	width:95% !important
}
}