@font-face {
    font-family: OpenSans-Regular;
    src: url('../fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: OpenSans-Medium;
    src: url('../fonts/OpenSans-Medium.ttf');
}

@font-face {
    font-family: OpenSans-SemiBold;
    src: url('../fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: OpenSans-Bold;
    src: url('../fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: YesevaOne-Regular;
    src: url('../fonts/YesevaOne-Regular.ttf');
}

:root {
    --theme-color-1: #febb44;
    --theme-color-2: #0d0103;
    --theme-color-3: #5a221e;
    --theme-color-4: #370f11;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --font-color: #ffffff;
    --heading-color: #141414;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #19191a;
}

body {
    background-color: var(--theme-color-2);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'OpenSans-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'OpenSans-SemiBold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 6px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
    border: 1px solid var(--theme-color-1);
    white-space: nowrap;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    background-color: #fff;
    z-index: 9999;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 40%;
    z-index: 999;
    transform: translate(-50%);
    background-color: #fff;
    display: inline-block;
}

input:hover,
input:focus,
input:active {
    box-shadow: none;
    outline: none;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--font-white);
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after {
    font-family: "Fontawesome", sans-serif;
    font-weight: 400;
    content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top {
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar.fixed-top .nav-link {
    color: var(--font-black);
}

.navbar-nav .nav-item {
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover {
    color: var(--theme-color-1);
}

.nav-item.search .btn-main {
    white-space: nowrap;
}

.navbar .navbar-brand .white {
    display: block;
}

.navbar .navbar-brand .black {
    display: none;
}

.navbar.fixed-top .navbar-brand .white {
    display: none;
}

.navbar.fixed-top .navbar-brand .black {
    display: block;
}

@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }
    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu {
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li {
    margin: 5px 0px 5px 0px;
}

.dropdown-menu li a {
    color: var(--font-black);
    font-size: 16px;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover {
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar {
    background-color: var(--bg-black);
    padding: 12px 0px;
}

.topbar-contact-wrapper ul li {
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a {
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i {
    color: var(--theme-color-1);
    margin-right: 10px;
}

.topbar-social {
    text-align: right;
    display: flex;
}

.topbar-social li {
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a {
    color: var(--font-black);
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    border-radius: 5px;
}

.topbar-contact-wrapper {
    position: relative;
    margin-right: 2rem;
}

.navbar-brand img {
    min-width: 180px;
    width: 180px;
}

.header-btns {
    display: flex;
    align-items: center;
}

.header-btns a {
    margin-left: 15px;
}

.header-btns a:first-child {
    margin-left: 0px;
}

.banner-container {
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
    /* background-color: var(--bg-black); */
}

.banner-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-small-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'OpenSans-Medium', sans-serif;
}

.banner-heading {
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'YesevaOne-Regular', sans-serif;
}

.banner-heading span {
    color: var(--theme-color-1);
}

.banner-description {
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 20px;
}

section {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
    overflow: hidden;
}

.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.section-heading-wrapper img {
    width: 20px;
    margin-right: 15px;
}

.section-heading {
    font-size: 26px;
    color: var(--theme-color-5);
    margin-bottom: 0px;
    text-align: center;
}

.section-heading span {
    font-family: 'OpenSans-Regular', sans-serif;
}

.section-description {
    color: var(--font-black);
    text-align: center;
    font-size: 18px;
}

#my-map-canvas img {
    max-height: none;
    max-width: none !important;
    background: none !important;
}

.topbar-container-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 9rem;
    position: relative;
}

.about-content-wrapper h2 {
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.about-content-wrapper p {
    margin-bottom: 20px;
}

.about-coins-img {
    position: absolute;
    right: 0;
    top: 50%;
    width: 200px;
    transform: translate(25%, -50%);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
    z-index: 11;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    background-image: url('../images/about-bg.png');
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-position: top;
    background-size: contain;
    z-index: 12;
}

.games-tabs-wrapper .nav-item .nav-link {
    background-color: transparent;
    color: var(--font-white);
    padding: 0px;
    padding-bottom: 8px;
    border-radius: 0px;
}

.games-tabs-wrapper .nav-item {
    margin-right: 20px;
    position: relative;
}

/* .games-tabs-wrapper .nav-pills .nav-link.active{
    border-bottom: 2px solid var(--theme-color-1);
} */

.games-tabs-wrapper .nav-pills .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color-1);
    bottom: -3px;
}

.games-tabs-wrapper .tab-content {
    margin-top: 2rem;
}

.games-image-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    padding: 10px;
    height: 200px;
}

.games-image-wrapper.white {
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, #959595, #7c7c7c) 1;
}

.games-image-wrapper.orange {
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, var(--theme-color-3), var(--theme-color-4)) 1;
}

.games-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winners-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.winners-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 15px;
}

.winners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.winners-info p {
    font-size: 14px;
}

.winners-info h3 {
    font-size: 16px;
    margin: 5px 0px;
}

.winners-info h2 {
    font-size: 20px;
    color: var(--theme-color-1);
}

.winners-info h2 span {
    font-family: 'OpenSans-Regular', sans-serif;
}

.features-list {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 30px;
}

.features-list li:last-child {
    margin-bottom: 0px;
}

.features-list-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.features-list-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    margin-right: 15px;
    border-radius: 50%;
}

.features-list-content h3 {
    font-size: 20px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.features-content-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.features-content-wrapper h2 {
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.features-container {
    background-image: url('../images/features.png');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.howitworks-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.howitworks-wrapper h2 {
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.howitworks-wrapper hr {
    background-color: var(--theme-color-1);
    color: var(--theme-color-1);
    width: 100%;
    height: 1px;
    opacity: 1;
    margin-top: 0;
}

.howitworks-wrapper ul {
    margin-top: 1rem;
}

.howitworks-wrapper ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.howitworks-wrapper ul li img {
    margin-right: 15px;
}

.howitworks-wrapper a {
    margin-top: 2rem;
}

.how-it-works-container {
    background-image: url('../images/how-it-bg-1.png');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer {
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 3rem;
    background-color: var(--bg-black);
}

.footer-top-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand img {
    width: 180px;
}

.footer-links li {
    margin: 0px 15px;
    display: inline-block;
}

.footer-social li {
    display: inline-block;
    margin-left: 5px;
}

.footer-social li a {
    color: var(--font-black);
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    border-radius: 5px;
}

.footer-bottom {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 2rem;
    border-top: 1px solid var(--theme-color-1);
}

.testimonial-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    padding: 20px;
    border-radius: 12px;
}

.testimonial-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-content h3 {
    font-size: 20px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.testimonial-content h4 {
    font-size: 14px;
    margin-bottom: 15px;
}

.middle-quote {
    position: absolute;
    bottom: -25px;
    width: 50px;
    right: 25px;
}

.faq-wrapper .accordion-item {
    margin-bottom: 20px;
    background-color: #1f1e1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--font-white);
    border-radius: 6px;
}

.faq-wrapper .accordion-button {
    background-color: #1f1e1a;
    border: none;
    color: var(--font-white);
    font-family: 'OpenSans-Medium', sans-serif;
    border-radius: 6px;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: var(--theme-color-3);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '\f068';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-wrapper .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.blog-image {
    width: 100%;
    height: 230px;
    position: relative;
    display: inline-block;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-content {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.blog-content h4 {
    font-size: 16px;
    margin-bottom: 0px;
}

.blog-content a h3 {
    color: var(--theme-color-1);
    font-size: 24px;
    margin: 15px 0px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.blog-badge {
    width: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    padding: 5px 20px;
    border-radius: 30px;
}

.blog-info {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 0px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-info-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-info-item .item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-info-item .item-inner i {
    margin-right: 5px;
}