/* default */
@charset "utf-8";
:root {
--primaryfont:'Inter', sans-serif;
--secondaryfont:"Roboto", sans-serif;
--tertiaryfont:'Arial', 'Helvetica', sans-serif;
--primarycolor:#e21616;
--secondarycolor:#000000;
--tertiarycolor:#d57506;
--quaternarycolor:#999999;
--quinarycolor:#888888;
--senarycolor:#777777;
--septenarycolor:#666666;
--octonarycolor:#555555;
--nonarycolor:#444444;
--denarycolor:#333333;
--colorwhite:#fff;
--colorblack:#000;
}
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", 'Helvetica', 'Helvetica Neue', Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--denarycolor) !important;
  background: var(--colorwhite);
}
a {
  color: var(--primarycolor);
}
a:focus, a:hover {
  color: var(--secondarycolor);
}
a:active {
  color: var(--tertiarycolor);
}
svg {
  vertical-align: middle;
}
.form-check-input:checked {
  background-color: var(--secondarycolor)!important;
  border-color: var(--secondarycolor)!important;
}
.theme-color-1 {
  color: var(--primarycolor);
}
.theme-color-2 {
  color: var(--secondarycolor);
}
.theme-color-3 {
  color: var(--tertiarycolor);
}
.theme-bg-1 {
  background: var(--primarycolor);
}
.theme-bg-2 {
  background: var(--secondarycolor);
}
.theme-bg-3 {
  background: var(--tertiarycolor);
}
/* header */
header.header .navbar {
  white-space: nowrap;
}
header.header {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
  z-index: 999;
  width: 100%;
  position: relative;
}
.sticky-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  animation: slideDown 0.50s ease-out;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
}
@keyframes slideDown {
 from {
 transform: translateY(-100%);
}
to {
  transform: translateY(0);
}
}
header.header nav li.nav-item .nav-link {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: var(--octonarycolor);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header.header nav li.nav-item .nav-link:hover {
  color: var(--primarycolor);
}
header.header nav li.nav-item .nav-link:focus {
  color: var(--primarycolor);
}
header.header nav li.nav-item .nav-link.active {
  color: var(--primarycolor);
}
header.header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}
header.header .navbar-light .navbar-toggler {
  border: none;
  padding: 0;
  font-size: 36px;
  color: var(--secondarycolor);
}
header.header .navbar-light .navbar-toggler:hover {
  color: var(--primarycolor);
}
header.header .navbar-light button.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  p{
    font-size: 13px;
  }
  .footerloction{
    padding: 15px !important;
  }
header.header .navbar-nav {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #efefef;
}
header.header nav li.nav-item .nav-link {
  border-bottom: 1px solid #efefef;
}
header.header nav li.nav-item .nav-link:hover {
  background: var(--colorwhite);
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
}
}
@media (max-width: 991.98px) {
header.header .navbar-nav > li > .dropdown-menu {
  box-shadow: none !important;
}
}
header.header .navbar-nav > li > .dropdown-menu {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0px solid var(--colorwhite);
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
  top: 100%;
  left: 15%;
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item {
  text-transform: capitalize;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--octonarycolor);
  padding: 0.70rem 1rem;
  border-bottom: 1px solid #efefef;
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  background: var(--colorwhite);
}
header.header .navbar-nav .dropdown-toggle::after {
  display: none;
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:hover {
  color: var(--primarycolor);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background: var(--colorwhite);
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:focus {
  color: var(--primarycolor);
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:active {
  color: var(--primarycolor);
}
header.header .dropdown-item.active, header.header .dropdown-item:active {
  color: var(--primarycolor)!important;
}
.menudot {
  width: 7px;
  height: 7px;
  background-color: var(--primarycolor);
  border-radius: 50%;
  display: inline-block;
}
/* footer */
.footer p{
  color: white;
}
.footer span{
  color: white;
}
.footer {
  background: var(--colorblack);
  color: var(--colorwhite);
  padding: 25px 0px 25px 0px;
  position: relative;
  width: 100%;
}
footer.footer .breadcrumb a, footer.footer .breadcrumb .active, .breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark-80);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
footer.footer .breadcrumb a:hover {
  color: var(--colorwhite);
}
footer.footer .breadcrumb li.breadcrumb-item a .social-icon {
  background: var(--dark-45);
  border: 1px solid var(--dark-50);
  color: var(--colorwhite);
  width: 40px;
  height: 40px;
  padding: 5px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
footer.footer .breadcrumb li.breadcrumb-item a .social-icon:hover {
  background: var(--dark-50);
  border: 1px solid var(--dark-50);
  color: var(--colorwhite);
}
/* pages */
.main-content {
  position: relative;
}
.brand-button, a.brand-button {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 24px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button:hover, a.brand-button:hover, .brand-button:focus, a.brand-button:focus {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button:active, a.brand-button:active {
  color: var(--colorwhite);
  background-color: var(--tertiarycolor);
  border: 1px solid var(--tertiarycolor);
}
.brand-button-alt, a.brand-button-alt {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 24px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button-alt:hover, a.brand-button-alt:hover, .brand-button-alt:focus, a.brand-button-alt:focus {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button-alt:active, a.brand-button-alt:active {
  color: var(--colorwhite);
  background-color: var(--tertiarycolor);
  border: 1px solid var(--tertiarycolor);
}
.white-button-alt, a.white-button-alt {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 24px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.white-button-alt:hover, a.white-button-alt:hover, .white-button-alt:focus, a.white-button-alt:focus {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button-alt:active, a.white-button-alt:active {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
}
.hero-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: inherit;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url('../images/header.png');
  padding: 100px 0px 0px 0px;
}
.feature-box {
  background: #fafafa;
 border-radius: .25rem;
  border: 1px solid var(--colorblack);
  position: relative;
}
.feature-box-circle {
  position: absolute;
  left: -8px;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.video-testimonial {
  position: relative;
}
.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.content-testimonials {
  position: relative;
  z-index: 1;
}
.quote-icon {
  position: absolute;
  top: -25px!important;
  right: 10%;
  z-index: 99;
}
.slick-slide {
  padding: 0 10px;
}
.slick-list {
  margin: 0 -10px;
}
.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}
.owl-carousel .owl-stage {
  overflow: visible !important;
}
.card-height {
  height: 400px;
}
@media (max-width: 1399.98px) {
.card-height {
  height: 300px;
}
.today {
  position: absolute;
  top: -85px!important;
}
}
@media (max-width: 1199.98px) {
.card-height {
  height: 300px;
}
.today {
  position: absolute;
  top: -85px!important;
}
}
.getstarted {
  position: relative;
  z-index: 1;
}
.today {
  position: absolute;
  top: -145px;
  left: 0;
  z-index: 99;
}
@media (max-width: 991.98px) {
.today {
  position: relative;
  top: 0;
}
.card-height {
  height: auto;
}
}
.homevideo {
  position: relative;
  background-color: var(--primarycolor);
  height: 80vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991.98px) {
.homevideo {
  height: 90vh;
  min-height: 25rem;
}
}
.homevideo .overlay {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--colorblack);
  opacity: .05;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.homevideo video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}
.homevideo .container {
  position: relative;
  z-index: 2;
}
.fee-bg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.masterbg {
  background: #2e0000;
}
.earn-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: inherit;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url('../images/earn.png');
  padding: 120px 0px 120px 0px;
}
@media (max-width: 991.98px) {
.border-lg-end {
  border-right: none !important;
}
}
.title-divider, .title-divider-white {
  position: relative;
  margin-bottom: 20px;
  height: 17px;
}
.title-divider::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
  mask-repeat: repeat;
  mask-size: auto;
  background-repeat: repeat-x;
  content: "";
  width: 100px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-mask-size: 22px;
  mask-size: 22px;
  background-color: var(--primarycolor);
  background-size: 22px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}
.title-divider-white::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
  mask-repeat: repeat;
  mask-size: auto;
  background-repeat: repeat-x;
  content: "";
  width: 100px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-mask-size: 22px;
  mask-size: 22px;
  background-color: var(--colorwhite);
  background-size: 22px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}
.white-box {
  transition: .3s;
  position: relative;
}
.white-box:hover {
  transform: translateY(-5px);
}
.testi-box {
  margin-left: -100px;
}
@media (max-width: 991.98px) {
.testi-box {
  margin-left: 0px;
}
}


.text-theme{
    color: rgba(255, 0, 0, 0.90) !important;
}

.footerloction{
  border-radius: 15px;
background: #000;
padding: 30px;
}
.footerloction p{
font-size: 13px;
color: rgba(255, 255, 255, 0.70);


}
.footerloction h5{
  color: #F00;
font-size: 19px;
}
.footerloction svg{
    margin-right: 13px;
    min-width: 16px;
    margin-top: 6px;
}

.logocrd{
  border-radius: 15px;
background: #FFF;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
width: max-content;
}

.footerinnercrd{
box-shadow: 0px -6px 35px rgba(0, 0, 0, 0.35);
}

.imgload {
    position: relative;
    z-index: -1;
    margin-bottom: -13px;
}

.logoimg{
  width: 200px;
  object-fit: cover;
}