@charset "UTF-8";
/* CSS Document */
:root {
  --marquee-width: 80vw;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(
    var(--marquee-width) / var(--marquee-elements-displayed)
  );
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
body{
	  font-family: "Play", sans-serif;
}
.bg-dark {
  background-color: #161616 !important;
  border-bottom: 1px solid #29ff04;
}
.btns {
  gap: 7.5px
}
.menu {
  width: 100%;
  justify-content: center;
  display: flex;
  gap: 15px;
  padding: 0 15px;
}
a:hover {
    color: #7bfa4e;
    text-decoration: none;
}
.fab, .far {
    font-weight: 400;
    color: #7bfa4e !important;
    font-size: 24px !important;
}

.horseback{
	    background: url(../images/horseback.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.banner-images {
    border-radius: 8px;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 8px;
}
body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #686868;
    text-align: left;
    background: #292b2c;
    background: linear-gradient(150deg, #292b2c 56%, #1d1c1c 0);
    /* background-color: #292929; */
}
a {
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
}
ul.list-unstyled {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
    line-height: 45px;
}

.marquee {
  /* width: var(--marquee-width); */
  /* height: var(--marquee-height); */
  background-color: #111;
  color: #eee;
  overflow: hidden;
  position: relative;
  height: 60px;
}
.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, #111 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height) * 3 / 4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  /* height: 100%; */
  border: 2px solid #eee;
}

@media (max-width: 600px) {
  html {
    font-size: 12px;
  }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

.card-img, .card-img-top {
  border-top-left-radius: 0;
  /* border-radius: 8px; */
  border-top-right-radius: 0;
}
.card-title{
	margin: 0;
	padding: 15px;
	background-color: green;
	color: white;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.card {
  border-radius: 8px;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff0034;
    border-color: #ff000e;
    /* background-color: transparent; */
    /* border-color: #ff000e; */
}
.bg3 {
    background-color: green;
    padding: 10px;
    color: white;
    font-size: 14px;
}
.line{
    align-items: center;
    /* display: flex; */
    border-top: 1px solid #383838;
}
.btn-primary {
  color: #fff;
  background-color: #ff0034;
  border-color: #ff000e;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    width: 100%;
    color: white;
    text-align: center;
}
.modal-content {
    position: 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 rgb(62 125 39);
    border-radius: 0.3rem;
    outline: 0;
}
form.d-flex.btns {
    display: flex;
    align-items: center;
    color: white;
}
.user-logged{
	color: #0b182e;
	display: flex;
	justify-content: space-between;
	gap:7.5px;
	align-items: center;
	padding: 5px;
	/* background-color: #091e43; */
}
.user-settings{
	padding: 4px;
	font-size: 13px;
	cursor: pointer;
	 border:1px solid transparent;
}
.user-settings:hover{
    border:1px solid #8591b4;
	border-radius: 10px;
	padding: 4px;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #56cb14;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    background-color: #161616;
}
.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    gap: 7.5px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.close:hover {
    color: #f00;
    text-decoration: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 BLACK;
    opacity: .5;
}
.btn-primary:hover {
  color: #fff;
  background-color: #377e22;
  border-color: #7bfa4e;
}
.btn-secondary {
    color: #fff;
    background-color: #377e22;
    border-color: #7bfa4e;
}
.modal-footer > * {
    margin: 0;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #092043;
  border-color: #0062cc;
}
.bg-dark2 {
  padding: 8px;
  display: flex;
  align-items: center;
  color: white;
  background-color: #000000 !important;
}
p {
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
}
.footertxt {
  font-size: 14px;
  text-align: justify;
  color: #979797;
  padding: 15px;
}
h3 {
  font-size: 15px;
  padding: 15px 15px 0;
}
h4 {
  font-size: 15px;
  text-align: left;
  text-transform: uppercase;
}
.footer-pay {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, 50px);
  width: 100%;
  padding: 15px;
  justify-content: center;
}
.footer-item {
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0 3px;
}
.btn-link {
  font-weight: 400;
  color: #757575 !important;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgb(123 250 78);
}
.bannerbg{
	 background: url("../images/bannerbg.png");
	background-size: cover;
}
.footer-apps {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
  /* width: 152px; */
  justify-content: center;
}
.footer-apps-item {
  align-items: center;
  display: inline-flex;
  height: 45px;
}
.footer-ages {
  align-items: center;
  border: 1.5px solid #e10000;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  line-height: 15px;
  margin-left: 12px;
  height: 32px;
  min-width: 32px;
  text-shadow: 0 18.1818px 36.3636px rgba(0, 0, 0, .25);
  text-transform: capitalize;
}
.footer-media {
  grid-gap: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(1, 42px);
  align-content: space-around;
  justify-content: space-evenly;
  align-items: start;
}
.footer-media-item {
  align-items: center;
  background: #255c11;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
}
.footer-icon {
  align-items: center;
  display: flex;
  margin-right: 4px;
}
.footer-number {
  display: inline-block;
  font-size: 9px;
  font-weight: 300;
  line-height: 24px;
  padding-left: 4px;
}
.footer-items > span {
  display: inline-block;
  text-decoration-color: transparent;
}
.menu-item {
  font-size: 16px;
  padding: 15px 0;
  white-space: nowrap;
  text-transform: uppercase;
}
.general_banner {
  align-items: center;
  background-color: #131415;
  /* background: linear-gradient(135deg, #262d3b 4.86%, #2a3243 54.91%, #1f2531); */
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  margin: 0 auto;
  padding: 15px;
  position: relative;
  width: 100%;
  /* height: 250px; */
  border: 1px solid green;
}
.general_banner_title {
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-color: #4ec026;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-size: 100%;
  color: #2d2a26;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 13px;
  max-width: 465px;
  text-align: left;
  text-transform: uppercase;
}
.general_banner_text {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: hsla(0, 0%, 100%, .7);
  transition: all .3s;
}
.general_banner_img {
  max-height: 240px;
  right: -1%;
}
.expert-trainer-area {
  background: #292b2c;
  background: linear-gradient(150deg, #292b2c 56%, #1d1c1c 0);
  min-height: 100vh;
  padding-bottom: 5px;
  width: 100%;
  /* background: url("../images/trainer-bag.png") top center no-repeat; */
  /* background-size: cover; */
  background-attachment: fixed;
  overflow: hidden;
  padding: 100px 0 106px;
  background-color: #131415;
  color: #818181;
}
.expert-trainer-area .section-title {
    position: relative;
}
.expert-trainer-area .section-title h2:after {
    background: #dc1437;
    position: absolute;
    content: "";
    height: 1px;
    right: 0;
    top: 15px;
    /* width: auto; */
}
h2 {
    color: #36b612;
}
.play-regular {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.play-bold {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-style: normal;
}
body::-webkit-scrollbar-thumb {
  background-color: transparent;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
}
body::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}
body::-webkit-scrollbar {
  width: 0;               /* width of the entire scrollbar */
}

::-webkit-scrollbar {
  width: 10px;               /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: green;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
}
.btn-link:hover {
    color: #f9002e;
    text-decoration: none;
}
a.footer-media-item:hover {
    /* filter: invert(1); */
    scale: 1.1;
    background-color: #dc0000;
}
.scroll-top-btn.jumpTop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px)
}
.scroll-top-btn1 {
    background: #dd0030;
}
.scroll-top-btn .arrow-up {
    margin-top: 5px;
    margin-bottom: 10px;
}
.scroll-top-btn i {
    color: #fff;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #222;
    background-clip: border-box;
    border: 1px solid rgb(95 179 57);
    border-radius: 8px;
}
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1rem;
}
.scroll-top-btn {
    background: #1d72ff;
    width: 40px;
    height: 60px;
    text-align: center;
    border-radius: 20px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: all 500ms ease 0s;
    visibility: hidden;
    transform: translateY(100px);
    z-index: 99;
    cursor: pointer;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    box-shadow: rgba(0,0,0,.075) -3px 3px 7px 0;
}
.accordion > .card > .card-header {
    border-radius: 0;
    margin-bottom: -1px;
    background-color: #0b182e;
    padding: 0;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.desktop{
		display: none
	}
	.mobile{
		display: block
	}
	.menu-item {
    padding: 0;
}
	/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  width: 100%;
  margin: 15px 0;
  border: 1px solid green;
  height: 119px;
  border-radius: 10px;
}
	.btn-mobile{
		width: 100%
	}
	.navbar-dark .navbar-brand {
    color: #fff;
    width: 100%;
}
	.logo-footer{
	text-align: center
}
	.social-mobile{
		justify-content: center
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	.desktop{
		display: none
	}
		.mobile{
		display: block
	}
		.menu-item {
    padding: 0;
}
	/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  width: 100%;
        margin: 15px 0;
        border: 1px solid green;
      height: 119px;
  border-radius: 10px;
}
		.btn-mobile{
		width: 100%
	}
	.navbar-dark .navbar-brand {
    color: #fff;
    width: 100%;
}
	.logo-footer{
	text-align: center
}
	.social-mobile{
		justify-content: center
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	.desktop{
		display: none
	}
		.mobile{
		display: block
	}
	/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  width: 100%;
  margin: 15px 0;
  border: 1px solid green;
  height: 234px;
  border-radius: 10px;
}
	.logo-footer{
	text-align: center;
	align-items: center;
	display: flex;
}
	.social-mobile{
		justify-content: center
	}
	.card-title {
    font-size: 14px;
    margin: 0;
    padding: 8px;
    background-color: green;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
	form.d-flex.btns {
    display: flex;
    align-items: center;
    color: white;
		padding: 8px
}

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.desktop{
		display: block
	}
		.mobile{
		display: none
	}
	/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  width: 100%;
        margin: 15px 0;
        border: 1px solid green;
        height: 368px;
        border-radius: 10px;
}
	    .navbar-dark .navbar-brand {
        color: #fff;
        width: auto;
        text-align: left !important;
    }
	.logo-footer{
	text-align: left;
		        display: flex;
        align-items: center;
}
	.social-mobile{
		justify-content:flex-end
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}