/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 3px 0;
}

.header.header-scrolled {
  background: #000;
  padding: 5px 0;
  /*box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);*/
  border-color:rgba(255, 255, 255, 0.3);
  border-style:solid;
  border-width: 0px 0px 1px 0px;
  box-shadow: 0px 2px 5px 5px rgba(0, 0, 0, 0.5);

}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
  text-decoration:none;
}

.header a.logo {
  text-decoration:none !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.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;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #cecece;
  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: #ffffff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #4154f1;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/*
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
*/
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}
/*
@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
*/
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #4154f1;
}

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

#hero {
  margin-top:70px;

}

#hero .clockHero {
  border-color:rgba(255, 255, 255, 0.3);
  border-style:solid;
  border-width: 1px 0px 0px 0px;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.5);

  background-color:black;
  height:450px;
  /* background-image:url(/img/clock/clock2b.png);background-position: calc(100% + 735px) 50%; */
  background-image:url(/img/clock/clock2c.png);background-position: calc(100% + 187px) 3px;
  background-size: auto 454px;background-repeat:no-repeat;//2048px
}

.hidden-svg {
  display:none;
}

.row.pros {
  color:#909090;
}

@media (max-width: 500px) {

#hero .clockHero {
  background-image:url(/img/clock/clock3c.png);
  background-position: 50% 50%;
  background-size:1100px;background-repeat:no-repeat;
}

}


footer.fixed-footer {
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
  color: #000;
}





div.waxed-asteroids span {
  font-color:white;
  font-family: Nunito;
  font-weight:bold;
  font-size:25px;
  text-align:center;
  color:white;
}
div.waxed-asteroids span.instructions h3 {
  font-color:white;
  font-family: Nunito;
  font-weight:bold;
  font-size:20px;
  text-align:center;
  color:black;
  margin:0px;
  padding:0px;
  line-height:30px;
}
div.waxed-asteroids span.instructions p {
  font-color:white;
  font-family: Nunito;
  font-weight:normal;
  font-size:13px;
  text-align:center;
  color:#fdfff4;
  margin:0px;
  padding:0px;
  line-height:14px;
}


section.waxed-hidden {
  display: none !important;
}

.card.selected {
  border-color:red;
  border-width:2px;
}

a.action.list-group-item.list-group-item-action {
background-image:url(/img/chalk/arrowr.png);
background-repeat:no-repeat;
background-position:5px 50%;
background-size:20px;
padding-left: 33px;
}

.ilustrato {
  background-repeat:no-repeat;
  background-position: 50% 50%;
  background-size:contain;
}
.ilustrato.i-alien {
  background-image:url(/img/chalk/alien.png);
}

.ilustrato.i-tree1 {
  background-image:url(/img/chalk/tree1.png);
}

.ilustrato.i-tree2 {
  background-image:url(/img/chalk/tree2.png);
}

.ilustrato.i-jaster {
  background-image:url(/img/chalk/jaster.png);
}

.ilustrato.i-weirdo {
  background-image:url(/img/chalk/weirdo.png);
}

.ilustrato.i-sun {
  background-image:url(/img/chalk/sun.png);
}

.ilustrato.i-synth {
  background-image:url(/img/chalk/synth.png);
}





.footer-02 {
  background: #131719; }
  .footer-02 .footer-heading {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px; }
    .footer-02 .footer-heading .logo {
      color: #fff;
      text-transform: uppercase; }
  .footer-02 a {
    color: #bba387; }
  .footer-02 p {
    color: rgba(255, 255, 255, 0.3); }
  .footer-02 .copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px; }
  .footer-02 .list-unstyled li a {
    color: rgba(255, 255, 255, 0.4); }
    .footer-02 .list-unstyled li a:hover {
      color: #fff; }
  .footer-02 .list-unstyled a {
    color: rgba(255, 255, 255, 0.4); }
    .footer-02 .list-unstyled a:hover {
      color: #fff; }
  .footer-02 .subscribe {
    margin-top: -105px; }
  .footer-02 .subscribe-form {
    border-radius: 40px;
    background: #fff;
    padding: 3px;
    -webkit-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1); }
    .footer-02 .subscribe-form .form-group {
      position: relative;
      margin-bottom: 0;
      border-radius: 0; }
      .footer-02 .subscribe-form .form-group input {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        color: rgba(0, 0, 0, 0.3) !important;
        font-size: 16px;
        height: 56px;
        border-radius: 0; }
        .footer-02 .subscribe-form .form-group input::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          color: rgba(0, 0, 0, 0.3) !important; }
        .footer-02 .subscribe-form .form-group input::-moz-placeholder {
          /* Firefox 19+ */
          color: rgba(0, 0, 0, 0.3) !important; }
        .footer-02 .subscribe-form .form-group input:-ms-input-placeholder {
          /* IE 10+ */
          color: rgba(0, 0, 0, 0.3) !important; }
        .footer-02 .subscribe-form .form-group input:-moz-placeholder {
          /* Firefox 18- */
          color: rgba(0, 0, 0, 0.3) !important; }
        .footer-02 .subscribe-form .form-group input:focus {
          outline: none !important;
          -webkit-box-shadow: none;
          box-shadow: none; }
      .footer-02 .subscribe-form .form-group .submit {
        color: #fff !important;
        display: block;
        width: 150px;
        height: 56px;
        font-size: 14px;
        background: #bfa88e !important;
        border: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 40px; }
        .footer-02 .subscribe-form .form-group .submit:hover, .footer-02 .subscribe-form .form-group .submit:focus {
          text-decoration: none !important;
          outline: none !important; }
  .footer-02 .partner-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1em 0; }
    .footer-02 .partner-wrap h3 {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.4); }
    .footer-02 .partner-wrap .partner-name a {
      margin-right: 10px;
      font-size: 13px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4); }
      .footer-02 .partner-wrap .partner-name a span {
        color: white; }
    .footer-02 .partner-wrap .btn-custom {
      font-size: 14px; }
  .footer-02 .border-left {
    border-color: rgba(255, 255, 255, 0.05) !important; }
    @media (max-width: 1199.98px) {
      .footer-02 .border-left {
        border: none; } }



button.navbar-toggler {
  font-size:120%;
  border-style:solid;
  border-width:1px;
  border-radius: 5px;
  margin:10px 5px 5px 5px;
  padding:3px;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

button.navbar-toggler:hover {
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
#content > div.container-md, #content > div.container-sm, #content > div.container {
  max-width: 100% !important;
}



}

.tingle-modal {
  z-index:1200 !important;
}

button.tingle-modal__close {
  background-color:black !important;
}

header.fixed-top {
  z-index:99 !important;
}

.apexcharts-tooltip-title {
    background-color: #303030 !important;
    color: #E8D824;
}

  .apexcharts-tooltip {
    background-color: #303030 !important;
    color: #E8D824;
  }

.apexcharts-menu.apexcharts-menu-open {
    background-color: #303030 !important;
}

#footer a{
  text-decoration:none;
}
