.games-nav a,
.games-nav p {
    font-size: calc(14px + .5vw)
}

.games-nav .page-active,
.games-nav a:hover {
    background-color: #ff4545;
    color: #000
}

body,
html {
    height: 100%;
    overflow-x: hidden;
    background-color: #fbfbfb
}

a,a:hover {
    text-decoration:none
}

#footer .footer-copyright,
header {
    background-color: #fff
}

.header-container {
    margin: 0 auto;
    min-width: 370px;
    padding: 5px 0;
    width: 56%
}

header .logo {
    border-radius: 10px;
    width: 50px
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    color: #121416;
    transition: .2s
}

.navbar-light .navbar-nav .nav-link:hover {
    text-decoration: none;
    color: var(--km-green)
}

header {
    box-shadow: 1px 3px 10px rgba(230, 230, 230, .54)
}

.page-container {
    margin: auto;
    max-width: 1900px;
    padding: 30px 20px
}

.search-box {
    max-width: 765px;
    margin: auto
}

.search-box .input-group-text.custom-input-group-text {
    background-color: #fff;
    border-right: none;
    border-color: rgba(0, 0, 0, .09) !important;
    padding: 20px 27px;
    border-radius: 1.25rem 0 0 1.25rem
}

.search-box .form-control.custom-form-control {
    border-left: none;
    border-color: rgba(0, 0, 0, .09) !important;
    padding: 14px;
    border-radius: 1.25rem;
    font-size: 19px
}

.input-group>.form-control.custom-form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.search-box .form-control.custom-form-control:focus {
    box-shadow: none;
    border-color: #ccc
}

.search-filter {
    max-width: 530px;
    margin: auto
}

.search-filter nav {
    margin: auto;
    display: flex;
    justify-content: center
}

.search-filter nav>ul.pagination {
    margin: auto;
    flex-wrap: wrap;
}

.search-filter nav>ul.pagination>li {
    width:auto;
    text-align:center;
    margin: 5px;
  }

@media(max-width:900px) {
  .search-filter nav>ul.pagination {
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:779px) {
  .search-filter nav>ul.pagination {
    display:flex !important;
    flex-wrap:wrap;
  }
  .search-filter nav>ul.pagination>li {
    margin:2px;
}
  .search-filter nav>ul.pagination>li {
    width: 100%;
    max-width: 281px;
    margin: 0px auto 5px auto;
  }
}

iframe {
  width:100% !important;
}

.search-filter nav>ul.pagination>li>a {
    font-size: 16px;
    padding: 13px 24px;
    border-radius: 8px !important;
    font-weight: 500;
    color: #000
}

.search-filter nav>ul.pagination>li>a:hover {
    text-decoration: none !important
}

.projects-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, max-content));
    grid-gap: 10px;
    padding: initial;
    max-width: 91rem;
    margin: auto;
    place-content: center;
    min-height: 295px;
}

.project-card {
    padding: 2px;
    width: auto;
    border-radius: 10px;
    max-width: 450px;
    max-height: 540px;
    min-height: 540px
}

.project-card .card-image {
    height: 255px;
    overflow: hidden
}

.project-card .card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 16/9
}

.project-card .btn-openwebsite-style {
    width: calc(100% - 53px)
}

.project-card .card-ad,
.project-card .card-ad div,
.project-card .card-ad iframe,
.project-card .card-ad ins {
    max-width: 100%;
    width: 100%
}

.project-card .project-badge {
    font-size: 13px;
    letter-spacing: .2px
}

.project-card .card-text {
    height: 120px;
    max-height: 100px;
    font-size: 16px;
    overflow-x: hidden
}

.project-card:first-child .card-project-title,
.project-card:nth-child(2) .card-project-title,
.project-card:nth-child(3) .card-project-title {
    font-weight: 700
}

.project-card .card-project-title {
    font-weight: 600;
    font-size: 24px;
}

.project-card .card-ad {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: auto;
    padding: 21px
}

@media (max-width:992px) {
    .header-container {
        min-width: auto;
        width: 95%
    }
}

@media (min-width:992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: .5rem
    }
}

.modal-content {
    box-shadow: 1px 1px 20px 20px rgba(174, 174, 174, .46)
}

.modal-backdrop.show {
    opacity: 1
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, .2);
    transition: .2s
}

.search-disabled {
    pointer-events: none;
    filter: blur(3px);
    cursor: none;
}

.ajax-search-container.search-disabled input {
    pointer-events: none !important;
}

/* Search Loading */
.km-ajax-loading {
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    display: none;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3467ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
  }

  .km-ajax-loading.show {
    display: inline-block;
  }

  .km-ajax-data-loading {
    margin: auto;
    transform: translate(-50%,-50%);
    display: none;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3467ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    margin: 90px auto;
  }

  .km-ajax-data-loading.show {
    display: flex;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  

.badge-gray {
    background-color: rgba(164, 199, 234, .3)
}
/* 
.adModal__adframe {
    width: 100%;
    height: auto;
    margin: auto auto 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.adModal__adframe .adsbygoogle {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center
} */

.pjcard-animated-text {
    --bg-size: 400%;
    --color-one: #8e70db;
    --color-two: #46bcffcc;
    --color-three: #f445bdc8;
    --color-four: #5b18b7c1;
    --color-five: #ff0e0ab6;
    background: linear-gradient(90deg, var(--color-three), var(--color-four), var(--color-five), var(--color-four), var(--color-three)) 0 0/var(--bg-size) 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: 8s linear infinite pjcard-text-animation
}

@media (prefers-reduced-motion:no-preference) {
    .pjcard-animated-text {
        animation: 8s linear infinite pjcard-text-animation
    }

    @keyframes pjcard-text-animation {
        to {
            background-position: var(--bg-size) 0
        }
    }
}

.games-home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 83vh
}

.games-nav {
    text-align: center;
    padding: 18px 10px;
    background-color: #0e1213
}

.games-games,
.games-home,
.games-play,
.games-settings {
    background-color: #1a2023
}

.games-nav p {
    margin: 0;
    display: inline-block;
    color: #acacac
}

.games-nav a {
    font-weight: 500;
    padding: 5px 1.2vw;
    margin: 0 1vw;
    border-radius: 10px;
    color: #fff;
    transition: background-color .3s ease-in-out
}

.games-home-container h1 {
    font-size: calc(40px + 1vh);
    color: #fff !important;
    margin: 5px 0;
    text-align: center
}

.games-home-container p {
    font-size: calc(20px + .2vh);
    margin: 0
}

.games-games,
.games-play {
    color: #fff;
    min-height: 87vh
}

.games-container,
.tab-presets {
    display: flex;
    flex-direction: row
}

.games-games-container {
    text-align: center;
    padding: 20px;
    width: 80%;
    margin: 10px auto
}

.games-games-container input {
    border: none;
    padding: 5px;
    border-radius: 5px;
    margin: 2.5vh 0 5vh;
    text-align: center;
    font-size: 1.5em;
    width: calc(120px + 20vw);
    height: 40px;
    background-color: #0f0f0f;
    color: #fff;
    outline: 0
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px
}

.games-gamebox {
    width: 215px;
    max-width: 100%;
}

.games-gamebox a {
    text-decoration: none;
    color: #fff !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.games-gamebox p {
    color: #fff !important;
    font-weight: 700;
    font-size: 17px;
    height: 55px;
}

.games-gamebox:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 23px 7px rgba(255, 0, 0, .8)
}

.games-gamebox button {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 500;
    padding-top: 3px;
    color: #fff;
    background-color: #ff4545;
    margin-bottom: 12px;
    border: 3px solid #fff
}

.games-gamebox img {
    aspect-ratio: 1/1;
    margin-top: 5px;
    border-radius: 5px;
    width: 125px
}

.games-play-container {
    display: flex;
    width: 100%;
    height: fit-content
}

.games-play-container .playing {
    height: 80vh;
    float: left;
    width: 117rem
}

.games-play-container .play-info {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px auto;
    float: right;
    width: 25%;
    border-left: 1px solid #3a3a3a;
    height: fit-content
}

.playing iframe {
    width: 100%;
    height: 100%
}

.play-info img {
    width: 8vw;
    border-radius: 17px;
    margin: 10px auto 20px
}

.play-info h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: calc(15px + 1vw);
    color: #fff;
    font-weight: 700;
    flex-direction: column
}

.play-info p {
    text-align: center;
    padding: 15px;
    font-size: calc(15px + .3vw)
}

.games-settings-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    height: 72vh
}

.games-settings-container h2,
.games-settings-container p {
    color: #fff;
    margin: 5px;
    text-align: center
}

.games-settings-container input {
    border: none;
    padding: 5px;
    border-radius: 5px;
    margin: 7px;
    text-align: center;
    font-size: 1.5em;
    width: 85%;
    background-color: #0f0f0f;
    color: #fff;
    outline: 0
}

.games-settings-container button {
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    background-color: #0f0f0f;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s;
    outline: 0;
    width: 150px
}

.games-settings-container form {
    display: flex;
    align-items: center
}

.games-settings-container button:hover {
    background-color: #555
}

.games-settings-container .panic-settings,
.games-settings-container .tab-settings {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px
}

.tab-presets button {
    margin: 5px;
    width: 60px
}

.tab-presets button img {
    height: 30px
}

/* Wifi Map */
.wifimap-container {
    padding: 240px 0;
}
.wifimap-page h1 {
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    margin-top: 40px;
}

.wifimap-page p {
    text-align: center;
    font-size: 21px;
    color: #ffffff;
}

.wifimap-page ul {
    max-width: 565px;
    font-size: 25px;
    color: #ffffff;
    margin: auto;
    padding: 25px 0;
    list-style-type: none;
}

.wifimap-page ul li img {
    width: 135px;
    margin: auto;
}

.wifimap-page .wifimap-input-container {
    max-width: 572px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    color: #3a4b57;
    border: 3px solid #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 10px 28px;
    background: #7644ce4d;
}

.wifimap-page .wifimap-input-container i {
    color:#ffffff;
}

.wifimap-page .wifimap-input-container .wifimap-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 26px;
    padding-left: 22px;
    width: 100%;
    height: 100%;
    height: 50px;
}

.wifimap-generate-btn {
    appearance: none;
border: none;
border-radius: 5px;
font-size: 18px;
width: 282px;
height: 43px;
margin: 0px 0px 0px 20px;
vertical-align: middle;
font-weight: 600;
background-color: #ff0000;
color: #ffffff;
border: 2px solid #ffffff;
transition: .2s ease-in;
}

.wifimap-generate-btn:hover {
    background-color: #be3a3a;
}

/* Face Emoji Remover */
.faceemojiremover-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.faceemojiremover-page img {
     width: 570px;
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 8px;
}

.faceemojiremover-page h1 {
 font-size: 50px;
 margin-bottom: 22px;
 font-weight: 500;
}

.faceemojiremover-page .upload {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px dashed #FF66C4;
    border-radius: 15px;
    padding: 40px 80px;
    font-size: 20px;
    margin-bottom: 42px;
}

.faceemojiremover-page .upload button {
    appearance: none;
    border: none;
    background-color: #2196F3;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 11px;
    font-size: 23px;
    padding: 15px 25px;
    transition:.2s ease-in;
}

.faceemojiremover-page .upload p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}

.faceemojiremover-page .upload button:hover {
    background-color:#FF66C4;
}

/* Whatsapp Tracker */
.whatsapptracker-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.whatsapptracker-page img {
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 8px;
}

.whatsapptracker-page h1 {
 font-size: 47px;
 margin-bottom: 15px;
 font-weight: 500;
 margin-top: 25px;
}

.whatsapptracker-page h2 {
    margin-bottom: 20px;
}

.whatsapptracker-page button {
    appearance: none;
    border: none;
    background-color: #2196F3;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 11px;
    font-size: 23px;
    padding: 15px 25px;
    transition:.2s ease-in;
    max-width: 280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.whatsapptracker-page .upload button:hover {
    background-color: #1d75bd;
}

.whatsapptracker-page .whatsappnumber {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 87vh; */
    background-color: rgb(251, 251, 251) !important;

    @media (max-width: 768px) {
      /* height: 75vh; */
    }
  }

  .whatsapptracker-page .phone-input-container {
    font-family: Arial, sans-serif;
    position: relative;
    margin: 20px auto;
    padding: 30px;
    background-color: #f6f6f6;
    border-radius: 8px;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.1);

    @media (max-width: 768px) {
      width: 80%;
    }
  }

  .whatsapptracker-page .phone-input-container h1 {
    text-align: center;
    font-size: 40px;
  }

  .whatsapptracker-page .input-group {
    display: grid;
    grid-template-columns: 25% 73%;
    gap: 5px;
    justify-content: left;
    width: 100%;
  }

  .whatsapptracker-page .input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 5px;
  }

  .whatsapptracker-page .input-field label {
    margin-bottom: 5px;
    margin-left: 3px;
    font-size: 14px;
    color: #333;
  }

  .whatsapptracker-page .country-code-input,
  .whatsapptracker-page .phone-number-input,
  .whatsapptracker-page .input-field input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    color: #333;
  }

  .whatsapptracker-page .country-code-input {
    max-width: 70px
  }

  /* Focus style */
  .whatsapptracker-page .country-code-input:focus,
  .whatsapptracker-page .phone-number-input:focus,
  .whatsapptracker-page .input-field input:focus {
    border-color: #25D366;
    outline: none;
  }

  .whatsapptracker-page input::placeholder {
    color: #999;
  }

  .whatsapptracker-page .create-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #25D366;
    color: white;
    font-size: 21px;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out;
  }

  .whatsapptracker-page .create-button:hover {
    background-color: #1bb051;
  }

  .whatsapptracker-page input[type='number']::-webkit-inner-spin-button,
  .whatsapptracker-page input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

/* Private Instagram Viewer */
.privateinstagramviewer-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.privateinstagramviewer-page img {
    width: 450px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.privateinstagramviewer-page h1 {
 font-size: 50px;
 margin-bottom: 22px;
 font-weight: 500;
}

.privateinstagramviewer-page .upload {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px dashed #ff7716;
    border-radius: 15px;
    padding: 40px 80px;
    font-size: 20px;
    margin-bottom: 42px;
}

.privateinstagramviewer-page .upload button {
    appearance: none;
    border: none;
    background-color: #fd9348;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 11px;
    font-size: 23px;
    padding: 15px 25px;
    transition:.2s ease-in;
}

.privateinstagramviewer-page .upload p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}

.privateinstagramviewer-page .upload button:hover {
    background-color:#fd9348;
}

/* Remove BG */
.removebg-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.removebg-page img {
    width: 450px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.removebg-page h1 {
 font-size: 50px;
 margin-bottom: 22px;
 font-weight: 500;
}

.removebg-page .upload {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px dashed #2376e3;
    border-radius: 15px;
    padding: 40px 80px;
    font-size: 20px;
    margin-bottom: 42px;
}

.removebg-page .upload button {
    appearance: none;
    border: none;
    background-color: #2376e3;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 11px;
    font-size: 23px;
    padding: 15px 25px;
    transition:.2s ease-in;
}

.removebg-page .upload p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}

.removebg-page .upload button:hover {
    background-color:#2376e3;;
}

.modal.captcha-modal {
    height:920px;
  }


  .blog-cards-row  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, max-content));
    grid-gap:10px;
    max-width: 110rem;
    margin: auto;
    place-content: center;
  }

  .blog-card {
    width: auto;
    max-width: 360px;
    min-width: 360px;
    max-height: 450px;
    min-height: 450px;
    border-radius:10px;
}

.blog-card .card-category {
position:absolute;
top:15px;
right:15px;
}

.blog-card .card-title {
    position:absolute;
    bottom:5px;
    left:12px;
    color:#ffffff;
    text-shadow:1px 1px 2px rgba(0,0,0,0.3)
}

.blog-card .card-image {
    height:100%;
    width:100%;
    padding:0!important;
}

.blog-card .card-image img {
    cursor: pointer;
    height:100%;
    overflow:hidden;
    width:100%;
        border-radius:9.5px;
}

.blog-card .btn-openwebsite-style {
    width: calc(100% - 53px)
}

.blog-card .card-ad,
.blog-card .card-ad div,
.blog-card .card-ad iframe,
.blog-card .card-ad ins {
    max-width: 100%;
    width: 100%
}

.blog-card .project-badge {
    font-size: 13px;
    letter-spacing: .2px
}

.blog-card .card-text {
    height: 120px;
    max-height: 100px;
    font-size: 16px;
    overflow-x: hidden
}

.blog-card.noimage {
    background-color:#302d2d;
}

.blog-card .card-project-title {
       line-height: 130%;
    font-size: 1.25rem;
    font-weight:500;
}

.blog-card .card-ad {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: auto;
    padding: 21px
}


.headerads, .footerads {
    padding: 20px 10px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d3d3d31a;
    vertical-align: middle;
}

/** Home Blog (with project) */
.home-blog-card {
    padding: 0px;
    width: auto;
    border-radius: 10px;
    max-width: 450px;
    max-height: 540px;
    min-height: 540px;
}

.home-blog-card .card-image a {
    text-decoration:none;
}

.home-blog-card img {
    width:100%;
    max-height:475px;
    margin-top: 2;
}

.home-blog-card h3 {
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
    margin-top:17px;
     transition:all 0.1s ease-out;
}

.home-blog-card h3:hover {
    color:#3467FF;
    transform:scale(1.025);
    transition:all 0.1s ease-in;
}


#footer {
    margin-top:0;
}


.single-post-title {
    max-width: 1125px;
    margin: auto;
}

.single-post-title > span {
    font-size: 48px;
    line-height: normal;
}


@media(max-width:779px) {
    .blogpost-wrapper img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover;;
    }
    .single-post-title {
        padding-bottom:15px;
    }
    .single-post-title > span {
        font-size: 35px;
        line-height: 1;
    }
}

.btn-blog-learnmore {
    animation: learnmoreanim 1s infinite ease;   
    background: linear-gradient(90deg, #2edcb1, #18ab7b); /* Fallback */
    background-size: 400% 400%; /* For a smooth transition */
    border-color:transparent;
    transition:all .1s ease;
}

@keyframes learnmoreanim {
    0% {
        background-position: 0% 50%;
         transform:scale(1.005);
    }
    50% {
        background-position: 100% 50%;
        transform:scale(1);
    }
    100% {
        background-position: 0% 50%;
        transform:scale(1.005);
    }
}