/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* color use:https://coolors.co/030c11-003152-fcedd9-fbb13c-fe6847 */
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
body {
  /* font-family: 'Noto Sans TC', sans-serif; */
  font-family: 'Noto Sans TC',sans-serif;
  color: #FCEDD9;
  background: #090010;
}

a {
  text-decoration: none;
  color: #FCEDD9;
  cursor: pointer;
}

a:hover {
  color: #ffc600;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "cwTeXYen", sans-serif;
  color: #ff9900;
  font-weight: bold;
}
h2 span.en-title{ 
  color: #FCEDD9; 
  font-size: 50%; 
  font-weight: normal;
}
.text-right{
  text-align: right;
}
.small, small {
  font-size: 50%;
}
.button{
  color: #fff !important;
  text-transform: uppercase;
  background: linear-gradient(to top, #ff7e00 0%, #ffc600 100%);
  padding: 6px 20px;
  border: 2px solid #ffc600;
  min-width: 100px;
  border-radius: 20px;
}
.button:hover {
  color: #240037;
}
@media screen and (max-width: 768px) {
  h2 span.min-title{
    display: none;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc600;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #FCEDD9;
  line-height: 0;
}

.back-to-top:hover {
  background: #997600;
  color: #FCEDD9;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .back-to-top{
    bottom: 100px;
  }
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 90px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #18191b;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header .logo a span{
  font-size: 28px;
  margin-left: 12px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc600;
  font-family: "cwTeXYen", sans-serif;
}
#header .logo{
  text-align: center;
}
#header .logo img {
  padding: 0;
  max-height: 35px;
}
.heard-top{
  padding: 0.5rem;
}
.heard-top h2{
  /* font-size: 24px; */
  font-weight: 900;
  padding: 8px;
  text-align: center;
  color: transparent;
}
.scrolled-offset {
  margin-top: 90px;
}
@media (max-width: 1410px) {
  #header .logo a span{
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  #header {
    /* height: 70px; */
  }
  #header .logo img {
    margin: auto;
    max-height: 35px;
  }
  #header .logo{
    flex: none;
  }
}
@media (max-width: 960px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar-bg {
  background: rgb(0 0 0 / 90%);
  padding: 20px 0;
}
.navbar {
  padding: 0;
  margin: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ffc600;
}
.navbar a span{
  color: #FFF;
  font-size: 12px;
  display: none;
}

.btn-login {
  background: transparent;
  color: #ffc600;
  padding: 6px 20px;
  border: 2px solid #ffc600;
  min-width: 100px;
  border-radius: 10px 0 0 10px;
}
.btn-login:hover {
  color: #fff !important;
  border: 2px solid #ffc600F;
  background: transparent;
  box-shadow: 0 0 4px 4px rgb(255 189 0 / 43%);
}
.btn-register {
  background: linear-gradient(to top, #ff7e00 0%, #ffc600 100%);
  color: #fff !important;
  padding: 6px 20px;
  border: 2px solid #ffc600;
  min-width: 100px;
  border-radius: 0 10px 10px 0;
}
.btn-register:hover {
  color: #ffffff!important;
  border: 2px solid #ffc600;
  background: linear-gradient(to top, #ff7e00 0%, #ffc600 100%);
  box-shadow: 0 0 4px 4px rgb(255 189 0 / 43%);
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffc600;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: transparent;
  padding: 10px;
}

.mobile-nav-toggle.bi-x {
  color: #ffc600;
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
    margin: 0;
  }
  .navbar-bg{
    padding: 0 !important;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    flex-direction: row;
    justify-content:center;
  }
  .navbar a span{ margin-left: .8rem;}
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffc600;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f44336;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #000
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  text-shadow: 0 0 10px rgb(0 0 0 / 76%);
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0;
  background: #000;
  border-top: solid 2px #acacac;
  padding-top: 130px;
  margin-bottom: 16px;
}
.testimonials .swiper-container{
  border-radius: 20px;
  overflow:hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-title {
  position: absolute;
  left: 25%;
  top: 25%;
  transform: rotate(-4deg);
  -webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  display:none;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 7rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.testimonials .testimonial-item h4 {
  font-size: 4rem;
  color: #ddd;
  margin: 0 0 15px 0;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 0;
  position: absolute;
  bottom: 1%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fdb5487c;
  box-shadow: 0px 0px 4px 3px #fdb548;
}

@media (max-width: 768px) {
  .testimonials {
    background: transparent;
    padding-top: 110px;
  }
  .testimonials .testimonial-item .testimonial-img {
    overflow: hidden;
}
  .testimonials .testimonial-item p {
    width: 80%;
  }
  .testimonials .swiper-container{
    border-radius: 12px;
    overflow:hidden;
  }
}

/*--------------------------------------------------------------
# m-side-menu
--------------------------------------------------------------*/
.GameNav {
  padding: 0;
  position: fixed;
  height: 122px;
  width: 100%;
  top: 125px;
  z-index: 2;
  background: rgb(40 40 40 / 76%);
}
.GameNav .nav{ 
  margin-top: 10px;
}
.GameNav li.nav-item.col{
  text-align: center;
}
.GameNav .color .img{
  overflow: hidden;
  margin: auto;
  margin-bottom: 6px;
}
.GameNav picture, .GameNav img{
  height: 60px;
  display: block;
  margin: 10px auto 2px auto;
}
.nav-pills .nav-link {
  border-radius: 0;
  color: #fff;
  margin-bottom: 10px;
  
}
.GameNav .nav-link {
  color: #333;
  font-family: "cwTeXYen", sans-serif;
  font-weight: 600;
  padding: 0;
  padding-bottom: 2px;
  text-align: center;
  background-color: #ffa61f;
  margin: 0 1px;
  border-radius: 20px 20px 0 0;
  border-bottom: 8px solid #fdb548;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent;
}
.GameNav .color.active{
  color: #000000;
  display: block;
  border-bottom: 8px solid #ffffff;
  background-color: #f58800;
}
.tab-content {
  padding-top: 170px;
  padding-bottom: 0px;
}
@media (max-width: 660px) {
  .tab-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .GameNav {
    height: 93px;
    width: 100%;
    top: 100px;
  }
  .GameNav picture, .GameNav img{
    max-width: 75%;
    max-height: 100%;
  }
  .GameNav .color .img {
    height: 40px;
  }
}
/*--------------------------------------------------------------
# Home-theme-main-slider
--------------------------------------------------------------*/
.theme-main-slider.item{
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  z-index: 0;
  background-size: cover;
  height: 90vh;
  text-align: center;
}
.overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .50);
  z-index: -1;
}
.item-a .overlay{
  opacity: 0;
}
.theme-main-slider{
  display: flex;
    align-items: center;
    justify-content: center;
}
.theme-main-slider {
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.theme-main-slider.item-a .container{
  position: absolute;
  left: 3%;
  top: 16%;
}
@media (max-width: 768px) {
  .theme-main-slider.item{
    height: 100vh;
  }
  .theme-main-slider.item-a .container{
    left: auto;
    top: 10%;
  }
  .overlay{
    background-color: rgba(0, 0, 0, .70);
  }
  .item-a .overlay{
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Home-featured
--------------------------------------------------------------*/
.featured {
  width: 100%;
  background-color: #000;
  padding-top: 80px;
}
.featured .games {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.featured .games .gamesBox {
  width: 22%;
  background: -webkit-gradient(linear, left bottom, left top, from(#343434), to(#575757));
  background: linear-gradient(to top, #343434 0%, #575757 100%);
  border: 1px solid #6a6a6a;
  border-radius: 10px;
  margin: 5px 6px;
  flex-direction: column;
  justify-content: space-between;
}
.featured .games .gamesBox--image img {
  display: block;
  width: 96%;
  margin: 0 auto;
}
.featured .games .gamesBox--image {
  margin: 5px 0;
}
.featured .games .gamesBox__content {
  /*height: 175px;*/
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(53, 53, 53, 0.85)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(53, 53, 53, 0.85) 100%);
  position: relative;
  border-top-left-radius: 0 0;
  border-top-right-radius: 0 0;
  /* overflow: hidden; */
  font-size: 15px;
  padding: 6px;
}
/* .featured .games .gamesBox__content:hover, .games .gamesBox__content:active {
  height: 240px;
  border-top-left-radius: 50% 10%;
  border-top-right-radius: 50% 10%;
  -webkit-transition: .3s all;
  transition: .3s all;
  margin-top: -65px;
}
.featured .games .gamesBox__content:hover:after, .games .gamesBox__content:active:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(5%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 5%);
  -webkit-transition: .6s all;
  transition: .6s all;
} */
.featured .games .gamesBox--title {
  width: 95%;
  margin: 3px auto;
  /* padding-top: 10px; */
  color: #ff9900;
  font-size: 1.25rem;
  font-weight: bold;
}
.featured .games .gamesBox--button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.featured .games .gamesBox--button a {
  width: 50%;
  height: 50px;
  color: #fff;
  text-align: center;
  line-height: 55px;
}
.featured .games .gamesBox--button a.intro {
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(#4b4b4b));
  background: linear-gradient(to top, #000000 0%, #4b4b4b 100%);
  border-bottom-left-radius: 10px;
}
.featured .games .gamesBox--button a.play {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff7e00), to(#ffc600));
  background: linear-gradient(to top, #ff7e00 0%, #ffc600 100%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
  color: #432c13;
  font-weight: bold;
}

@media (max-width: 767px) {
  .featured .games .gamesBox {
    width: 45%;
  }
  .featured .games .gamesBox--title{font-size: medium;}
  .featured .games .gamesBox--button a,  .featured .games .gamesBox__content {font-size: small;}
}

/*--------------------------------------------------------------
# Home-exclusive
--------------------------------------------------------------*/
.exclusive {
  width: 100%;
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}
.exclusive .panel {
  height: 250px;
  margin-top: 10px;
  border-radius: 0;
  border: 1px solid #ff9100;
  position: relative;
  text-align: center;
}
.exclusive .panel .icon{
  margin: auto;
}
.exclusive .panel .icon img{
  max-width: 220px;
}
.exclusive .panel .back {
  position: absolute;
  margin: auto;
  padding: 15%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#ff7e00), to(#ffc600));
  background: linear-gradient(to top, #ff7e00 0%, #ffc600 100%);
  opacity: 0;
}
.exclusive .panel:hover .back {
  opacity: 1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
@media (max-width: 768px) {
  .exclusive .panel .icon img{
    max-width: 180px;
  }
  .exclusive .panel, .exclusive .panel .back{
    height: 200px;
  }
}

/*--------------------------------------------------------------
# ourService
--------------------------------------------------------------*/
.ourService {
  padding: 100px;
  background-color: #fff;
  color: #333;
}
.ourService .section-title .title{
  color: #333;
  text-shadow: none;
}
.ourService .os-title{
  font-weight: 600;
}
.ourService .sv {
  padding: 20px;
  text-align: center;
}
.ourService .sv .icon{
  padding: 20px;
}
.ourService .sv .icon img{
  text-align: center;
  max-width: 200px;
}

@media (max-width: 768px) {
  .ourService {
    padding: 60px 20px;
  }
  .ourService .sv, .ourService .sv .icon {
    padding: 10px;
  }
  .ourService .sv .icon img {
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# slotPage
--------------------------------------------------------------*/
.featured.slotPage {
    padding-top: 100px;
    padding-bottom: 60px;
}

.slotPage .games .gamesBox{
  /* height: 212px; */
  display: flex;
  justify-content: space-between;
}
.slotPage .games .gamesBox .game-name{
  padding: 0px 10px;
  font-weight: 600;
  height: 30px;
  overflow: hidden;
}
/* @media (min-width: 1440px) {
  .slotPage .games .gamesBox {
    height: 258px;
  }
} */
@media (max-width: 1439px) and (min-width: 1200px) {
  .slotPage .games .gamesBox {
    width: 22%;
    height: 236px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .slotPage .games .gamesBox {
    width: 30%;
    height: 214px;
  }
}
@media (max-width: 767px) {
  .slotPage {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .slotPage .container {
      padding: 0;
  }
  .slotPage .games .gamesBox {
    width: 160px;
    height: auto;
    margin-bottom: 6px;
  }
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.theme-main-slider.item.about {
  margin-top: 124px;
  height: 60vh;
}
.ourVision{
  padding: 140px 20px;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
section#faq {
  padding: 140px 20px;
}
.faq .container{
  max-width: 960px;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: contents;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list .btn {
  display: initial;
  padding: 6px 24px;
  font-size: 1rem;
}
.faq .faq-list img{
  position: relative;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 1rem 3rem;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #f44336;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq.news .container{
  /* max-width: 80%; */
}
@media (max-width: 768px) {
  section#faq {
    padding: 120px 0;
  }
  .faq .faq-list p {
    padding: 1rem 1rem;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../images/footer-bg.png") #000 repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  /* content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1; */
}
#footer ul{margin: 30px 0 0 0;}

#footer ul li{
  list-style: none;
  margin: 10px;
  display: inline-block;
}
#footer a {
  color: #ffffff;
  font-style: italic;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffc600;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 1rem;
  margin-top: 30px;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffc600;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5ab652;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}


/*--------------------------------------------------------------
# SEO
--------------------------------------------------------------*/
.product-item h3{
  font-size: 1.2rem;
  font-weight: 600;
}

section.seo {
  border-top: 1px solid #ffc600;
  background:rgb(50 45 18 / 69%);
  padding: 60px 0;
}
section.seo .container{
  padding-bottom: 0;
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal-header {
  background: #ffc600;
  color: #000
  font-weight: 900;
  border-bottom: 0;
}
.modal-header .close {
  color: #000;
  padding: 1rem 1rem;
  margin: -1rem -0.2rem -1rem auto;
  padding: 0;
  background-color: transparent;
  border: 0;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
}
.modal-footer{
  border: 0;
}
h4.modal-title{
  color:#000;
}
.modal-content {
  background-color: #0c0017;
  border: 1px solid #ffc600;
  max-height: 78vh;
  overflow-y: scroll;
}

.login_form .form-control {
  font-size: 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid;
  background: 0 0;
  color: #fff;
}
.login_form label {
  margin: 10px 6px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
.login_form .button-red {
  min-width: 120px;
  height: 40px;
  color: #000;
  letter-spacing: 2px;
  font-weight: 400 !important;
  text-shadow: none;
  margin: 0 -15px;
  background: #ffc600;
  border-radius: 40px;
  border: solid 1px #ffc600;
}
.login_form .button-red:hover {
  background: linear-gradient(to top, #f7922f 0%, #ffc107 100%);
  transition: all 0.4s;
}
#notice li{
  margin-bottom: 12px;
  border-bottom: 1px dotted #ffc600;
}
/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
section#register {
  margin-top: 120px;
  min-height: 60vh;
  padding: 60px 40px 120px 40px;
}

/*-----------------------------------
    ft_menu
------------------------------------*/

.ft-navbar {
  background: rgb(0 0 0 / 85%);
  border-top: solid 1px #ffc600;
  padding: 8px 0 24px 0;
  box-shadow: -3px -6px 8px 0px rgb(245 210 107 / 54%);
  border-radius: 20px 20px 0 0;
}

.ft-navbar ul {
  margin: auto;
  height: 40px;
}
.ft-navbar ul li {
  list-style: none;
  padding: 6px 10px;
  text-align: center;
  min-width: 46px;
}
.ft-link-home {
  position: relative;
  bottom: 17px;
  width: 120px;
  height: 54px;
  z-index: 10;
  text-align: center;
}
.ft-link-home .home {
  text-align: center;
  margin: 18px 0;
}
.ft-link-home .home img {
  margin: -8px 0px;
  max-width: 100%;
}
.ft-link-home .home div{
  font-size: .6em;
  line-height: 2.4;
  width: 50px;
  margin: -26px 14px;
}
a.ft-link {
  line-height: 0;
  font-size: .8em;
  color: #fff;
}
.ft-link img {
  margin-bottom: 4px;
  width: 28px;
}
a.ft-link div{
  margin: 4px auto;
    text-align: center;
}

/* login-els */
/* login-els */
.login-else, .register_else{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-else h4, .register h4{
  color: #ffc600;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}
.login-else .hr ,.register_else .hr{
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: #8f8f8f;
}
.register_else .hr{
  margin: 40px 0;
}
.else-btn {
  display: flex;
    width: 275px !important;
    height: 50px;
    background: -webkit-linear-gradient(90deg,#5BC2E7 20%, #ffe97d,#5BC2E7 90% );
    border-radius: 40px;
    padding: 6px 20px;
    margin: 5px 0;
    align-items: center;
    justify-content: space-between;
}
.else-btn.google{
  background: #db4437;
  color: #fff;
}
.else-btn.line{
  background: #06c755;
  color: #fff;
}
.else-btn span {
  width: 80%;
  text-align: left;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  border-left: 1px solid;
  padding-left: 16px;
}
.else-btn img{
  max-width: 40px;
  padding: 5px;
}