 
body {
    font-family: 'Ubuntu', sans-serif;
  color: #444444;
}
 
 

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

.terms_wrape h5{
color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #d2f9eb;
  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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
height: auto;
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
background: rgba(1, 4, 136, 0.9);
border-bottom: 1px solid #ffffff2b;
padding-bottom: 10px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
background: #1a1826;
height: 80px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
 
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
margin: 0;
    margin-top: 0px;
max-height:70px;
margin-top:15px;
border-radius: 50px;
}

.about_lefts {
  text-align:center;
}

/*--------------------------------------------------------------
# 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;
  margin-top: 3px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px 70px;
  font-size: 15px;
  font-weight: 500;
  color:#fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
text-decoration: none;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: transparent;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,  .navbar .active:focus, .navbar li:hover > a {
  color: #b5b7bd;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

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

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

.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%;
  }
}


@media (max-width: 11200px) {
	.navbar a{
		padding: 0 0 10px 25px;
	}
}


@media (max-width: 1000px) {
.padding-top3 {
  margin-top: 2em;
}
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
 
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 3, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

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

.navbar-mobile .getstarted {
  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: #1acc8d;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
position: relative;
padding: 120px 0 0 0;
min-height: 615px;
background-color: #000;
/*background-image: url('../img/stars.png');*/
background-size: 100% 100%;
background-position: 0 0;
background-repeat: no-repeat;
}
  
#hero h1 {
font-size: 50px;
font-weight: bold;
line-height: 55px;
color: #fff;
text-transform: uppercase;
}
  
#hero h2 {
color: #fff;
margin-bottom: 25px;
font-size: 20px;
line-height: 30px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
 
 .block_mobile{
	display:none;
}


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

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

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}
	
.section-title h2 {
font-size: 2.5rem;
font-weight: 600;
padding: 0;
line-height: 50px;
margin: 0 0 5px 0;
letter-spacing: 2px;
text-transform: uppercase;
color:#b5b7bd;
}
 
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
padding:100px 0 0 0;
background: linear-gradient(114deg,#000000,#000);
/*background-image: url("../img/pattern.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;*/
}

.second_about{
	padding: 100px 0 0 0;
background-color: #0a080e;
/*background-image: url("../img/pattern.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;*/
padding-bottom:90px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.center_imgs  {
	text-align:center;
}
.about .icon-box {
 margin-top: 25px;
background-color: #150222;
padding: 25px;
border-right: 4px solid #b5b7bd;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border:none;
  border-radius: 50px;
  transition: 0.5s;
}
.about p{
	color:#fff;
	font-size: 17px;
}
.about .icon-box .icon i {
  font-size: 32px;
}

.icon img{
height: 62px;
width: auto;
}

.about .icon-box .title a{
	color:#b5b7bd  !important;
}
 
.feature_box {
	margin-bottom:30px;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #b5b7bd;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}
#contact p{
		color:#fff;
}
 
#contact{
	background-color: #000;
	color:#fff;
}
 
.about .icon-box .description {
 margin-left: 85px;
line-height: 24px;
font-size: 16px;
font-weight: 400;
}

.about .video-box {
 
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .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);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -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(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.text_left{
	text-align:center;	
	padding-left: 25px;
}

.text_right{
	text-align:center;
	padding-right: 25px;
}

.feature_box  .title{
	color:#b5b7bd !important;
}

 .second_about .feature_box
{
margin-bottom: 80px;	
} 

.second_about .icon .fa
{
	margin-bottom: 15px;
}

.second_about .feature_box .title {
    margin-bottom: 10px;
}
	
.feature_box .title 
{
	color: #fff !important;
font-size: 30px;
font-weight: 500;
}


.icon .fa{
background: linear-gradient(180deg, #CCF 30%, #C294F1 50%, #430a80 100%);
    background-clip: border-box;
font-size: 30px;
margin-bottom: 10px;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.max-wid{
max-width: 70%;
height: auto;
margin-top: 90px;
}

.max-wid2{
  max-width: 100%;
  height: 499px;
  margin-top: 0;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

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

.about .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;
}

@-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;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}

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

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1acc8d;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

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

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}

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

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

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

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

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

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

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

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #01036f;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: #1acc8d;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
padding: 30px;
background:transparent;
text-align: left;
box-shadow:none;
border-radius: 3px;
position: relative;
overflow: hidden;
min-height: 400px;
margin-bottom: 3em;
}

.pricing h3 {
  font-weight: 400;
margin: 0;
padding: 20px 0px 30px 0;
font-size: 20px;
font-weight: 600;
color: #777777;
background:transparent;
}

.pricing h4 {
font-size: 40px;
color: #b5b7bd;
font-weight: 600;
margin-bottom: 20px;
}

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

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

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

.pricing ul li {
  padding-bottom: 16px;
  color:#e6e6e6;
}

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

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

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
  padding-bottom: 50px;
}
.pricing .btn-buy:hover{
	  background: linear-gradient(to right,#b5b7bd 0%,#c295f1 100%);
}

.pricing .btn-buy {
  background: linear-gradient(to right,#c295f1 0%,#b5b7bd 100%);
  display: inline-block;
  padding: 12px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  text-decoration:none;
  transition: 0.3s;
  text-transform: uppercase;
}

 
.pricing .featured h3 {
  color: #fff;

}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1acc8d;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

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

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

.faq .faq-list li {
  padding: 30px;
  background: #0a080e;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
display: block;
position: relative;
font-size: 18px;
line-height: 24px;
font-weight: 500;
padding: 0;
outline: none;
cursor: pointer;
color: #b5b7bd;
text-decoration: none;
}
.faq .faq-list a:hover{
	color: #b5b7bd;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b5b7bd;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

.faq .faq-list a.collapsed {
  color: #fff;
}
 .faq .faq-list a.collapsed:hover {
  color: #b5b7bd;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

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

@media (max-width: 1200px) {
  .faq .faq-list {
   padding: 0;
width: 800px;
margin: auto;
	
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
width: 100%;
background: transparent;
margin: auto;
  margin-bottom: auto;
margin-bottom: 5em;
text-align: center;
}
.faq .faq-list {
   padding: 0;
width: 800px;
margin: auto;
	
  }
.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-image: linear-gradient(to right,#b5b7bd 0%,#c295f1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info i:hover{
	 background-image: linear-gradient(to right,#c295f1 0%,#b5b7bd 100%);
}

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

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

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  color: #fff;
}

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

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

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

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.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 #18d26e;
  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;
}

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

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

.contact .php-email-form button[type="submit"] {

  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#000;  
  padding: 8px 0 47px 0;
color: #fff;
font-size: 14px;
background-size: auto auto !important;
background-repeat: no-repeat !important;
background-position: 0 0 !important;
border-top: 1px solid #1c1b1b;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #1acc8d;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.second_about .section-title {
    padding-bottom: 70px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
display: inline-block;
color: #fff;
line-height: 1;
padding: 11px 0;
margin-right: 5px;
border-radius: 50%;
text-align: center;
width: 40px;
height: 40px;
transition: 0.3s;
background-image: linear-gradient(to right,#b5b7bd 0%,#c295f1 100%);
}
 

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color:#473a76;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration:none;
}
 
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #149f6e;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
 padding-top: 50px;
text-align: center;
font-size: 16px;
color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


.logo{
		float:left;
}

#navbar{
    margin-top:22px;
    position: relative;
    left: 15px;
}

.right_dash{
	float:right;
}

.mg35{
	margin-top:35px;
}
.mgtop8{
	margin-top:8em;
}
.reaper_btn{
	min-width: auto;
padding: 7px 25px 6px 25px !important;
color: #fff;
background: 0 0;
text-transform: uppercase;
font-size: 14px;
font-weight: 600!important;
line-height: 38px!important;
margin: 0 8.5px;
transition: all .35s ease;
border:2px solid #fff;
border-radius: 40px;
}
 
.reaper_btn::hover {
    background-image: -webkit-linear-gradient(left,#46bdf4 0%,#2b56f5 100%);
    background-image: linear-gradient(to right,#46bdf4 0%,#2b56f5 100%);
}

 #hero h5 {
    color: #fff;
margin: 0 0 20px 0;
font-size: 17px;
font-weight: 400;
}

.mgtop3{
		margin-top:3em;
}
 
 .button1{
background-color: #473a76;
min-width: auto;
padding:16px 40px 16px 40px;
color: #fff;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
line-height: 38px;
margin:0;
transition: all .35s ease;
border:0;
border-radius: 40px;
margin-right: 10px;
text-decoration: none;
 }
 
 .button2{
background-color: #fff;
min-width: auto;
padding: 13px 39px 10px 40px;
color: #684591;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
line-height: 38px;
margin: 0 8.5px;
transition: all .35s ease;
border: 0;
border-radius: 40px;
text-decoration: none;
 }

  .button2:hover , .button1:hover{
	 background-color: #473a76;
	  color:#fff;
  }
   
 #pricing {
 background:#0a080e;
color: #fff;
background-image: url(../img/star1.png);
background-repeat: no-repeat;
background-position: 0 0;
background-size: 100% auto;
 }
 
 #faq {
background-color:#000;
background-image:none;
background-repeat: no-repeat;
background-position: 0 0;
background-size: auto;
 }
 
 #faq p{
	  color:#fff;
	  font-size: 16px;
 }
 
 #pricing p{
	 color:#dcb9f9b8;
	 font-size: 16px;
 }
 
#footer img{
	 height: 60px;
margin-bottom: 1em;
 }
 
 .credits a{
	 color:#b5b7bd;
	 font-weight:700;
	 text-decoration:none;
 }
 
  .credits a{
	 color:#b5b7bd;
 }
 
 .txt_clr{
	 background:#473a76;
    background-clip: border-box;  
background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
 }
 
 .comsun {
    color: #b5b7bd !important;
    font-size: 31px;
    font-weight: 700;
    line-height: 40px;
}

.mgtop5{
	margin-top:10.1em !important;;
}

.terms_  #header{
background: #0a080e;
height: 80px;
padding-top: 10px;
}

.terms_  #header .logo img{
	margin-top: 0;
}

.terms_  #navbar {
    margin-top: 0;
    left: 0;
}

.terms_wrape h1{
	margin-top: 2em;
text-align: center;
color: #684591;
font-size: 35px;
font-weight: 700;
}

.terms_ {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
}

.terms_ .right_dash {
  position: relative;
  top: 6px;
}

.terms_wrape h2
{
font-size: 23px;
font-weight: 500;
color: #684591;
font-family: 'Poppins', sans-serif !important;
margin-bottom: 15px;
}

.terms_wrape p{
color: #333;
font-size: 14px;
text-align: justify;
font-weight: 400;
}

.terms_p {
margin-top: 30px;
border-radius: 3px;
padding: 30px;
}

.align_center{
  margin:auto;
  margin-bottom: 2em;
}

.terms_  .header-scrolled .logo img {
    margin-top: 0px !important;
}

.width-100{
	width:100%;
}

#hero .animated{
	width: 75%;
	margin: auto;
}
 
.provide_img img{
	width:auto;
	max-width: 100px;
}

.counter_ul {
	margin:0;
	padding:0;
	margin-top: 2em;
	display:block;
}

.counter_ul li:last-child{
	border-right:none;
}

.counter_ul li{
  list-style: none;
  color: #473a76;
  font-size: 45px;
  font-weight: bold;
  line-height: 25px;
}

.counter_ul li p{
color: #dcb9f9b8;
font-size: 15px;
font-weight: 400;
margin-top:10px; 
}

 #testimonials {
  padding: 100px 0 100px;
  background: #000;
}

#testimonials h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}

	 

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: pr;
  box-shadow: none;
  height: auto;
  min-height:100px;
  max-height:100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
 background: transparent;
content: "";
height: auto;
position: absolute;
width: 100%;
z-index: 2;
max-height: 300px;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width:100%;
}

.slider .slide {
height: auto;
width: 450px;
margin-bottom: 2em;
margin-right: 10px;
background-color: transparent;
border-radius: 0;
}

.test_main {
  background-color: #100d1a;
  padding: 50px;
  margin-top: 30px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #241d3c;
  width: 450px;
  min-height: 370px;
}	

.test_main p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2em;
  min-height: 150px;
}

.test_main h5 {
  font-size: 20px;
  font-weight: bold;
  color:#473a76;
}

.test_main h5 a{
  color:#473a76;
  text-decoration:none;
}

#testimonials .container{
  max-width:100%;
}

.port_img{
	margin:auto;
	width:50px;
	border-radius:50px;
	margin-bottom: 1em;
}

 .about_lefts {
	 padding:50px 75px 0 0px;
 }
 
 #feature .section-title p{
	width: 700px;
	margin: auto;
 }
 
 .text-right{
	text-align:right;
 }
 
 .padding-top3 {
	 margin-top:6em;
 }
 
 
  #feature .max-wid2 {
  max-width: 100%;
  height: auto;
}

.padding-right111{
padding-right: 100px;
}

.paddin-left100{
	padding-left: 100px;
}

.border_left{
border-left: 3px solid #cb8dff;
padding-left: 30px;
}

.border_right{
	border-right:3px solid #cb8dff;
padding-right: 30px;
}

.flex {
	display:flex;
}

#footer .flex li {
  padding: 0px 5px 0px 0px !important;
}

#footer  .button1{
	padding: 20px 40px 20px 40px !important;
}

.shape_container{
	position:absolute;
	z-index:0;
	top:0;
	width: 100%;
}
	
.shapes{
	position: relative;
	width:100%;
}

.shapes div{
	position: absolute;
}

.shapes img{
	position: relative;
}

.shape1
{
top: 6.5em;
left: 3%;
}
 
.shape2{
left: 16%;
top: 14em;
}
  
.shape3 {
left: 4%;
top: 16em;
}
 
.shape4 {
top: 9em;
left: 48%;
}

.shape5{
right: 35%;
top: 11em;
float: right;
}
 
.shape6{
right: 23%;
top: 11em;
}
 
.shape7{
right: 8%;
top: 10em;
}
 
.shape8{
top: 21em;
right: 8%;
}

.shape8 img{
	float: right;
}
 
.shape9{
top: 25em;
right: 22%;
}

.shape9 img{
	 float: right;
}
  
 .shape10{
top: 18em;
left: 39%;
}

.shape10 img{
	float: right;
}
  
 .shape11{
top: 33em;
left: 4%;
}

.shape11 img{
	 float: right;
}
  
  .shape12{
top: 29em;
left: 13%;
}

.shape12 img{
	 float: right;
}
    
  .shape13{
top: 33em;
left: 37%;
}

.shape13 img{
	 float: right;
}
   
  .shape14{
top: 32em;
right: 9%;
}

.shape14 img{
	 float: right;
}
   
  .shape15{
top: 53em;
left: 8%;
}

.shape15 img{
	 float: right;
}
   
  .shape16{
top: 49em;
right: 9%;
}

.shape16 img{
	 float: right;
}
  
  .info .button1 {
  background-color:#473a76;
  width: 180px;
  }
  
  .contact .info i
  {
	background-image: none;  
  }
  
  
  .contact .info i:hover
  {
	background-image: none;  
  }
  
  .discord_ {
	 width: 17px;
margin-right:5px;
  }
  
  .mobile_d {
	  display:none;
  }
  
  .info a{
	  margin-right:30px;	
	  color: #fff;
text-decoration: none;
  }
  
  .toggle_icon {
	 display: none;
	float: right;
	position: relative;
	top: 15px;
	cursor:pointer;
	z-index: 99999;
  }
  
   .toggle_icon img{
	  width:30px;
  }
  
  
   @media (min-width:1200px) {
.container, .container-lg, .container-md, .container-sm, .container-xl{
	max-width:1150px;
}
 }
 
 @media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

#feature .section-title p {
  width: 100%;
  margin: auto;
}

 
@media (max-width: 991px) {
	 .testimonials .testimonial-item p {
    width: 80%;
  }
	.section-title h2{
		line-height: 30px;
		font-size: 25px;
	}
	
	.about_lefts {
	  padding:0px 15px 0px 10px;
	}

  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 75%;
  }
  #hero h1 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


@media (max-width: 768px) {	

.padding_right{
	padding-left:5px;
padding-right: 5px;
}

.wid100{
	margin-bottom: 2em;
}

.about-form .box{
	max-width: 100%;
padding: 101px 30px;
}

#footer .footer-top {
  padding: 0 0 10px 0;
}

.dis_flex {
  display: block;
}

.padding_left {
  padding-right: 5px;
  padding-left: 5px;
}

.left_tabs, .right_tabs {
  width: 100%;
  margin-right: 0;
}

#navbar{
	display:none;
	position: absolute;
	left: 0;
	top: 53px;
	background: #000;
	width: 100%;
	padding: 10px;
}

.mobile_d{
	display:block;
}

.navbar li {
  width: 100%;
}

.navbar ul{
	display:block;
}
.toggle_icon {
	display:block;
}

.right_dash {
	display:none;
}
	
 .section-title h2
 {
	 font-size: 24px !important;
	line-height: 30px !important;
 }
 
 .counter_ul li {
	 height: 60px;
	 padding: 0 0px;
 }
 
 .counter_ul{
	display:block;
 }
 
 .faq .faq-list {
  width: 100%;
}

 .none_mobile{
	 display:none;
 }
 
 .block_mobile{
	 display:block;
 }
 
 .border_left {
  border-left: none;
  padding-left: 0;
}

.padding-top3 {
  margin-top: 0em;
}

.border_right {
  border-right: none;
  padding-right: 0;
}

.second_about .feature_box {
  margin-bottom: 40px;
}

.text-right {
  text-align: left;
}

.padding-right111 {
  padding-right: 0;
}

.paddin-left100 {
  padding-left: 0;
}
 .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

 
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

 @media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
#header .container {
	max-width: 100%;
}

.navbar a {
  padding: 0 0 10px 15px;
  font-size:12px;
}

.button1{
	font-size:12px;
}

#header .logo img{
  padding: 0;
  margin: 0;
    margin-top: 0px;
  margin-top: 0px;
  max-height: 71px;
  margin-top: 15px;
  border-radius: 50px;
}

#navbar{
	margin-top: 10px;
}

#header{
	padding-bottom:5px;
}
}

[data-aos^="fade"][data-aos^="fade"]
{
	opacity:1;
}

.terms_wrape h3{
color: #684591;
font-size: 20px;
font-weight: 500;
}


/* Accordion styles */
#faq .tabs {
  border-radius: 0;
  overflow: hidden;
  box-shadow:none;
  padding-left:0;
  padding-right:0;
}

#faq .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

 #faq .tab-label {
display: flex;
justify-content: space-between;
padding: 20px;
background:#0004039e;
font-weight:600;
cursor: pointer;
border-radius:3px;
font-size: 18px;
border: 1px solid #0004039e ;
margin-bottom: 20px;
}

 #faq .tab-label:hover {
  background: #0004039e;
  border: 1px solid #0004039e;
  color:#473A76;
}

#faq input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

 #faq .tab-label::after {
content: "❯";
width: 30px;
height: 30px;
transition: all 0.35s;
color: #fff;
background-color:#473A76;
border-radius: 2px;
text-align: center;
padding:2px;
transform: rotate(-90deg);
}
 #faq .tab-content {
max-height: 0;
padding: 0 1em;
color: #9d9d9d;
background: transparent;
transition: all 0.35s;
font-size: 15px;
font-weight:600;
}

 #faq .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #0004039e;
  cursor: pointer;
}
 #faq .tab-close:hover {
  background: #0004039e;
}

#faq input:checked + .tab-label {
  background: #0004039e;
}
 #faq input:checked + .tab-label::after {
  transform: rotate(90deg);
}
 #faq input:checked ~ .tab-content {
  max-height: 100vh;
 padding: 2px 0px 25px 15px;
}

.left_tabs , .right_tabs{
	width: 48%;
	margin-right: 2%;
}

.dis_flex{
	display:flex;
}

.about-form .box {
  background: transparent;
  border-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  max-width: 600px;
  padding: 0;
  margin: 0 auto;
    margin-top: 0px;
  position: relative;
  margin-top: 3em;
}

.about-form .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
 
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  width: 100%;
  height: 60px;
}

.about-form .box .section-head {
  margin-bottom: 60px;
}

.section-head h1 {
  color: #92f8ff;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb),var(--bs-text-opacity)) !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.input {
 background: #1c1c1c9e;
border-radius: 5px;
border: none;
padding: 0 22px;
color: #8b8b8b;
font-weight: 700;
font-size: 14px;
line-height: 17px;
outline: none;
height: 50px;
}

.w-100 {
  width: 100% !important;
}

textarea.input {
  height: unset;
  min-height: 150px;
  padding: 14px 22px;
  resize: none;
}

.btn-form {
 background: #b5b7bd;
border: none;
border-radius: 50px;
color: #fff;
font-weight: 600;
padding: 12px 32px;
height: 50px;
line-height: 20px;
max-width: 218px;
}

.btn-form, .btn-outline {
  display: inline-block;
  font-size: 14px;
  transition: all .3s ease;
}

.mt-5 {
  margin-top: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.d-block {
  display: block !important;
}

.about-form .box::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 40px;
  background-image:none;
  background-repeat: no-repeat;
  width: 46px;
  height: 10px;
}

.section-title h2 span{
	color:red;
}
	
.box{
	margin-top:3em;
}

.about_boxes{
	padding:30px;
background-color:#2626269e;
margin-bottom: 3em;
border-radius: 4px;
border: 1px solid #2a2a2b;
}

.about_boxes1{
	padding:0;
background-color:#131419;
margin-bottom: 3em;
min-height:300px;
border-radius: 4px;
border: 1px solid #2a2a2b;
}


.about_header {
background-color: #212227;
height: 60px;
padding: 17px;
text-align: right;
color: #c888fb;
font-size: 15px;
text-transform: uppercase;
font-weight: 600;
}

.about_mains{
	padding:30px 20px;
}
 
#about .about_boxes{
	min-height: auto;
}

	.top_flex {
		display:block;
	}

.left_box {
	width:20%;
	margin-bottom: 10px;
}

.right_text {
	width:auto;
}

.right_text h5{
	color: #fff;
font-size: 20px;
font-weight: 600;
}

.about_pp {
	color: #fff;
font-size: 16px !important;
margin-top:5px !important;
}
	
 .max-width1350 {
	max-width:1150px!important;
}

#about .container{
	max-width:1350px;
}
 
.liness::before{
position: absolute;
content: "";
background-image: url("../img/line.png");
width: 111px;
height: 1px;
top: 50%;
right: -95px;
z-index: -1;	
}

#feature .container{
	max-width: 1250px;
}

.wid100{
	width:100%;
}

.left_box i{
color: #473a76;
font-size: 50px;
font-weight: bold;
}

p{
  color: #b5b7bd !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 25px !important;
}

.padding_right{
	padding-left:0;
padding-right: 60px;
}

.padding_left{
	padding-right:0;
padding-left: 60px;
}

#map , #times {
	background-color: #000;
}

#map  .left h2 {
font-weight: 800;
  font-size: 29px;
  line-height: 37px;
  color: #b5b7bd;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#map  .left p {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #8b8b8b;
  margin-top: 2rem;
}

#map  .left span {
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  margin-bottom: 0 !important;
}

 #map video {
  width: 100%;
  height: auto;
}

 .ex_bg{
background-image: url("../img/ex.png");
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
min-height: 243px;
padding-bottom: 42px;
}

#map {
	background-color: #000;
}

.left_box img{
	width: 60px;
}

.dra_img{
	width:67%;
}

.centers {
	text-align:center;
}

.mons_img {
position: relative;
left: 50px;
top: -55px;
border-radius: 4px;
border: 1px solid #2f3031;
}

 #map .left{
  margin-top: 0;
}

#map  .left h5{
	color:#fff;
	font-size:20px;
	margin-bottom: 0;
}

.mapmy{
  display:flex;
}

.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: transparent;
  opacity: 1;
}

