
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #75581f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

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

.header .logo img {
  max-height: 110px;
  margin: -15px auto;
}


/*--------------------------------------------------------------
# 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: #b79c3a;
  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: #5e441a;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--radial, radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

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

.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: #651e5f;
  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: #651e5f;
}

.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 Section
--------------------------------------------------------------*/
.hero {
  background: var(--radial, radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
}
.hero h1 {
  font-size: 50px;
  font-weight: 900;
  color: #651e5f;
}
.hero h5 {
  font-size: 20px;
  font-weight: 400;
}
.hero .counts h6 {
  color: rgb(255 255 255 / 60%);
}
.hero .counts h5 {
  font-size: 26px;
  font-weight: 600;
  color: #f5a540;
}
.hero a {
  color: #651e5f;
}
.hero a:hover {
  color: #010103;
}

@media (max-width: 768px) {
  .hero h1, .hero h5, .hero p {
    font-size: 10px;
  }
  .hero .registerBtn {
    padding: 4px 6px;
    font-size: 10px;
  }
  .hero .counts label, .hero .counts .form-control, .hero .counts a {
    font-size: 12px;
  }
  .hero .counts .goBtn {
    font-size: 12px;
    font-weight: 600;
  }
  .hero .counts span {
    word-break: break-all;
    font-size: 14px !important;
  }
  .hero .counts h5 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #b79c3a;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #5e441a;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #75581f;
  box-shadow: 0px 5px 25px rgb(117 88 31);
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #c6a84f;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #b79c3a;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #5e441a;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

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

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

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  padding: 10px 15px;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: white;
  font-size: 14px;
}

.footer .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #75581f;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #651e5f;
}


/*custom css*/
.goBtn {
  color: #651e5f;
  background: var(--radial, radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
}
.registerBtn {
  color: #f3cc47 !important;
  background: #651e5f;
  padding: 15px 30px;
}
.registerBtn:hover {
  color: #651e5f !important;
  background: #f3cc47;
}
main {
/*  background: rgba(6,11,21,.85);*/
  background: var(--radial, radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
  background-image: url('../../../bulleto.io/images/bgimages.html');
}
.sidemenu {
  background: rgba(6,11,21,.85);
  padding: 40px 30px;
}
.sidemenu li {
  margin-bottom:40px;
}
.sidemenu li:last-child {
  margin-bottom:0;
}
.sidemenu li a {
  color: #ffffffb3;
}
.sidemenu li a:hover {
  color: #f3cc47;
}
.sidemenu li a.active {
  color: #f3cc47;
  font-weight: 700;
}
.sidemenu li i {
  margin-right: 10px;
}
.placeholderColor::placeholder {
  color: rgb(255 255 255 / 50%) !important;
}
table td, table th {
  vertical-align: middle;
}
.hero .form-control:focus {
  color: #ffffffcc;
}

.hero .form-control {
  color: white;
}
@media screen and (max-width:768px) {
  .sidemenu li {
    float: left;
  }
  .inner-page {
    padding-top: 0 !important;
  }
  .sidemenu {
    padding: 10px;
  }
  .sidemenu li {
    margin-bottom: 5px;
    margin-right: 10px;
  }
  .sidebar .counts, .sidebar {
    padding: 15px 0 15px;
  }
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: var(--radial, radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
  border: 1px solid;
}
.nav-pills .nav-link {
  border: 1px solid #f3cc47;
  margin-right: 20px;
  color: #f3cc47;
}
.plan .plan-head h2 {
  font-size: 66px;
  line-height: 48px;
  background: var(--redial,radial-gradient(225.82% 255.79% at 94.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.plan .plan-head span {
  background: var(--redial,radial-gradient(225.82% 255.79% at 160.54% -.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  leading-trim: both;
  text-edge: cap;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.bg-custom {
  background: var(--redial,radial-gradient(225.82% 255.79% at 94.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%));
}
.plan .plan-body {
  width: 70%;
}
.plan .plan-head {
  width: 30%;
  border: 1px solid rgb(237 182 29);
  background: rgb(255 255 255 / 10%);
}
.plan .plan-body .row .col div {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 70%)
}
.plan .plan-body-b .row .col div {
  height: 20px;
  width: 20px;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 70%)
}
.plan .plan-body .row .col div.active, .plan .plan-body-b .row .col div.active, .plan-details .plan-name, .plan-details .plan-slot .plan-slot-title {
  background: radial-gradient(225.82% 255.79% at 106.54% -5.03%,#ff0 0,#f6da00 11%,#ecaf00 25%,#e48a00 40%,#de6e00 55%,#d95a00 70%,#d64e00 85%,#d64b00 100%);
}
.bg-custom-light {
  background-color: rgb(255 255 255 / 70%);
}
.plan-details .plan-name {
  padding:20px;
}
.plan-details .plan-name h1{
  font-size: 50px;
  font-weight: bolder;
}
.plan-details .plan-name span{
  font-weight: 800;
}
.plan-details .plan-slot {
  border: 1px solid #e69300;
}
.plan-details .plan-slot .plan-slot-title {
  border: 1px solid #e69300;
  padding: 10px;
}
.plan-details .plan-slot .circles li:not(.child) {
  margin:auto;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: rgb(12 11 11 / 70%);
  margin-bottom: 10px;
}
.plan-details .plan-slot .circles li:first-child {
  width: 40px;
  height: 40px;
}
.plan-details .plan-slot .circles li.active {
  background-color: #12ade9;
}
.plan-details .plan-slot .circles li ul {
  display: flex;
}
.plan-details .plan-slot .circles li:nth-child(2) ul li {
  width: 30px;
  height: 30px;
  clear: both;
}
.plan-details .plan-slot .circles li:nth-child(2) ul li.active, .plan-details .plan-slot .circles li:nth-child(4) ul li.active  {
  background-color: #a4dda4;
}
.plan-details .plan-slot .circles li:nth-child(3) ul li {
  width: 20px;
  height: 20px;
  clear: both;
}
.plan-details .plan-slot .circles li:nth-child(4) ul li {
  width: 10px;
  height: 10px;
  clear: both;
}
.plan-details .plan-slot .sub-details li {
  margin-right: 10px;
  font-size: 12px;
}
.text-warning {
  color: #b79c3a !important;
}

