/**
* Template Name: KnightOne - v2.0.0
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background-color: #000000;
  /*
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;*/
}

a {
  color: #f58400;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f58400;
  border-top-color: #0c0c0ce6;
  border-bottom-color: #0c0c0ce6;
  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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f58400;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #000000;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {

  transition: all 0.5s;
  z-index: 997;
  border-bottom: 0px solid rgba(255, 255, 255, 0.1);
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, #02305f 100%);
  height: 57px;
  border: 0;
  padding: 15px 0;

}

#header.header-scrolled, #header.header-inner-pages {
 /* background: rgba(40, 40, 40, 0.9);*/
 /* background: rgba(125, 11, 11, 0.9);*/
}

#header .logo {
  font-size: 28px;
  margin: auto;
  padding: 0px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}
.fbox{
  border-right: 1px solid #c6c6c6;
  min-height: 135px;

}
@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
  
  .fbox{
    border-right: 0px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    min-height: 120px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.nav-menu a {
  display: block;
  position: relative;
  color:#DFC780;/* rgba(255, 255, 255, 0.7);*/
  transition: 0.3s;
  font-size: 14px;
  padding: 25px 3px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #f58400;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

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

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #f58400;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f58400;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
    /* background: #009961; */
    color: #fff;
    border-radius: 20px;
    padding: 6px 15px 6px 15px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    background-color: rgba(247, 132, 0, 1);
    border: solid rgba(209, 27, 34, 1) 0px;
    cursor: pointer !important;
    box-shadow: 0px 3px 0px 0px rgba(209,27,34,0.6);
    margin-bottom: 5px;
  }

.get-started-btn:hover {
  background:#000000;/* #00b371;*/
  color: #fff;
  border: 0px solid rgba(247, 132, 0, 1);
}
.get-started-btn:focus {
  background:#000000;/* #00b371;*/
  color: #fff;
  border: 2px solid rgba(247, 132, 0, 1);
}
.get-started-btn:active{
  background-color:  rgba(247, 132, 0, 1);;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
  .get-started-btn.fix-r{
    margin-right: 10px;
  }
}
@media (max-width: 700px) {
  .get-started-btn.fix-r{
    margin-bottom: 5px;
  }
  .top-lnk{
    padding-left: 10%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f58400;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(15, 15, 15, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
@media (max-width: 900px) {
  #hero {
    width: 100%;
    height: 50vh;
    margin-top: 5%;
  }
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#009961 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #009961;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
}
.features{
  padding: 0px;
}
.section-bg {
  background-color: #8fffd6;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f58400;
  bottom: 0;
  left: 0;
}
.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f58400;
  bottom: 0;
  left: 0;
}
.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f58400;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #ffffff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #f58400;
}

.about .content .btn-learn-more:hover {
  background: #f58400;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  /*
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;*/
    
      transition: all ease-in-out 0.3s;
      background: #000000;
      box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
      border-bottom: 5px solid #000;
}
.services .icon-box img {
  width: 100%;
}
.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #f58400;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: #f58400;
}

.services .icon-box:hover h4 a {
  color: #f58400;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.png") fixed center center;
  background-size: cover;
  padding: 100px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #f58400;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #000000;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: rgba(247, 132, 0, 1);;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 30px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #009961;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

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

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #33ffb4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #f9f9f9;
}

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}

.pricing .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #009961;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #f58400;
  color: #f58400;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #000000;
  color: #fff;
}

.pricing .recommended {
  border-color: #f58400;
}

.pricing .recommended .btn-buy {
  background: #f58400;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #000000;
  border-color: #000000;
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #f58400;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq {
  padding: 0;
}

.faq .content {
  padding: 60px 100px 0 100px;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #848484;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-list {
  padding: 0 100px 60px 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.faq .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

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

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

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

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

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .faq .content, .faq .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .faq {
    /* img {
      padding-top: 30px;
    } */
  }
  .faq .content {
    padding-top: 30px;
  }
  .faq .accordion-list {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #f58400;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f58400;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #f58400;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #f58400;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f08d1c;
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9f9;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

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

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #f58400 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h3 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  position: inherit;
  width: 100%;
  bottom: 0%;
  margin-top: 5rem;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f58400;
  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 .social-links a:hover {
  background: #000000;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #f58400;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #000000;
}

#main{
  padding-top: 60px;
}


.sec-register{
max-width: 750px;
margin: auto;
margin-top: 10%;
}
.sec-register .btn   
{
  min-width: 250px;
  font-size: 24px;
margin: auto;
}
@media (max-width: 768px){
  .sec-register {
    padding: 2vh 0 0;
    max-width: 750px;
    margin: auto;
    margin-top: 10%;
}
.sec-register .btn {
  min-width: 160px;
  font-size: 20px;
  margin: auto;
}
}


/*
 * Component: Form
 * ---------------
 */
 .form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: #d2d6de;
}
.form-control:focus {
  border-color: #3c8dbc;
  box-shadow: none;
}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-control:not(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group.has-success label {
  color: #00a65a;
}
.form-group.has-success .form-control,
.form-group.has-success .input-group-addon {
  border-color: #00a65a;
  box-shadow: none;
}
.form-group.has-success .help-block {
  color: #00a65a;
}
.form-group.has-warning label {
  color: #f39c12;
}
.form-group.has-warning .form-control,
.form-group.has-warning .input-group-addon {
  border-color: #f39c12;
  box-shadow: none;
}
.form-group.has-warning .help-block {
  color: #f39c12;
}
.form-group.has-error label {
  color: #e81f06;;
}
.form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
  border-color: #e81f06;;
  box-shadow: none;
}
.form-group.has-error .help-block {
  color: #e81f06;;
}
/* Input group */
.input-group .input-group-addon {
  border-radius: 0;
  border-color: #d2d6de;
  background-color: #fff;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}
.icheck > label {
  padding-left: 0;
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
  line-height: 34px;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
  line-height: 46px;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
  line-height: 30px;
}


.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 8px);
  padding: .375rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  background-clip: padding-box;
  border: 1.5px solid #c59f31;
  border-radius: 30rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus{
  background-color: transparent;
  border: 2px solid #eacd4a /*#f58400*/;
  color: #ffffff;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-shadow: 0px 2px 12px #eacd4a;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #403f3d;
  opacity: 0.8;
  color: #b5b3b3;
}
ul{
  list-style: none;
    padding: 0;
    font-size: 18px;
}

.lbl-1{
  color: #c59f31;
}
.lbl-2{
  color: #efe409;
}
.sec-register.step-information{
  margin-top: 3rem;
}
/*
select{
  border-radius: 30px!important;
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #ffffff;
  -webkit-appearance: none;
  background-position-x: 80%!important;
}
select option {
  
  margin: 40px;
  background: #403f3d;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

*/


select {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 8px);
  padding: .375rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  background-clip: padding-box;
  border: 1.5px solid #c59f31;
  border-radius: 30rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

	width: 100%;


	/* Here's the code we need */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	 -o-appearance: none;
		appearance: none;
}
select option {
  text-align: center;
  margin: 40px;
  background: #403f3d;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  max-width: 150px!important;
}
.select-wrapper {
	position: relative;	
}

.select-wrapper:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #c59f31;
  position: absolute;
  top: 40%;
  right: 20px;
  content: "";
  z-index: 98;
}

select::-ms-expand {
  display: none;
}
select:focus{
  border: 0px;
}




/*---Notification---*/
.jq-icon-info { background-color: #398bf7; color: #d9edf7; border-color: #2e7de5; }
.jq-icon-warning { background-color: #ffb22b; color: #333333; border-color: #df9e1b; }
.jq-icon-error { background-color: #fc4b6c; color: #f2dede; border-color: #e73f3c; }
.jq-icon-success { color: #dff0d8; background-color: #0fc491; border-color: #0fc491; }

.myadmin-alert {
    border-radius: 0;
    color: #fff;
    padding: 12px 30px 12px 12px;
    position: relative;
    text-align: left
}

.myadmin-alert a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline
}

.myadmin-alert h4 {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0
}

.myadmin-alert .img {
    border-radius: 3px;
    height: 40px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 40px
}

.myadmin-alert-img {
    min-height: 64px;
    padding-left: 65px
}

.myadmin-alert-icon {
    padding-left: 20px
}

.myadmin-alert-icon i {
    padding-right: 10px
}

.myadmin-alert .closed {
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
    font-weight: 500;
    padding: 4px;
    position: absolute;
    right: 3px;
    text-decoration: none;
    top: 0
}

.myadmin-alert .closed:hover {
    color: #fff
}

.myadmin-alert-click {
    cursor: pointer;
    padding-right: 12px
}

.myadmin-alert .primary {
    background: rgba(0, 0, 0, .4);
    border: none;
    border-radius: 3px;
    color: inherit;
    outline: 0;
    padding: 4px 10px
}

.myadmin-alert .cancel {
    background: rgba(255, 255, 255, .4);
    border: none;
    border-radius: 3px;
    color: rgba(0, 0, 0, .8);
    outline: 0;
    padding: 4px 10px
}

.myadmin-alert .cancel:hover,
.myadmin-alert .primary:hover {
    opacity: .9
}

.myadmin-alert-bottom,
.myadmin-alert-bottom-left,
.myadmin-alert-bottom-right,
.myadmin-alert-fullscreen,
.myadmin-alert-top,
.myadmin-alert-top-left,
.myadmin-alert-top-right {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
    display: none;
    position: fixed;
    z-index: 9999999;
}

.myadmin-alert-top {
    left: 0;
    right: 0;
    top: 0
}

.myadmin-alert-bottom {
    bottom: 0;
    left: 0;
    right: 0
}

.myadmin-alert-top-left {
    left: 20px;
    top: 80px
}

.myadmin-alert-top-right {
    right: 20px;
    top: 80px
}

.myadmin-alert-bottom-left {
    bottom: 20px;
    left: 20px
}

.myadmin-alert-bottom-right {
    bottom: 20px;
    right: 20px
}

.myadmin-alert-fullsize {
    left: 50%;
    margin: -20px;
    top: 50%
}

.alert-custom {
    background: #2cabe3;
    color: #fff;
    border-color: #2cabe3
}

.alert-inverse {
    background: #4c5667;
    color: #fff;
    border-color: #4c5667
}

.alert-success {
  background: #44ab04;
  color: #fff;
  border-color: #44ab04;
}

.alert-dark {
    background: #313131;
    color: #fff;
    border-color: #313131
}

.alert-warning {
  background: #fb9708;
  color: #fff;
  border-color: #fb9708;
}

.alert-danger {
    background: #ea0631;
    color: #fff;
    border-color: #ea0631
}

.alert-primary {
    background: #707cd2;
    color: #fff;
    border-color: #707cd2
}

.alert-info {
    background: #1e88e5;
    color: #fff;
    border-color: #1e88e5
}

.alert-info .closed,
.alert-info a.closed:hover {
    color: inherit
}
.menu-wrapper .menu-box {
  border: 2px solid #1e5b9a;/*2px solid white;*/
  border-radius: 10px;
  /* padding: 40px 50px; */
  /* width: 40%; */
  /* height: 40%; */
  /* padding-top: 50px; */
  /* padding-bottom: 50px; */
  /* margin-left: 50px; */
  /* margin-bottom: 50px; */
  min-height: 50%;
}
.menu-wrapper .menu-box img {
  max-width: 125px;
  max-height: 100px;
}
@media (max-width: 600px) {
  .menu-wrapper .menu-box img {
    max-width: 100px;
    max-height: 80px;
  }
}

@media (max-width: 400px) {
  .menu-wrapper .menu-box img {
    max-width: 80px;
    max-height: 60px;
  }
}

.balance-circle {
  width: 190px;
  height: 190px;
  border-radius: 100px;
  background: #000000;
  box-shadow: 0px 0px 14px #eacd4a;
  border: 2px solid #f9bb09;

  
}
.circle1 {
  bottom: 4%;
  right: 4%;
  background: rgba(247, 132, 0, 1);
  padding: 1px 8px !important;
  padding-top: 4px !important;
  border: solid .08em #de7911!important;
}
.absolute {
  position: absolute;
}
.fa-round {
  border-radius: 1em !important;
}
.relative {
  position: relative;
}

.custom-nav {
  background-color: #2f2d2d;
/*  background: linear-gradient(0deg, rgba(242,12,12,1) 0%, rgba(0,0,0,1) 100%);*/
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.box-button {
  margin-top: auto;
  margin-bottom: auto;
}
.nav-button {
  color: white;
  font-size: 18px;
}
.nav-link {
  display: block;
  padding: .5rem 1rem;
}

.menu-box {
  border: 2px solid #1e5b9a;
  border-radius: 10px;

}

.icon-bank1{
  max-width: 100px;
}
#bankhistory .link-menu{
width: 100%;

}

.nav-tabs {
  border-bottom: 1px solid rgba(247, 132, 0, 1);
}
.nav-tabs .nav-link {
  font-size: 24px;
  color: #bec0c1;
}
.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color: rgba(247, 132, 0, 1);  rgba(247, 132, 0, 1);  rgba(247, 132, 0, 1);}
.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  /* color: #495057;*/
   background-color: rgba(247, 132, 0, 1);
   /*border-color: #dee2e6 #dee2e6 #fff;*/
   border: 0;
   color: #ffffff;
 }
 
.history-content{
  border-bottom: 1px dashed #e8c684;
}
@media (max-width: 600px) {
.datepicker,
.table-condensed {
  width: 95%;
  height:400px;
}
}

.btn-fb {
  cursor: pointer !important;
  color: white;
  padding: 2px 6px;
  background: rgb(24, 119, 242);
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 1px 1px 1px 0.2px rgba(0,0,0,0.4);
}


/* Layout css ends */
/* ====================================================================================================================*/
/* Customized flexislider css for Adminuz template start here */
/* ====================================================================================================================*/
/*
 * jQuery FlexSlider v2.6.3
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
 .flex-container a:hover, .flex-slider a:hover {
  outline: none;
}

.slides, .slides > li, .flex-control-nav li, .flex-direction-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  padding: 0;
  margin: 15px 0;
  zoom: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  border: 0;
  position: relative;
  display: inline-block;
  width: 100%;
}

.flexslider .slides {
  height: 1%;
  display: block;
  zoom: 1;
  background: none;
}

.flexslider .slides img {
  width: 100%;
  display: block;
  height: auto;
  -moz-user-select: none;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  background: transparent;
}

.flexslider .slides > li:first-child {
  display: block;
}

.flexslider .slides :after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.flexslider :hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider :hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider :hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider .activity-block {
  margin: 0;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  /*text-align: right;*/
  padding: 10px 15px;
  background: transparent;
  /*background: -moz-linear-gradient(left, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  /*background: -webkit-linear-gradient(left, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  /*background: linear-gradient(to right, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  color: gray;
  width: 100%;
}

.flex-direction-nav .progress-bar {
  background: rgba(26, 26, 26, 0);
}

.flex-direction-nav a {
  text-decoration: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 40%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: white !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*border: 1px solid black;*/
  color: black;
  text-shadow: none;
  font-size: 42px;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
}

.flex-direction-nav a:before {
  display: inline-block;
  content: "\f104";
  display: block;
}

.flex-direction-nav a.flex-next:before {
  content: "\f105";
}

.flex-direction-nav li {
  display: inline-block;
  top: 42%;
  position: relative;
}

.flex-direction-nav .flex-nav-next {
	position: relative;
	text-align: right;
	vertical-align: middle;
	width: 50%;
	height: 50%;
	/*right: 10%;*/
	top: 42%;
}

.flex-direction-nav .flex-nav-prev {
	position: relative;
	text-align: left;
	vertical-align: middle;
	width: 50%;
	height: 50%;
	/*left: -80%;*/
	/*right: 50%;*/
	top: 42%;
}

.flex-direction-nav .flex-next {
  /*border-radius: 0 50px 50px 0;
  -ms-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  -webkit-border-radius: 0 50px 50px 0;*/
}

.flex-direction-nav .flex-prev {
 /* border-radius: 50px 0 0 50px;
  -ms-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  -webkit-border-radius: 50px 0 0 50px;*/
}

.flexslider:hover .flex-direction-nav .flex-disabled {
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a :hover {
  opacity: 1;
}

.flex-pauseplay a .flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 0px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-nav li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.flex-control-nav li a :hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-nav li a.flex-active {
  background: #000;
  background: rgba(255, 255, 255, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
  padding: 0;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-thumbs img :hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bottom-nav {
  width: 100% !important;
}
.bottom-menu {
  width: 20% !important;
  display: inline;
}
@media screen and (max-width: 600px) {
.footer-aff a{
  font-size: 14px;
}

}
.footer-aff a.active{
  color: #eacd4a!important;
}
.centerTest {
  width:100%;
  text-align:center;
  display: block;
}

.border-gold {
  border-color: #bea80c !important;
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.text-warning {
  color: #b9a33e !important;
}
.text-center {
  text-align: center !important;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #282828;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.aff-block {
  padding: 10px;
  border: 1px dashed #959595;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #f1eaea!important;
}
.table-dark {
  color: #464646;
  background-color: #343a40;
}
select[name=dataTable_length] {
  display: inline-block;
    /* width: 100%; */
    /* height: calc(1.5em + .75rem + 8px); */
    padding: .375rem .5rem;
    font-size: 1rem;
    /* font-weight: 400; */
    /* line-height: 1.5; */
    /* text-align: center; */
    /* color: #ffffff; */
    /* background-color: transparent; */
    /* background-clip: padding-box; */
    /* border: 1.5px solid #c59f31; */
    border-radius: 0rem;
    /* transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
    width: 100px;
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
 
  color: #afada8 !important;
 }

 /*================================*





/*=========================*/

.menu-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #02305f;
  background: -webkit-linear-gradient(to right, #02305f, #003366, #28285a, #003366, #02305f);
  background: linear-gradient(to right, #02305f, #003366, #28285a, #003366, #02305f);
  z-index: 2024; }
  .menu-mobile ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: center;
    margin-bottom: 0;
    height: 67px; 
    max-width: 750px;
    margin: auto;
  }
    .menu-mobile ul li {
      width: calc((100% / 4));
      height: 100%;
      position: relative; }
      .menu-mobile ul li:before {
        content: '';
        width: 0.5px;
        height: 47px;
        display: block;
        position: absolute;
        left: 0;
        background-color: rgba(0, 0, 0, 0.4);
        margin: 10px 0; }
      .menu-mobile ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #e1e1e1;
        font-size: small;
        height: 100%; }
        .menu-mobile ul li a i {
          font-size: 16px; }
      .menu-mobile ul li:first-child::before {
        display: none; }
      .menu-mobile ul li:hover a {
        text-decoration: none; }

        .menu-mobile {
          display: block;
      }

      .title-leftline {
        font-size: 20px;
        font-weight: bold;
        padding: 5px;
        border-left: 4px solid #1861ab;
        margin-bottom: 15px;
        color: black;
        background: -webkit-linear-gradient(135deg, #ffffff 0%, #f1f1f1 60%, #1861ab 61%, #02305f 100%);
        background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 60%, #1861ab 61%, #02305f 100%);

/*
        font-size: 20px;
        font-weight: bold;
        padding: 5px;
        border-left: 4px solid #d70911;
        margin-bottom: 15px;
        color: black;
        background: -webkit-linear-gradient(135deg, #ffffff 0%, #f1f1f1 60%, #d70911 61%, #89060b 100%);
        background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 60%, #d70911 61%, #89060b 100%); */}      
ul.promo{
  list-style: disc;
    padding: 0rem 1rem 1rem 1rem;
    font-size: 16px;
    margin-left: 1rem;
}        

.max-w1{
 max-width: 780px!important;
}
.GameTabs {
  margin: 0px 0px 10px 0px;
  border: 1px solid #30343a;
  width: 100%;
}

.shine-hover {
  position: relative;
  overflow: hidden;
  transition: all ease-in-out .6s;
  cursor: pointer
}

.shine-hover:hover {
  filter: grayscale(.7)
}

.shine-hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffffd1, transparent);
  transition: .6s;
  z-index: 9999;
  opacity: .8
}

.shine-hover:hover:before {
  transition-delay: .3s;
  left: 100%
}

/*========================*/

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -2px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}


.modal-content.announcement {
  /*8position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;*/
  background-color: #000000;
}
.announcement-img{
  margin: auto;
    width: 100%;
}
.announcement-des{


}
#myAnnouncement{
  background: rgb(2 2 2);
  background: radial-gradient(circle, rgb(2 2 2) 0%, rgb(27 24 14 / 50%) 100%);
}
#myAnnouncement .modal-footer{
  border: none;
  padding: 5px;
}

.btn-announcement{
  font-size: 1.2rem;
  min-width: 80px;
  height: 42px;
  border-radius: 1.5rem;
}
@media (max-width: 700px) {

  .modal:before {
    content: '';
    display: inline-block;
    height: 20%;
    vertical-align: middle;
    margin-right: -2px;
  }
}


.btn-ks {
  
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 2.6rem;
  font-size: 1.6rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  color: #000;
  display: inline-block;
  outline: none;
  border: none;
  background-size: 200% auto;
  transition: all .3s ease-in-out;
  font-weight: 500;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  cursor: pointer;
  max-width: 100%
  
  }
  
  .btn-ks2 {
      color: #e1e1e1;
      position: relative;
      border: 2px solid #d70911;
      min-width: 120px;
      border-radius: 30px;
      transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
      overflow: hidden;
  }
  
  .btn-gradient {
      background: #e9c36b;
     background: -webkit-linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #AA771C , #BF953F);
      background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #AA771C, #BF953F);
  
  
  /*   background-image: linear-gradient(90deg, #a57a26 0, #f1c666 51%, #a57a26);*/
  background-size: 200% auto;
  background-repeat: no-repeat;
  height: 50px;
  padding-top: 0.1rem;
  padding-bottom: 0rem;
      font-size: 1.8rem;
      color: #0a0a0a !important;
      text-shadow: 0 0 black;
      transition: all .5s ease-in-out;
     
  
      
  }
  
  .btn-gradient:hover, .btn-gradient:focus  {
      color: #e1e1e1 !important;
      background-position: 100%; 
     /* font-weight: 700;*/
      /*background:red;*/
  }
  

 .btn-gradient2 {
  border: 2px solid #d70911;
  background: #000000;

  background-size: 200% 100%;
  background-position:left bottom;
  height: 50px;
  padding-top: 0.4rem;
  padding-bottom: 0rem;
  font-size: 1.8rem;
  color: #e1e1e1 !important;
  /*text-shadow: 0 0 #e9c36b;*/
    transition: all .3s ease-in-out;
 

  
}


  .btn-gradient2:hover {
      color: #000000!important;
    
      background: linear-gradient(to right, #000000 50%, #d70911 50%);
      background-position:right bottom;
  }
  .text-gar {
    background: -webkit-linear-gradient(#ca962e, #fff, #e6ac08, #a78233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.text-warning1{
  color: #ffc107!important;
}

.bg-border-gar {
    background: linear-gradient(to top left, #f8ecdb, #7f663c, #ae8f71, #f8ecdb, #7f663c, #f8ecdb, #7f663c, #ae8f71, #f8ecdb, #7f663c, #f8ecdb)
}
.ks-border-s1{
  border: 1px solid #e6ac08;
  box-shadow: 0 0px 2px 0 #e6ac08, 0 1px 7px 0 #e6ac08;
}
.ks-border-s2{
  border: 1px solid #e6ac08;
  box-shadow: 0 0px 2px 0 #e6ac08, 0 1px 17px 0 #e6ac08;
}
.ks-border-s3{
  border: 1px solid #02305f;
  box-shadow: 0 0px 2px 0 #02305f, 0 1px 17px 0 #3f6892;
}
.fix-secmt{
  margin-top: 1vh;
}
.btn-s1{
  font-size: 1.2rem!important;
  padding: 0.5rem 1.2rem!important;
 
}
@media (max-width: 768px) {
  .fix-secmt{
    margin-top: 3vh;
  }
}
@media (max-width: 450px) {
  .nav-tabs .nav-link {
    font-size: 18px;
    color: #bec0c1;
  }
  .nav-link
   {
      display: block;
      padding: .3rem 1rem;
  }
  } 