/*
    Last Modified: Sept 8, 2020
*/

html,
body {
    background: #957232;
    color: #d3a54d;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #fffff;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #d3a54d;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #222021;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #d3a54d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background-color: #d39e00;
    padding: 10px 0;
    height: 93px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled {
    padding: 0 0;
    height: 72px;
    transition: all 0.5s;
}

#header #logo {
    float: left;
}

#header #logo img {
    padding: 0;
    margin: 0;
    width: 180px;
    height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    padding: 0 5px 0 5px;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 20px 15px 10px 0px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #f70a20;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #d3a54d;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
    color: #18d26e;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #18d26e;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #18d26e;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #18d26e;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#introCarouselMobile {
    display: none;
}

#intro {
    display: table;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    background: #000;
}

#intro .carousel-item {
    width: 100%;
    height: 640px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-background img {
    max-width: 100%;
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

/*--------------------------------------------------------------
# New Section Menu
--------------------------------------------------------------*/

#sectionmenu {
    display: none;
    background-color: #ae8944;
    height: auto;
    position: fixed;
    left: 0;
    top: 93px;
    right: 0;
    transition: all 0.5s;
    z-index: 996;
    text-align: center;
    padding: 20px 0 20px 0;
    
}

#sectionmenu.header-scrolled {
    position: fixed;
    left: 0;
    top: 72px;
    right: 0;
    padding: 5px 0 5px 5px;
    height: 85px;
    transition: all 0.5s;
}


/*--------------------------------------------------------------
# New Section 1
--------------------------------------------------------------*/

#new-section-1 {
    background: url("../images/section-1.png");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    height: 700px;
    overflow-y: hidden;
}

#new-section-1 .img-phone {
    height: 90%;
}

#new-section-1 .new-section-1-box {
    margin: 110px 15% 0 15%;
}

#new-section-1 h1 {
    margin-top: 20px;
    color: #131210;
    font-size: 30pt;
    font-weight: bold;
}

#new-section-1 label {
    font-size: 14pt;
    font-weight: bold;
    color: #000000;
}

#new-section-1 button {
    font-size: 16pt;
    color: #ffffff;
}




/*--------------------------------------------------------------
# New Section 2
--------------------------------------------------------------*/

#new-section-2 {
    background: url("../images/section-2.png");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    height: 900px;
    overflow-y: hidden;
}

#new-section-2 .img-phone {
    text-align: center;
    margin-left: 100px;
    height:90%;
}

#new-section-2 .new-section-2-box {
    margin: 150px 15% 0 15%;
}

#new-section-2 ul {
    list-style-type: none;
    padding: 0;
    margin-left: 60px;
    color: #ffffff;
}

#new-section-2 li {
    margin: 10px 0 10px 0;
    font-size: 16pt;
}

#new-section-2 h1 {
    font-size: 30pt;
    margin-left: 60px;
    font-weight: bold;
}

#new-section-2 label {
    font-size: 19.2px;
    font-weight: bold;
}

#new-section-2 button {
    margin-left: 60px;
    background-color: #e62a2a;
    font-size: 16pt;
    color: #ffffff;
}

/*--------------------------------------------------------------
# New Section 3
--------------------------------------------------------------*/

#new-section-3 {
    background: url("../images/red-block.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50% 100%;
    background-color: #ffffff;
    height: 900px;
    overflow-y: hidden;
}

#new-section-3 .img-phone {
    margin-top: 50px;
    height:90%;
}

#new-section-3 .chart {
    margin: 0 auto;
    padding: 0 auto;
}

#new-section-3 .new-section-3-box {
    margin: 150px 15% 0 15%;
}

#new-section-3 h1 {
    color: #131210;
    font-size: 30pt;
    font-weight: bold;
}

#new-section-3 label {
    font-size: 14pt;
    font-weight: bold;
    color: #000000;
}

#new-section-3 .img-holder {
    text-align: left;
}

#new-section-3 button {
    font-size: 16pt;
    color: #ffffff;
}

/*--------------------------------------------------------------
# New Section 4
--------------------------------------------------------------*/

#new-section-4 {
    background: url("../images/section-4.png");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    height: 900px;
    overflow-y: hidden;
}

#new-section-4 .new-section-4-box {
    margin: 10% 15% 0 15%;
}


#new-section-4 .bitcoin {
    margin-left: 60px;
    height: 90%;
}

#new-section-4 ul {
    list-style-type: none;
    padding: 0;
    color: #ffffff;
}

#new-section-4 li {
    margin: 10px 0 10px 0;
    font-size: 14pt;
}

#new-section-4 h1 {
    font-size: 30pt;
    font-weight: bold;
}

#new-section-4 label {
    font-size: 19.2px;
    font-weight: bold;
}

#new-section-4 button {
    background-color: #e62a2a;
    font-size: 16pt;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/

#product {
    background: url("../images/product.jpg") center top repeat-y;
    max-height: 1087px;
    height: 100vh;
}


#product .product-content {
    margin: 0;
    padding: 120px 0 0 0;
    text-align: center;
    width: 100%;
    height: 100%;
}

#product .product-content img {
    padding: 10px 10px 10px 10px;
    width: 23%;
    height: 23%;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
    background: url("../images/about.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    max-height: 1027px;
    height: 100vh;
}

#about .about-content h3 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    display: inline;
    text-shadow: 1px 1px black;
}

#about .about-content h4 {
    font-size: 32px;
    color: #ae8944;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px black;
}

#about .about-content {
    float: right;
    padding-top: 30px;
    width: 500px;
}

#about p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 1px 1px black;
}

/*--------------------------------------------------------------
# Promotion Section
--------------------------------------------------------------*/

#advantage {
    background: url("../images/advantages.jpg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    max-height: 1140px;
    height: 100vh;
}

#advantage .advantage-content {
    padding: 100px 0 0 0;
}

#advantage .advantage-list {
    font-size: 15px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

#advantage .advantage-list ol li {
    margin-top: 20px;
    margin-bottom: 20px;
}

#advantage .advantage-content h3 {
    font-size: 32px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    display: inline;
    text-shadow: 1px 1px #232021;
}

#advantage .advantage-content h4 {
    font-size: 32px;
    color: #ae8944;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px #232021;
}

#advantage .advantage-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    width: 500px;
    line-height: 30px;
}


/* Partners Section
--------------------------------*/

#portfolio h3 {
    text-align: center;
    font-size: 32px;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px #000000;
}

#portfolio h4 {
    text-align: center;
    font-size: 32px;
    color: #ae8944;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px #232021;
}

#portfolio {
    background: url("../images/partners.jpg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    max-height: 3700px;
    height: 100%;
    padding-top: 25px;
    padding-bottom: 50px;
}

#portfolio #portfolio-flters {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

#portfolio #portfolio-flters li {
    background: url("../images/catergory-btn.png") no-repeat;
    cursor: pointer;
    display: inline-block;
    padding: 8px 5px;
    margin: 5px 15px 5px 15px;
    min-width: 128px;
    min-height: 54px;
    font-size: 14px;
    line-height: 20px;
    color: #534325;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px #949494;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
    color: #fff;
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

#portfolio .portfolio-item {
    position: relative;
    width: 316px;
    height: 111px;
    margin: 8px 0 8px 0;
}

#portfolio .portfolio-item p {
    display: none;
}

#portfolio .portfolio-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#portfolio .portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
}

/* Contact Section
--------------------------------*/


#contact {
    background: url("../images/contact.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    width: 100%;
    height: 100vh;
    max-height: 627px;
    text-align: center;
}

#contact .section-header {
    font-size: 32px;
    color: #000;
    text-align: center;
    padding: 100px 0 60px 0;
}

#contact .section-header h3 {
    margin: 0 auto;
    padding-left: 5px;
    text-align: left;
    text-transform: uppercase;
    border-left: 5px solid #d2a550;
    width: 200px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 600;
}

#contact .contact-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
    height: 100%;
}

#contact .contact-info .details {
    padding-left: 50px;
    text-align: center;
    margin: 0 auto;
    width: 280px;
    height: 100%;
}

#contact .contact-info .separator {
    text-align: center;
    margin: 0 auto;
    border-left: 5px solid #c2c2c2;
}

#contact .contact-info h3 {
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;

    color: #000;
    text-align: left;
}

#contact .contact-info h4 {
    font-size: 32px;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ae8944;
    text-align: left;
}

#contact .contact-info ul {
    list-style-type: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

#contact .contact-info li {
    text-align: left;
    margin-left: 0px;
    font-size: 18px;
    padding: 10px 0px 10px 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

#contact .contact-info img {
    text-align: left;
    padding-right: 10px;
}



/*--------------------------------------------------------------
# ESport Section
--------------------------------------------------------------*/

#esports {
    background: #000 url("../images/esport-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 60px;
    height: 100%;
}

#esports .esports-item {
    position: relative;
    text-align: center;
    margin: 20px 0 20px 0;
}

#esports .esports-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}

/*--------------------------------------------------------------
# Chess Section
--------------------------------------------------------------*/

#chess {
    background: #957232 url("../images/chess-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    height: 100%;
}

#chess .chess-item {
    position: relative;
    text-align: center;
    margin: 20px 0 20px 0;
}

#chess .chess-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}


/*--------------------------------------------------------------
# Live Section
--------------------------------------------------------------*/

#live {
    background: url("../images/live-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    height: 100%;
}

#live .live-item {
    position: relative;
    text-align: center;
    margin: 20px 0 20px 0;
}

#live .live-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}

/*--------------------------------------------------------------
# Slot Section
--------------------------------------------------------------*/

#slotgame {
    background: #957232 url("../images/slotgame-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 110px;
    padding-bottom: 30px;
    height: 100%;
}

#slotgame.contain {
    background-size: contain;
}

#slotgame.cover {
    background-size: cover;
}

#slotgame .slotgame-item {
    position: relative;
    text-align: center;
    margin: 15px 0 15px 0;
}

#slotgame .slotgame-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}


/*--------------------------------------------------------------
# Sports Section
--------------------------------------------------------------*/

#sports {
    background: url("../images/sports-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    height: 100%;
    width: 100%;
}

#sports .sports-item {
    position: relative;
    text-align: center;
    margin: 30px 0 30px 0;
}

#sports .sports-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto%;
    margin: auto;
}

/*--------------------------------------------------------------
# Lottery Section
--------------------------------------------------------------*/

#lottery {
    background: url("../images/lottery-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    height: 100%;
}

#lottery .lottery-item {
    position: relative;
    text-align: center;
    margin: 30px 0 30px 0;
}

#lottery .lottery-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}

/*--------------------------------------------------------------
# Cockfight Section
--------------------------------------------------------------*/

#cockfight {
    background: url("../images/cockfight-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    min-height: 1182px;
    height: 100%;
}

#cockfight .cockfight-item {
    position: relative;
    text-align: center;
    margin: 15px 0 15px 0;
}

#cockfight .cockfight-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}

/*--------------------------------------------------------------
# Fishing Section
--------------------------------------------------------------*/

#fishing {
    background: url("../images/fishing-bg.jpg") center top repeat-y;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    padding-top: 120px;
    padding-bottom: 30px;
    height: 100%;
    text-align: center;
    margin: 0 auto;
}

#fishing .fishing-item {
    position: relative;
    text-align: center;
    margin: 20px 0 20px 0;
}

#fishing .fishing-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
}


.row {
    margin: 0 !important;
    text-align: center;
}

.col-lg-2-0 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    min-height: 168px;
    background: #957232;
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 14px;
}

#footer .logo img {
    width: 115px;
    height: 50px;
}

#footer .logo {
    margin: auto;
    text-align: center;
    padding: 15px 0px 0px 0px;
}

#footer .copyright {
    text-align: center;
    padding: 0px 0px 10px 0px;
}

#footer .sublinks {
    text-align: center;
}

#footer a {
    color: #ffffff;
    padding: 5px 5px 5px 5px;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 1024px) {

    #introCarouselMobile {
        display: none;
    }

    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }

    #nav-menu-container {
        padding: 0;
    }

    #intro {
        display: table;
        width: 100%;
        height: 100%;
        padding-top: 80px;
        background: #000;
    }

    #intro .carousel-item {

        object-fit: none;
    }

}

/* Mobile devices */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
    
    #sectionmenu {
        display: none !important;
        
    }
    /*--------------------------------------------------------------
    # New Section 1
    --------------------------------------------------------------*/

    #new-section-1 {
        text-align: center;
        height: 1280px !important;
    }
    
    #new-section-1 .img-phone {
        margin-top: 25px;
        width: 70%;
    }
    
    #new-section-1 label {
        display: block;
        width: 100%;
        font-size: 14px;
    }
    
    #new-section-1 .chart {
        text-align: center;
        width: 60%;
    }
    
     #new-section-1 label {
         color: #000000;
         text-align: center;
    }
    
    
    #new-section-1 .new-section-1-box {
        margin: 100px 0px 0px 0px;
        height: 2000px;
    }
    
    #new-section-1 h1 {
        color: #000000;
        margin: 20px 0 20px 0;
        width: 100%;
        text-align: center;
    }
    
    #new-section-1 button {
        text-align: center;
        width: 100%;
    }
    
    
    
    #new-section-2 {
        text-align: center;
        height: 950px;
    }
    
    #new-section-2 .new-section-2-box {
        text-align: center;
        margin: 50px 0 0 0;
    }
    
    #new-section-2 .img-phone {
        margin: 50px 0 0 0;
        text-align: center;
        width: 90%;
    }
    
    #new-section-2 ul {
        margin-left: 0;
    }
    
    #new-section-2 h1 {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    #new-section-2 button {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    
    #new-section-3 {
        background-color: #ffffff;
        text-align: center;
        height: 1500px;
    }
    
    #new-section-3 .new-section-3-box {
        background-color: #ffffff;
    }
    
    #new-section-3 .chart {
        text-align: center;
        width: 85%;
    }
    
    #new-section-3 .img-phone {
        margin: 50px 0 0 0;
        text-align: center;
        width: 80%;
    }
    
    
    #new-section-3 .new-section-3-box {
        text-align: center;
        margin: 20px 0px 0px 0px;
    }
    
    #new-section-3 h1 {
        width: 100%;
        text-align: center;
    }
    
    #new-section-3 button {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    
    
    #new-section-4 {
        text-align: center;
    }
    
    #new-section-4 .new-section-4-box {
        text-align: center;
        margin: 100px 0 0 0;
    }
    
    #new-section-4 .bitcoin {
        margin-left: 0;
        text-align: center;
        width: 80%;
    }
    
    #new-section-4 h1 {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    #new-section-4 ul {
        margin-left: 0;
    }
    
    #new-section-4 button {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    
    .back-to-top {
        bottom: 15px;
    }

    #header #logo img {
        padding-top: 15px;
        max-width: 110px;
        max-height: 60px;
    }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }

    #introCarousel {
        /*
            display: none;
            */
    }

    #intro {}

    #intro .carousel-item {
        width: 100hw;
        height: 450px;
        object-fit: cover;
    }

    #introCarouselMobile {
        /*
            display: table;
            width: 100%;
            height: 100%;
            padding-top: 70px;
            background: #000;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            */
    }

    #introCarouselMobile img {
        /*
            width: 100%;   
            */
    }


    /* About small */

    #about {
        height: 100%;
        max-height: auto;
        padding: 0 0 30px 0;
    }

    #about .about-content {
        float: none;
        width: 100%;
    }

    #about .about-content h3 {
        font-size: 28px;
    }

    #about .about-content h4 {
        font-size: 28px;
    }

    #about .about-content p {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-shadow: 1px 1px black;
        text-align: justify;
        margin: 25px 0 15px 0;
    }

    /* Advantage small */

    #advantage {
        height: 100%;
        max-height: auto;
        padding: 0 0 30px 0;
    }

    #advantage .advantage-content {
        padding: 30px 0 0 0;
        float: none;
        width: 100%;
    }

    #advantage .advantage-content h3 {
        font-size: 28px;
        font-weight: 500;
        text-shadow: none;
    }

    #advantage .advantage-content h4 {
        font-size: 28px;
    }

    #advantage .advantage-content p {
        width: 100%;
        font-size: 15px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
        text-shadow: 1px 1px #fff;
        margin: 25px 0 10px 0;
        color: #000;
    }


    /* Contacts small */

    #contact {
        height: 100%;
        min-height: 800px;
    }

    #contact .section-header {
        font-size: 28px;
        padding: 30px 0 30px 0;
    }

    #contact .contact-info .details {
        text-align: center;
        padding-left: 0;
        padding-bottom: 20px;
        width: 100%;
    }


    #contact .contact-info .details h3 {
        text-align: center;
        font-size: 28px;
    }

    #contact .contact-info .details h4 {
        text-align: center;
        font-size: 14px;
    }

    #contact .contact-info .details li {
        padding: 0 0 20px 0;
        text-align: left;
        font-size: 16px;
        width: 100%;
    }

    #contact .contact-info .details ul {
        text-align: center;

    }

    #contact .contact-info .details li {
        margin: 0 auto;
        text-align: left;
        display: table;
        width: 100%;
        height: 100%;
    }

    #contact .contact-info .details li img {
        padding: 10px 10px 10px 0;
        margin-left: 65px;
    }

    #contact .contact-info .separator {
        display: none;
    }



    /* Partners small */

    #portfolio {
        margin: 0 auto;
        text-align: center;
    }

    #portfolio #portfolio-flters {
        text-align: center;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 345px;
    }

    #portfolio #portfolio-flters li {
        background: url("../images/catergory-btn-mobile.png") no-repeat;
        margin: 2px 2px;
        padding-top: 3px;
        min-width: 64px;
        min-height: 27px;
        font-size: 8px;
        line-height: normal;
        text-shadow: none;
    }

    #portfolio .portfolio-item {
        margin: 0;
        margin-bottom: 10px;
        width: 25%;
        height: 80px;
    }

    #portfolio .portfolio-item img {
        max-height: 90%;
        max-width: 90%;
        width: auto;
        height: auto;
    }


    #footer .sublinks {
        text-align: center;
    }

    #footer a {
        font-size: 8px;
        padding: 2px 1px 2px 1px;
    }

    #footer .footer-spacer {
        display: none;
    }

    /* Esports small */

    #esports {
        padding-top: 200px;
    }

    #esports .esports-item {
        padding: 0;
        margin-top: 0;
        margin-bottom: 50px;
        width: 50%;
        height: 50%;
    }

    #esports .esports-item img {
        max-height: 85%;
        max-width: 85%;
    }

    /* Chess small */

    #chess {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #chess .chess-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #chess .chess-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Live small */

    #live {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #live .live-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #live .live-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Slotgame small */

    #slotgame {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #slotgame .slotgame-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #slotgame .slotgame-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Sports small */

    #sports {
        margin: auto;
        text-align: center;
        padding: 120px 0 20px 0;
    }

    #sports .sports-item {
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #sports .sports-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Lottery small */

    #lottery {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #lottery .lottery-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #lottery .lottery-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Fishing small */

    #fishing {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #fishing .fishing-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #fishing .fishing-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    .col-lg-2-0 {
        margin-top: 20px;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
    }

    /* Slotgame small */

    #cockfight {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #cockfight .cockfight-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #cockfight .cockfight-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }
}

/* Tablets Display ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

    .back-to-top {
        bottom: 15px;
    }

    #header #logo img {
        padding-top: 15px;
        max-width: 110px;
        max-height: 60px;
    }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }

    #introCarousel {}



    /* About small */

    #about {
        height: 100%;
        max-height: auto;
        padding: 0 0 30px 0;
    }

    #about .about-content {
        float: none;
        width: 100%;
    }

    #about .about-content h3 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #about .about-content h4 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #about .about-content p {
        color: #fff;
        font-size: 22px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-shadow: 1px 2px black;
        text-align: justify;
        margin: 25px 0 15px 0;
    }

    /* Advantage small */

    #advantage {
        height: 100%;
        max-height: auto;
        padding: 0 0 30px 0;
    }

    #advantage .advantage-content {
        padding: 30px 0 0 0;
        float: none;
        width: 100%;
    }

    #advantage .advantage-content h3 {
        font-size: 32px;
        font-weight: 700;
        text-shadow: none;
    }

    #advantage .advantage-content h4 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #advantage .advantage-content p {
        width: 100%;
        font-size: 22px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
        margin: 25px 0 10px 0;
        color: #000;
    }


    /* Contacts small */

    #contact {
        height: 100%;
        min-height: 100%;
    }

    #contact .section-header {
        font-size: 28px;
        padding: 40px 0 40px 0;
    }

    #contact .contact-info .details {
        text-align: center;
        padding-left: 0;
        padding-bottom: 20px;
        width: 33.3%;
    }


    #contact .contact-info .details h3 {
        text-align: center;
        font-size: 32px;
    }

    #contact .contact-info .details h4 {
        text-align: center;
        font-size: 32px;
    }

    #contact .contact-info .details li {
        padding: 0 0 20px 0;
        text-align: left;
        font-size: 16px;
        width: 100%;
    }

    #contact .contact-info .details ul {
        text-align: left;

    }

    #contact .contact-info .details li {
        margin: 0 auto;
        text-align: left;
        display: table;
        width: 75%;
        height: auto;
    }

    #contact .contact-info .details li img {
        margin: 10px 5px 10px 5px;
    }

    #contact .contact-info .separator {
        display: none;
    }



    /* Partners small */

    #portfolio {
        background: #b07929;
        max-height: 100%;
        overflow: hidden;
    }

    #portfolio #portfolio-flters {
        margin: 10px 10px;
        padding: 0;
        list-style: none;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    #portfolio #portfolio-flters li {
        background: url("../images/catergory-btn-mobile.png") no-repeat;
        margin: 5px 5px;
        padding-top: 3px;
        min-width: 64px;
        min-height: 27px;
        font-size: 8px;
        line-height: normal;
    }

    #portfolio .portfolio-item {
        margin: 0;
        margin-bottom: 20px;
        width: 25%;
        height: 80px;
    }

    #portfolio .portfolio-item img {
        max-height: 80%;
        max-width: 80%;
        width: auto;
        height: auto;
    }


    #footer .sublinks {
        text-align: center;
    }

    #footer a {
        font-size: 14px;
        padding: 5px 5px 5px 5px;
    }

    #footer .footer-spacer {
        display: none;
    }

    /* Esports small */

    #esports {
        padding-top: 200px;
    }

    #esports .esports-item {
        padding: 0;
        margin-top: 0;
        margin-bottom: 50px;
        width: 50%;
        height: 50%;
    }

    #esports .esports-item img {
        max-height: 85%;
        max-width: 85%;
    }

    /* Chess small */

    #chess {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #chess .chess-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #chess .chess-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Live small */

    #live {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #live .live-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #live .live-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Slotgame small */

    #slotgame {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #slotgame .slotgame-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #slotgame .slotgame-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Sports small */

    #sports {
        margin: auto;
        text-align: center;
        padding: 120px 0 20px 0;
    }

    #sports .sports-item {
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #sports .sports-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Lottery small */

    #lottery {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #lottery .lottery-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #lottery .lottery-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Fishing small */

    #fishing {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #fishing .fishing-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #fishing .fishing-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    .col-lg-2-0 {
        margin-top: 20px;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .nav-menu a {
        padding: 20px 8px 3px 0px;
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        outline: none;
    }


    /* About small */


    #about .about-content h3 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #about .about-content h4 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #about .about-content p {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-shadow: 1px 2px black;
        text-align: justify;
        margin: 25px 0 15px 0;
    }

    /* Advantage small */

    #advantage {
        height: 100%;
        max-height: auto;
        padding: 0 0 80px 0;
    }

    #advantage .advantage-content h3 {
        font-size: 32px;
        font-weight: 700;
        text-shadow: none;
    }

    #advantage .advantage-content h4 {
        font-size: 32px;
        text-shadow: 1px 2px #000;
    }

    #advantage .advantage-content p {
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
        margin: 25px 0 10px 0;
        color: #000;
    }

    /* Partners small */

    #portfolio {
        background: #b07929;
        max-height: 100%;
        overflow: hidden;
    }

    #portfolio #portfolio-flters {
        margin: 10px 10px;
        padding: 0;
        list-style: none;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    #portfolio #portfolio-flters li {
        background: url("../images/catergory-btn-mobile.png") no-repeat;
        margin: 5px 5px;
        padding-top: 3px;
        min-width: 64px;
        min-height: 27px;
        font-size: 8px;
        line-height: normal;
    }

    #portfolio .portfolio-item {
        margin: 0;
        margin-bottom: 20px;
        width: 25%;
        height: 80px;
    }

    #portfolio .portfolio-item img {
        max-height: 80%;
        max-width: 80%;
        width: auto;
        height: auto;
    }

    /* Contacts small */

    #contact {
        height: 100%;
        max-height: auto;
    }

    #contact .section-header {
        font-size: 28px;
        padding: 40px 0 40px 0;
    }

    #contact .contact-info .details {
        text-align: center;
        padding-left: 95px;
        padding-bottom: 20px;
        width: 45%;
    }


    #contact .contact-info .details h3 {
        text-align: center;
        font-size: 32px;
    }

    #contact .contact-info .details h4 {
        text-align: center;
        font-size: 32px;
    }

    #contact .contact-info .details li {
        padding: 0 0 20px 0;
        text-align: left;
        font-size: 16px;
        width: 100%;
    }

    #contact .contact-info .details ul {
        text-align: left;

    }

    #contact .contact-info .details li {
        margin: 0 auto;
        text-align: left;
        display: table;
        width: 75%;
        height: auto;
        margin-left: 60px;
    }

    #contact .contact-info .details li img {
        margin: 10px 5px 10px 5px;
    }

    #contact .contact-info .separator {
        display: none;
    }

    /* Esports small */

    #esports {
        padding-top: 200px;
    }

    #esports .esports-item {
        padding: 0;
        margin-top: 0;
        margin-bottom: 50px;
        width: 50%;
        height: 50%;
    }

    #esports .esports-item img {
        max-height: 85%;
        max-width: 85%;
    }

    /* Chess small */

    #chess {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #chess .chess-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #chess .chess-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Live small */

    #live {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #live .live-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #live .live-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Slotgame small */

    #slotgame {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #slotgame .slotgame-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #slotgame .slotgame-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Sports small */

    #sports {
        margin: auto;
        text-align: center;
        padding: 120px 0 20px 0;
    }

    #sports .sports-item {
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #sports .sports-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Lottery small */

    #lottery {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #lottery .lottery-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #lottery .lottery-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    /* Fishing small */

    #fishing {
        margin: auto;
        padding: 120px 0 20px 0;
        text-align: center;
    }

    #fishing .fishing-item {
        text-align: center;
        margin: 0 0 20px 0;
        width: 33%;
        height: 33%;
    }

    #fishing .fishing-item img {
        text-align: center;
        max-height: auto;
        max-width: auto;
    }

    .col-lg-2-0 {
        margin-top: 20px;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
    }
}
