* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

:root {
  --container-width-lg: 95%;
  --container-width-sm: 85%;

  --radius-1: 2rem;
  --radius-2: 1.2rem;
  --radius-3: 0.8rem;
  --radius-4: 0.5rem;
  --radius-5: 0.3rem;

  --transition: all 300ms ease;
  
  --primary-hue: 358;
  --color-primary: hsl(var(--primary-hue), 87%, 44%);
  --color-nav-bg: hsla(var(--primary-hue), 0%, 100%, 0.4%);
  --color-gray-100: hsl(var(--primary-hue), 0%, 100%);
  --color-gray-200: hsl(var(--primary-hue), 0%, 95%);
  --color-gray-300: hsl(var(--primary-hue), 0%, 85%);
  --color-gray-400: hsl(var(--primary-hue), 0%, 70%);
  --color-gray-500: hsl(var(--primary-hue), 0%, 55%);
  --color-gray-600: hsl(var(--primary-hue), 0%, 40%);
  --color-gray-700: hsl(var(--primary-hue), 0%, 25%);
  --color-gray-800: hsl(var(--primary-hue), 0%, 15%);
  --color-gray-900: hsl(var(--primary-hue), 0%, 5%);


  --gradient-deg: -30deg;
	--gradient-color: #f99d1c 8.98%, #f99c1c 9.4%, #f4781f 21.71%, #f16221 31.74%,
		#f05a22 38.17%, #ee1d62 64.89%, #ce0070 76.39%;
}

html {
  scroll-behavior: smooth;
}

.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



p, a, figcaption {
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 1.6rem;
}

.btn {
  background: var(--color-gray-200);
  color: var(--color-gray-900);
  font-weight: 500;
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-1);
  width: fit-content;
  cursor: pointer;
  transition: var(--transition);
}

.btn.sm {
  padding: 0.4rem .9rem;
  font-weight: 400;
  border-radius: var(--radius-4);
}

.btn.primary {
  background: var(--color-primary);
  color: white;
}

.btn.primary {
	background: linear-gradient(var(--gradient-deg), var(--gradient-color));
}


.btn:hover {
  background: var(--color-gray-900);
  color: var(--color-gray-100);
}

/* sections */


section {
  padding: 4rem 0;
}

section > h1, section > p {
  width: 50%;
  text-align: center;
  margin: auto;
}

section > h1 {
  margin-bottom: 0.8rem;
}



/* page loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Dark overlay */
  /* background: white; */
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure loader is on top of everything */
}

.loader1 {
  border: 6px solid #f3f3f3; /* Light gray */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Rotate animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content {
  display: none; /* Hide content initially */
}



.first {
  max-width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)), url('../images/slide1.jpg'); 
  height: 60%;
}

.navbar {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-property: background-color, color;
  transition-duration: 0.5s;
  transition-function: ease-in-out;
  transition-property: all;
  padding: 1rem 3rem;
}

.navbar-dark {
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: #ffffff !important;
}
.navbar .navbar-brand, .navbar button, .navbar a  {
  color: #ffffff;
}

.navbar-collapse, .navbar-nav, .nav-item {
  color: #ffffff !important;

}
.navbar-nav a:last-child {
  background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
  border-radius: 5px;
  font-size: 1.3rem;
  padding: .3rem .5rem;
}

/* .navbar-nav a:hover {
  color: #ce0070;
  background-color: #ce0070;
} */



.three {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 1.2s;
}


/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}


.four {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 1.5s;
}


/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



/* heading */

.earth1 {
  width: var(--container-width-lg);
  padding-bottom: 0rem;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
}
.swipe {
  display: flex;

  align-items: center;
  height: 50%;
}
.swipe-cont {
  position: relative;
}
.swipe-cont span, .solu span {
  color: orange;
}
.swipe-cont h1 {
  color: white;
  font-size: 3.1rem;
}
.swipe-cont2 p {
  color: white;
}

.solu h2 {
  color: white;
}

.earth2{
  width: 50%;
  padding:5rem 0rem 0rem 0rem;
  position: relative;

}
.earth3 {
  width: 80%;
  margin: auto;
}
.earth3 img {
  width: 100%;
  margin: auto;
}
.earth4 {
  top: 8rem;
  right: 1rem;
  width: 80%;
  align-items: center;
  position:absolute;
}
.earth4 img {
  width: 80%;
}
.buutt {
  width: 28%;
  margin: auto;
  display: flex;
  align-items: center;
  height: 12rem;

}
.bbtn {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.butt {
  padding: .5rem 1rem;
  border: 0;
  /*border: 1px solid rgb(161, 159, 159);*/
  margin-top: 0rem;
  background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
  border-radius: 5px;
}


@media screen and (max-width: 1220px)  {

  .navbar {
    padding: 1rem 2rem;
  }

  .swipe {
    line-height: 1.9;
  }
  .solu {
    width: 60%;
  }
  .solu h2 {
    color: white;
  }


 .earth2{
  width: 40%;
  padding:5rem 0rem 0rem 0rem;
  margin: auto;

  }
  .earth3 {
    width: 80%;
  }
  .earth3 img {
    width: 100%;
    margin: auto;
  }
  .earth4 {
    top: 8rem;
    right: 1rem;
    width: 80%;
    align-items: center;
    position:absolute;
  }
  .earth4 img {
    width: 80%;
  }
  .buutt {
    width: 30%;
  
  }
  .butt {
    background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);

  }
}

@media screen and (max-width: 1060px) {
  .swipe {
    margin-top: 4rem;
  }
  .earth2 {
    padding:0rem 0rem 0rem 0rem;

  }
  .earth4 {
    top: 3rem;
    right: .8rem;
  }
  .buutt {
    width: 33%;
  
  }


}

@media screen and (max-width: 980px) {
    
  .swipe-cont > h1 {
    line-height: 1;
    font-size: 3.3rem;
  }
  .solu h2 {
    color: white;
  }

  .earth4 {
    top: 1.9rem;
    right: .6rem;
  }
  .buutt {
    width: 38%;
  }

  .butt {
    padding: .8rem 1.5rem;
    font-size: 15px;

  }
}

@media screen and (max-width: 921px) {
  .swipe-cont > h1 {
    line-height: 1;
    font-size: 2.5rem;
  }
  .earth1 {
    padding-top: 4rem;
  }

  .butt {
    border-radius: 0;
    /* spaci */
    font-size: 13px;
  }
}

@media screen and (max-width: 824px) {
  .navbar {
    padding: 1rem 1rem;
  }
  .earth1 {
    width: 100%;
    padding-bottom: 2.2rem;
  }
  .swipe {
    margin: 0%;
  }
  .swipe-cont h1 {
    font-size: 2.8rem;
  }
  .buutt {
    height: 5.5rem;
  }
  .butt {
    padding: .5rem 1rem;
    border-radius: 0;
    /* spaci */
    font-size: 13px;
  }
  .swipe-btn {
    margin-top: 1rem;
  }
  .earth2{
  padding:3rem 0rem 5rem 0rem;
  }
  .earth4 {
    top: 5rem;
    right: .4rem;
  }
}

@media screen and (max-width: 695px) {
  .swipe-cont h1 {
    font-size: 2.3rem;
  }
  .butt {
    padding: .4rem .9rem;
    /* spaci */
    font-size: 12px;
  }

  .swipe .four {
    font-size: 14px;
  }

  .earth2{
  padding:4rem 0rem 5rem 0rem;
  }
  .earth3 {
    width: 100%;
  }
  .earth4 {
    top: 6rem;
    right: 1.7rem;
  }
  .earth4 img {
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  .earth1 {
    padding-bottom: 3rem;
  }
  .buutt {
    width: 40%;
    height: 1rem;
  }
  .butt {
    padding: .3rem .8rem;
    /* spaci */
    font-size: 12px;
  }

  .swipe .four {
    font-size: 14px;
  }

  .earth2 {
    width: 40%;
  }
  .earth3 {
    width: 100%;
  }

  .earth4 {
    top: 5.8rem;
    right: 1.4rem;
  }
}
@media screen and (max-width: 570px) {
  .navbar-nav a:last-child {
    background: none;
    padding: .5rem 0rem;
    font-size: 16px;
  }
  
  .earth1 {
    padding-top: 4rem;
  }
   .first {
	   padding-bottom: 3rem;
   }
  .swipe {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    display: block;
    /* width: 60%; */
  }
  .swipe-cont {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .solu {
    line-height: 1.2;

  }
  .earth2 {
    padding: 0%;
    margin-top: 2rem;
  }
  .earth4 {
    top: 1.3rem;
    right: .9rem;
  }
  .buutt {
    width: 100%;
    margin: auto;
    height: 3rem;
  }
	  .butt {
    width: 80%;
    padding: .8rem .6rem;
    font-size: 16px
  }
}
@media screen and (max-width: 380px) {
  .earth1 {
    padding-top: 4rem;
  }
  .swipe {
    padding-top: 4rem;
  }
}





/* Gold view */

.about {
  background: linear-gradient(75deg, black 85%, #2962ff 30.31%, #862297 80.31%);
  padding-top: 0;
  color: rgb(196, 193, 193);

  animation: gradient 20s ease infinite;
}
.aboutgold {
  display: flex;
}
.top3-image {
  width: 40%;
  text-align: right;
}
.top3-image img {
  width: 50%;
}
.about > p {
  margin-top: 3rem;
  color: rgb(196, 193, 193);
}

.about h1 {
  font-size: 20px;
  margin-top: 1rem;
  text-decoration: underline;
  color: rgb(196, 193, 193);

}
.about .container {
  margin-top: 3rem;
}
.allbox {
  width: var(--container-width-lg);
  margin: auto;
  padding-top: 1rem;
}
.box3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.box {
  margin: auto;
  align-items: center;
}
.box-img {
  width: 20%;
  margin: auto;
}
.box img {
  width: 100%;
  margin: auto;
}
.insur {
  text-align: center;
}
.insur h3 {
  margin: 1rem auto;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 870px) {

  .top3-image {
    width: 60%;
  }
  .top3-image img {
    width: 55%;
  }
  .allbox {
    padding-top: 2rem;
  }
}


@media screen and (max-width: 820px) {

  .top3-image img {
    width: 60%;
  }
  .allbox {
    width: 70%;
    padding-top: 1rem;
  }
  .box3 {
    display: flex;
    flex-wrap: wrap;
  }
  .box {
    margin-top: 1rem;
  }
  .insur h3 {
    font-size: .9rem;
    width: 100%;
    text-align: center;
  }
  .insur p {
    width: auto;
    margin-top: 1rem;
    text-align: center;
  }
}



/* markets or service*/

.markets {
  background-color: #0c0e27;
  color: white;
}
.service-container {
  display: grid;
}
.project-head {
  width: 80%;
  margin: auto;
  text-align: center;
}

.project-head p {
  text-align: center;
  margin: 0%;
  width: 100%;
}
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.service {
  background: var(--color-gray-900);
  transition: var(--transition);
  height: auto;
  margin: 1rem;
  width: 30%;
  text-align: left;
  padding: 1rem 1rem;
}

.service:hover {
  box-shadow: 0 3rem 2rem rgba(
    0, 0, 0, 0.1);
}
.service h4 {
  margin: 0.5rem auto;
  font-size: 18px;
}
.service p {
  width: auto;
  text-align: left;
  font-size: 15px;
}
.service img {
  border-radius: var(--radius-5);
  width: 100%;
}

@media screen and (max-width: 976px) {
  .project-head {
    padding-bottom: 1.5rem;
  }
  .services {
    width: 100%;
    margin: auto;
  }
  .service {
    width: 28%;
  }
  
  .service h4 {
    font-size: 16px;
  }
  .service p {
    font-size: 14px;
  }
}

@media screen and (max-width: 750px) {
  .services {
    width: 100%;
  }
  .project-head {
    width: 100%;
  }
  .service {
    width: 43%;
  }
  
  .service h4 {
    font-size: 15px;
  }
  .service p {
    font-size: 12px;
  }
}

@media screen and (max-width: 530px) {
  .service h4 {
    font-size: 14px;
  }
}

@media screen and (max-width: 459px) {
  .service {
    width: 90%;
  }

}




/* image3 */

.img3 {
  margin: 0;
  padding: 0;
}
.images33 {
  display: flex;

}
.image333 {
  max-width: 100%;
}
.image333 img {
  width: 100%;
}
.image333, .and img{
  height: 100%;
} 



/* choose us */
.choosee {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1)), url('../images/slidingb.jpg');
  /* display: block; */
  color: white;
}
.choose {
  width: var(--container-width-lg);
  margin: auto;

}

.chose > h1 {
  text-align: center;
  margin-bottom: 4rem;
}

.video-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video img {
  width: 100%;
}

/* youtube iframe */
.video {
  position: relative;
  width: 50%; 
  height: 50%; 
}

.play-icon {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 100px; 
  height: 58px; 
  background-image: url('./images/youtube-1837872_640.png'); /* Replace with your play icon image */
  background-size: cover;
  cursor: pointer;
}

.youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* display: none; */
}


.video-sec {
  width: 45%;
}
.video-cont h2, p {
  width: 95%;
}
.video-cont h2 {
  margin-bottom: 1rem;
}
.cont-icon {
  width: 95%;
  display: flex;
  margin-top: 1rem;
}
.run {
  width: 50%;
  display: flex;
  text-align: left;
  align-items: center;
}
.run i {
  background: -o-linear-gradient(var(--gradient-deg), var(--gradient-color));
	background: linear-gradient(var(--gradient-deg), var(--gradient-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
  font-size: 4rem;
  margin-right: 1rem;
}
.counter {
  font-weight: bold;
  font-size: 1.3rem;
}
.runn p {
  width: 100%;
  margin: 0%;
}

@media screen and (max-width: 950px)  {
 
  .video-cont h2 {
    margin-bottom: .8rem;
  }
  .run i {
    margin-right: .5rem;
    font-size: 3rem;

  }
  .counter {
    font-weight: bold;
    font-size: 1.1rem;
  }
  .runn p {
    width: 100%;
    margin: 0%;
  }
}
@media screen and (max-width: 760px)  {
  .video-container {
    display: block;
  }
  .video {
    width: 90%; 
    margin: auto;
  }
  
  .video-sec {
    width: 100%;
    margin-top: 4.5rem;
  }
  .video-cont {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  
  .video-cont p {
    width: 100%; 
  }
  .cont-icon {
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 570px)  {
  .cont-icon {
    padding-top: 2rem;
  }
}



/* Plan */
.plan {
  background-color: #0a0c20;
}
.plan-container {
  display: grid;
  width: var(--container-width-lg);
  margin: auto;
  
}
.plan-head {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}
.plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.braze-plan {
  color: white;
  background-color: #050c2c;
  margin: 1rem;
  text-align: center;
  max-width: 28%;
  border: none;
}
.braze-plan .braze {
  font-weight: bold;
  padding: .5rem 0rem;
	background: linear-gradient(var(--gradient-deg), var(--gradient-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.braze-plan #amt {
  color: white;
  background-color: #08113d;
  font-weight: bold;
}
.braze-plan #int {
  border-bottom: 1px solid var(--color-gray-300);
  font-weight: bold;
}
.braze-plan > p {
  font-size: 1.3rem;
  color: var(--color-gray-900);
  line-height: 2.1;
  width: 100%;
}
.braze-plan .pro-list ul li {
  line-height: 2;
  font-size: 19px;
}
.braze-plan .btn {
  margin-bottom: 1rem;
  padding: 0.4rem 1.8rem;
  font-size: 1rem;
  border-radius: var(--radius-1);
  border: 1px solid white;
}


@media screen and (max-width: 770px)  {
 
  .plans {
    width: 100%;
  }
  .braze-plan {
    max-width: 45%;
    margin: auto;
    margin-bottom: 1.5rem;
  } 
}
@media screen and (max-width: 580px)  {
 
  .plans {
    width: 100%;
  }
  .braze-plan {
    max-width: 80%;
  } 
}

@media screen and (max-width: 480px)  {
 
  .plans {
    width: 100%;
  }
  .braze-plan {
    max-width: 100%;
  } 
}


/* second swiper sec */

#icon-sec {
  background-image: linear-gradient(to right, rgba(20, 20, 20, 0.8), #181818cc), url('../images/metaWol.jpg');
  background-position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 1rem;
}
.icons {
  max-width: 100%;

  display: flex;
  justify-content: center;
}

.run2 {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto;
  color: var(--color-gray-300);
  align-items: center;

}
.run2 i {
  font-size: 2.9rem;
}
.c-run {
  line-height: 1.2;
}
.c-run b {
  font-size: .9rem;
}
.c-run p {
  width: 100%;
  margin: 0%;
}
.whiteDiv {
  border: 10px solid transparent;
  -o-border-image: -o-linear-gradient(var(--gradient-deg), var(--gradient-color))
    1/20px;
  height: 50%;
  margin-bottom: 3rem;

}

.why {
  margin: auto;
  color: wheat;
  padding-top: 3rem;
  text-align: center;
}
.why > h1 {
  text-align: center;
  font-size: 3rem;
}
.why > p {
  margin: auto;
  font-size: 18px;
  align-items: center;
}
.why2 {
  width: var(--container-width-lg);
  margin: auto;
  padding-top: 2.5rem;
}

.insur h3 {
  width: 50%;
  border: 2px solid brown;
  padding: .2rem 0rem;
}


@media screen and (max-width: 992px)  {

  .icons {
    max-width: var(--container-width-lg);
    margin: auto;

    display: flex;
  }

  .run2 {
    width: 40%;
    display: flex;
    flex-wrap: wrap;

  }
}

@media screen and (max-width: 800px)  {

  .icons {
    display: flex;
    flex-wrap: wrap;
  }

  .run2 {
    width: 33%;
    text-align: center;
    flex-direction: column;

    display: flex;
    flex-wrap: wrap;
  }
  .run2 i {
    margin: 0%;
  }
}
@media screen and (max-width: 590px) {
  .run2 {
    width: 45%;
  } 
}
@media screen and (max-width: 450px)  {

  .icons {
    flex-wrap: wrap;
  }

  .run2 {
    width: 50%;
    margin: 1rem auto;

  }
}

@media screen and (max-width: 365px)  {

  .icons {
    align-items: center;
    width: 100%;
  }

  .run2 {
    width: 80%;
  }
  .run2 i {
    font-size: 2.5rem;
  }
  .c-run {
    width: 100%;
  }
  .c-run b {
    font-size: .8rem;
  }
  .c-run p {
    font-size: 14px;
  }
  
}



/* Meta world */

.metaW {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2)), url('../images/BIGw.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0%; 
  color: white;
}
.meta1 {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
}
.meta2 {
  width: 50%;
}
.meta2 img {
  width: 100%;
}
.meta3 {
  width: 50%;
  justify-content: center;
}
.meta4 {
  width: 80%;
  margin: auto;
  font-size: 40px;
}
.meta4 h2 {
  background: linear-gradient(var(--gradient-deg), var(--gradient-color));
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.meta5 {
  
  width: 80%;
  margin: auto;
}
.meta5 a {
  background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
  border-radius: 5px;
  /* border: 1px solid wheat; */
  margin-right: 8px;
  padding: .8rem 1rem;
  color: white;
  border: none;
  /* color: #FFFFFF; */
}
.butt, .meta5 a  {
  cursor: pointer;
  /* display: inline-block; */
  /*font-family: Arial;*/
  /*font-size: 20px;*/
  /* padding: 5px 10px; */
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 10s infinite;
  -moz-animation: glowing 10s infinite;
  -o-animation: glowing 10s infinite;
  animation: glowing 10s infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #B20000; -webkit-box-shadow: 0 0 2px #B20000; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 10px #FF0000; }
  100% { background-color: #B20000; -webkit-box-shadow: 0 0 2px #B20000; }
}

@-moz-keyframes glowing {
  0% { background-color: #B20000; -moz-box-shadow: 0 0 2px #B20000; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 10px #FF0000; }
  100% { background-color: #B20000; -moz-box-shadow: 0 0 2px #B20000; }
}

@-o-keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 2px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 10px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 2px #B20000; }
}

@keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 2px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 10px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 2px #B20000; }

}


@media screen and (max-width: 1060px)  {
  .meta4 {
    width: 90%;
  }
  .meta5 {
    width: 90%;
  }
   
}

@media screen and (max-width: 980px)  {
  .meta2 {
    width: 50%;
  }
  .meta4 {
    width: 90%;
  }
  .meta5 {
    width: 90%;
  }
   
}
@media screen and (max-width: 860px)  {
  .meta2 {
    width: 50%;
  }
  .meta4 {
    width: 90%;
  }
  .meta4 h3 {
    font-size: 18px;
  }
  .meta4 h2 {
    font-size: 25px;
  }
  .meta4 p {
    font-size: 14px;
  }
  .meta5 {
    width: 90%;
  }
}

@media screen and (max-width: 795px)  {
  .metaW {
    /* height: 100vh; */
     
  }
  .meta2 {
    width: 60%;
  }
  .meta2 img {
    height: 50vh;
  }
  .meta3 {
    width: 40%;
  }
  .meta4 h3 {
    font-size: 20px;
  }
  .meta4 h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 700px)  {
  .metaW {
    height: 100%;
    padding-bottom: 3rem;
  }
  .meta1 {
    display: block;
  }
  .meta2 {
    width: 100%;
  }
  .meta2 img {
    width: 100%;
    height: 65vh;
  }
  .meta3 {
    width: 100%;
  }
  .meta3 {
    margin-top: 2rem;
  }
  .meta4 {
    color: rgb(184, 183, 183);
  }
  .meta4 h3 {
    font-size: 22px;
  }
  .meta4 h2 {
    font-size: 25px;
  }
  .meta5 a {
    padding: .6rem .8rem;
  }
  
   
}
@media screen and (max-width: 520px)  {
  .meta2 img {
    height: 40vh;
  }
 .meta5 .butt {
    width: 40%;
    margin-right: .5rem;

/*     padding: .8rem .6rem; */
    font-size: 16px
  }
}



/* accordian sec */
.faq {
  background-image: url('../images/ques.jpg');
  background-position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.container0 {
  display: grid;
  width: var(--container-width-lg);
  margin: auto;
  align-items: center;
  color: var(--color-gray-200);
  margin-top: 2rem;
}
.acc-container {
  padding: 2rem 0rem;
  width: 80%;
  margin: auto;
}
.faq-head {
  text-align: center;
}
.faq-head p {
  margin-bottom: 1rem;
}
.acc-btn {
  width: 100%;
  padding: 1rem 0rem;
  font-size: 1rem;
  cursor: pointer;
  background: inherit;
  border: none;
  color: var(--color-gray-200);
  outline: none;
  text-align: left;
  transition: all 0.5s linear;
}
.acc-btn:after {
  content: "\27A4";
  color: var(--color-primary);
  float: inline-end;
  transition: all 0.3s linear;
}
.acc-btn.is-open:after {
  transform: rotate(90deg);
}
.acc-btn:hover, .acc-btn.is-open {
  color: var(--color-primary);
  font-weight: bold;
}

.acc-content {
  max-height: 0;
  margin: 0 0.5;
  padding: 0 1.1rem;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  border-bottom: 1px solid var(--color-gray-300);
  width: auto;
  border-collapse: collapse;
  border: 1px solid var(--color-gray-300);
}
.acc-content p {
  color: var(--color-gray-500);
  font-size: 0.9rem;
}




/* footers */
#footer {
  margin-top: 0%;
  max-width: 100%;
  background: rgb(1, 40, 78);
  color: var(--color-gray-300);
  padding: 3rem 0;
  padding-bottom: 2rem;
}
.foot {
  max-width: 90%;
  margin: auto;
  padding-top: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  
}
.footer {
  width: 30%;
}
.footer p {
  line-height: 1.8rem;
}
.footer h3 {
  margin: 0.5rem auto;
  font-size: 1.5rem;
}
.footer a {
  display: grid;
  line-height: 1.5rem;
  color: var(--color-gray-300);
}
.footer a:hover {
  transition: var(--transition);
  color:var(--color-primary);
}

.foot .socials {
  margin-top: 0.5rem;
  display: flex;
  /* gap: 1rem; */
}
.foot .socials a {
  background: rgb(184, 183, 183);
  color: black;
  padding: 0rem 0.5rem;
  margin: auto .3rem;
  border-radius: var(--radius-4);
  transition: var(--transition); 
}
.socials a:hover {
  background: var(--color-primary);
  color: var(--color-gray-100);
  transform: translateY(-0.5rem);
  transition: var(--transition);

}


.coppy {
  padding: 1rem 0rem;
  margin: 0%;
  background: rgb(19, 18, 18);
}
.copies {
  width: var(--container-width-lg);
  /* justify-content: space-between; */
  color: hsl(var(--primary-hue), 5%, 70%);
}

.copyright {
  border-radius: 2px solid hsl(var(--primary-hue), 5%, 25%);
  /* margin-top: .5rem; */
  margin: auto;
  text-align: center;
}
.copyright a {
  color: var(--color-gray-300);
  padding: 0 0.8rem;
  border-right: 1px solid var(--color-gray-600);
}
.copyright a:hover {
  color: var(--color-primary);
  transition: var(--transition);

}


@media screen and (max-width: 799px)   {
  .foot {
    width: 90%;
    display: block;
    
  }
  /* display: block; */

  .footer {
    width: 100%;
  }
  .footer p {
    line-height: 25px;
  }
  .footer a {
    line-height: 25px;
  }
  .foota {
    width: 66%;
  }
  .foot .socials a {
    padding: 0rem 0.6rem;
  }
  
  .coppy {
    padding: 1rem;
    max-width: 100%;
  }
  .copies {
    width: var(--container-width-sm);
  }
  .copyrights {
    display: block;
    width: 100%;
  
  }
  .copyright {
    padding: 0rem 0;
    margin: 0%;
  }
  
  .copyright span {
    gap: 1.5rem;
  }
  .copyright span a {
    font-size: 12px;
    padding: 0 0.6rem;
  }
  .copyright span:last-child a {
    border-right: none;
  }
}

@media screen and (max-width: 559px)   {
  
  .foot {
    width: 90%;  
  }

  .footer {
    width: 100%;
  }
  .footer p {
    line-height: 25px;
  }
  .footer a {
    line-height: 25px;
  }
  .foota {
    width: 66%;
  }
  .foot .socials a {
    padding: 0rem 0.6rem;
  }
}
@media screen and (max-width: 559px)   {
 .foot {
  display: block;
 } 
 .footer {
  margin-bottom: 1rem;
 }
}



/* ABOUT US */
.ab {
  background: black; 
  padding-bottom: 5rem;
}

.abt {
  min-height: 100vh;
  max-width: 80%;
  background-image: none; 
  margin: auto;
  padding-top: 10rem;
  color: white;
  align-items: center;
  text-align: center;
  line-height: 1.8
}
.abt h1 {
 font-size: 70px;
}
.abt h4 {
  margin-top: 2rem;
  line-height: 1.8
  ;
}

.abt span {
	background: linear-gradient(var(--gradient-deg), var(--gradient-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.abt-second {
  color: white;
  max-width: 95%;
  margin: auto;
}
.abtt{
  text-align: center;
}
.abtt h3 {
  line-height: 1.2;
}
.abtt h3 span {
  font-weight: bold;
}
.abttt h4{
  margin-top: 1rem;
  line-height: 1.5rem;
}
.abttt h4 span {
  font-weight: bold;
}

@media screen and (max-width: 840px)   {
  .abt {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .abt h1 {
   font-size: 70px;
  }
  .abt-second {
    max-width: 100%;
  }
}
 
@media screen and (max-width: 440px)   {
  .ab {
  }
  
  .abt {
    max-width: 100%;
  }
  .abt h1 {
   font-size: 50px;
  }
  .abt h4 {
    line-height: 1.5;
  }
  
  .abt-second {
    max-width: 100%;
  }
  .abtt h3 {
    font-size: 18px;
  }
}



/* PRICING */

.price {
  min-height: 50vh;
  max-width: 90%;
  background-image: none; 
  margin-left: 1rem;
  padding-top: 10rem;
  color: white;
  align-items: center;
  text-align: left;
  line-height: 1.8
}
.price span {
  background: linear-gradient(var(--gradient-deg), var(--gradient-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* terms page */
.terms {
  background: black;
}
.term {
  min-height: 50vh;
  max-width: 90%;
  background-image: none; 
  margin-left: 1rem;
  padding-top: 10rem;
  color: white;
  align-items: center;
  text-align: left;
  line-height: 1.8;
}
.termm h2 {
  font-size: 1.5rem;
  line-height: 2;
}

