*{
margin:0;
padding:0;
box-sizing:border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

img{
max-width:100%;
height:auto;
}

/*---------------------- Header Css ----------------------*/

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:99;
background:transparent;
text-align:center;
transition: transform 0.4s ease;
}

.main-header.hide {
    transform: translateY(-100%);
}

.inner-div {
width: 915px;
margin: auto;
}

.header-top{
display:flex;
align-items:center;
justify-content:space-between;
}

.left-logo {
position: relative;
top: 3px;
left: 3px;
}

.left-logo img{
width:92px;
max-width:100%;
height:auto;
display:block;
}

.right-icons img{
width:100px;
max-width:100%;
height:auto;
display:block;
}

.header-bottom {
display: flex;
justify-content: center;
}

.mobile-left-logo {
display: none;
}

.header-btn{
    margin-top: 4px;
    opacity: 0;
    transform: scale(0.8);
}

.header-btn.show {
    opacity: 1;
    animation: btnPulseWithPause 4s ease-in-out infinite;
}

/* Pulse animation (2 times feel in 2s loop) */
@keyframes btnPulseWithPause {

  /* First pulse */
  0%   { transform: scale(1); }
  10%  { transform: scale(1.08); }
  20%  { transform: scale(1); }

  /* Second pulse */
  30%  { transform: scale(1.08); }
  40%  { transform: scale(1); }

  /* ⏸ Pause (no movement) */
  40%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.mobile-right-icons {
display: none;
}

.hamburger{
width: 47px;
height: 47px;
border-radius: 50%;
position: absolute;
right: 15px;
cursor: pointer;
background-color: #3d9be9;
margin: 26px 0 16px;
z-index:10001;
display: none;
}

.hamburger span{
position: absolute;
left: 23%;
margin-top: 28%;
width: 55%;
height: 2.1px;
background: #FFF;
transition: 0.4s;
pointer-events:none;
transform:translateZ(0);
}

/* line positions */

.hamburger span:nth-child(1){
top:0;
}

.hamburger span:nth-child(2){
top:10px;
}

.hamburger span:nth-child(3){
top:10px;
}

.hamburger span:nth-child(4){
top:20px;
}


/* splitting lines */

.hamburger span:nth-child(1)::before,
.hamburger span:nth-child(1)::after,
.hamburger span:nth-child(4)::before,
.hamburger span:nth-child(4)::after{
content:"";
position:absolute;
width:50%;
height:100%;
background:#FFF;
transition:0.4s;
}

.hamburger span:nth-child(1)::before,
.hamburger span:nth-child(4)::before{
left:0;
}

.hamburger span:nth-child(1)::after,
.hamburger span:nth-child(4)::after{
right:0;
}

/* hide original line */
.hamburger span:nth-child(1),
.hamburger span:nth-child(4){
background:transparent;
}

/* ACTIVE */

.hamburger.active {
    background:#f37b00;
}

.hamburger.active span:nth-child(1)::before,
.hamburger.active span:nth-child(4)::before{
transform:translateX(-120%);
opacity:0;
}

.hamburger.active span:nth-child(1)::after,
.hamburger.active span:nth-child(4)::after{
transform:translateX(120%);
opacity:0;
}

.hamburger.active span:nth-child(2){
transform:rotate(45deg);
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg);
}

.mobile-drawer-img img {
max-width:100%;
height:auto;
margin: 13px 0 5px 9px;
width: 63px;
}

.mobile-drawer {
    display: none;
}

.mobile-drawer{
position:fixed;
top:-150%;
left:0;
width:100%;
height:100vh;
background:#2a4e7f;
transition:0.4s;
text-align:center;
z-index: 100;
}

.mobile-drawer.active{
top:0;
}

.mobile-drawer ul{
list-style:none;
padding:0;
margin: 0;
}

.mobile-drawer li{
font-family: 'Rammetto One', cursive;
color:white;
font-size:18px;
padding:16px 0 0;
font-weight:500;
width: 100%;
transition: background 0.3s ease;
}

.mobile-drawer li.active{
background:#79b5ce;
padding:6px 0;
margin-top: 10px;
}

.mobile-drawer li a{
display: block;
width: 100%;
text-decoration: none;
color: white;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){

    .inner-div{
    width:100%;
    }
    
    .header-top {
    margin: 0 20px 0 20px;
    }
    
    .center-logo img{
    width:345px;
    }
    
    .left-logo {
    position: relative;
    top: 2px;
    left: 14px;
    }
    
    .left-logo img{
    width:72px;
    }
    
    .right-icons img{
    width:78px;
    }
    
    .header-btn {
    margin-top: 2px;
    padding-bottom: 3px;
    }
    
    .header-btn img{
    width:146px;
    }

}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .main-header {
        position: absolute;
    }
    
    .header-top {
    justify-content: center;
    margin: 0;
    margin-right: 15px;
    }
    
    .center-logo{
    margin:15px 0 8px;
    text-align:center;
    }
    
    .center-logo img{
    width:68vw;
    max-width:300px;
    height:auto;
    }
    
    
    .left-logo,
    .right-icons {
    display: none;
    }
    
    .hamburger {
    display: block;
    }
    
    .header-bottom {
    justify-content: space-between;
    width: 93%;
    margin: auto;
    }
    
    .mobile-left-logo,
    .mobile-right-icons {
    display: block;
    }
    
    .mobile-left-logo{
    margin:8px 0 15px;
    }
    
    .mobile-left-logo img{
    width:12vw;
    max-width:55px;
    height:auto;
    }
    
    .header-btn {
    margin-top: 1px;
    }
    
    .header-btn img{
    width:44vw;
    max-width:200px;
    height:auto;
    }
    
    .mobile-right-icons img{
    width:14vw;
    max-width:70px;
    height:auto;
    }
    
    .mobile-drawer {
        display: block;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    
    .hamburger{
    width: 12.6vw;
    height: 12.6vw;
    }
    
    .hamburger span{
    left: 23%;
    margin-top: 28%;
    }
    
    .mobile-drawer{
    top:125%;
    }
}

/*---------------------- Home Page Fix Popup All Css ----------------------*/

.popup {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 310px;
    z-index: 98 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3E9BE9;
    box-shadow: 0.00px 7.00px 0px 0px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
}

@keyframes popupTapEffect {

  0% {
    transform: translateY(0) scale(0.2) rotateX(30deg);
    opacity: 0;
  }

  30% {
    transform: translateY(0) scale(1.10) rotateX(0deg);
    opacity: 1;
  }

  45% {
    transform: scale(0.9) rotateX(-18deg);
  }

  55% {
    transform: scale(1.10) rotateX(5deg);
  }

  70% {
    transform: scale(0.9) rotateX(-10deg);
  }

  100% {
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.popup.show {
    visibility: visible;
    opacity: 1 !important;
    animation: popupTapEffect 1.8s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}

.promo-heading {
    font-family: 'Rammetto One', cursive;
    text-align: center;
    font-size: 18px;
    color: white;
    line-height: 1.4;
    margin-top: 13px;
}

.promo-img-wrap {
    display: flex;
    margin-bottom: 6px;
    overflow: visible;
    margin-top: -8px;
}

.promo-img-wrap img:nth-of-type(1) {
    width: 112px;
    margin: 5px 0 14px;
    margin-left: -8px;
    position: relative;
    z-index: 8;
}

.promo-img-wrap img:nth-of-type(2) {
    min-width: 74px !important;
    height: 73px;
    margin: 18px 0 0px;
    margin-left: -39px;
    position: relative;
    z-index: 6;
}

.promo-img-wrap img:nth-of-type(3) {
    min-width: 64px !important;
    height: 69px;
    margin-top: 2px;
    margin-left: -8px;
}

.promo-img-wrap img:nth-of-type(4) {
    width: 79px;
    height: 54px;
    margin-top: 38px;
    margin-left: -14px;
}

.promo-img-wrap img:nth-of-type(5) {
    width: 87px;
    height: 82px;
    position: relative;
    margin-left: -27px;
}

.promo-play-btn {
    margin-bottom: 10px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .popup {
        width: 245px;
        top: 10px;
        right: 10px;
        border-radius: 15px;
    }
    
    .promo-heading {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .promo-img-wrap {
        margin-bottom: 0;
        margin-top: -4px;
    }
    
    .promo-img-wrap img:nth-of-type(1) {
        width: 86px;
        height: 62px;
        margin-left: -5px;
    }
    
    .promo-img-wrap img:nth-of-type(2) {
        min-width: 59px !important;
        height: 58px;
        margin-left: -30px;
    }
    
    .promo-img-wrap img:nth-of-type(3) {
        min-width: 50px !important;
        height: 58px;
    }
    
    .promo-img-wrap img:nth-of-type(4) {
        width: 62px;
        height: 45px;
        margin-top: 32px;
    }
    
    .promo-img-wrap img:nth-of-type(5) {
        width: 73px;
        height: 68px;
        margin-left: -22px;
    }
    
    .promo-play-btn {
        margin-bottom: 5px;
    }
    
    .promo-play-btn img {
        width: 19vw;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    .popup {
        display: none;
    }
}


/*---------------------- Home Page All Css ----------------------*/

/*Home Page First Section*/

.header-bg {
    background-color: #0F4075;
    height: 190px;
    width: 100%;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    .header-bg {
        height: 150px;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    .header-bg {
        height: 41vw;
    }
}

/*Home Page Second Section*/

.only-design-bg {
    background-image: url('../images/section-banner.png');
    width: 100%;
    height: 105px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    .only-design-bg {
        height: 80px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    .only-design-bg {
        height: 75px;
    }
}


/*Home Page Third Section*/

.first-imgbg-section {
    background-image: url(../images/background_wonderman_full.jpg);
    background-position: center;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
}

.info-card-wrap {
    display: flex;
    margin-top: -95px;
    margin-right: 73px;
}

.first-imgbg-section .info-card:nth-of-type(1) svg {
    height: 123px;
    margin-right: 13px;
    margin-top: 2px;
}

.first-imgbg-section .info-card:nth-of-type(2) svg {
    margin-right: 12px;
    height: 120px;
    width: 281px;
}

.first-imgbg-section .info-card:nth-of-type(3) svg {
    height: 120px;
    width: 239px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .first-imgbg-section {
        background-image: url(../images/background_wonderman.jpg);
        height: 510px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    
    .info-card-wrap {
        margin-top: -72px;
        margin-right: 60px;
    }
    
    .first-imgbg-section .info-card:nth-of-type(1) svg {
        height: 96px;
        width: 240px;
        margin-right: 8px;
        margin-top: 1px;
    }
    
    .first-imgbg-section .info-card:nth-of-type(2) svg {
        margin-right: 6px;
        height: 92px;
        width: 225px;
    }
    
    .first-imgbg-section .info-card:nth-of-type(3) svg {
        height: 92px;
        width: 186px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    .first-imgbg-section {
        background-image: url(../images/background_wonderman_mobile.jpg);
        height: 371px;
        background-size: cover;
        position: relative;
    }
    
    .info-card-wrap {
        gap: 2px;
        position: absolute;
        top: 35px;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: -70px;
    }
    
    .info-card svg {
        height: 14vw !important;
        width: auto !important;
        margin: 0 !important;
    }
}

/*Home Page Fourth Section*/

.trailer-section {
    background-color: #42166f;
    padding-bottom: 57px;
}

.ts-heading {
    text-align: center;
}

.ts-heading img {
    margin-top: -40px;
}

.ts-video {
    width: 980px;
    height: 571px;
    padding: 18px;
    background-color: #9430fd;
    border-radius: 20px;
    margin: auto;
    box-shadow: 0.00px 7.00px 0px 0px rgba(0, 0, 0, 0.4);
    margin-top: -16px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    .ts-video {
        width: 100%;
        height: 46vh;
        padding: 15px;
    }
    
    .ts-heading img {
        margin-top: -35px;
        width: 26vw;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .ts-heading img {
        margin-top: -16px;
        width: 50vw;
        height: auto;
        position: relative;
    }
    
    .ts-video {
        width: 88.6vw;
        height: 27vh;
        margin-top: -12px;
    }
}

/*Home Page Fifth Section*/

.game-news-section {
    background-color: #42166f;
    padding-bottom: 60px;
}

.game-news-section a {
    text-decoration: none;
}

.gn-heading {
    text-align: center;
}

.gn-heading img {
    position: relative;
    margin-top: -34px;
}

.gn-wrap {
    width: 947px;
    margin: auto;
    background-color: #000;
    padding: 4px;
    border-radius: 22px;
    overflow: hidden;
    margin-top: -34px;
}

.gn-seasoning-wrap {
    display: flex;
    gap: 0;
}

.gn-seasoning-1,
.gn-seasoning-2,
.gn-seasoning-3 {
    flex:1;
}

.gn-seasoning-1 {
    background-color: #FAA92E;
    border-radius: 20px 0 0 0;
}

.gn-seasoning-2{
    background-color: #7CD2EE;
}

.gn-seasoning-2 .gn-seasoning-1-data {
    margin-bottom: 27px !important;
}

.gn-seasoning-3{
    background-color: #BADA55;
    border-radius: 0 20px 0 0;
}

.season-main-heading {
    font-size: 25px;
    font-family: 'Rammetto One', cursive;
    color: white;
    text-align: center;
    margin: 20px 0 0px;
    font-weight: 500;
}

.season-sub-heading {
    color: #104075;
    font-size: 25px;
    font-family: 'Baloo Paaji 2', cursive;
    text-align: center;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: 900;
}

.season-info {
    display: flex;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.season-info svg {
    fill: #4CAF50;
    width: 20px;
    height: 20px;
}

.season-info h5 {
    font-size: 20px;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    padding: 7px 0;
}

.link-text {
    background-color: #4D1489;
}

.link-text h5 {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #F6DB13;
    text-align: center;
    text-decoration: underline;
    padding: 15px 0 9px;
}

.gn-svg-box {
    display: flex;
    justify-content: center;
}

.gn-svg-box svg {
    fill: #4D1489;
    width: 57px;
    display: block;
    overflow: visible;
}

.gn-seasoning-1-data {
        padding: 0 12px 0 17px;
    margin-top: -30px;
}

.gn-seasoning-1-data.other-data {
    padding: 20px 10px 0;
    margin: 0;
}

.gn-seasoning-1-data h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #324158;
}

.gn-seasoning-1-data h5 span {
    display: block;
}

.gn-seasoning-1-data h5 .space {
    height: 24px;
}

.gn-seasoning-1-data a {
    color: #104075;
    text-decoration: underline !important;
}

.gn-heading-btn {
    background-color: #9430fd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-left: 75px;
    padding-bottom: 3px;
}

.gn-heading-btn p,
.gn-heading-social-btn p {
    font-size: 30px;
    color: #FFF;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
}

.gn-heading-btn a {
    display: flex;
}

.gn-heading-social-btn {
    background-color: #9430fd;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.gn-heading-social-btn p {
    padding: 16px 0 0;
}

.gn-bottom-img {
    margin-bottom: -4px;
}

.gn-heading-social-btn svg {
    width: 741px;
    margin-bottom: 10px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .game-news-section {
        padding: 0 12px 45px;
    }
    
    .gn-heading img {
        width: 26vw;
    }
    
    .gn-wrap {
        width: 100%;
        margin-top: -26px;
    }
    
    .season-main-heading {
        font-size: 20px;
        margin-top: 16px !important;
    }
    
    .season-sub-heading {
        font-size: 20px;
    }
    
    .season-info h5 {
        font-size: 15px;
        padding: 3px 0 7px;
    }
    
    .season-info svg {
        width: 15px;
        height: 15px;
        margin-bottom: 4px;
    }
    
    .link-text h5 {
        font-size: 13px;
        padding: 9px 0;
    }
    
    .gn-seasoning-1-data h5 {
        font-size: 12px;
        font-weight: 700;
    }
    
    .gn-seasoning-1-data.other-data {
        padding: 15px 11px 0;
    }
    
    .gn-heading-btn {
        padding-left: 65px;
    }
    
    .gn-heading-btn p, .gn-heading-social-btn p {
        font-size: 24px;
    }
    
    .gn-heading-btn img {
        width: 52px;
    }
    
    .gn-heading-social-btn p {
        padding: 8px 0 0px;
    }
    
    .gn-heading-social-btn svg {
        width: 580px;
        margin-bottom: 8px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .game-news-section {
        padding: 0 0 40px;
    }
    
    .gn-heading img {
        width: 56vw;
        height: auto;
        margin-top: -30px;
    }
    
    .gn-wrap {
        width: 90vw;
        margin-top: -58px;
        padding: 5px;
        border-radius: 26px;
    }
    
    .gn-seasoning-wrap {
        flex-direction: column;
    }
    
    .gn-seasoning-1 {
        border-radius: 20px 20px 0 0;
    }
    
    .gn-seasoning-1 .season-main-heading {
        margin-top: 45px !important;
    }
    
    .gn-seasoning-3 {
        border-radius: 0;
    }
    
    .season-main-heading {
        font-size: 23px;
    }
    
    .season-sub-heading {
        font-size: 22px;
        margin-bottom: 5px;
    }
    
    .season-info h5 {
        padding: 5px 0 0;
        font-size: 18px;
        line-height: 1;
    }
    
    .gn-seasoning-1-data h5 {
        font-size: 14px;
    }
    
    .gn-seasoning-1-data.other-data {
        padding: 0 22px 18px 10px !important;
        margin: 0 !important;
    }
    
    .gn-seasoning-2 .season-info,
    .gn-seasoning-3 .season-info {
        display: none;
    }
    
    .gn-seasoning-1-data {
        margin-top: 0;
        padding: 5px 10px 17px !important;
    }
    
    .gn-heading-btn {
        padding: 0;
    }
    
    .gn-svg-box {
        display: none;
    }
    
    .gn-heading-btn p, .gn-heading-social-btn p {
        font-size: 18px;
    }
    
    .gn-heading-btn img {
        width: 40px;
        margin: 12px 0;
    }
    
    .gn-heading-social-btn p {
        padding: 15px 0 8px;
    }
    
    .gn-heading-social-btn svg {
        width: 84vw;
    }
}

/*Home Page Sixth Section*/

.breed-section {
    background-color: #faa92e;
    padding-bottom: 40px;
}

.bs-heading,
.bs-wrap {
    text-align: center;
}

.bs-heading img {
    margin-top: -12px;
}

.bs-text-heading {
    font-family: 'Rammetto One', cursive;
    font-size: clamp(18px, 4.2vw, 40px);
    color: #FFF;
    line-height: 1.4em;
}

.bs-data {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 30px;
    color: #0D355D;
    font-weight: 800;
    margin-bottom: 13px;
}

.bs-wrap p:first-child {
    margin-bottom: 18px;
}

.birds-row-1 {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.birds-row-1 img:nth-of-type(3) {
    height: 152px;
    margin-top: 20px;
}

.birds-row-1 img:nth-of-type(4) {
    height: 115px;
    margin-top: 48px;
}

.birds-row-2 {
    margin-bottom: 32px;
}

.birds-row-2 img:nth-of-type(1) {
    margin-right: 20px;
}

.birds-row-2 img:nth-of-type(2) {
    margin-top: -12px;
}

.birds-row-2 img:nth-of-type(4) {
    margin-left: 20px;
}

.birds-row-2 img:nth-of-type(5) {
    margin-left: 20px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .breed-section {
        padding-bottom: 30px;
    }
    
    .bs-heading img {
        width: 26vw;
    }
    
    
    .birds-row-1 {
        gap: 50px;
    }
    
    .bs-wrap p:first-child {
        margin-bottom: 12px;
    }
    
    .birds-row-1 img:nth-of-type(1) {
        width: 16vw;
    }
    
    .birds-row-1 img:nth-of-type(2) {
        width: 18vw;
    }
    
    .birds-row-1 img:nth-of-type(3) {
        width: 13.5vw;
        height: 11.9vh;
    }
    
    .birds-row-1 img:nth-of-type(4) {
        width: 15vw;
        height: 8.7vh;
    }
    
    .birds-row-2 {
        margin-bottom: 25px;
    }
    
    .birds-row-2 img:nth-of-type(1) {
        width: 14vw;
    }
    
    .birds-row-2 img:nth-of-type(2) {
        width: 24vw;
    }
    
    .birds-row-2 img:nth-of-type(3) {
        width: 16vw;
    }
    
    .birds-row-2 img:nth-of-type(4) {
        width: 20vw;
    }
    
    .birds-row-2 img:nth-of-type(5) {
        width: 16vw;
        margin-left: 15px;
    }
    
    .bs-data {
        font-size: 24px;
    }
    
    .bs-wrap a img {
        width: 38vw;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .bs-heading img {
        width: 57vw;
        margin-top: -17px;
    }
    
    .bs-text-heading {
        margin: 0;
        margin-top: -6px;
        margin-bottom: 9px;
    }
    
    .bs-wrap p:first-child {
        margin-bottom: 0;
    }
    
    .birds-row-1 {
        gap: 0;
    }
    
    .birds-row-1 img:nth-of-type(1) {
        width: 19vw;
        height: 21vw;
        margin-top: 5px;
    }
    
    .birds-row-1 img:nth-of-type(2) {
        width: 23vw;
        height: 23vw;
        margin-top: -14px;
    }
    
    .birds-row-1 img:nth-of-type(3) {
        width: 16.5vw;
        height: 19.6vw;
        margin-top: 10px;
    }
    
    .birds-row-1 img:nth-of-type(4) {
        width: 18vw;
        height: 14.5vw;
        margin-top: 25px;
        margin-left: 10px;
    }
    
    .birds-row-2 {
        margin-top: -26px;
        margin-bottom: 10px;
    }
    
    .birds-row-2 img:nth-of-type(1) {
        width: 18vw;
    }
    
    .birds-row-2 img:nth-of-type(2) {
        width: 32vw;
        margin: 0;
        margin-left: -44px;
        position: relative;
        z-index: 2;
    }
    
    .birds-row-2 img:nth-of-type(3) {
        width: 20vw;
        margin-left: -30px;
    }
    
    .birds-row-2 img:nth-of-type(4) {
        width: 26vw;
        margin-left: -14px;
    }
    
    .birds-row-2 img:nth-of-type(5) {
        width: 22vw;
        margin-left: -30px;
        margin-bottom: -5px;
    }
    
    .bs-data {
        font-size: 14px;
        padding: 0 25px;
        line-height: 1.4;
    }
    
    .bs-wrap a img {
        width: 80vw;
    }
}


/*Home Page Seven Section*/

.battel-section {
background-image: url('../images/background_forest_battle.jpg');
background-position: center;
width: 100%;
height: 581px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-bottom: 70px;
}

.btels-heading {
    text-align: center;
}

.btels-heading img {
    margin-top: -13px;
}

.btels-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items:flex-end;
}

.btels-wrap img:nth-of-type(2) {
    width: 273px;
    height: 301px;
}

.btels-wrap img:nth-of-type(3) {
    width: 273px;
    height: 317px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .battel-section {
        background-image: url('../images/background_forest_battle_tablet.jpg');
        height: 44vh;
        background-size: cover;
        padding-bottom: 54px;
    }
    
    .btels-heading img {
        margin-top: -9px;
        width: 26vw;
    }
    
    .btels-wrap {
        gap: 23px;
    }
    
    .btels-wrap img {
        width: 28vw !important;
        height: auto !important;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .battel-section {
        background-image: url('../images/background_forest_battle_mobile.jpg');
        height: 460px;
        padding-bottom: 45px;
    }
    
    .btels-heading img {
        width: 57vw;
    }
    
    .btels-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        justify-items: center;
        align-items: center;
    }
    
    .btels-wrap img {
        width: 32vw !important;
    }
    
    .btels-wrap img:nth-of-type(1) {
        grid-area: 1 / 1 / 2 / 3;
    }
    
    .btels-wrap img:nth-of-type(2) {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    .btels-wrap img:nth-of-type(3) {
        grid-area: 2 / 2 / 3 / 3;
    }
}

/*Home Page Eigth Section*/


.discover-section{
position:relative;
width:100%;
/*min-height:100vh;*/

/* background */
background-image:url('../images/background_space_01.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed; /* parallax effect */

display:flex;
flex-direction: column;
align-items:center;
justify-content:center;
}


.discover-title img{
margin-top:-20px;
}

.discover-content{
display:flex;
padding: 20px 0 38px;
}

/* left image */

.discover-left {
width: 238px;
height: 300px;
rotate: 15deg;
margin-top: -12px;
}

/* right image */

.discover-right {
width:328px;
height:auto;
margin-left: -25px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){

    .discover-title img{
    width: 26vw;
    margin-top: -16px;
    }
    
    .discover-content {
    margin-right: 80px;
    padding: 20px 0 30px;
    }
    
    .discover-left {
    width: 200px;
    height: 250px;
    margin-top: -18px;
    }
    
    .discover-right {
    width:254px;
    }

}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){

    .discover-section{
    background-attachment:scroll;
    }
    
    .discover-content{
    margin: 0;
    padding: 0 0 31px;
    }
    
    .discover-title img{
    width: 57vw;
    }
    
    .discover-left {
    width: 40vw;
    height: 186px;
    }
    
    .discover-right {
    width: 50.9vw;
    margin-top: 56px;
    margin-left: -62px;
    z-index: 2;
    }

}

/*Home Page Nine Section*/

.earn-section {
    background-image: url(../images/background_forest_about_page.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 67px;
}

.es-heading img {
    margin-top: -20px;
    position: relative;
}

.es-wrap {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .es-heading img {
        width: 26vw;
        margin-top: -16px;
    }
    
    .es-wrap {
        gap: 45px;
    }
    
    .es-wrap img {
        width: 25vw;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .earn-section {
        padding-bottom: 22px;
    }
    
    .es-heading img {
        width: 57vw;
        margin-top: -19px;
    }
    
    .es-wrap {
        gap: 10px;
        margin: 0;
    }
    
    .es-wrap img {
        width: 29vw;
    }
}


/*Home Page Tenth Section*/


.universe-section{
position:relative;
width:100%;

/* background */
background-image:url('../images/background_space_01.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed; /* parallax effect */

display:flex;
flex-direction: column;
align-items:center;
justify-content:center;
padding: 68px 0 55px;
}

.universe-wrap {
    text-align: center;
}

.universe-wrap p {
    font-family: 'Rammetto One', cursive;
    font-size: 40px;
    color: #FAA92E;
}

.universe-wrap img {
    margin-top: 20px;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .universe-section {
        padding: 50px 0 45px;
    }
    
    .universe-wrap p {
        font-size: 32px;
    }
    
    .universe-wrap img {
        width: 62vw;
        margin-top: 15px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .universe-section {
        background-attachment: scroll;
        padding: 20px 0 30px;
    }
    
    .universe-wrap p {
        font-size: 22px;
        padding: 0 35px;
    }
    
    .universe-wrap img {
        width: 88vw;
        margin-top: 10px;
    }
}

/*Home Page Eleven Section*/

.investors-section {
    background-color: #171D33;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 42px;
}

.investors-title img {
    margin-top: -22px;
    position: relative;
}

.investors-wrap {
    text-align: center;
}

.investors-wrap p {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 30px;
    color: #9430FD;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 22px;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .investors-title img {
        margin-top: -18px;
        width: 26vw;
    }
    
    .investors-wrap p {
        font-size: 26px;
    }
    
    .investors-wrap img {
        width: 82vw;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .investors-section {
        padding-bottom: 30px;
    }
    
    .investors-title img {
        width: 57vw;
    }
    
    .investors-wrap p {
        font-size: 25px;
        margin-top: -4px;
        margin-bottom: 10px;
    }
    
    .investors-wrap img {
        width: 94vw;
    }
}


/*Home Page Twelth Section*/

.token-section{
position:relative;
width:100%;

/* background */
background-image:url('../images/background_space_01.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed; /* parallax effect */

display:flex;
flex-direction: column;
align-items:center;
justify-content:center;
padding: 42px 0 43px;
}

.token-content p {
    font-family: 'Rammetto One', cursive;
    font-size: 40px;
    color: #ECCF10;
    text-align: center;
    margin-bottom: 25px;
}

.token-wrap {
    display: flex;
    gap: 18px;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .token-section {
        padding: 28px 0 40px;
    }
    
    .token-content p {
        font-size: 31.5px;
    }
    
    .token-wrap {
        gap: 15px;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .token-section {
        padding: 20px 0 23px;
    }
    
    .token-content p {
        font-size: 23px;
        margin-bottom: 6px;
        padding: 0 15px;
    }
    
    .token-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        padding: 0px 35px;
        grid-column-gap: 24px;
        grid-row-gap: 14px;
    }
}

/*Home Page Thirteen Section*/

.developed-on-section {
    background-color: #0F4075;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 49px 0 35px;
}

.developed-top-img-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    margin-right: 58px;
}

.developed-title {
    margin-bottom: 15px;
}

.developed-bottom-img-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .developed-on-section {
        padding: 49px 0 60px;
    }
    
    .developed-top-img-wrap {
        margin-bottom: 30px;
    }
    
    .developed-top-img-wrap img:nth-of-type(1) {
        width: 35vw;
    }
    
    .developed-top-img-wrap a:nth-of-type(1) img,
    .developed-top-img-wrap a:nth-of-type(2) img {
        width: 100%;
    }
    
    .developed-title img {
        width: 26vw;
    }
    
    .developed-bottom-img-wrap img {
        width: 23vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .developed-on-section {
        padding: 15px 0 37px;
    }
    
    .developed-top-img-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        grid-column-gap: 20px;
        grid-row-gap: 0px;
        margin-right: 0;
        margin-bottom: 23px;
        padding: 0px 20px;
    }
    
    .developed-top-img-wrap img:nth-of-type(1) {
        grid-area: 1 / 1 / 2 / 3;
        width: 59vw;
        margin-right: 67px;
    }
    
    .developed-top-img-wrap a:nth-of-type(1) img{
        grid-area: 2 / 1 / 3 / 2;
        width: 100%;
        margin: 0;
    }
    
    .developed-top-img-wrap a:nth-of-type(2) img{
        grid-area: 2 / 2 / 3 / 3;
        width: 100%;
        margin: 0;
    }
    
    .developed-title {
        margin-bottom: 9px;
    }
    
    .developed-title img {
        width: 57vw;
    }
    
    .developed-bottom-img-wrap {
        flex-direction: column;
        gap: 10px;
    }
    
    .developed-bottom-img-wrap img {
        width: 44vw;
    }
}

/*Home Page Fourteen Section*/

.subscrice-section {
    position: relative;
    background-image:url('../images/background_forest_02.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    height: 769px;
}

.subscrice-section::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
    background:rgba(16,64,117); /* overlay color */
    opacity: 0.7;
    z-index:1;
}

.subscrice-title {
    position: relative;
    z-index: 3;
    text-align: center;
}

.subscrice-title img {
    margin-top: -26px;
}

.iframe-wrapper {
    overflow: hidden;
    margin-top: -36px;
    height: 728px;
}

.Z8YsjS {
    min-height: 700px;
    position: relative;
    border: none;
    z-index: 2;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .subscrice-section {
        background-image:url('../images/background_forest_tablet.jpg');
        height: 740px;
    }
    
    .subscrice-title img {
        margin-top: -22px;
        width: 26vw;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .subscrice-section {
        height: 835px;
    }
    
    .subscrice-title img {
        margin-top: -14px;
        width: 57vw;
    }
    
    .iframe-wrapper {
        margin-top: -55px;
        height: 805px;
    }
    
    .Z8YsjS {
        padding: 0px 5px;
        min-height: 1000px;
    }
}


/*Home Page Fifteen Section*/

.token-coin-section {
    display: flex;
    justify-content: center;
    background: #0F4075;
}

.token-coin-wrap h5:nth-of-type(1),
.token-coin-wrap h5:nth-of-type(2){
    font-size: 20px;
    color: #FFFFFF;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
}

.token-coin-wrap h5:nth-of-type(1) {
    margin-bottom: 15px;
}

.token-coin-wrap h5:nth-of-type(2) {
    margin-bottom: 13px;
}

.tc-link a {
    font-size: 20px;
    color: #FFFFFF;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
}

.token-coin-wrap {
    margin: 40px 0;
    background: #3E9BE9;
    box-shadow: 0.00px 7.00px 0px 0px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    width: 717px;
}

.tc-top-svg {
    display: flex;
    justify-content: space-evenly;
    margin: 15px 0 8px;
}

.tc-top-svg svg {
    height: 2.1vw;
}

.tc-doc {
    display: flex;
    justify-content: center;
    border-top: 2px solid #7cd2ee;
    border-bottom: 2px solid #7cd2ee;
    align-items: center;
    gap: 100px;
}

.tc-doc h5 {
    margin: 0 !important;
    padding: 6px 0;
}

.tc-doc h5 a {
    font-size: 25px;
    color: #A3D9F6;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
}

.tc-bottom-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 8px 0;
}

.tc-bottom-svg svg {
    height: 1.9vw;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .token-coin-wrap {
        width: 560px;
        margin: 30px 0;
    }
    
    .token-coin-wrap h5:nth-of-type(1), .token-coin-wrap h5:nth-of-type(2), .tc-link a {
        font-size: 15px;
    }
    
    .token-coin-wrap h5:nth-of-type(1) {
        margin-bottom: 10px;
    }
    
    .token-coin-wrap h5:nth-of-type(2) {
        margin-bottom: 9px;
    }
    
    .tc-top-svg {
        margin: 12px 0 4px;
    }
    
    .tc-top-svg svg {
        height: 4.1vw;
    }
    
    .tc-doc {
        gap: 80px;
    }
    
    .tc-doc h5 {
        padding: 4px 0;
    }
    
    .tc-doc h5 a {
        font-size: 20px;
    }
    
    .tc-bottom-svg {
        margin: 5px 0;
        gap: 40px;
    }
    
    .tc-bottom-svg svg {
        height: 3.7vw;
    }
    
    .tc-bottom-svg a img {
        height: 3.5vw;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .token-coin-section {
        padding: 0px 25px;
    }
    
    .token-coin-wrap h5:nth-of-type(1), .token-coin-wrap h5:nth-of-type(2), .tc-link a {
        font-size: 12px;
    }
    
    .token-coin-wrap h5:nth-of-type(1) {
        margin-bottom: 6px;
    }
    
    .token-coin-wrap {
        width: 100%;
    }
    
    .tc-top-svg {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .tc-top-svg svg {
        height: 8vw;
    }
    
    .tc-doc {
        gap: unset;
        justify-content: space-around;
    }
    
    .tc-doc h5 {
        padding: 8px 0;
    }
    
    .tc-doc h5 a {
        font-size: 15px;
    }
    
    .tc-bottom-svg {
        flex-direction: column;
        gap: 10px;
        margin: 10px 0;
    }
    
    .tc-bottom-svg svg,
    .tc-bottom-svg a img {
        height: 7.5vw;
    }

}


/*footer css*/

.main-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0F4075; 
    padding: 0 0 41px;
}

.footer-img {
    text-align: center;
    margin-top: -16px;
    margin-bottom: 17px;
}

.footer-img img {
    width: 121px;
}

.footer-rights-text-wrap .rights-text {
    font-family: 'Rammetto One', cursive;
    color: #FFFFFF;
    font-size: 20px;
    text-align: center;
    margin-bottom: 6px;
}

.footer-rights-text-wrap p:nth-of-type(2),
.footer-support-text-wrap p,
.footer-support-text-wrap p a {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16px;
    text-align: center;
    color: #9430FD;
    font-weight: 900;
    line-height: 1.4em;
    letter-spacing: 0.25px;
}

.footer-rights-text-wrap p:nth-of-type(2) .break-line {
    display: block;
}

.footer-icon-text-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 0 25px;
    margin: 12px 0 23px;
}

.home-icon-warp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.home-text {
    font-family: 'Rammetto One', cursive;
    font-size: 20px;
    color: #2EDBC2;
}

.social-icon-warp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
}

.social-text {
    font-family: 'Rammetto One', cursive;
    font-size: 20px;
    color:#7CD2EE;
}

.social-wrap{
    display: flex;
    gap: 17px;
}

.footer-menu-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 24px;
}

.footer-menu-wrap p a {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 18px;
    color: #c7c7c7;
    font-weight: 900;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .main-footer {
        padding: 0 0 31px;
    }
    
    .footer-img {
        margin-top: -13px;
        margin-bottom: 13px;
    }
    
    .footer-img img {
        width: 12vw;
    }
    
    .footer-rights-text-wrap .rights-text {
        font-size: 16px;
    }
    
    .footer-rights-text-wrap p:nth-of-type(2), 
    .footer-support-text-wrap p, 
    .footer-support-text-wrap p a {
        font-size: 12px;
    }
    
    .footer-icon-text-wrap {
        margin: 10px 0 12px;
    }
    
    .footer-icon-text-wrap img {
        width: 5.5vw;
    }
    
    .footer-icon-text-wrap a {
        padding: 2px 0 0;
    }
    
    .home-text,
    .social-text {
        font-size: 15px;
    }
    
    .social-wrap {
        gap: 14px;
    }
    
    .footer-menu-wrap p a {
        font-size: 14px;
    }
    
    .footer-menu-wrap {
        margin-bottom: 14px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .main-footer {
        padding: 10px;
    }
    
    .footer-img {
        margin: 0 0 6px;
    }
    
    .footer-img img {
        width: 18vw;
    }
    
    .footer-rights-text-wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-rights-text-wrap .rights-text {
        font-size: 14px;
        padding: 0 40px;
        margin: 0;
    }
    
    .footer-rights-text-wrap p:nth-of-type(2), .footer-support-text-wrap p, .footer-support-text-wrap p a {
        font-size: 12px;
    }
    
    .footer-rights-text-wrap p:nth-of-type(2) .break-line {
        display: inline;
    }
    
    .footer-icon-text-wrap {
        margin: 17px 0 10px;
        padding: 0 12px 0 0;
    }
    
    .footer-icon-text-wrap img {
        width: 12.8vw;
    }
    
    .footer-icon-text-wrap a {
        padding: 0;
    }
    
    .home-icon-warp {
        flex-direction: column;
        gap: 8px;
    }
    
    .home-text {
        order: -1;
    }
    
    .home-text, .social-text {
        font-size: 12px;
    }
    
    .social-icon-warp {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-wrap {
        gap: 10px;
    }
    
    .footer-menu-wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .footer-menu-wrap p a {
        font-size: 12px;
    }

}

/*---------------------- Privacy Policy Page All Css ----------------------*/

.privacy-policy-section {
    display: flex;
    justify-content: center;
    background: #324158;
    padding: 200px 0 10px;
}

.privacy-policy-content-wrap {
    width: 888px;
}

.privacy-policy-content-wrap p {
    display: inline-block;
    align-self: center;
}

.privacy-policy-heading {
    display: flex;
    flex-direction: column;
}

.privacy-policy-heading p {
    font-family: 'Rammetto One', cursive;
    font-size: 40px;
    color: #FFF;
}

.privacy-policy-section .term-heading {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 20px;
    color: #BADA55;
    font-weight: 900;
}

.privacy-policy-section .term-contant {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    color: #3D9BE9;
    font-weight: 900;
    text-align: center;
    margin-bottom: 17px;
    line-height: 1.4;
}

.privacy-policy-term-wrap {
    display: flex;
    flex-direction: column;
}

.term-contant-break {
    display: block;
}

.term-contant-link-text a {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    color: #3D9BE9;
    font-weight: 900;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .privacy-policy-content-wrap {
        width: 100%;
        padding: 0 40px;
    }
    
    .privacy-policy-heading p {
        font-size: 32px;
    }
    
    .privacy-policy-section .term-heading {
        font-size: 14px;
    }
    
    .privacy-policy-section .term-contant,
    .term-contant-link-text a {
        font-size: 12px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .privacy-policy-section {
        padding: 170px 0 3px;
    }
    
    .privacy-policy-content-wrap {
        padding: 0 20px;
    }
    
    .privacy-policy-heading {
        margin-bottom: 10px;
    }
    
    .privacy-policy-heading p {
        font-size: 29px;
    }
    
    .privacy-policy-section .term-heading {
        font-size: 20px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .privacy-policy-section .term-contant,
    .term-contant-link-text a {
        font-size: 14px;
    }
    
}

/*---------------------- Team Page All Css ----------------------*/

/*Team Page First Section*/

.team-who-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 186px 0 0;
    background: #4D1489;
}

.team-who-section .heading {
    font-family: 'Rammetto One', cursive;
    font-size: 40px;
    color: #FFF;
    margin-top: -7px;
    margin-bottom: 14px;
}

.team-who-section .content-wrap {
    display: flex;
    gap: 135px;
}

.team-who-section .content-wrap p {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 20px;
    text-align: center;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
}

.team-who-section .contant-break {
    display: block;
}

.team-who-section .bottom-img {
    margin: 0 0 32px 50px;
}

.team-who-section .bottom-img img {
    width: 476px;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .team-who-section {
        padding: 182px 0 0;
    }
    
    .team-who-section .heading-img img {
        width: 26vw;
    }
    
    .team-who-section .heading {
        font-size: 32px;
    }
    
    .team-who-section .content-wrap {
        gap: 110px;
    }
    
    .team-who-section .content-wrap p {
        font-size: 16px;
    }
    
    .team-who-section .bottom-img {
        margin: 0 0 22px 28px;
        margin-top: -5px;
    }
    
    .team-who-section .bottom-img img {
        width: 48.8vw;
    }
    
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .team-who-section {
        padding: 160px 0 0;
    }
    
    .team-who-section .heading-img img {
        width: 57vw;
    }
    
    .team-who-section .heading {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 7px;
    }
    
    .team-who-section .content-wrap {
        flex-direction: column;
        gap: 0;
    }
    
    .team-who-section .content-wrap p {
        margin-bottom: 20px;
    }
    
    .team-who-section .right-content {
        margin-top: -4px;
    }
    
    .team-who-section .bottom-img {
        margin: 0;
        margin-bottom: 16px;
    }
    
    .team-who-section .bottom-img img {
        width: 69vw;
    }
}

/*Team Page Second Section*/

.team-only-background-section {
    position: relative;
    background-image: url(../images/background_sketch.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 300px;
}

.team-only-background-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4d1489;
    opacity: 0.7;
    z-index: 1;
}


/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .team-only-background-section {
        background-image: url(../images/background_sketch_tablet.jpg);
        height: 250px;
    }
}


/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    .team-only-background-section {
        background-image: url(../images/background_sketch_mobile.jpg);
        height: 140px;
        background-attachment: scroll;
    }
}


/*Team Page Third Section*/

.team-team-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #4D1489;
}

.team-team-section .heading-img {
    margin-bottom: 9px;
    position: relative;
    z-index: 2;
}

.team-team-section .heading-img img {
    margin-top: -14px;
}

.team-team-section .team-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 90px;
    grid-row-gap: 18px;
    margin-bottom: 56px;
}

.team-team-section .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic-row-1,
.profile-pic-row-2,
.profile-pic-row-3 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 14px;
}

.profile-pic-row-1 {
    height: 191px;
}

.profile-pic-row-2 {
    height: 233px;
}

.profile-pic-row-3 {
    height: 228px;
}

.team-team-section .profile-designation {
    font-family: 'Rammetto One', cursive;
    font-size: 20px;
    color: #FFF;
}

.team-team-section .profile-content {
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.5;
}

.bottom-text-img-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 57px;
}

.bottom-text-img-wrap p {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 13px;
    color: #9430FD;
    font-weight: 900;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .team-team-section .heading-img {
        margin: 0;
    }
    
    .team-team-section .heading-img img {
        width: 26vw;
    }
    
    .team-team-section .team-card-wrap {
        grid-column-gap: 70px;
        margin-bottom: 40px;
    }
    
    .team-team-section .team-card img {
        width: 19vw;
    }
    
    .team-team-section .profile-designation {
        font-size: 15px;
    }
    
    .team-team-section .profile-content {
        font-size: 16px;
    }
    
    .profile-pic-row-1 {
        height: 155px;
    }
    
    .profile-pic-row-2 {
        height: 189px;
    }
    
    .profile-pic-row-3 {
        height: 185px;
    }
    
    .team-team-section .bottom-text-img-wrap {
        margin-bottom: 46px;
    }
    
    .team-team-section .bottom-text-img-wrap p {
        font-size: 10px;
    }
    
    .team-team-section .bottom-text-img-wrap a img {
        width: 6vw;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .team-team-section .heading-img {
        margin-bottom: 7px;
    }
    
    .team-team-section .heading-img img {
        width: 57vw;
        margin-top: -20px;
    }
    
    .team-team-section .team-card-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 0;
        grid-row-gap: 20px;
        padding: 0 20px;
        margin-bottom: 27px;
    }
    
    .team-team-section .team-card img {
        width: 24vw;
    }
    
    .team-team-section .profile-designation {
        font-size: 18px;
        text-align: center;
    }
    
    .team-team-section .profile-content {
        font-size: 12px;
    }
    
    .profile-pic-row-1-mobile {
        height: 93px;
    }
    
    .profile-pic-row-2-mobile {
        height: 106px;
    }
    
    .profile-pic-row-3-mobile {
        height: 116.5px;
    }
    
    .profile-pic-row-3 {
        height: auto;
    }
    
    .profile-pic-row-4-mobile {
        height: 98px;
    }
    
    .team-team-section div:nth-of-type(9) {
        grid-area: 5 / 1 / 6 / 3;
    }
    
    .team-team-section .bottom-text-img-wrap {
        margin-bottom: 23px;
        padding: 0 20px 0 40px;
        text-align: right;
        align-items: flex-end;
        gap: 10px;
    }
    
    .team-team-section .bottom-text-img-wrap p {
        width: 70%;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .team-team-section .bottom-text-img-wrap a {
        width: 23%;
        display: flex;
    }
    
    .team-team-section .bottom-text-img-wrap a img {
        width: 100%;
    }
}


/*---------------------- Help Page All Css ----------------------*/

/*Help Page First Section*/

.help-section {
    position: relative;
    background-image: url(../images/background_space_02.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 190px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: gray;
    z-index: 1;
    opacity: 0.35;
}

.help-section > *{
z-index:2;
}

.help-section .heading {
    font-family: 'Rammetto One', cursive;
    font-size: 30px;
    color: #FFF;
    margin-top: 16px;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
    text-align: center;
}

.help-section .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    font-size: 15px;
    font-style: italic;
    color: #F6DB13;
    margin-bottom: 13px;
    text-align: center;
}

.help-section img {
    margin-bottom: 17px;
}

.faq-section {
    background: #b6d33a;
    padding: 32px;
    margin-bottom: 36px;
}

.faq-tabs-wrap{
    display:flex;
    align-items:center;
    position:relative;
    margin-bottom: 24px;
}

.faq-tabs{
    display:flex;
    overflow-x:auto;
    white-space:nowrap;   /* ðŸ”¥ IMPORTANT */
    flex-wrap:nowrap;
    scroll-behavior:smooth;
    scrollbar-width: none;
}

.tab{
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 19px;
    background: none;
    border: none;
    font-weight: 900;
    color: #104075;
    cursor: pointer;
    padding: 5px 27.5px 10px;
}

.tab.active{
    color:#e35e18;
    border-bottom:3px solid #e35e18;
}

.arrow{
background:none;
border:none;
cursor:pointer;
width:20px;
height:20px;
position:absolute;
top:54%;
transform:translateY(-50%);
z-index:2;
}

/* RIGHT ARROW */
.arrow.right::before{
content:"";
display:block;
width:8px;
height:8px;
right: 0;
border-top:2px solid #104075;
border-right:2px solid #104075;
transform:rotate(45deg);
margin:auto;
}

/* LEFT ARROW */
.arrow.left::before{
content:"";
display:block;
width:8px;
height:8px;
left: 0;
border-top:2px solid #104075;
border-left:2px solid #104075;
transform:rotate(-45deg);
margin:auto;
}

.faq-group{
    display:none;
}

.faq-group.active{
    display:block;
}

.faq-group div:last-child {
    margin: 0;
}

.faq-item{
    background:#7CD2EE;
    width: 892.8px;
    padding: 20px 30px 20px 24px;
    cursor:pointer;
    margin-bottom: 12px;
}

.faq-question h3 {
    font-family: 'Rammetto One', cursive;
    color: #FFF;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
    width: 95%;
    line-height: 1.4;
}

.faq-question {
    display: flex;
    justify-content: space-between;
}

.faq-svg::before {
    content: "+";
    font-family: auto;
    font-size: 30px;
    font-weight: 100;
    color: white;
}

.faq-item.active .faq-svg::before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    margin-top: 92%;
}

.faq-answer{
    display:none;
    margin-top:24px !important;
    cursor: auto;
    width: 95%;
    height:0;
    overflow:hidden;
    transition: height 0.5s ease;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-section .faq-answer-content {
    font-family: 'Baloo Paaji 2', cursive;
    color: #104075;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.4;
}

.faq-section .faq-answer-content-break {
    display: block;
}

.faq-section .faq-answer-content a {
    font-family: 'Baloo Paaji 2', cursive;
    color: #f6db13;
    font-size: 15px;
    font-weight: 900;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .help-section {
        padding: 140px 0 0;
    }
    
    .help-section .heading {
        margin-top: 20px;
        font-size: 24px;
    }
    
    .help-section .content {
        font-size: 12.5px;
        margin-bottom: 6px;
    }
    
    .help-section img {
        width: 13.8vw;
        margin-bottom: 14px;
    }
    
    .faq-section {
        padding: 25px;
        margin-bottom: 24px;
    }
    
    .faq-tabs-wrap {
        margin-bottom: 20px;
    }
    
    .tab {
        font-size: 15px;
        padding: 5px 23px 5px;
    }
    
    .faq-item {
        width: 100%;
        padding: 18px 22px 18px 20px;
        margin-bottom: 10px;
    }
    
    .faq-question h3 {
        font-size: 12px;
    }
    
    .faq-svg::before {
        font-size: 20px;
    }
    
    .faq-item.active .faq-svg::before {
        width: 12px;
    }
    
    .faq-answer {
        width: 100%;
    }
    
    .faq-section .faq-answer-content {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .help-section {
        padding: 150px 25px 0;
    }
    
    .help-section .heading {
        margin-bottom: 3px;
    }
    
    .help-section .content {
        font-size: 14px;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .help-section img {
        width: 28vw;
        margin-bottom: 10px;
    }
    
    .faq-section {
        width: 100%;
        padding: 37px;
        margin-bottom: 19px;
    }
    
    .faq-tabs-wrap {
        width: 90%;
        margin: 0 auto 23px;
    }
    
    .arrow{
        display:block;
    }
    
    .arrow.left {
        left: -15px;
    }
    
    .arrow.right {
        right: -15px;
    }
    
    .tab {
        font-size: 19px;
        padding: 14px 6.5px 7px;
        scroll-behavior: smooth;
    }
    
    .tab.active {
        border-bottom: 4px solid #e35e18;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 17px;
        width: 85%;
    }
    
    .faq-svg::before {
        font-size: 30px;
    }
    
    .faq-item.active .faq-svg::before {
        width: 16px;
    }
    
    .faq-section .faq-answer-content {
        font-size: 18px;
    }
    
    .faq-answer {
        width: 93%;
        height: fit-content !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/*Help Page Second Section*/

.help-only-banner-section {
    display: flex;
    height: 120px;
    position: relative;
}

.help-only-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.help-only-banner-section img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .help-only-banner-section {
        height: 98px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .help-only-banner-section {
        height: 90px;
    }
}

/*Help Page Third Section*/

.help-join-section{
    position: relative;
    background-image: url("../images/background_forest.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 49px 0 0;
}

.help-join-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #434f1d;
    z-index: 1;
    opacity: 0.85;
}

.help-join-section > *{
    position: relative;
    z-index:2;
}

.help-info-1 {
    margin-bottom: 13px;
}

.help-info-1 .heading {
    font-family: 'Rammetto One', cursive;
    font-size: 30px;
    text-align: center;
    color: #FFF;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
}

.help-info-1 .content {
    font-family: 'Baloo Paaji 2', cursive;
    text-align: center;
    font-weight: 900;
    color: #7CD2EE;
    line-height: 1;
}

.help-info-2 {
    margin-bottom: 24px;
}

.help-info-2 .heading {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 30px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
    color: #F6DB13;
    font-weight: 900;
}

.help-info-2 .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 18px;
    text-align: center;
    color: #FFF;
    font-weight: 900;
    line-height: 1;
    margin-top: -3px;
}

.help-join-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
}

.help-join-info-card .card {
    display: flex;
    flex-direction: column;
    width: 247px;
    justify-content: center;
    align-items: center;
    padding: 19px 10px 14px;
    gap: 15px;
    border-radius: 15px;
}

.help-join-info-card .number-image {
    width: 40px;
}

.help-join-info-card .web235-image {
    width: 183px;
    /*height: 120px;*/
}

.help-join-info-card .heading {
    font-family: 'Rammetto One', cursive;
    /*text-shadow: #000 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;*/
    text-shadow: rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

.help-join-info-card .content {
    font-family: 'Baloo Paaji 2', cursive;
    color: #FFF;
    text-align: center;
    font-weight: 900;
    line-height: 1.4;
}

.help-join-info-card .content-2 {
    font-family: 'Baloo Paaji 2', cursive;
    color: #ff90b0;
    text-align: center;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.4;
}

.help-joinbtn-with-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-joinbtn-with-img .loginbtn-image {
    width: 289px;
}

.help-joinbtn-with-img .astronaut-image {
    margin-top: -10px;
    margin-bottom: -31px;
    z-index: -1;
}

.help-page .main-footer {
    position: relative;
    z-index: 5;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .help-join-section {
        padding: 33px 0 0;
        background-image: url(../images/background_forest_mobile_img.jpg);
    }
    
    .help-info-1 {
        margin-bottom: 10px;
    }
    
    .help-info-1 .heading {
        font-size: 24px;
    }
    
    .help-info-1 .content {
        font-size: 13px;
    }
    
    .help-info-2 {
        margin-bottom: 20px;
    }
    
    .help-info-2 .heading {
        font-size: 25px;
    }
    
    .help-info-2 .content {
        font-size: 14px;
    }
    
    .help-join-info-card {
        gap: 17px;
        margin-bottom: 55px;
    }
    
    .help-join-info-card .card {
        width: 25vw;
        padding: 15px 10px 10px;
        border-radius: 10px;
        gap: 13px;
    }
    
    .help-join-info-card .number-image {
        width: 32px;
    }
    
    .help-join-info-card .content {
        font-size: 12px;
    }
    
    .help-joinbtn-with-img .loginbtn-image {
        width: 30vw;
    }
    
    .help-joinbtn-with-img .astronaut-image {
        width: 48vw;
        margin-bottom: -25px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .help-join-section {
        padding: 22px 0 20px;
    }
    
    .help-info-1 .heading {
        line-height: 1.4;
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .help-info-1 .content {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .help-info-2 {
        margin-bottom: 15px;
    }
    
    .help-info-2 .heading {
        font-size: 20px;
        padding: 0 48px;
    }
    
    .help-info-2 .content {
        font-size: 15px;
        margin-top: 10px;
    }
    
    .help-join-info-card {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 56px;
    }
    
    .help-join-info-card .card {
        width: 62.7vw;
        padding: 10px 28px 15px;
        gap: 10px;
    }
    
    .help-join-info-card .number-image {
        width: 40px;
    }
    
    .help-join-info-card .content {
        font-size: 14px;
    }
    
    .help-joinbtn-with-img .loginbtn-image {
        width: 80vw;
        margin-bottom: 15px;
    }
    
    .help-joinbtn-with-img .astronaut-image {
        margin: 0;
        width: 88vw;
    }
}


/*---------------------- About Page All Css ----------------------*/

.web5-section {
    position: relative;
    background-image: url(../images/Background_MidPink.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 0;
}

.web5-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #af345c;
    z-index: 1;
    opacity: 0.5;
}

.web5-section > * {
    position: relative;
    z-index:2;
}

.web5-section2 {
    position: relative;
    background-image: url(../images/Background_DarkBlue.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 0;
}

.web5-section2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003d6a;
    z-index: 1;
    opacity: 0.0;
}

.web5-section2 > * {
    position: relative;
    z-index:2;
}

.web5-details {
    width: 845px;
    margin-bottom: 10px;
}

.web5-details .heading {
    font-family: 'Rammetto One', cursive;
    /*text-shadow: #000 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;*/
    text-shadow: rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
}

.web5-details .content-1,
.web5-details .content-2 {
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
}

.web5-details .content-1 {
    font-size: 17px;
    margin-bottom: 30px;
}

.web5-details .content-2 {
    font-size: 17px;
    color: #ff90b0;
    opacity: 1.0;
}

.web5-details .content-0 {
    font-family: 'Baloo Paaji 2', cursive;
    font-style: italic;
    font-weight: 900;
    text-align: center;
    color: #f6db20;
    line-height: 1.4;
    font-size: 17px;
    opacity: 1.0;
}

.web5-image{
    /*
    width: 10vw;
    margin: auto;*/
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*
    align-items:center;
    position: relative;
    */
}

/*About Page First Section*/

.about-section {
    position: relative;
    background-image: url(../images/background_blue.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 0;
}

.about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1;
    opacity: 0.3;
}

.about-section > * {
    position: relative;
    z-index:2;
}

.astronaut-image {
    width: 23.5vw;
    margin: 12px 0;
}

.crib-image {
    width: 30vw;
    margin: 0px 0;
    margin-bottom: 20px;
}

.about-wonder-nation-details {
    width: 845px;
    margin-bottom: 44px;
}

.about-wonder-nation-details .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 40px;
    text-align: center;
    color: #4D1489;
}

.about-wonder-nation-details .content-1,
.about-wonder-nation-details .content-2 {
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    text-align: center;
    color: #4D1489;
    line-height: 1.4;
}

.about-wonder-nation-details .content-1 {
    font-size: 20px;
    margin-bottom: 30px;
}

.about-wonder-nation-details .content-2 {
    font-size: 17px;
}

.about-games {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 44px;
}

.about-games .heading {
    font-family: 'Rammetto One', cursive;
    font-size: 20px;
    text-align: center;
    color: #4D1489;
}

.games-tab-wrap {
    width: 572px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10px;
    row-gap: 15px;
}

.games-tab-wrap p {
    display: inline-block;
    width: fit-content;
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: bold;
    line-height: 1em;
    font-size: 18px;
    text-align: center;
    color: #FFF;
    padding: 5px 18px;
    border-radius: 50px;
    box-shadow: 2.83px 2.83px #3D9BE9;
    white-space: nowrap;
    cursor: pointer;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-section {
        padding-top: 148px;
    }
    
    .astronaut-image {
        width: 46vw;
        margin: 10px 0 0;
    }
    
    .crib-image {
        width: 46vw;
        margin: 10px 0 0;
    }

    .about-wonder-nation-details {
        width: 100%;
        padding: 0 50px;
        margin-bottom: 34px;
    }
    
    .about-wonder-nation-details .heading {
        font-size: 32px;
    }
    
    .about-wonder-nation-details .content-1 {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .about-wonder-nation-details .content-2 {
        font-size: 14px;
    }
    
    .about-games {
        gap: 5px;
    }
    
    .about-games .heading {
        font-size: 16px;
    }
    
    .games-tab-wrap {
        width: 414px;
        column-gap: 8px;
        row-gap: 12px;
    }
    
    .games-tab-wrap p {
        font-size: 15px;
        padding: 4px 12px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-section {
        padding-top: 39.5vw;
    }
    
    .astronaut-image {
        width: 78vw;
        margin: 30px 0 10px;
    }
    
    .crib-image {
        width: 78vw;
        margin: 30px 0 10px;
    }

    .about-wonder-nation-details {
        padding: 0 15px;
        margin-bottom: 13px;
    }
    
    .about-wonder-nation-details .heading {
        font-size: 27px;
        line-height: 1.4;
        margin-bottom: 7px;
    }
    
    .about-wonder-nation-details .content-2 {
        font-size: 12px;
    }
    
    .about-games {
        gap: 9px;
        padding: 0 40px;
    }
    
    .about-games .heading {
        line-height: 1.4;
    }
    
    .games-tab-wrap {
        width: 100%;
    }
    
    .games-tab-wrap p {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .games-tab-wrap p:nth-of-type(5),
    .games-tab-wrap p:nth-of-type(7) {
        padding: 8px 32px;
    }
}

/*About Page Second Section*/

.about-breeding {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.about-breeding .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #870767;
    margin-bottom: 10px;
}

.about-breeding .content {
    width: 501px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #870767;
    margin-bottom: 20px;
    line-height: 1.4;
}

.img-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 600px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    will-change: transform;
    transition: transform 0.35s ease-in-out;
    
    /* 3. Safari fix for "stickiness" */
    backface-visibility: hidden;
    perspective: 1000px;
}

/* This ensures hover ONLY works on devices that support mouse interaction */
@media (hover: hover) {
    .img-box:hover {
        transform: scale(1.05);
    }
}

.img-box img {
    border: 10px solid white;
    border-radius: 20px;
    box-shadow: 0px 10px 3px 0px rgba(0, 0, 0, 0.15);
}

.img-box:hover {
    transform: scale(1.05);
}

/*.img-box::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0,0,0,1);*/
/*  opacity: 0;*/
/*  transition: 0.3s ease;*/
/*}*/

/*.img-box:hover::after {*/
/*  opacity: 1;*/
/*}*/

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-breeding {
        margin-bottom: 45px;
    }
    
    .about-breeding .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-breeding .content {
        width: 421px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .img-box {
        width: 470px;
        border-radius: 15px;
    }
    
    .img-box img {
        border: 8px solid white;
        border-radius: 20px;
    }
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-breeding {
        padding: 0 23px;
    }
    
    .about-breeding .heading {
        margin-bottom: 2px;
    }
    
    .about-breeding .content {
        width: 100%;
        font-size: 15px;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        border: 10px solid white;
        border-radius: 25px;
    }
}

/*About Page Third Section*/

.about-village {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.about-village .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #434F1D;
    margin-bottom: 10px;
}

.about-village .content {
    width: 600px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #434F1D;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-village {
        margin-bottom: 45px;
    }
    
    .about-village .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-village .content {
        width: 470px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-village {
        padding: 0 23px;
    }
    
    .about-village .heading {
        margin-bottom: 2px;
    }
    
    .about-village .content {
        width: 100%;
        font-size: 15px;
    }
    
}

/*About Page Fourth Section*/

.about-alliances {
    display: flex;
    gap: 10px;
    margin-bottom: 90px;
    justify-content: center;
}

.about-alliances .content-box {
    width: 372px;
    margin-top: 40px;
}

.about-alliances .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #9C2525;
    margin-bottom: 10px;
}

.about-alliances .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #9C2525;
    margin-bottom: 20px;
    line-height: 1.4;
}

.img-box-2 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 330px;
    height: 337px;
        box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: transform 0.35s ease-in-out;
}

.img-box-2 img {
    border: 10px solid white;
    border-radius: 20px;
}

.img-box-2:hover {
    transform: scale(1.05);
}

/*.img-box-2::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0,0,0,1);*/
/*  opacity: 0;*/
/*  transition: 0.3s ease;*/
/*}*/

/*.img-box-2:hover::after {*/
/*  opacity: 1;*/
/*}*/

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-alliances {
        margin-bottom: 65px;
    }
    
    .about-alliances .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-alliances .content {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-alliances .content-box {
        width: 40%;
        margin-top: 30px;
    }
    
    .img-box-2 {
        width: 268px;
        height: auto;
        border-radius: 15px;
        box-shadow: none;
    }
    
    .img-box-2 img {
        border: 8px solid white;
        border-radius: 20px;
        box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.15);
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-alliances {
        flex-direction: column;
        align-items: center;
        padding: 0 25px;
        gap: 0px;
    }
    
    .about-alliances .content-box {
        width: 100%;
        margin: 0;
    }
    
    .about-alliances .heading {
        margin-bottom: 2px;
    }
    
    .about-alliances .content {
        font-size: 15px;
    }
    
    .img-box-2 {
        width: 68%;
        box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.15);
    }
    
    .img-box-2 img {
        border: 10px solid white;
        border-radius: 25px;
        box-shadow: 0px 16px 3px 0px rgba(0, 0, 0, 0.15);
    }
    
}

/*About Page Fifth Section*/

.about-battle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.about-battle .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #4D1489;
    margin-bottom: 10px;
}

.about-battle .content {
    width: 600px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #4D1489;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-battle p:nth-of-type(3) {
    margin-bottom: 10px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-battle {
        margin-bottom: 45px;
    }
    
    .about-battle .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-battle .content {
        width: 470px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-battle img {
        width: 61vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-battle .heading {
        margin-bottom: 2px;
    }
    
    .about-battle .content {
        width: 90%;
        font-size: 15px;
    }
    
    .about-battle img {
        width: 93vw;
    }
    
}

/*About Page Sixth Section*/

.about-attacks {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.about-attacks .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #E35E18;
    margin-bottom: 10px;
}

.attacks-mode-wrap {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-left: 70px;
    margin-bottom: 7px;
}

.arcade-mode {
    width: 372px;
}

.discovery-mode {
    width: 477px;
}

.about-attacks .heading-2 {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.about-attacks .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    line-height: 1.4;
}

.about-attacks .attack-logo-img {
    position: relative;
    margin-bottom: -40px;
    z-index: 3;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-attacks {
        margin-bottom: 60px;
    }
    
    .about-attacks .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .attacks-mode-wrap {
        gap: 50px;
        padding: 0 25px;
    }
    
    .arcade-mode,
    .discovery-mode {
        width: 100%;
    }
    
    .about-attacks .heading-2 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .about-attacks .content {
        font-size: 13px;
    }
    
    .about-attacks .attack-logo-img {
        width: 25vw;
        margin-bottom: -32px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-attacks {
        padding: 0 25px;
        margin-bottom: 50px;
    }
    
    .about-attacks .heading {
        margin-bottom: 22px;
    }
    
    .attacks-mode-wrap {
        flex-direction: column;
        gap: 25px;
        padding: 0;
        margin: 0 0 10px;
    }
    
    .about-attacks .heading-2 {
        font-size: 20px;
        margin-bottom: 9px;
    }
    
    .about-attacks .content {
        font-size: 15px;
    }
    
    .about-attacks .attack-logo-img {
        width: 43vw;
    }
    
}

/*About Page Seventh Section*/

.about-creature-discovery {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}

.about-creature-discovery .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #4D1489;
    margin-bottom: 10px;
}

.about-creature-discovery .content-wrap {
    width: 396px;
}

.about-creature-discovery .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #4D1489;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-creature-discovery p:nth-of-type(4) {
    margin-bottom: 0;
}

.about-creature-discovery img {
    margin-top: -65px;
    margin-left: 150px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-creature-discovery {
        margin-bottom: 55px;
    }
    
    .about-creature-discovery .content-wrap {
        width: 325px;
    }
    
    .about-creature-discovery .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-creature-discovery .content {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-creature-discovery p:nth-of-type(4) {
        margin-bottom: 15px;
    }
    
    .about-creature-discovery img {
        width: 52vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-creature-discovery {
        padding: 0 25px;
        align-items: center;
        margin-bottom: 50px;
    }
    
    .about-creature-discovery .heading {
        margin-bottom: 2px;
    }
    
    .about-creature-discovery .content {
        font-size: 15px;
    }
    
    .about-creature-discovery img {
        width: 80vw;
        margin: 0;
    }
    
}

/*About Page Eight Section*/

.about-gems {
    display: flex;
    margin-bottom: 127px;
    justify-content: center;
    gap: 15px;
}

.about-gems .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #9430FB;
    margin-bottom: 10px;
}

.about-gems .content-wrap {
    width: 400px;
    margin-top: 21px;
}

.about-gems .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #9430FB;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-gems {
        margin-bottom: 90px;
    }
    
    .about-gems .content-wrap {
        width: 325px;
        margin-top: 15px;
    }
    
    .about-gems .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-gems .content {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-gems img {
        width: auto;
        height: 28vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-gems {
        padding: 0 18px;
        margin-bottom: 65px;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .about-gems .content-wrap {
        width: 100%;
    }
    
    .about-gems .heading {
        margin-bottom: 5px;
    }
    
    .about-gems .content {
        font-size: 15px;
        margin-bottom: 17px;
    }
    
    .about-creature-discovery p:nth-of-type(3) {
        margin-bottom: 15px;
    }
    
    .about-gems img {
        width: 51vw;
        height: auto;
    }
    
}

/*About Page Nine Section*/

.about-mini-games {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.about-mini-games .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #008C84;
    margin-bottom: 10px;
}

.about-mini-games .content {
    width: 510px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #008C84;
    line-height: 1.5;
}

.about-mini-games p:nth-of-type(4) {
    margin-bottom: 5px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-mini-games {
        margin-bottom: 70px;
    }
    
    .about-mini-games .heading {
        font-size: 24px;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .about-mini-games .content {
        width: 440px;
        font-size: 13px;
    }
    
    .about-mini-games p:nth-of-type(4) {
        margin-bottom: 0;
    }
    
    .about-mini-games img {
        width: 86vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-mini-games {
        margin-bottom: 60px;
    }
    
    .about-mini-games .heading {
        margin-bottom: 15px;
    }
    
    .about-mini-games .content {
        width: 90%;
        font-size: 15px;
    }
    
    .about-mini-games p:nth-of-type(4) {
        margin-bottom: 10px;
    }
    
    .about-mini-games img {
        width: 97vw;
    }
    
}

/*About Page Ten Section*/

.about-aztec-nation-pinball {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.about-aztec-nation-pinball .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #4D1489;
    margin-bottom: 10px;
}

.about-aztec-nation-pinball .content {
    width: 458px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #4D1489;
    margin-bottom: 23px;
    line-height: 1.4;
}

.about-aztec-nation-pinball p:nth-of-type(4) {
        margin-bottom: 16px;
}

.about-aztec-nation-pinball .aztec-nation-pinball-logo-img {
    position: relative;
    margin-bottom: -30px;
    z-index: 3;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-aztec-nation-pinball {
        margin-bottom: 50px;
    }
    
    .about-aztec-nation-pinball .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-aztec-nation-pinball .content {
        width: 365px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-aztec-nation-pinball p:nth-of-type(4) {
        margin-bottom: 12px;
    }
    
    .about-aztec-nation-pinball .aztec-nation-pinball-logo-img {
        width: 23.5vw;
        margin-bottom: -25px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-aztec-nation-pinball {
        padding: 0 23px;
        margin-bottom: 68px;
    }
    
    .about-aztec-nation-pinball .heading {
        margin-bottom: 10px;
    }
    
    .about-aztec-nation-pinball .content {
        width: 100%;
        font-size: 15px;
        margin-bottom: 17px;
    }
    
    .about-aztec-nation-pinball p:nth-of-type(4) {
        margin-bottom: 17px;
    }
    
    .about-aztec-nation-pinball .aztec-nation-pinball-logo-img {
        width: 44vw;
        margin-bottom: -24px;
    }
    
}

/*About Page Eleven Section*/

.about-break-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.about-break-in .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #725601;
    margin-bottom: 10px;
}

.about-break-in .content {
    width: 422px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #725601;
    margin-bottom: 23px;
    line-height: 1.4;
}

.about-break-in p:nth-of-type(4) {
        margin-bottom: 16px;
}

.about-break-in .break-in-logo-img {
    position: relative;
    margin-bottom: -34px;
    z-index: 3;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-break-in {
        margin-bottom: 50px;
    }
    
    .about-break-in .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-break-in .content {
        width: 340px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-break-in p:nth-of-type(4) {
        margin-bottom: 12px;
    }
    
    .about-break-in .break-in-logo-img {
        width: 23vw;
        margin-bottom: -26px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-break-in {
        padding: 0 23px;
        margin-bottom: 78px;
    }
    
    .about-break-in .heading {
        font-size: 23px;
        margin-bottom: 7px;
    }
    
    .about-break-in .content {
        width: 98%;
        font-size: 15px;
        margin-bottom: 18.2px;
        line-height: 1.5;
    }
    
    .about-break-in p:nth-of-type(3) {
        margin-bottom: 19.2px;
    }
    
    .about-break-in p:nth-of-type(4) {
        margin-bottom: 8px;
    }
    
    .about-break-in .break-in-logo-img {
        width: 44vw;
        margin-bottom: -32px;
    }
    
}

/*About Page Twelve Section*/

.about-the-editor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-the-editor .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #008C84;
    margin-bottom: 10px;
}

.about-the-editor .content {
    width: 500px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #008C84;
    margin-bottom: 23px;
    line-height: 1.5;
}

.about-the-editor p:nth-of-type(4) {
    margin-bottom: 10px;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-the-editor .heading {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .about-the-editor .content {
        width: 400px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .about-the-editor img {
        width: 50.5vw;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-the-editor .heading {
        margin-bottom: 10px;
    }
    
    .about-the-editor .content {
        width: 90%;
        font-size: 15px;
    }
    
    .about-the-editor img {
        width: 88vw;
    }
    
}


/*About Page Thirteen Section*/

.about-learn-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 29px 0 32px;
}

.about-learn-more .heading {
    font-family: 'Rammetto One', cursive;
    text-shadow: #ffffff 3px 3px 0px, rgba(0, 0, 0, 0.2) 6px 6px 0px;
    font-size: 30px;
    text-align: center;
    color: #A70606;
}

.about-learn-more .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: #A70606;
    line-height: 1.4;
}

.about-learn-more .content a {
    color: #A70606;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-learn-more {
        margin: 25px 0 22px;
    }
    
    .about-learn-more .heading {
        font-size: 24px;
    }
    
    .about-learn-more .content {
        font-size: 13px;
        line-height: 1.2;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-learn-more {
        margin: 45px 0 20px;
        padding: 0 40px;
        gap: 10px;
    }
    
    .about-learn-more .content {
        font-size: 15px;
        line-height: 1.4;
    }
    
}

/*Help Page Third Section*/

.about-join-section{
    position: relative;
    background-image: url("../images/background_forest_about_page.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0 0;
}

.about-join-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #434f1d;
    z-index: 1;
    opacity: 0.85;
}

.about-join-section > *{
    position: relative;
    z-index:2;
}

.about-info-1 {
    margin-bottom: 60px;
}

.about-info-1 .heading {
    font-family: 'Rammetto One', cursive;
    font-size: 30px;
    text-align: center;
    color: #FFF;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
}

.about-info-1 .heading-2 {
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 30px;
    text-align: center;
    line-height: 1.4;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
    color: #F6DB13;
    font-weight: 900;
}

.about-info-1 .content {
    font-family: 'Baloo Paaji 2', cursive;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    font-size: 17px;
    margin-bottom: 10px;
    opacity: 1.0;
}

.about-joinbtn-with-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-joinbtn-with-img .loginbtn-image {
    width: 289px;
}

.about-joinbtn-with-img .astronaut-image {
    width: 470px;
    margin-top: -10px;
    margin-bottom: -38px;
    z-index: -1;
}

.about-page .main-footer {
    position: relative;
    z-index: 5;
}

/* =========================
TABLET (UNDER 1012)
========================= */

@media (max-width:1012px){
    
    .about-join-section {
        padding: 20px 0 0;
    }
    
    .about-join-section::before {
        opacity: 0.80;
    }
    
    .about-info-1 {
        margin-bottom: 50px;
    }
    
    .about-info-1 .heading {
        font-size: 24px;
    }
    
    .about-info-1 .heading-2 {
        font-size: 25px;
    }
    
    .about-joinbtn-with-img .loginbtn-image {
        width: 30vw;
    }
    
    .about-joinbtn-with-img .astronaut-image {
        width: 48vw;
        margin-bottom: -30px;
    }
    
}

/* =========================
Mobile (UNDER 765)
========================= */

@media (max-width:765px){
    
    .about-join-section {
        padding: 22px 0 20px;
    }
    
    .about-info-1 {
        margin-bottom: 22px;
        padding: 0 45px;
    }
    
    .about-info-1 .heading {
        line-height: 1.4;
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .about-info-1 .heading-2 {
        font-size: 25px;
    }
    
    .about-joinbtn-with-img .loginbtn-image {
        width: 70vw;
    }
    
    .about-joinbtn-with-img .astronaut-image {
        margin: 0;
        margin-top: -50px;
        width: 88vw;
    }
}


/*Bottom to top button css*/

/* Base styles for the button */
.scroll-btn {
  position: fixed;
  bottom: 40px;
  right: 25px;
  width: 13.5vw;
  height: 13.5vw;
  background: transparent; /* Makes the button container invisible */
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  
  /* Hidden by default */
  display: none; 
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Ensure the SVG fills the button */
.scroll-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); /* Adds a nice depth */
}

/* MOBILE ONLY VIEW */
@media (max-width: 765px) {
  .scroll-btn {
    display: block; /* Show only on mobile widths */
  }
}

/* Class added by JavaScript when scrolling */
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}