/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Montserrat', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 75px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #f35525;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #f57402;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #f57402;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
  background-color: #fff;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header ul.social-links li a:hover {
  background-color: #f35525;
}

.sub-header ul.info li {
  font-size: 14px;
  color: #7a7a7a;
  border-right: 1px solid #eee;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: #f35525;
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.background-header .logo img {
  width: 120px !important;
}

.header-area {
  position: relative;
  background-color: #fff;
  height: 100px;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
  gap: 30px;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo img {
  width: 180px;
}

.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
  line-height: 80px;
}

.home-logged img {
  width: 80px;
}

.home-logged .actions a img {
  width: 24px;
  margin-right: 10px;
}

.home-logged .actions a {
  padding: 5px 25px;
  border: 1px solid #f57402 !important;
  border-radius: 10px;
  background: #fff !important;
  color: #737373;
}

.home-logged .actions a:hover {
  background: #ffeddc !important;
  color: #f57402;
  cursor: pointer;
}

.home-logged .d-flex {
  align-items: center;
}

.home-logged .actions .d-flex {
  gap: 30px;
  justify-content: space-around;
}

.divider {
  border-top: 1px solid #f57402;
  margin: 20px 0;
}

.home-logged .box-account {
  padding: 40px 60px;
  background: #ffeddc;
  justify-content: space-between;
  border-radius: 10px;
}

.home-logged .earnings.box-account {
  margin-right: 40px;
}

.home-logged button {
  background: #f57402;
  color: #FFF;
  padding: 10px 20px;
  margin-top: 30px;
  border-radius: 10px;
  border: none;
  float: right;
  font-weight: 600;
}

.home-logged .version p {
  color: #f57402;
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
}

.home-logged .version b {
  color: #737373;
  font-size: 20px;
  font-weight: 600;
}

.home-logged .version .box-account {
  margin-top: 20px;
}

.main-button a {
  background: #f57402;
  color: #FFF;
  padding: 0 20px;
  margin-top: 30px;
  border-radius: 10px;
}

.home-logged .version .box-account p {
  color: #737373;
  font-size: 18px;
  font-weight: 500;
}

.home-logged .version .box-account span {
  color: #737373;
  font-size: 28px;
  font-weight: 500;
}



.home-logged .arrow-up {
  width: 40px;
  margin-left: 20px;
}

.home-logged .dogeminer-img {
  width: 300px;
}

.home-logged .box-account h1 {
  color: #f57402;
  font-size: 20px;
  font-weight: 500px;
}

.home-logged .box-account p {
  color: #737373;
  font-size: 32px;
  margin-top: 15px;
}

.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
}

.dropdown-menu li {
  height: auto !important;
}

.dropdown-menu li a {
  padding: 0 !important;
  background: transparent !important;
  color: #000 !important;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #1e1e1e;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav li .btn-login {
  background-color: #f39843;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  border-radius: 20px;
  cursor: pointer;
}

.header-area .main-nav .nav li .btn-register {
  background-color: #feb720;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  border-radius: 20px;
  cursor: pointer;
}

.header-area .main-nav .nav li .btn-logout {
  background-color: #f39843;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  border-radius: 20px;
  cursor: pointer;
}

.header-area .main-nav .nav li .btn-account {
  background-color: #f39843;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  border-radius: 20px;
  cursor: pointer;
}

.header-area .main-nav .nav .btn-register:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.header-area .main-nav .nav .btn-login:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.header-area .main-nav .nav .btn-logout:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.header-area .main-nav .nav .btn-account:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.header-area .main-nav .nav li svg {
  margin-right: 10px;
}

.header-area .main-nav .nav li:hover svg {
  fill: #fff;
}


.header-area .main-nav .nav li:hover a {
  color: #f35525;
}

.header-area .main-nav .nav li:hover .btn-login {
  background-color: #1e1e1e;
  color: #fff;
}

.header-area .main-nav .nav li:hover .btn-register {
  color: #fff;
  background-color: #1e1e1e;
}

.header-area .main-nav .nav li a.active {
  color: #f35525;
}


.background-header .main-nav .nav li a.active {
  color: #f35525;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

.value-up img {
  top: 0 !important;
  width: 30px !important;
}

@media (max-width: 767px) {
  .d-flex {
    flex-direction: column;
  }

  .section {
    margin-top: 20px;
  }

  .main-banner .item {
    padding: 40px 80px 40px 20px !important;
    background-size: 80% !important;
  }

  .home-logged .dogeminer-img {
    margin-top: 30px !important;
  }

  .background-header .logo img {
    width: 80px !important;
  }

  .bg-footer {
    margin-top: 40px !important;
  }

  .plans .item {
    padding: 30px 0 !important;
    height: 100% !important;
  }

  .payouts .item {
    padding: 30px !important;
    margin: auto !important;
    width: 95% !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .item.box-payouts .col-lg-4.col-md-12.d-flex {
    flex-direction: row;
    align-content: baseline;
    align-items: flex-start;
  }

  .item.box-payouts .d-flex {
    align-content: baseline;
    align-items: flex-start;
  }

  .bg-section-two .col-lg-3:last-child {
    width: 100% !important;
  }

  .section-three .main-button a {
    font-size: 20px !important;
  }

  .accordion-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .home-logged .earnings.box-account {
    margin-right: 0;
  }

  .home-logged .d-flex {
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
  }

  #closeRede {
    top: -160px !important;
  }

  #closeDeposito {
    top: -140px !important;
  }

  .box-deposito {
    overflow: hidden;
    word-break: break-word;
  }

  .popup-content {
    background: white;
    padding: 20px !important;
    border-radius: 10px;
    text-align: center;
    width: 90% !important;
  }

  .popup-content .d-flex {
    flex-direction: row;
  }

  .main-banner .item span.category {
    width: 65% !important;
  }

  .main-banner .item h2 {
    font-size: 34px !important;
  }

  .row {
    gap: 20px;
  }

  .button-container button {
    margin-bottom: 10px;
  }

  .header-area .main-nav .logo img {
    width: 140px;
    margin-top: 10px;
  }
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
    z-index: 99999 !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
    height: 100vh;
    overflow: hidden;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 0px !important;
    padding-top: 80px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}


.bg-section-two .lasted-update {
  color: #000;
  font-weight: 700;
  font-size: 30px;
}

.bg-section-two .value {
  color: #f57402;
  font-weight: 700;
  font-size: 36px;
}

.bg-section-two .row {
  align-items: center;
}

.bg-section-two span {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-section-two .col-lg-3 {
  background: #f7f7f7;
  padding: 30px;
}

.bg-section-two .col-lg-3:last-child {
  width: 21%;
  border-radius: 0 20px 20px 0;
}

.bg-section-two .img {
  text-align: center;
  background: #ec8f3c;
  padding: 20px;
  border-radius: 0 20px 20px 0;
}

.bg-section-two .value-up {
  color: #00bf63;
  font-weight: 700;
  font-size: 22px;
}

.bg-section-two img {
  width: 180px;
  position: relative;
  top: 40px;
}

.affiliate-program {
  padding-bottom: 180px;
}

.faq {
  padding-bottom: 180px;
}

.accordion-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: auto;
}
.accordion-item {
  border-radius: 5px;
  overflow: hidden;
  background-color: #f57402;
  border-radius: 20px !important;
  height: fit-content;
}
.accordion-header {
  background-color: #f57402;
  padding: 15px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  width: 100%;
  border-radius: 20px;
}
.accordion-header::after {
  content: '+';
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: rgb(247, 247, 247);
  padding: 0 15px;
}
.accordion-item input[type="checkbox"] {
  display: none;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 100%;
  padding: 15px;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 20% 220px 0%;
  margin-top: 0px;
}

.main-banner .item-1 {
  background-image: url(../images/banner-01.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/banner-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../images/banner-03.jpg);
}

.main-banner .item-4 {
  background-image: url(../images/banner-04.jpg);
}

.main-banner .item-5 {
  background-image: url(../images/banner-05.jpg);
}

.main-banner .item span.category {
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  width: 70%;
}

.plans .section-heading h1 {
  color: #f57402 !important;
  margin-bottom:30px;
}

.plans .section-heading span {
  color: #737373;
}

.plans .item {
  text-align: center !important;
  color: #737373;
  padding: 30px 0;
  background: #f7f7f7;
  margin: 10px;
  border-radius: 20px;
  height: 380px;
}

.plans .item span {
  font-weight: 600 !important;
  color: #f57402 !important;
  font-size: 22px !important;
  margin-bottom: 10px !important;
  display: block;
}

.plans .item img {
  margin-bottom: 15px;
}

.plans .item b {
  line-height: 40px;
}

.main-banner .item h2 {
  font-size: 34px;
  font-weight: 600;
  color: #f57402;
  width: 70%;
  margin-bottom: 20px;
}

.main-banner .main-button a {
  background: #f57402;
  color: #FFF;
  padding: 0 20px;
  margin-top: 30px;
  border-radius: 10px;
}

.main-button button {
  background: #f57402;
  color: #FFF;
  padding: 5px 20px !important;
  margin-top: 30px;
  border-radius: 10px;
  border: none;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.section-three .main-button a {
  background: #f57402;
  color: #FFF;
  padding: 10px 20px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
}

.section-three .main-button {
  text-align: center;
}

.plans img {
  width: auto;
  display: block;
  margin: auto;
}

.payouts .row {
  justify-content: center;
}

.language-dropdown {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

.language-dropdown button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  z-index: 1000;
  width: 150px;
}

.language-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.flag-icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
}


.item-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-box h6 {
  color: #737373;
  font-weight: 500;
}

.item-box p {
  color: #737373;
}

.box-item {
  background: #ffeddc;
  border-radius: 20px;
}

.box-payouts {
  padding: 60px !important;
  height: auto !important;
  width: 100% !important;
  margin-bottom: 30px !important;
}

.box-payouts input {
  background: #ffeddc;
  color: #f57402;
  border: none;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.box-payouts p {
  text-align: left;
  font-size: 18px;
}

.box-payouts .d-flex {
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.box-payouts img {
  margin-right: 10px;
  width: 70px;
  margin-bottom: 0 !important;
}

.box-payouts .doge {
  color: #00bf63;
  font-weight: 700;
}

.box-payouts .time {
  color: #737373;
  font-weight: 700;
}

.box-payouts .version {
  color: #f57402;
  font-weight: 700;
}

.box-payouts input::placeholder {
  color: #f57402;
}

.contact-page input {
  background: #ffeddc;
  color: #f57402;
  border: none;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.contact-page input::placeholder {
  color: #f57402;
}

.left {
  text-align: left;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}

.main-banner .owl-dots .active {
  background-color: #f35525;
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-footer {
  background-image: url(../images/footer.png);
  width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -120px;
  background-position: right;
}

.advantages {
  background: #80a7a8;
  margin-top:  0px;
  padding: 60px;
  text-align: center;
}

.advantages h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.advantages p {
  font-size: 18px;
  margin-top: 15px;
  color: #fff;
  font-weight: 600;
}

.advantages .row img {
  width: 90px;
}

.popup-overlay.popup-upgrade {
  display: block;
}

.popup-upgrade img {
  width: 60px;
  height: 100%;
}

.popup-upgrade p {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.popup-upgrade span {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.popup-upgrade .d-flex {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

#closeRede {
  top: -130px;
}

#closeDeposito {
  top: -120px;
}

.box-deposito {
  background: #ffeddc;
  color: #f57402;
  padding: 10px;
  margin-bottom: 15px;
}

.box-deposito p {
  color: #f57402;
}

#popupDeposito p {
  text-align: center;
}

#popupDeposito span {
  color: #737373;
  text-align: center;
}

.box-rede span {
  margin: 0;
}

.popup-upgrade .box-rede {
  background: #ffeddc;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.popup-overlay.popup-upgrade .popup-content {
  margin: 5% auto;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(236, 143, 60, 0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  width: 450px;
}

.popup-content h1 {
  color: #f57402;
  font-size: 30px;
}

.popup-content input {
  background: rgb(255, 237, 220);
  color: #f57402;
  padding: 10px;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.popup-content input::placeholder {
  color: #f57402;
}

.contact-page textarea {
  background: rgb(255, 237, 220);
  color: #f57402 !important;
  padding: 10px;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 16px;
  min-height: 200px;
}

.contact-page textarea::placeholder {
  color: #f57402 !important;
}

.popup-content label {
  display: block;
  color: #737373;
}

.popup-content fieldset {
  text-align: left;
}

.popup-content .main-button a {
  background: #f57402;
  color: #FFF;
  padding: 0 20px;
  margin-top: 30px;
  border-radius: 10px;
}

#form-submit {
  background: #f57402;
  color: #FFF;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
}

.close-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: end;
  width: 100%;
  right: -20px;
  top: -60px;
  position: relative;
}

.close-btn svg {
  width: 30px !important;
  height: 30px !important;
}


/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.video-content {
  margin-top: -240px;
}

.video .section-heading h2 {
  color: #fff;
}

.video-content .video-frame {
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.video-content .video-frame img {
  border-radius: 10px;
}

.video-content .video-frame a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-26px, -26px);
  width: 52px;
  height: 52px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 52px;
  color: #f35525;
  outline: 15px solid rgba(254, 85, 37, 0.5);
  font-size: 18px;
}

.affiliate-logged img {
  width: 80px;
}

.affiliate-logged p {
  text-align: left;
}

.affiliate-logged .section-heading h1 {
  color: #f57402 !important;
  margin-bottom: 20px;
}

.affiliate-logged .section-heading span {
  color: #737373;
}

.affiliate-logged .item {
  text-align: center !important;
  color: #737373;
  padding: 30px 0;
  background: #ffeddc;
  margin: 10px;
  border-radius: 20px;
  height: 100%;
}

.affiliate-logged .item div {
  text-align: left;
  align-items: center;
  gap: 15px;
}

.affiliate-logged .item .d-flex {
  margin-bottom: 20px;
}

.affiliate-logged .account h1 {
  font-size: 22px;
  font-weight: 400;
  color: #000;
}


.affiliate-logged .account p {
  color: #737373;
}

.affiliate-logged .account p {
  font-size: 26px;
  font-weight: 500;
  color: #737373;
  margin: 10px 0;
}

.affiliate-logged .item.d-flex{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.affiliate-logged .category {
  display: block;
  font-weight: 500;
  color: #000;
  margin-top: 20px;
}

.button-container {
  margin-top: 80px;
  margin-bottom: 10px;
}
.button-container button {
  padding: 10px 15px;
  margin-right: 10px;
  border: none;
  background-color: #f57402;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.button-container button:hover {
  background-color: #f4ab64;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #f9f9f9;
  color: #737373;
}
table {
  border-top: 1px solid #f39843;
}
th, td {
  padding: 10px;
  text-align: left;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: #fff;
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content #map {
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-content .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-content .phone {
  margin-right: 15px;
}

.contact-content .email {
  margin-left: 15px;
}

.contact-content .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-content .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-content .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-content #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}


.contact-content #contact-form button:hover {
  background-color: #f35525;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer.footer-no-gap {
  margin-top: 0px;
}

footer {
  background-color: #fff;

}

footer p {
  padding-top:15px;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer .container { height:30px; }

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/page-heading-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading span a {
  color: #1e1e1e;
}

.page-heading h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties ul.properties-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.properties ul.properties-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.properties ul.properties-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background-color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all .3s;
}

.properties ul.properties-filter li a.is_active {
  background-color: #f35525;
  color: #fff;
}

.properties ul.properties-filter li a.is_active:hover {
  color: #fff;
}

.properties ul.properties-filter li a:hover {
  color: #f35525;
}

.properties ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.properties ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.properties ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all .3s;
}

.properties ul.pagination li a:hover,
.properties ul.pagination li a.is_active {
  background-color: #f35525;
  color: #fff;
}


/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
  float: none;
}

.single-property .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

.single-property .accordion {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.single-property .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
  color: #f35525;
  background-color: #fafafa;
  outline: none;
}

.single-property .accordion-button::after {
  display: none;
}

.single-property #headingThree {
  border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.single-property .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  margin-left: 60px;
}

.single-property .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-property .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.single-property .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.single-property .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}


/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page {
  padding-bottom: 160px;
}

.contact-page #map {
  margin-top: 30px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  padding-right: 30px;
  background-color: #fff;
}

.contact-page #contact-form label {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 5px;
}

.contact-page #contact-form button:hover {
  background-color: #f35525;
}

.box {
  border-radius: 20px;
  background: #ffeddc;
  padding: 20px;
  margin-top: 30px;
  color: rgb(115, 115, 115);
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }
  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .best-deal .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }
  .properties ul.properties-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .properties ul.properties-filter li {
    margin: 5px;
  }
  .header-area .main-nav .nav li .btn-register {
    background-color: #feb720 !important;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    border-radius: 20px;
   cursor: pointer;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
}