/* 
Default Setting 
max-width: 1500px
padding: 0 15px
====================================================================
Responsive: 
Desktop: 1024px above
Tablet: 
1024px - 800px (desktop mock)
800px - 500px (mobile mock)
Mobile: 500px below 
====================================================================
Font Setting Initialize:
family: 
weight: 500
*/
/* ==================================================================== */
/* Common css Start */
* {
    font-family: 'Poppins';
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 800px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

/* Common css End*/
/* ==================================================================== */
/* Design Comman Start */

body,
p {
    margin: 0;
}

a,
a:hover {
    text-decoration: unset;
}

.yellow-bg {
    background: #FFD436;
}

.width-1500 {
    width: -webkit-fill-available;
    max-width: 1500px;
    margin: auto;
}

.padding-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-15-top {
    padding-top: 15px;
}

.padding-15-bottom {
    padding-bottom: 15px;
}

.padding-30-top {
    padding-top: 30px;
}

.padding-30-bottom {
    padding-bottom: 30px;
}

.padding-50-top {
    padding-top: 50px;
}

.padding-50-bottom {
    padding-bottom: 50px;
}

.margin-50-top {
    margin-top: 50px;
}

.margin-50-bottom {
    margin-bottom: 50px;
}

.border-radius-15 {
    border-radius: 15px;
}

.grid-1-col {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 20px;
    align-items: center;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-start {
    display: grid;
    align-items: start;
}

.box {
    height: 25px;
    width: 25px;
    z-index: 1;
    border-radius: 5px;
}

.box-border-2 {
    display: grid;
    align-items: center;
    position: relative;
    margin: auto;
    border: solid 2px transparent;
    border-radius: 5px;
    box-sizing: border-box;
    background-clip: padding-box;
}

.box-border-2:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: -1.5px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #FFD400, #FF4502);
}

@media(max-width: 1024px) {
    .grid-2-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 800px) {

    .mob-margin-top-50 {
        margin-top: 50px;
    }

    .mob-margin-bottom-50 {
        margin-bottom: 50px;
    }

    .mob-margin-top-100 {
        margin-top: 100px;
    }

    .mob-margin-bottom-100 {
        margin-bottom: 100px;
    }

    .grid-2-col {
        gap: 60px;
    }
}

@media(max-width: 500px) {

    .grid-2-col {
        display: grid;
        grid-template-columns: 1fr;
    }

    .grid-1-col {
        display: grid;
        grid-template-columns: .5fr 1fr;
        gap: 5px;
        align-items: start;
    }
}

/* Design Comman End */
/* ==================================================================== */
/* Text Common Start */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-deco-none {
    text-decoration: none;
}

.text-underline,
.text-underline:hover {
    text-decoration: underline;
}

.text-uppercase {
    text-transform: uppercase;
}

/* Text Common End */
/* ==================================================================== */
/* Text Color Start */
.text-white {
    color: #FFFFFF;
}

.text-black {
    color: #000000;
}

.text-yellow {
    color: #FFEE00;
}

.text-blue {
    color: #1D4198;
}

/* Text Color End */
/* ==================================================================== */
/* Text Size Start */

.text-11 {
    font-size: 11px;
    font-weight: 700;
    line-height: normal;
}

.text-12 {
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
}

.text-14 {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.text-16 {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.text-16-normal {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.text-20 {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
}

.text-20-normal {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.text-22-normal {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

.text-26-normal {
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
}

.text-70 {
    font-size: 70px;
    font-weight: 500;
    line-height: normal;
}

/* Text Size End */
/* ==================================================================== */
/* Button Hover Start */
button {
    cursor: pointer;
}

button.games:hover {
    box-shadow: 0px 4px 30px rgba(255, 256, 0, 0.7);
}

button:hover img {
    box-shadow: 0px 4px 30px rgba(255, 256, 0, 0.7);
    border-radius: 20px;
}

button#enlarge-button:hover img {
    box-shadow: none !important;
    border-radius: 0;
}

/* Button Hover End */
/* ==================================================================== */
/* Popup Model Start */
/* General styling for modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    width: calc(100% - 45%);
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 30px 35px;
    z-index: 5;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.close-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    background: #DDDDDD;
    border: none;
    border-radius: 50%;
    font-weight: 700;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    z-index: 6;
    pointer-events: auto;
}

.popup-modal.fullscreen .popup-content {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
    overflow-x: scroll;
    overflow-y: hidden;
}

.popup-modal.fullscreen .popup-image {
    width: 150%;
    height: auto;
    object-fit: contain;
}

.popup-modal.fullscreen .close-popup {
    top: 15px;
    right: 15px;
}

@media (max-width: 1024px) {
    .popup-content {
        width: calc(100% - 10%);
        height: calc(100% - 10%);
        padding: 10px;
    }

    .close-popup {
        position: fixed;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: #000000;
        cursor: pointer;
        background: #DDDDDD;
        border: none;
        border-radius: 50%;
        font-weight: 700;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        z-index: 6;
        pointer-events: auto;
    }
}

/* Popup Model End */
/* ==================================================================== */