:root {
    --primary-color: #c90900;
    --secondary-color: #000000;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
    background-color: #f6f1fa;
    font-family: "Inter", sans-serif;
}

body.light-mode {
    background-color: #f6f1fa;
    color: #000000;
}

body.light-mode a {
    color: #000000;
}

body.dark-mode {
    background-color: #141218;
    color: #ffffff;
}

body.dark-mode .games-card .card .card-body,
body.dark-mode .games-card .card .card-footer {
    background-color: #201e26 !important;
}

body.dark-mode .games-card .card .card-title,
body.dark-mode .games-card .card p {
    color: #fff;
}

body.dark-mode a {
    color: #ffffff;
}

header {
    align-items: center;
    background-color: var(--primary-color);
    display: flex;
    gap: 253px;
    height: 78px;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.dark-mode-icons {
    background-color: #ff8605;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.icon-hidden {
    display: none;
}


.header-logo {
    width: 100px;
}

.home-banner {
    height: 300px;
    margin-top: 22px;
    overflow: hidden;
}

.home-banner-image {
    background-image: url('image/home-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.top_bar p,
.top_bar a {
    margin: 0px;
    font-size: 18px;
    font-weight: 700;
    color: #400059;
    text-decoration: none;
}

.games-card .card {
    background-color: transparent;
    border-radius: 0px;
}

.games-card .card .card-body,
.games-card .card .card-footer {
    background-color: #fff;
    border-radius: 0px;
}

.games-card .card .card-title {
    font-size: 18px;
    margin: 0px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.games-card .card p {
    font-size: 14px;
    margin: 0px;
    font-weight: 400;
}

.games-card .card button {
    border: 0px;
    border-radius: 5px;
    background-color: #be4342;
    color: #fff;
    padding: 5px 30px;
    text-transform: uppercase;
}

.games-card img {
    /* max-height: 200px; */
    height: 220px;
}

.games-card a {
    text-decoration: none;
}

.dark-mode .top_bar p,
.dark-mode .top_bar a {
    color: #fff;
}

.dark-mode .dark-svg svg path {
    fill: #fff;
}

.overlap-group-1 {
    /* background: linear-gradient(#ffee94, #f7b339); */
    background-color: #be4342;
    justify-content: flex-end;
    width: auto;
    padding: 7.0px 21.8px;
    border: 0px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
}

.dropdown-menu {
    background-color: #400059 !important;
    color: #fff;
    border-radius: 15px;
    margin-top: 10px;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff !important;
    background-color: transparent;
}

.close-icons {
    height: 14px;
    width: 14px;
    filter: brightness(0);
}

#iconClose {
    display: none;
}

.back-btn {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff !important;
    width: auto;
    padding: 0px 20px;
    font-size: 12px;
    height: 30px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.learn-more-text {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0px;
    margin-right: 50px;
}

.menu-list li {
    list-style-type: none;
}

.menu-list li a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    padding: 10px;
}

.menu-list li a.active {
    background-color: #b30000;
}

/* Privacy Policy Details Page Start */
.privacy-policy-details h3 {
    font-size: 25px;
    font-weight: 600;
}

.privacy-policy-details h4 {
    font-size: 18px;
    font-weight: 500;
}

.privacy-policy-details ul li {
    list-style-type: auto;
    font-size: 20px;
    font-weight: 600;
}

.privacy-policy-details ul li p {
    padding-top: 10px;
    font-size: 16px;
    font-weight: 400;
}

.privacy-policy-details p,
.privacy-policy-details a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

/* Privacy Policy Details Page End */
/* All Games Page Design Start */
.all-games-card .card {
    border: 0px;
    background-color: transparent;
    border-radius: 0px;
}

.all-games-card .card .image-box {
    min-width: 200px;
    max-width: 200px;
    width: 100%;
    height: 150px;
}

.all-games-card .card img {
    width: 100%;
    height: 100%;
}

.all-games-card .card-title {
    font-size: 15px;
    font-weight: 600;
}

body.dark-mode .all-games-card .card .card-title {
    color: #fff;
    font-size: 14px;
}

.all-games-card .card .card-body {
    padding: 0px;
}


@media only screen and (max-width: 2560px) and (min-width: 768px) {
    .home-btn {
        padding: 15px 30px;
        font-size: 16px;
        height: 40px;
    }

}


/* All Games Page Design End */

@media only screen and (max-width: 1400px) and (min-width: 768px) {
    .home-banner {
        height: 350px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .games-card img {
        height: 180px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 80px) {
    .home-banner {
        height: 250px;
    }

    .overlap-group-1 {
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 10px;
    }

    .top_bar p,
    .top_bar a {
        font-size: 14px;
    }

    .privacy-policy-details h3 {
        font-size: 18px;
    }

    .privacy-policy-details h4 {
        font-size: 14px;
    }

    .privacy-policy-details ul li {
        font-size: 16px;
    }

    .privacy-policy-details ul li p {
        font-size: 14px;
    }

    .privacy-policy-details p,
    .privacy-policy-details a {
        font-size: 14px;
    }

    .all-games-card .card .image-box {
        min-width: 120px;
        max-width: 120px;
        width: 100%;
        height: 100px;
    }

    .all-games-card .card a {
        height: 25px;
        font-size: 10px;
    }

    .all-games-card .card .card-title {
        color: #400059;
        font-size: 12px;
    }
}

/* Contact us start */
.contact-form .card {
    background-color: #fff;
    border-radius: 10px;
    border: 0px;
}

.contact-form h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form label {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.contact-form button {
    background-color: var(--primary-color) !important;
    color: #fff;
    border: 0px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
}

.contact-form button:hover {
    background-color: #b30000;
}

.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: var(--primary-color) !important;
    outline: 0;
    box-shadow: none !important;
}


.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: auto;
    min-height: auto;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 10px !important;
}

.contact-form {
    height: calc(100vh - 78px);
}

/* Contact us end */