/* ===================================================
Table of Contants

- Variables
- General
- Accessibility
- Containers
- Buttons
- Backgrounds

- Featured in
- About
- Eco-system
- Roadmap
- Meet the team
- Whitepaper
- News

- Pagination
- Single Post

- Mobile

=================================================== */


/* ===================================================
Variables / Utility Classes
=================================================== */

:root {
	/* === Colors === */
	--main-color: orange;
	--accent-color: blue;
	--accent-color-2: rgb(225, 225, 225);
	--font-color: rgb(7, 46, 84);

	/* === Font Styles === */
	--font-family: 'Open Sans', sans-serif;
	--font-family-2: 'Bungee', cursive;
	--font-weight-bold: 700;
	--font-weight-reg: 400;
	--line-height:1.3;
}

/* ===================================================
General
=================================================== */

*,
*::before,
*:after {
	box-sizing:border-box;
}

html {
	scroll-behavior: smooth;
}

html[lang="ja"] *,
html[lang="ru-RU"] *,
html[lang="tr-TR"] *,
html[lang="ko-KR"] * {
font-family: filson-pro, sans-serif !important;	
}



body {
	font-family: var(--font-family);
	color: var(--font-color);
    overflow-x:hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-2);
    font-weight:var(--font-weight-bold);
    margin-bottom:25px;
}

h1 {
    font-size:4.75rem;
}

h2 {
    font-size:3.75rem;  
}

h3 {
    font-size:2.75rem;
}

h4 {
    font-size:2.325rem;  
}

h5 {
    font-size:1.5rem;
}

h6 {
    font-size:1.2rem;  
}

p {
    font-size:1.2rem;
    margin-bottom:15px;
    line-height:var(--line-height);
}

p:last-child{
    margin-bottom: 0px;
}

ol,
ul {
    margin:0;
}

ul ::marker,
ol ::marker {
    line-height:1;
}

ul {
    list-style: none;
    display: inline-block;
    padding-left: 2em;
    margin: 30px 0;
}

img {
    display:block;
}

small {
    font-size:1.4rem;
}

/* =================================================================
ACCESSIBILITY
================================================================= */
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
	margin: 0;
    padding: 10px;
    background-color: #fed743;
    border: 4px solid black;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul {
	display:flex;
	justify-content:center;
}

.wpml-ls-statics-footer a {
	background-color: #fbd542;
}

.wpml-ls-statics-footer .wpml-ls-current-language>a {
	background-color: #dabb49;
}

/* =================================================================
HEADER
================================================================= */
.site-header {
    position: fixed;
    left: 0;
    top:0;
    width:100vw;
    margin:auto;
    z-index: 99;
    padding:20px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.menu {
    padding: 16px 8px;
}

@media only screen and (max-width: 1450px) and (min-width: 1340px)  {
	.site-header {
		padding: 20px 10px !important;
	}
}

.site-header .logo-holder .logo-head {
    width:200px;
}

.site-header .eightbit-btn.small {
    font-size: 1.2rem;
    padding: 16px;
    margin-bottom:0;
}

/* =================================================================
Navigation
================================================================= */
.nav-buttons .eightbit-btn.small {
    margin-bottom:0;
}
.nav-buttons.mobile {
    display:none;
}
.nav-buttons.desktop {
    display:flex;
	align-items:center;
    gap:16px;
}

/* =================================================================
CONTAINERS
================================================================= */

.full-height {
    min-height:100vh;
}

.container {
    width:100vw;
    height:auto;
    min-height:100vh;

    background-size:cover;
    background-position:bottom center;
    background-repeat:no-repeat;

    position:relative;

    background-color: #8ae6fb;
}

.inner {
    max-width:calc(100vw - 10%);
    margin:auto;
    min-height:100vh;
    padding:120px 0;
    position:relative;
}

.vines:after {
    top: calc(100% - 25px);
    background-image: url(../../../../uploads/2022/02/vine.svg);
    background-position: bottom left;
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-size: contain;
    background-repeat: repeat-x;
    z-index: 9;
}

.under-sand:after {
    top: 0;
    background-image: url(../../../../uploads/2022/07/under-sand.png);
    background-position: bottom left;
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background-size: cover;
    background-repeat: repeat-x;
    z-index: 9;
}

.section-title {
    width:100%;
    text-align:center;
    margin-bottom: 80px;
}

/* =================================================================
BUTTONS
================================================================= */
.eightbit-btn {
    background: #fed743;
    display: inline-block;
    position: relative;
    text-align: center;
    font-family:var(--font-family-2);
    font-size: 1.95rem;
    padding: 20px;
    text-decoration: none;
    color: white;
    box-shadow: inset -4px -4px 0px 0px #feff73;
  }

  .eightbit-btn.small {
    font-size: 1rem;
  }

  .eightbit-btn:hover, .eightbit-btn:focus {
    background: #f9cd2c;
    box-shadow: inset -4px -4px 0px 0px #feff73;
  }
  .eightbit-btn:active {
    box-shadow: inset 4px 4px 0px 0px #feff73;
  }
  .eightbit-btn:before, .eightbit-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
  }
  .eightbit-btn:before {
    top: -4px;
    left: 0;
    border-top: 4px black solid;
    border-bottom: 4px black solid;
  }
  .eightbit-btn:after {
    left: -4px;
    top: 0;
    border-left: 4px black solid;
    border-right: 4px black solid;
  }

  .eightbit-btn.black {
    background: #000000;
    box-shadow: inset -4px -4px 0px 0px #343434;
  }

  .eightbit-btn.black:hover, .eightbit-btn.black:focus {
    background: #343434;
    box-shadow: inset -4px -4px 0px 0px #2e2e2e;
  }

  .eightbit-btn:active {
    box-shadow: inset 4px 4px 0px 0px #2e2e2e;
  }


.eightbit-btn.coming-soon {
	filter: grayscale(100%);
	cursor:not-allowed;
	pointer-events:none;
}

.eightbit-btn.black:hover, .eightbit-btn.black:focus {
	filter: grayscale(100%);
	cursor:not-allowed;	
}

/* =================================================================
BACKGROUNDS
================================================================= */

.hero-section {
	background-image:url(../images/Fold-01-1.png);
}

.about-section {
	background-image:url(../images/Tama-background-02.png);
    min-height:auto;
	padding-bottom: 10px;
}

.eco-system-section {
	background-image:url(../images/Fold-03.png);
}

.roadmap-section {
	/*background-image:url(../images/Fold-04.png);*/
}

.mtt-section {
	background-image:url(../images/Fold-05.png);
}

.whitepaper-section {
	background-image:url(../../../../uploads/2022/07/whitepaper.bg_%EF%B9%96t=1.png);
}

.news-section {
	background-image:url(../images/Fold-07.png);
    background-position:bottom right;
}

.single {
    background-image:url(../images/Tama-background-02.png);
    background-size:100%;
    background-repeat:repeat-y;
}

/* =================================================================
HERO
================================================================= */
.hero-gif {
    width:80%;
    position:absolute;
    bottom:5.5%;
    left:0;
    z-index:1;
}

.hero-gif.mobile {
    display:none;
    width:100%;
    bottom:0;
}

.hero-content {
    display:flex;
    justify-content:space-around;
    align-items:flex-start;
    gap:80px;

    position:absolute;
    top:20%;
    left:50%;
    transform:translateX(-50%);
    width:100%;

    z-index:9;
}

.hero-content .logo-holder {
    width: 100%;
    max-width: 750px;
}

.hero-content .logo-holder .logo {
    width:100%;
}

.hero-content .countdown-buy {
    width:fit-content;
    text-align:center;
}

.hero-content .countdown-buy .countdown {
    margin-bottom:40px;
    position:relative;
}


.hero-content .countdown-buy .countdown-content {
    background-color:#8c583e;
    border:10px solid #4b332a;
    padding:40px;
    color:#4b332a;

}

.hero-content .countdown-buy .countdown-content h2 span {
    opacity:0.4;
}

.hero-content .countdown-buy .countdown-content .countdown-timer {
    font-family:var(--font-family-2);
    font-size: 1.95rem;
  
}

.hero-content .countdown-buy .countdown-content .countdown-timer small {
    color:#4b332a;
    opacity:0.4;
}

.text-price {
    color: #FFF;
    font-size: 1.2rem;
}

.countdown-content.vines:after {
    background-size:cover;
}

/* =================================================================
FEATURED IN
================================================================= */
.featured-in {
    width:100%;
    margin:auto;
    padding:120px 0 120px 0;
    background-color:#8ae6fb;
}

.featured-in .inner {
    height:auto;
    min-height:auto;
    padding:0;
}

.featuredIn .swiper-slide {
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.featuredIn .swiper-slide img {
    max-height: 60px;
    max-width: 170px;
}

.featured-quote-wrapper {
	margin-top: 60px;
	display: flex;
}

.featured-quote-holder {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    background: #FFF;
    margin: 10px;
    border-radius: 30px;
    padding: 2rem 0.5rem;
}

.featured-quote-link {
    margin: unset;
}

.featured-quote-logo {
     margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-quote-logo img {
    max-width: 200px;
	height: 50px;
}

.featured-quote-text {
    max-width: 80%;
	margin-bottom: 0.5rem;
}

.featured-quote-link a {
 color: var(--font-color);
	font-size: 1.2rem;
}

/* =================================================================
ABOUT
================================================================= */
.inner.about {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:auto;
    height:auto;
    padding-top:0;
	padding-bottom: 0;
	max-width: 1400px;
}


.about-section h2 {
	text-align: center;
}

.inner .about-content {
    display: flex;
}

.about-content .left-column, .about-content .right-column {
	width: 20%;
	display: flex;
    justify-content: center;
    align-items: center;
}

.about-content .middle-column {
	width: 60%;
}

.about-content > div >img {
	width: 100%;
}

.about-proof-images img {
	width: 150px;
}

.about-proof-images {
	display: flex;
    justify-content: center;
	    padding-bottom: 40px;
}

.inner .tamadoge-island {
    width:230px;;
    animation: floatingIsland 5s ease-in-out infinite;
    position:relative;
}

.inner .tamadoge-island .island {
    width: 100%;
    height: auto;
}

.inner .tamadoge-island .island-dog {
    position: absolute;
    top: -29%;
    right: 0;
    width: 50%;
}

.about-content {
	text-align: center;
}

.about-content ul {
	padding:0;
	margin:0;
	width: 100%;
}

.about-content ul li {
	display:flex;
	flex-wrap:nowrap;
	align-items:center;
	gap:32px;
	margin-bottom:16px;
	justify-content: space-between;
}

.about-content ul li:last-child {
	justify-content: center;
}

.about-content ul li .solid-proof {
	width:200px;
}

.about-content p {
	flex: 1;
}

.socials {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:40px;
}
.socials a img {
    width:80px;
    height:auto;
}



@keyframes floatingIsland {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* =================================================================
ECO-SYSTEM
================================================================= */
.inner.eco-system {
    min-height:800px;
    height:auto;
}

.inner.eco-system .eco-content {
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
}

.inner.eco-system .eco-content .content {
    width:49%;
    padding: 32px;
    margin-bottom: 100px;
    background-color:#8ae6fb;
}

.inner.eco-system .eco-content .coins {
    width:49%;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    justify-content:center;
    align-items:flex-start;
}

.inner.eco-system .eco-content .coins .coin {
   width:30%;
   min-width:auto;
   margin-bottom:32px;
   display:flex;
   flex-direction:column;
   align-items:center;
   justify-content:center;
   text-align:center;
}

.inner.eco-system .eco-content .coins .coin .coin-img {
    width:auto;
    max-height:150px;
}

.inner.eco-system .eco-content .coins .coin .coin-title {
    margin-top:16px;
}

.eco-dog {
    position: absolute;
    bottom: 8%;
    left: -7.5%;

    width:15%;
    height:auto;
}

/* =================================================================
ROADMAP
================================================================= */
.inner.roadmap {
    min-height:800px;
    height:auto;
	z-index: 2;
}

.inner.roadmap .swiper-wrapper {
    padding-bottom:80px;
}

.inner.roadmap .swiper-slide {
    text-align:center;
}

.swiper-navigation-wrap {
    position:relative;
    width: 300px;
    margin: auto;
    height: 80px;
}

.swiper-navigation-wrap .slidePrev-btn,
.swiper-navigation-wrap .slideNext-btn {
    position:absolute;
    top:0;
    cursor:pointer;
}

.swiper-navigation-wrap .slidePrev-btn {
    left:0;
}

.swiper-navigation-wrap .slideNext-btn {
    right:0;
}

.swiper-navigation-wrap .slidePrev-btn img,
.swiper-navigation-wrap .slideNext-btn img {
    max-width:50px;
    height:auto;
}

.swiper-navigation-wrap .swiper-button-disabled {
    opacity:0.4;
    cursor:no-drop;
}

.swiper.mySwiperRoadmap {
    padding-bottom:120px;
}

.roadmap-wrapper {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1400px;
    margin: auto;
    margin-bottom: 300px;
}

.roadmap-holder {
	width: 600px;
    padding: 1rem;
    margin-top: 3rem;
    height: fit-content;
	position: relative;
	background: #FFF;
	border-radius: 30px;
    padding-bottom: 10em;
}

.roadmap-holder .bottom-right-dog {
	height: 120px;
    position: absolute;
    right: 20px;
    bottom: -10px;
}

.roadmap-holder .bottom-right-dog-land {
	height: 250px;
    position: absolute;
    right: -30px;
    bottom: -10px;
}

.roadmap-holder .top-right-cloud {
	height: 100px;
    position: absolute;
    right: -30px;
    top: -20px;
}


.bottom-dog-underwater {
    height: 140px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.bottom-chest {
    height: 140px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.bottom-dog-bench {
	height: 140px;
    position: absolute;
    right: 10px;
    bottom: 66px;
    z-index: 3;
}

.bottom-bench {
    height: 140px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.bottom-bush {
    height: 100px;
    position: absolute;
    right: 323px;
    bottom: 0;
    z-index: 3;
}

.bottom-beach {
    position: absolute;
    bottom: 0;
    width: 110%;
    left: -35px;
}

.bottom-ball {
    height: 100px;
    position: absolute;
    left: 50px;
    bottom: 30px;
}

.bottom-parasol {
    height: 200px;
    position: absolute;
    right: -100px;
    bottom: 30px;
}

.bottom-right-podium {
	position: absolute;
    bottom: 0;
    height: 240px;
    right: 0;
}

.bottom-dog-goggles {
    position: absolute;
    bottom: 0;
    height: 140px;
    right: 20px;
    z-index: 5;
}	

.bottom-blocks {
    position: absolute;
    bottom: 0;
    height: 220px;
    right: 0;
    z-index: 1;
}

.bottom-right-dog-suit {
    position: absolute;
    right: 0;
    height: 240px;
    bottom: -20px;
}

.bottom-arcade {
    position: absolute;
    right: -40px;
    height: 100%;
    bottom: 0;
}

.bg-moon {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    height: 180px;
    width: 180px;
}

.bottom-left-moon {
    position: absolute;
    width: 100%;
    left: -40px;
    bottom: -30px;
}

.bottom-right-dog-rocket {
    height: 260px;
    position: absolute;
    right: -25px;
    bottom: -30px;
}

.bottom-phone {
    position: absolute;
    bottom: -10px;
    height: 300px;
    right: -10px;
}


.roadmap-holder:nth-child(even) {
    margin-top: 15rem;
}

.roadmap-text h4 {
    margin-top: 1rem;
}

.roadmap-holder .trail-image {
	position: absolute;
    width: 100%;
    left: 100%;
    z-index: 2;
}

.roadmap-holder:nth-child(even) .trail-image {
    left: unset;
    right: 100%;
    top: 80%;
}

.roadmap-holder:last-child .trail-image {
	display: none;
}


.roadmap-date-holder {
	position: relative;
}

.roadmap-date-holder img {
	width: 200px;
}

.roadmap-date-text {
	position: absolute;
    width: 200px;
    text-align: center;
    color: #FFF;
    top: 12px;
    font-size: 1.5rem;
}

.trail-image-mobile {
	display: none;
}

.roadmap-text {
    position: relative;
    z-index: 10;
}

.roadmap-date-holder img

{
    width: 250px;
}

.roadmap-date-holder .roadmap-date-text
{
    width: 250px;
    top: 17px;
}

.roadmap-text
{
    max-width: 60%;
}


@media(max-width: 1500px) {
	.roadmap-wrapper {
    width: 1000px;
	}
	
	.roadmap-holder {
	width: 400px;
		margin-top: 0;
	}
	
	.roadmap-holder:nth-child(even) {
		margin-top: 8.5rem;
	}
	
	.bottom-right-dog-rocket {
    height: 180px;
    right: -25px;
    bottom: -30px;
}
	
	.bottom-right-dog-suit {
		height: 200px;
	}
	
	.bottom-right-podium {
    bottom: 0;
    height: 160px;
    right: 0;
}
	
	.bottom-arcade {
		right: 0;
		height: 180px;
		bottom: 0;
	}
	
	.bottom-phone {
    bottom: 0;
    height: 210px;
    right: 0;
}
}

@media(max-width: 1200px) {
	.roadmap-wrapper {
    width: 900px;
	}
	
	.roadmap-holder {
	width: 400px;
	}
	
}


@media(max-width: 1050px) {
	.roadmap-wrapper {
    width: 100%;
	}
	
	.roadmap-holder {
	width: 100%;
		margin-top: 5rem;
	}
	
	.roadmap-holder:nth-child(even) {
		margin-top: 5rem;
	}
	
	.trail-image {
		display: none;
	}
	
		.trail-image-mobile {
		    display: block;
    position: absolute;
    z-index: 2;
    bottom: -70px;
    height: 80px;
    left: 35%;
	}
	.roadmap-holder:last-child .trail-image-mobile {
	display: none;
}
}

@media(max-width: 600px) { 
	.top-right-cloud {
		display: none;
	}
	
	.roadmap-holder .bottom-right-dog-land {
    height: 180px;
    right: 0;
    bottom: -20px;
}
	
	.roadmap-holder .bottom-right-dog {
		height: 80px;
	}
	
	.bottom-right-dog-rocket {
    height: 160px;
    right: 0;
    bottom: -30px;
	}
	
	.bottom-dog-goggles {
		
    height: 120px;
	}
	
	.bottom-blocks {
		height: 180px;
	}
	
	.bottom-parasol {
		height: 100px;
		right: 0;
		bottom: 30px;
	}

	.bottom-ball {
    height: 60px;
    bottom: 20px;
}
	
	.bottom-chest {
    height: 90px;`
	}
	
	.bottom-dog-underwater {
    height: 120px;
	}
	
	.bottom-bush {
    left: 0;
		right: unset;
	}
}


.hill-dog {
    width:15%;
    position:absolute;
    left:50%;
    bottom: 40px;
    transform:translateX(-50%);
	z-index: 5;
}

.roadmap-top {
	    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 1;
}

.roadmap-bottom {
	position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

/* =================================================================
MEET THE TEAM
================================================================= */

.inner.mtt .team {
	min-height: 210px;
}

.inner.mtt .team .team-member {

    display:flex;
    flex-direction:column;
    align-items:center;
	height: 100%;
    background-color:#fff;
    padding:16px;
    border-radius:10px;
    text-align:center;
    padding:16px;
}

.inner.mtt .team .team-member img {
    width:auto;
    max-height:100px;
    height:auto;
    margin-bottom:16px;
}

.inner.mtt .team .team-member h6 {
    margin-bottom:8px;
}


.mySwiperTeam .swiper-navigation-wrap {
    margin-top:40px;
}

.dog-walking {
      position: absolute;
      bottom: 4%;
      right:100%;
      z-index: 8;  
      animation: goRight 12s linear infinite 4s;
      width:15%;
  }
  
  @keyframes goRight {
      0% {
          transform: translateX(0);
      }
  
      100% {
          transform: translateX(135vw);
      }
  }

/* =================================================================
WHITEPAPER
================================================================= */
.inner.whitepaper {
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
	flex-direction: column;
}

	.inner.social-wall{
		padding-top: unset;
	}

/* =================================================================
POWERED BY
================================================================= */

.powered-by-section {
    width: 100%;
    padding-top: 200px;
}

.powered-by {
	display: flex;
}

.powered-by {
	flex: 1;
}

.powered-holder {
    width: 25%;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.powered-by img {
	width: 100%;
}



/* =================================================================
NEWS
================================================================= */
.posts.archive {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.posts.archive .post {
    width:32%;
}

.posts .post {
    background-color:#fff;
    border-radius:10px;
    margin-bottom:24px;
}

.posts .post a {
    text-decoration:none;
    color:var(--font-color);
}

.posts .post .post-img {
    width:100%;
    height:250px;
}

.posts .post .post-img img {
    object-fit:cover;
    height:100%;
    width:100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.posts .post .post-content {
    padding:32px;
}

.posts .post .post-content .post-title {
    margin-bottom:8px;
    font-size:1.8rem;
}

.posts .post .post-content .post-date {
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.mySwiperNews .swiper-navigation-wrap {
    margin-top:40px;
}

.cta {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:32px;
    padding-top:120px;
	position: relative;
	z-index: 10;
}

.cta .sitelogo img {
    max-width:400px;
    width:100%;
    height:auto;
}

.cta .socials {
    width:fit-content;
    margin-top:0;
}

.cta .socials a img {
    width:40px;
}

.cta .cta-button {
    width:100%;
    text-align:center;
}

.water-dog {
    width:15%;
    height:auto;
    position:absolute;
    left:0;
    bottom:2.8%;
}

/* =================================================================
PAGINATION
================================================================= */
.pagination {
    width:100%;
    margin-top:20px;
    display:flex;
    gap:16px;
}

.pagination .page-numbers {
    background: #fed743;
    display: inline-block;
    position: relative;
    text-align: center;
    font-family:var(--font-family-2);
    font-size: 1rem;
    padding: 20px;
    text-decoration: none;
    color: white;
    box-shadow: inset -4px -4px 0px 0px #feff73;
}

.pagination .page-numbers:hover, .pagination .page-numbers:focus {
    background: #f9cd2c;
    box-shadow: inset -4px -4px 0px 0px #feff73;
  }
  .pagination .page-numbers :active {
    box-shadow: inset 4px 4px 0px 0px #feff73;
  }
  .pagination .page-numbers:before, .pagination .page-numbers:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
  }
  .pagination .page-numbers:before {
    top: -4px;
    left: 0;
    border-top: 4px black solid;
    border-bottom: 4px black solid;
  }
  .pagination .page-numbers:after {
    left: -4px;
    top: 0;
    border-left: 4px black solid;
    border-right: 4px black solid;
  }

  .pagination .page-numbers.current {
    background: #000000;
    box-shadow: inset -4px -4px 0px 0px #343434;
  }

  .pagination .page-numbers.current:hover, .pagination .page-numbers.current:focus {
    background: #343434;
    box-shadow: inset -4px -4px 0px 0px #2e2e2e;
  }

  .pagination .page-numbers.current:active {
    box-shadow: inset 4px 4px 0px 0px #2e2e2e;
  }


/* =================================================================
SINGLE POST
================================================================= */
.single-post .post-image {
    width:100%;
    height:450px;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}

.single-post .post-image img {
    object-fit:cover;
    height:100%;
    width:100%;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}

.post-date {
    border-bottom:4px solid var(--font-color);
    padding-bottom:16px;
    width:fit-content;   
}

.post-content {
    background-color:#fff;
    padding:40px;
    border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
}

/* =================================================================
MOBILE
================================================================= */
@media only screen and (max-width: 1041px) {
	
	.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
		padding:10px 10px 80px 10px;
	}
    .container {
        background-size: contain;
    }
    .vines:after {
    	background-size: cover;
    	background-position: center;
	}

    .under-sand:after {
        height:10px;
    }

    .container,
    .inner {
        min-height:850px;
    }

    .full-height {
        min-height:calc(100vh - 80px) !important;
    }

    .full-height .inner {
        padding-top:60px;
    }

    /* navigation */
    .main-navigation {
        display:none;
    }

    .logo-holder {
        padding:16px 0;
    }

    .nav-buttons {
        position:fixed;
        bottom:0;
        left:0;
        z-index:99;
    }
    .nav-buttons.mobile {
        display:flex;
        width: 100%;
    }
    .nav-buttons.mobile .eightbit-btn.small {
        width:50%;
    }
    .nav-buttons.desktop {
        display:none;
    }

    /* hero */
    .hero-gif.desktop {
        width:100%;
        bottom:1.7%;
    }

    .hero-content {
        flex-direction:column;
        gap:0px;
        align-items:center;
    }

    .hero-content .logo-holder {
        text-align:center;
    }

    /* about */
    .inner.about {
        flex-direction:column;
        text-align:center;
        min-height: 850px;
        height: auto;
    }

    .inner .about-content  {
        width:100%;
    }

    .inner .tamadoge-island {
        width:50%;
		margin-top:150px;
    }
	
	.about-content ul li {
		flex-direction:column;
		flex-wrap:wrap;
		text-align:center;
		justify-content:center;
	}

	
	
	.inner.about .solid-proof {
		margin:auto;
	}

    .socials {
        justify-content:center;
    }

    /* eco-system */
    .inner.eco-system {
        flex-direction:column;
        text-align:center;
        min-height: 100vh;
        height: auto;
    }

    .inner.eco-system .eco-content .content,
    .inner.eco-system .eco-content .coins  {
        width:100%;
    }

    .eco-dog {
        bottom:2.8%;
        left: 0;
    }

    .section-title {
        margin-bottom:0;
    }


    /* meet the team */
    .dog-walking {
        bottom: 1.5%;
    }

    /* news */
    .water-dog {
        bottom:0.8%;
    }

    .cta {
        padding-top:40px;
    }

    .posts.archive .post {
        width:49%;
        margin-bottom:24px;
    }
    .eightbit-btn.small {
        margin-bottom:24px;
      }
}

@media only screen and (max-width: 769px) {
	
	.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul {
		flex-wrap:wrap;
	}
	
    h1 {
        font-size:3rem;
    }
    
    h2 {
        font-size:2.75rem;  
    }
    
    h3 {
        font-size:2.25rem;
    }
    
    h4 {
        font-size:1.725rem;  
    }
    
    h5 {
        font-size:1.2rem;
    }
    
    h6 {
        font-size:1.1rem;  
    }

    .container {
        background-size: 100%;
    } 

    .hero-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-01-1.png);
    }
	
	.powered-holder {
		width: 100%;
		padding: unset;
	}
    
    .about-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-02.png);
    }
    
    .eco-system-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-03.png);
    }
    
    .roadmap-section {
        /*background-image:url(../../../../uploads/2022/07/mobile_Fold-04.png);*/
    }
    
    .mtt-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-05.png);
    }
    
    .whitepaper-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-06.png);
   
    }
	
	.hill-dog {
   	 	min-width: 150px;
    	bottom: 35px;
	}
	
	.powered-by-section {
		padding-top: 100px;
	}
    
    .news-section {
        background-image:url(../../../../uploads/2022/07/mobile_Fold-07.png);
    }
	
	.about-content {
		    flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	
	.about-content .left-column, .about-content .right-column {
		width: 90%;
		max-width: 350px;
	}
	

	
	.about-content .right-column {
		margin-top: 40px;
	}

    .under-sand:after {
        height:20px;
    }
	


    /* hero */
    .hero-gif.desktop {
        display:none;
    }
    .hero-gif.mobile {
        display:block !important;
    }
    .hero-content {
            flex-direction:column;
            gap:0px;
            top:70px;
            align-items:center;
        }
    
        .hero-content .countdown-buy .countdown-content .countdown-timer {
        font-family:var(--font-family-2);
        font-size: 1.3rem;
      
    }

    /* about */
    .inner .tamadoge-island {
        margin-top:100px;
        width:70%;
    }

    .socials {
        gap:16px;
        justify-content:center;
    }

    .socials a img {
        width:60px;
    }
	
	/* featured in */
	
	.featured-quote-wrapper {
    	flex-direction: column;
	}
	
	.powered-by {
		flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	
	.powered-by img {
    max-width: 200px;
    padding: 2rem 0;
}

    /* eco-system */
    .eco-dog {
        bottom:60px;
        width:30%;
    }

    .inner.eco-system .eco-content .coins {
        gap:0 32px;
    }

    .inner.eco-system .eco-content .coins .coin .coin-img {
        max-height:100px;
    }


    /* meet the team */
    .dog-walking {
        bottom: 30px;
        width: 30%;
        animation: goRight 8s linear infinite 4s;
    }

    /* news */

    .posts .post {
        width:100%;
    }

    .water-dog {
        bottom: 20px;
        width: 30%;
    }

    .posts.archive .post {
        width:100%;
        margin-bottom:24px;
    }
}

@media only screen and (max-width: 540px) {
	
	html[lang="tr-TR"] .countdown-buy .eightbit-btn, 
	html[lang="tr-TR"] .cta-button .eightbit-btn
	
	{
    margin: 0.5rem !important;
    padding: 14px !important;
}
	
		.hill-dog {
    bottom: 25px;
	}
	
	
	.logo-holder h1 {
    font-size: 2.4rem !important;
	}
	
	h4 {
    font-size: 1.425rem;
}
	
	.text-price {
    font-size: 1.1rem;
}
	
	.eightbit-btn {
    font-size: 1.6rem;
	}
	
}