@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Potta+One&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


body {
    background: #F8F8F8;
}

main {
    width: 100%;
    max-width: 1400px;
    margin: 0px auto;
}

main header {
    background: rgba(230, 13, 250, 0.04);
    width: 96%;
    padding: 40px 90px;
    display: flex;
    align-items: center;
}

#hamburger {
    display: none;
    width: 32px;
    height: 32px;
    color: rgba(178, 10, 193, 1);
    align-self: flex-end;
    cursor: pointer;
}

.header-logo {
    width: 162px;
    height: 53.33px;
}

main header form {
    background-color: white;
    padding: 10px;
    margin: auto;
    border-radius: 29px;
    width: 524px;
    max-width: 100%;
    position: relative;
}

#searchResults {
    position: absolute;
    background-color: white;
    z-index: 20;
    width: calc(100%);
    left: 0px;
    border-bottom-left-radius: 29px;
    border-bottom-right-radius: 29px;
    padding: 10px;
    display: none;
    font-family: Poppins;
}

#searchResults ul {
    width: 100%;
}

#searchResults ul li {
    list-style-type: none;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: Poppins;
    border-top: 1px solid #dee2e6;
}

#searchResults ul li:hover {
    background-color: #F8F8F8;
    cursor: pointer;
}

#searchResults ul li:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#searchResults ul li img {
    border-radius: 10px;
    width: 60px;
    height: 54px;
}

main header form div:first-of-type {
    display: flex;
}

main header form input {
    outline: none !important;
    border: none !important;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    width: 100%;
    text-indent: 10px;
}

main header form div div {
    background: linear-gradient(180deg, #D30CE5 0%, #75077F 100%);
    width: 46px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main header form div div svg {
    width: 24.04px;
    height: 24.04px;
}


@media (max-width:992px) {
    main header {
        flex-direction: column !important;
        gap: 20px;
        width: 100%;
        padding: 40px 30px;
    }

    .header-logo {
        width: calc(149px * 1.3);
        height: calc(53.33px * 1.2);
    }

    #hamburger {
        display: block;
    }

}




.mobile-sidebar {
    width: 272.33px;
    max-width: 85% !important;
    height: 96vh;
    min-height: auto;
    border-radius: 14.18px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8.04px 0px rgba(181, 181, 181, 0.25);
    position: absolute;
    right: 2vh;
    top: 2%;
    padding: 30px 10px;
    display: none;
    flex-direction: column;
    z-index: 1000;

}

.mobile-sidebar a {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 39px;
    color: rgba(235, 13, 255, 1);
    font-size: 20px;
    font-family: Poppins;
    font-weight: 400;
    padding: 10px;
    margin-bottom: 10px;
}

.mobile-sidebar a div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: inherit;
    border-radius: 50%;
    margin-right: 15px;
}

.mobile-sidebar a div svg {
    color: rgba(235, 13, 255, 1) !important;
    fill: rgba(235, 13, 255, 1) !important;
    width: 30px;
    height: 30px;
}

.active-sidebar-link {
    background: linear-gradient(270deg, #E40DF7 0%, #860891 100%);
    color: white !important;
}


.active-sidebar-link div {
    background: rgba(255, 255, 255, 1) !important;
}

.active-sidebar-link div svg {
    color: rgba(235, 13, 255, 1) !important;
    fill: rgba(235, 13, 255, 1) !important;
}

.mobile-sidebar a:hover {
    background: linear-gradient(270deg, #E40DF7 0%, #860891 100%);
    color: white !important;
}

.mobile-sidebar a:hover div {
    background: rgba(255, 255, 255, 1) !important;
}

.mobile-sidebar a:hover div svg {
    color: rgba(235, 13, 255, 1) !important;
    fill: rgba(235, 13, 255, 1) !important;
}



.home-section-one {
    padding: 20px 0px 20px 20px;
    width: 100%;
    display: flex;
    gap: 20px;
}


.web-sidebar {
    min-width: 272.33px !important;
    max-height: 600px !important;
    border-radius: 14.18px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8.04px 0px rgba(181, 181, 181, 0.25);
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
}

.web-sidebar a {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 39px;
    color: rgba(235, 13, 255, 1);
    font-size: 20px;
    font-family: Poppins;
    font-weight: 400;
    padding: 10px;
    margin-bottom: 10px;
}

.web-sidebar a div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: inherit;
    border-radius: 50%;
    margin-right: 15px;
}

.web-sidebar a div svg {
    color: rgba(235, 13, 255, 1) !important;
    fill: rgba(235, 13, 255, 1) !important;
    width: 30px;
    height: 30px;
}



.web-sidebar a:hover {
    background: linear-gradient(270deg, #E40DF7 0%, #860891 100%);
    color: white !important;
}

.web-sidebar a:hover div {
    background: rgba(255, 255, 255, 1) !important;
}

.web-sidebar a:hover div svg {
    color: rgba(235, 13, 255, 1) !important;
    fill: rgba(235, 13, 255, 1) !important;
}


.home-section-one-selected-child-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.home-section-one-selected-child-1>div:first-of-type,
.games-hero-section h1 {
    max-width: 100% !important;
    font-family: Potta One;
}


.home-section-one-selected-child-1 div h1,
.games-hero-section h1 {
    font-size: 48px;
}

.home-section-one-selected-child-1 div h1 span,
.games-hero-section h1 span {
    color: rgba(235, 13, 255, 1);
}

.home-section-one-selected-child-1 div p {
    font-size: 20px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 30px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 582px;
}

.home-section-one-selected-child-1>div:nth-of-type(2) {
    display: flex;
}

.home-section-one-selected-child-1 div svg {
    color: rgba(166, 9, 180, 1);
}

.home-section-one>div:nth-of-type(2)>p:nth-of-type(1) {
    margin-top: 15px;
    padding: 0px 10px;
    font-size: 23px;
    font-family: Poppins;
    font-weight: 300;
    color: rgba(216, 12, 235, 1);
}

.home-section-one>div:nth-of-type(2)>p:nth-of-type(1) svg {
    position: relative;
    top: 8px;
    left: 5px;
}


#apkSliderOne {
    margin-top: 30px;
    width: 100% !important;
    margin-bottom: 50px;
}

.carousel-cell {
    width: 400px;
    max-width: 100%;
    padding: 10px;
}


.apk-slider-card-one-thumbnail {
    width: 100%;
    border-radius: 35px;
    height: 230px;
}


.flickity-button {
    background: linear-gradient(180deg, #E60DFA 0%, #880894 100%) !important;
    top: 40%;
}

.flickity-button svg {
    fill: white;
}

.apk-slider-card-one-child-one {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.apk-slider-card-one-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.apk-slider-card-one-download-link {
    background: linear-gradient(90deg, #EB0DFF 0%, #8D0899 100%);
    color: white;
    align-self: flex-start;
    padding: 10px 15px;
    border-radius: 7.04px;
    text-decoration: none;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apk-slider-card-one-download-link svg {
    width: 25px;
    height: 25px;
    margin-right: 3px;
}

.apk-slider-card-one-child-two {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.apk-slider-card-one-child-two h3 {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 33px;
    line-height: 16px;
}


.apk-slider-card-one-child-two div {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.apk-slider-card-one-child-two svg {
    color: rgba(228, 13, 248, 1);
    width: 22px;
    height: 22px;
}

.apk-slider-card-one-child-two span {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    color: rgba(108, 117, 125, 1);
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


@media (max-width:1234px) {
    .home-section-one-selected-child-1 {
        flex-direction: column;
        gap: 10px;
    }

    .home-section-one-selected-child-1>div:first-of-type *,
    .home-section-one>div:nth-of-type(2)>p:nth-of-type(1) {
        text-align: center;
    }

    .home-section-one-selected-child-1>div:first-of-type h1,
    .games-hero-section h1 {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 5px;
    }

    .home-section-one-selected-child-1>div:first-of-type p {
        font-size: 17px;
        line-height: 22px;
    }

    .home-section-one-selected-child-1 div svg {
        width: 80px;
        height: 80px;
    }

    .home-section-one>div:nth-of-type(2)>p:nth-of-type(1) {
        margin-top: 10px;
        font-size: 18px;
        line-height: 20px !important;
    }

    .home-section-one>div:nth-of-type(2)>p:nth-of-type(1) svg {
        width: 26px;
        height: 26px;
    }

}

@media (max-width:992px) {
    .web-sidebar {
        display: none !important;
    }

}


@media (max-width:768px) {
    main header form input {
        font-size: 16px;
    }

    .home-section-one-selected-child-1>div:first-of-type h1,
    .games-hero-section {
        font-size: 30px;
        /* line-height: 40px; */
    }

    .home-section-one-selected-child-1>div:first-of-type p {
        font-size: 15px;
        line-height: 22px;
    }

    .home-section-one-selected-child-1 div svg {
        width: 70px;
        height: 70px;
    }

    .home-section-one>div:nth-of-type(2)>p:nth-of-type(1) {
        margin-top: 8px;
        font-size: 16px;
        line-height: 18px !important;
    }

    .carousel-cell {
        padding: 7px;
    }

    .apk-slider-card-one-thumbnail {
        height: 180px;
        border-radius: 30px;
    }

    .apk-slider-card-one-icon {
        width: 70px;
        height: 70px;
    }

    .apk-slider-card-one-child-two h3 {
        line-height: 15px;
    }

    .apk-slider-card-one-child-two div {
        gap: 5px;
        margin-top: 3px;
    }

    .apk-slider-card-one-child-two span {
        font-size: 10px;
    }

    .apk-slider-card-one-child-two svg {
        width: 16px;
        height: 16px;
    }

    .apk-slider-card-one-download-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    .games-hero-section h1 {
        font-size: 30px;
    }
}

.home-section-two {
    background: linear-gradient(90deg, #E70DFB 0%, #890895 100%);
    margin: 20px auto;
    width: calc(100% - 40px);
    padding: 15px 30px;
    border-radius: 30px;
}

.home-section-two h2 {
    display: flex;
    align-items: center;
    width: 100%;
    color: white;
    font-family: Poppins;
    font-size: 30px;
    font-weight: 700;
    gap: 10px;
}

.home-section-two h2 svg {
    width: 50px;
    height: 50px;
}


.home-section-two-child-one {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    gap: 20px;
    margin-top: 25px;
    justify-items: center;
}

@media (max-width: 992px) {
    .home-section-two-child-one {
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }
}


.home-section-two-child-one a {
    text-decoration: none;
    color: white;
    display: flex;
    gap: 10px;
}

.home-section-two-child-one a div h3 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    text-overflow: ellipsis;
    width: 15ch;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 458px) {
    .download-hero-section-child-one-steps img {
        width: 100%;
        height: 270px;
    }

    .home-section-two {
        width: 100%;
    }

    .home-section-two h2 {
        font-size: 25px;
        justify-content: center;
    }

    .home-section-two-child-one {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .home-section-two-child-one a {
        flex-direction: column;
        align-items: center;
    }

    .home-section-two h2 svg {
        width: 40px;
        height: 40px;
    }

    .home-section-two-child-one a div h3 {
        width: inherit !important;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

    .home-section-two-child-one a div div {
        justify-content: center;
    }
}

.home-section-two-child-one a div div {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 3px;
}

.home-section-two-child-one a div div svg {
    width: 16px;
    height: 16px;
}

.home-section-two-child-one a div div span {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;

}

.home-section-two-child-one a img {
    width: 69px;
    height: 69px;
    border-radius: 10px;
    transition: transform 0.6s ease;
}


.home-section-two-child-one a:hover img {
    transform: scale(1.1);
}

.home-section-three {
    background: rgba(36, 34, 46, 1);
    margin: 40px auto;
    width: calc(100% - 50px);
    padding: 30px;
    border-radius: 30px;
}

.home-section-three h2 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #E30CF7 0%, #B208C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-section-three p {
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
}

#apkSliderTwo * {
    color: white !important;
}

@media (max-width: 458px) {
    .home-section-three {
        width: 100% !important;
        padding-right: 0px !important;
    }
}

.home-section-four {
    margin: 0px auto;
    width: calc(100% - 50px);
}

.home-section-four-child-one {
    display: flex;
    gap: 5px;
}

.home-section-four-child-one svg {
    width: 67.2px;
    height: 50.4px;
    color: rgba(166, 9, 180, 1);
    /* fill: rgba(166, 9, 180, 1); */
}

.home-section-four-child-two {
    width: 100%;
}

.home-section-four-child-three {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}



.home-section-four-child-three h2 {
    font-family: Poppins;
    font-size: 28px;
    font-weight: 600;
}

.home-section-four-child-three .margin-line {
    border: 1px solid rgba(213, 12, 231, 1);
    width: 100%;
}

.home-section-four-child-four {
    margin: 20px 0px 70px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 35px;
}


.home-section-four-child-four a {
    background-color: white;
    width: 266.72px;
    box-shadow: 0px 0px 8.04px 0px rgba(181, 181, 181, 0.25);
    display: flex;
    gap: 10px;
    border-radius: 19px;
    text-decoration: none;
    padding: 10px !important;
    position: relative;
}

.home-section-four-child-four a img {
    width: 70px;
    height: 66px;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.home-section-four-child-four a div:first-of-type {
    max-width: 100%;
}

.home-section-four-child-four a h3 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    max-width: calc(100%);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(33, 37, 41, 1);
}



.home-section-four-child-four a div div {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 3px;
}

.home-section-four-child-four a div div svg {
    width: 16px;
    height: 16px;
}

.home-section-four-child-four a div div span {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: calc(100% - 10px);
    color: rgba(201, 11, 218, 1);
}

.home-section-four-child-four .download-icon {
    background: linear-gradient(180deg, #E60DFA 0%, #880894 100%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    bottom: -23px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-section-four-child-four .download-icon svg {
    color: white;
    width: 30px;
    height: 30px;
}

.home-section-four-child-four a img {
    transition: transform 0.3s ease;
}





@media (max-width: 458px) {
    .home-section-four {
        width: 100%;
    }

    .home-section-four-child-three {
        margin-top: 2px;
    }

    .home-section-four-child-three h2 {
        font-size: 22px;
    }

    .home-section-four-child-one svg {
        width: 47px;
        height: 35.3px;
    }

    .home-section-four-child-four {
        justify-content: center;
    }

    .home-section-four-child-four a {
        right: 35px;
    }

    .home-section-four {
        padding-left: 25px;
    }
}

.home-section-five {
    background: rgba(231, 13, 251, 0.06);
    padding: 30px 0px 30px 75px;
    margin-bottom: 40px;
}

.home-section-five h2 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
}

.home-section-five h2 span {
    color: rgba(229, 13, 248, 1);
}

#apkSliderThree {
    margin-top: 10px;
}

#apkSliderThree span {
    color: rgba(201, 11, 218, 1);
}

#apkSliderFour {
    margin-top: 10px;
}

#apkSliderFour span {
    color: rgba(201, 11, 218, 1);
}

@media (max-width: 458px) {
    .home-section-five {
        padding: 30px 0px 30px 25px;
    }
}

footer {
    background: linear-gradient(90deg, #E60DFA 0%, #880894 100%);
    width: calc(100% - 150px);
    margin: 50px auto 0px auto;
    border: 0px transparent;
    border-radius: 40px;
    border-top-left-radius: 0px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    padding: 20px;
    margin-bottom: 50px;
}

footer a {
    text-decoration: none;
}

footer * {
    color: white;
    font-family: Poppins;
}


.footer-logo-image {
    margin-top: -70px;
    margin-left: -70px;
}

footer div:first-of-type p:first-of-type {
    text-align: justify;
    margin-top: 20px;
    margin-bottom: 70px;
    font-style: 18px;
    line-height: 22px;
}

footer div:nth-child(2) h2,
footer div:nth-child(3) h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

footer div:nth-child(2) a {
    display: block;
    margin-top: 5px;
}

footer div:nth-child(3) a svg {
    width: 30px;
    height: 30px;
}

footer div:nth-child(3) a:nth-child(3) {
    margin: 0px 10px;
}

@media (max-width:992px) {
    footer {
        grid-template-columns: 1fr;
    }

    footer div:first-of-type p:first-of-type {
        margin-bottom: 0px;
    }
}


@media (max-width:768px) {
    footer {
        width: 90%;
        border-radius: 30px;
        margin-top: 100px;
        overflow: visible;
    }

    .footer-logo-image {
        margin: -100px auto 0px auto;
        display: block;
    }

    footer div:first-of-type p:first-of-type {
        text-align: center;
    }

    footer div:nth-child(2) h2,
    footer div:nth-child(3) h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    footer div:nth-child(3) a svg {
        width: 20px;
        height: 20px;
    }

    .home-section-five {
        padding: 30px 0px 30px 30px;
    }
}

.apk-info-hero-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#apkSliderFive a {
    height: 210px !important;
}

#apkSliderFive .flickity-button {
    top: 50%;
}

.screenshot-image {
    height: 200px !important;
    border-radius: 20px;
}

.apk-info-hero-section div:nth-child(2) {
    padding-left: 10px;
}

.apk-info-hero-section nav {
    display: flex;
    align-items: center;
    font-family: Poppins;
    gap: 5px;
    color: rgba(215, 12, 234, 1);
    size: 20px;
}

.apk-info-hero-section nav a {
    text-transform: capitalize;
    text-decoration: none;
    color: rgba(132, 132, 132, 1);
}

.apk-info-box {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.apk-info-box img {
    width: 150px;
    height: 132px;
    border-radius: 20px;
    background-color: white;
}

.apk-info-box>div {
    width: calc(95% - 160px);
    font-family: Poppins;
}

.apk-info-box h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    word-spacing: 1.5px;
    font-weight: 700 !important;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.apk-info-box span:first-of-type {
    color: rgba(0, 0, 0, 1);
}


.apk-info-box-list-parent {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.apk-info-box-list-parent-child-one {
    width: calc(45% - 5px);
}

.apk-info-box-list-parent-child-two {
    width: calc(55% - 5px);
}

.apk-info-box-list-item {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 1);
    padding: 5px 8px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 15px;
}

.apk-info-box-list-item strong {
    min-width: 12ch;
}

.apk-info-box-list-item span {
    max-width: 100%;
    max-height: 16px;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
    top: -3px;
}

.apk-info-box-list-parent-child-one .apk-info-box-list-item {
    gap: 10px;
}

.apk-info-box-list-parent-child-two .apk-info-box-list-item {
    gap: 15px;
}

.apk-info-box-list-parent div svg {
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    color: rgba(220, 13, 239, 1);
    fill: rgba(220, 13, 239, 1);
}


.apk-download-button {
    border: 1px solid rgba(222, 13, 241, 1);
    background: linear-gradient(90deg, #DE0DF1 0%, #92089E 100%);
    transition: all;
    transition-duration: 1s;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.apk-download-button:hover {
    background: transparent;
    color: rgba(222, 13, 241, 1);
    box-shadow: 0px 0px 8.04px 0px rgba(181, 181, 181, 0.25);
}

.apk-download-button svg {
    width: 32px;
    height: 32px;
}



@media (max-width:992px) {
    .apk-info-hero-section {
        flex-direction: column-reverse;
    }
}

@media (max-width:800px) {
    .apk-info-box {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 !important;
    }

    .apk-info-box>div {
        width: calc(100% - 30px);
    }

    .apk-info-box h1 {
        text-align: center;
        font-size: 18px !important;
        line-height: 22px;
    }

    .apk-info-box span:first-of-type {
        display: block;
        text-align: center;
        width: 100%;
    }

    .apk-info-box-list-parent {
        flex-direction: column;
    }

    .apk-info-box-list-parent-child-one,
    .apk-info-box-list-parent-child-two {
        width: 100%;
        padding-left: 0px !important;
    }

    .apk-info-box-list-item {
        position: unset;
        justify-content: flex-start !important;
        gap: 15px !important;
    }

    .apk-info-hero-section nav {
        font-size: 16px !important;
        flex-wrap: wrap;
        line-height: 18px;
        margin-top: 10px;
        justify-content: center;
    }

    .apk-info-hero-section nav a {
        font-size: 16px !important;
    }

    .apk-info-box img {
        width: 120px;
        height: 105.6px;
        border-radius: 20px;
        background-color: white;
    }

    .home-section-one {
        padding: 0px 10px;
    }

    .apk-info-hero-section div:nth-child(2) {
        padding-left: 0px;
    }

    .games-hero-section h1 {
        text-align: center;
    }
}


.apk-info-mod-info-section {
    background-color: white;
    padding: 10px 20px;
    font-family: Poppins;
    border-radius: 20px;
    width: calc(100% - 150px);
    margin: 20px auto 0px auto;
}

.apk-info-mod-info-section>div {
    padding-left: 20px;
}

.apk-info-details-section {
    width: calc(100% - 150px);
    margin: 20px auto 0px auto;
    font-family: Poppins;
    word-spacing: 1.7px;
    text-align: justify;
}
.apk-info-details-section h2, .apk-info-details-section h3{
    margin: 10px 0px;

}

.apk-info-details-section>h2 {
    text-indent: 15px;
}

.apk-info-details-section>div {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    margin-top: 7px;
}

.apk-info-details-section>div img {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
}

.apk-info-details-section>div ul {
    padding-left: 20px;
}


@media (max-width:768px) {

    .apk-info-mod-info-section,
    .apk-info-details-section {
        width: 90%;
    }

    .apk-info-details-section>h2 {
        text-align: center;
    }
}


.you-like-heading {
    font-family: Poppins;
    font-size: 26px;
    text-align: center;
}

.apk-info-you-like-section svg {
    color: rgba(201, 11, 218, 1);
}

.download-hero-section nav {
    display: flex;
    align-items: center;
    font-family: Poppins;
    gap: 5px;
    color: rgba(215, 12, 234, 1);
    size: 20px;
}

.download-hero-section nav a {
    text-transform: capitalize;
    text-decoration: none;
    color: rgba(132, 132, 132, 1);
}

.download-hero-section-child-one {
    background: linear-gradient(119.42deg, #D80CEA 31.97%, #7A0784 93.88%);
    color: white;
    padding: 30px 20px;
    width: calc(96% - 15px);
    border-radius: 30px;
    margin-top: 15px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.download-hero-section-child-one-steps {
    display: grid;
    gap: 20px;
    grid-template-columns: 1.1fr 1fr 1fr;
}

.download-hero-section-child-one-steps img {
    width: 100%;
    height: 320px;
}

.download-hero-section-child-one-steps div {
    position: relative;
}

.download-hero-section-child-one-steps div img:nth-child(2) {
    width: 120px;
    height: 105.6px;
    position: absolute;
    bottom: 50px;
    left: calc(50% - 60px);
    border-radius: 14px;
}

.download-hero-section-child-one-buttons {
    display: grid;
    gap: 20px;
    /* grid-template-columns: 1.1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.download-hero-section-child-one-buttons button {
    border: none !important;
    outline: none !important;
    background-color: white;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    border-radius: 30px;
    color: rgba(185, 10, 200, 1);
    padding: 15px 5px;
    cursor: pointer;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    border: 1px solid white !important;
}

.download-hero-section-child-one-buttons button svg {
    width: 32px;
    height: 32px;
}

.download-hero-section-child-one-buttons button:hover {
    background-color: transparent;
    color: white;
}


@media (max-width: 992px) {
    .download-hero-section {
        width: calc(100% - 40px);
        margin: auto;
    }

    .download-hero-section-child-one-steps img {
        width: 100%;
        height: 270px;
    }

    .download-hero-section-child-one-steps div img:nth-child(2) {
        bottom: 30px;
    }
}

@media (max-width: 800px) {
    .download-hero-section nav {
        font-size: 16px !important;
        flex-wrap: wrap;
        line-height: 18px;
        margin-top: 10px;
        justify-content: center;
    }

    .download-hero-section nav a {
        font-size: 16px !important;
    }

    .download-hero-section-child-one-steps img {
        width: 100%;
        height: 230px;
    }

    .download-hero-section-child-one-steps div img:nth-child(2) {
        bottom: 20px;
    }

    .download-hero-section-child-one {
        flex-direction: column-reverse;
        width: 100% !important;
    }

    .download-hero-section-child-one-steps,
    .download-hero-section-child-one-buttons {
        grid-template-columns: 1fr;
    }
}


.modal-form {
    background-color: #F8F8F8;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.modal-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 400px;
    max-width: 80%;
    font-family: Poppins;
}

.modal-form form input {
    width: 100%;
    outline: none !important;
    border: none;
    border: 1px solid #75077F;
    font-size: 20px;
    font-weight: 400;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    text-align: center;
}

.modal-form form button {
    background: linear-gradient(90deg, #DE0DF1 0%, #92089E 100%);
    color: white;
    outline: none !important;
    border: none !important;
    width: 100%;
    padding: 12px 5px;
    font-size: 20px;
    font-weight: 700;
    font-family: Poppins;
    cursor: pointer;
}

#puzzleParent {
    display: flex;
    gap: 5px;
    width: 100%;
}

#puzzleParentChildOne {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

#puzzleParentChildOne div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(166, 9, 180, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#puzzleParentChildOne div svg {
    width: 25px;
    height: 25px;
    color: rgba(132, 132, 132, 1);
}

#puzzle {
    background-color: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 700;
    font-size: 30px;
}


.html-sitemap-section {
    font-family: Poppins;
}

.html-sitemap-section li {
    list-style: none;
}


.html-sitemap-section a {
    text-decoration: none;
    /* color: rgba(132, 132, 132, 1); */
    color: black;
}

.html-sitemap-section ul {
    margin-left: 20px;
}


.games-hero-section h1 {
    margin: 10px 0px;
}

.game-category-section {
    width: calc(100% - 50px);
    margin: 20px auto;
}

#gamesCategorySlider a {
    width: 240px;
    text-decoration: none;
    max-width: 80%;
    font-family: Poppins;
    color: white;
    position: relative;
}

#gamesCategorySlider a img {
    height: 230px;
    object-fit: cover;
    filter: brightness(35%);
    border-radius: 20px;
}

#gamesCategorySlider a h3 {
    position: absolute;
    top: 45%;
    left: 0px;
    width: inherit;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

#gamesCategorySlider .flickity-button {
    top: 50%;
}

.game-category-section-child-one {
    display: flex;
    align-items: center;
    font-family: Poppins;
    gap: 5px;
    width: 100%;
}

.game-category-section-child-one svg {
    width: 40px;
    height: 40px;
    color: rgba(203, 11, 221, 1);
}

.game-category-section-child-one h3 {
    font-size: 32px;
}

@media (max-width:800px) {
    #gamesCategorySlider a img {
        height: 230px;
    }
}





.game-slider {
    width: calc(100% - 150px);
    margin: 20px auto;
}

.game-slider .game-slider-child-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-slider .game-slider-child-one a {
    text-decoration: none;
    background: linear-gradient(180deg, #E60DFA 0%, #880894 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-family: Poppins;
}

.game-slider h2 {
    color: rgba(208, 12, 226, 1);
    font-family: Poppins;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-slider .home-section-four-child-four {
    width: 100%;
}
.game-slider .home-section-four-child-four a{
    right: 0px;
}

@media (max-width:768px) {
    .game-slider {
        width: 90%;
    }

    .game-slider .game-slider-child-one {
        flex-direction: column;
    }
}





.content-parent{
    background-color: white;
    padding: 20px;
    border-radius: 14px;
    font-family: Poppins;
    width: calc(100% - 20px);
}

.content-parent ul, .content-parent ol{
    margin-left: 25px;
}


.contact-form{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}
.contact-form div{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.contact-form input, .contact-form textarea{
    border: none !important;
    outline: none !important;
    background-color: #F8F8F8;
    font-size: 22px;
    text-indent: 10px;
    padding: 13px 0px;
    border-radius: 5px;
}

.contact-form textarea{
    height: 145px;
}

.contact-form button{
    color: white;
    border: none !important;
    outline: none !important;
    background: linear-gradient(90deg, #EB0DFF 0%, #8D0899 100%);
    font-weight: 700;
    font-size: 20px;
    width: 250px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    
}


@media (max-width:800px) {
    .contact-form{
        grid-template-columns: 1fr;
    }
}