@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap");

* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

@font-face {
  font-family: myFirstFont;
  src: url(../font/ModernWarfare-8MM6z.ttf);
}

:root {
  --secondary-color: #02d0ce;
  --primary-color: #4e7e7e;
  --not-black: #010103;
  --black-color: black;
  --white-color: white;

  --primary-font: myFirstFont;
}

body {
  background: 
     linear-gradient(120deg, rgba(255, 106, 0, 0.514), rgba(0, 0, 0, 0)),
    linear-gradient(200deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0)),
    linear-gradient(60deg, #1f0f02, #2E2E2E);
  background-blend-mode: overlay;
  position: relative;
  z-index: -1;
}

.container {
  max-width: 1155px;
  margin: auto;
  padding: 50px 10px;
}

.d-flex {
  display: flex;
  gap: 10px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
  width: 100%;
}

.col-2 {
  flex: 2;
  width: 100%;
}

.col-3 {
  flex: 3;
  width: 100%;
}

.col-4 {
  flex: 4;
  width: 100%;
}

.col-5 {
  flex: 5;
  width: 100%;
}

.img-fluid {
  max-width: 100%;
  height: 25px;
}

.center {
  text-align: center;
}

.btn a {
  /* background-color: var(--secondary-color); */
  color: var(--not-black);
  font-size: 13px;
  display: inline-block;
  padding: 10px 10px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  background: url(../images/color-btn-bg.png) no-repeat;
}

.btn a:hover {
  transform: scale(0.92);
}

.btn a img {
  position: absolute;
  height: 100%;
}

.btn a img:nth-child(1) {
  top: 0px;
  left: 0px;
  bottom: 0px;
}

.btn a img:nth-child(2) {
  top: 0px;
  right: 0px;
  bottom: 0px;
}

/* CODE STARTS HERE */
/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed;
  /* Stay in place */
  z-index: 9999999 !important;
  /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(2, 208, 206);
  /* Black fallback color */
  background-color: rgb(147 86 0 / 90%);
  /* Black w/opacity */
  overflow-x: hidden;
  /* Disable horizontal scroll */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* .main-header-hero,
.container,
body,
html {
  position: static !important;
  z-index: auto !important;
  transform: none !important;
  opacity: 1 !important;
} */

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%;
  /* 25% from the top */
  width: 100%;
  /* 100% width */
  text-align: center;
  /* Centered text/links */
  margin-top: 30px;
  /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  display: block;
  /* Display block instead of inline */
  transition: 0.3s;
  /* Transition effects on hover (color) */
  font-weight: 500;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: var(--white-color);
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.main-header-hero {
  background: url(../images/hero-bg.png) no-repeat center center/cover;
  width: 100%;
  position: relative;
  z-index: 0;
}

.bounses-page .main-header-hero,
.clipping-page .main-header-hero,
.register-page .main-header-hero {
  background: none !important;
}

.main-header-hero .hero-bg-glow,
.main-header-hero .bottom-hero-image {
  position: absolute;
  bottom: 0px;
}

.main-header-hero .hero-bg-glow {
  z-index: -2;
  height: 250px;
  width: 100%;
}

.main-header-hero .bottom-hero-image {
  bottom: -20px;
  z-index: -1;
}

.main-header-hero header {
  background: #52310f60;
}

.main-header-hero header .container {
  padding: 10px;
}

.main-header-hero header span i {
  color: #d07f02;
  font-size: 20px;
  padding: 8px 10px;
  cursor: pointer;
}

header ul {
  gap: 20px !important;
}
header .logo img {
  position: relative;
  z-index: 999;
}
header li a {
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 22.36px;
  color: white;
  position: relative;
  z-index: 999999;
}

header li a:hover,
header li a.active {
  color: orange;
}
header .btn a {
  position: relative;
  z-index: 99;
}
header span i {
  position: relative;
  z-index: 99;
}
.main-header-hero .hero-section p {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  max-width: 330px;
  margin: auto;
  margin-bottom: 20px;
}

.main-header-hero .hero-section .col-12 {
  text-align: center;
}

.main-header-hero .hero-section .col-12 .main-img-hero {
  max-width: 660px;
  margin-bottom: 50px;
  width: 100%;
}

.main-header-hero .hero-section .btn-flex {
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.main-header-hero .hero-section .btn-flex .btn {
  width: 170px;
}

.btn-without-color a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  width: 170px;
  font-weight: 600;
  height: 36px;
}

.btn-without-color a:hover {
  transform: scale(0.93);
  color: var(--primary-color);
}

.btn-without-color img {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}

.main-header-hero .hero-section .col-12 .down-button img {
  width: 60px;
  margin-top: 20px;
  animation: top-down 1.7s infinite;
}

@keyframes top-down {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* CODE FOR BOUNSES PAGE AND SECTION  */
.bounses {
  padding: 70px 0px 0px 0px;
}

.bounses .row {
  flex-wrap: wrap;
  position: relative;
}

.bounses .row .col-1 {
  flex-basis: 250px;
  flex-grow: 1;
}
.bounses .row .col-1.newBox {
  max-width: 277px;
  width: 100%;
  border-radius: 10px;
  border: 1px;
  background: #02d0ce0f;

  border: 1px solid #02d0ce1a;
  padding: 20px;
}
.bounses .row .col-1.newBox .mainHeading {
  color: #02d0ce;
  font-size: 18px;
  font-weight: 800;
  line-height: 21.78px;
  letter-spacing: 0.03em;
  margin-bottom: 30px !important;
  min-height: 96px;
}
.bounses .row .col-1.newBox .mainHeading span {
  color: #02d0ce;
  font-size: 18px;
  font-weight: 800;
  line-height: 21.78px;
  letter-spacing: 0.03em;
  margin-bottom: 15px !important;
}

.bounses .row .col-1.newBox img.newDesignImage {
  margin-bottom: 16px;
}

.bounses .row .col-1.newBox .linkPara {
  /* max-width: 165.25px; */
  width: 100%;
  min-height: 30.75px;
  padding: 6px 8px 6px 8px;
  border-radius: 6px;
  border: 1px solid #02d0ce1a;
  background: #02d0ce0f;
  backdrop-filter: blur(17px);
  gap: 6px;
  margin: auto;
  margin-bottom: 20px;
}
.bounses .row .col-1.newBox .linkPara p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: #4e7e7e;
}
.newDesign {
  display: flex !important;
}

.bounses .row .col-1.newBox .imageBtn img {
  margin-bottom: 10px !important;
}
.bounses .container h1 {
  position: relative;
  color: var(--secondary-color);
  font-family: var(--primary-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 40px;
  font-weight: 800;
  line-height: 46.02px;
  margin-bottom: 40px;
  z-index: -1;
}

.bounses-page .bounses .container h1::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 0px;
  bottom: -200px;
  right: 0px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(2, 208, 206, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.bounses .container h1 span {
  color: var(--white-color);
  position: relative;
  z-index: -1;
}

.bounses .container .row:nth-child(2) {
  margin-bottom: 60px;
}

.bounses .container .row:nth-child(2) h3 {
  color: var(--white-color);
  font-family: var(--primary-font);
  text-transform: uppercase;
  /* font-style: italic; */
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 25px;
}

.bounses .container .row:nth-child(3) {
  margin-bottom: 50px;
}

.bounses .container .row:nth-child(3),
.bounses .container .row:nth-child(4) {
  padding: 40px 30px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  background-color: #02d0ce1a;
  z-index: 10;
}

.bounses .container .row:nth-child(3) .sub-row,
.bounses .container .row:nth-child(4) .sub-row {
  flex-wrap: wrap;
}

.bounses .container .row .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bounses .container .row:nth-child(3) .btn a,
.bounses .container .row:nth-child(5) .btn a,
.bounses .container .row:nth-child(4) .btn a {
  width: 100%;
  text-align: center;
  padding: 14px 0px;
  max-width: 276px;
  width: 100%;
  margin-bottom: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 900;
  line-height: 16.11px;
  letter-spacing: 2px;
  word-spacing: 2px;
  font-style: italic;
}

.bounses .container .row:nth-child(3) .col-1,
.bounses .container .row:nth-child(4) .col-1 {
  text-align: center;
  flex-basis: 300px;
}

.bounses .container .row .copy-link {
  padding: 5px 10px;

  background: rgba(2, 208, 206, 0.06);
  border-radius: 6px;
  border: 1px solid rgba(2, 208, 206, 0.1);
  color: var(--primary-color);
  max-width: 240px;
  margin: auto;
  margin-bottom: 20px;
}

.bounses .container .row btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/color-btn-bg.png) no-repeat;
  z-index: 0;
}

.bounses .container .row .dashed-bg.btn a {
  color: var(--white-color) !important;
}

.bounses .container .row .dashed-bg.btn a span {
  color: var(--secondary-color);
}

.bounses .container .row .dashed-bg.btn a {
  background: transparent;
  position: relative;
  z-index: 9;
}

.bounses .container .row .dashed-bg.btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/bg-dashed-btn-border.svg) no-repeat !important;
  z-index: -1;
  height: 100%;
}

.bounses .row.newDesign {
  border: none !important;
  border-radius: 0px !important;
  background-color: transparent !important;
  padding: 0px !important;
  justify-content: center;
}
.bounses .row.newDesign .col-1 {
  flex-basis: 230px !important;
  flex-grow: 1;
}
.crown-text {
  position: absolute;
  top: -14px;
  left: 160px;
  padding: 5px 15px;
  border-radius: 6px;
  background-color: var(--secondary-color);
}

.crown-text p {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
}

.two-in-one {
  /* background: url(../images/hero-bg-glow-2.png) ;
    width: 100%;
    height: 100%; */
  position: relative;
}

.two-in-one::after {
  content: "";
  position: absolute;
  top: 180px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(2, 208, 206, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.two-in-one .container:nth-child(1) h1 {
  position: relative;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 40px;
  margin-bottom: 10px;
}

.two-in-one .container:nth-child(1) h1 img {
  position: absolute;
  top: -19px;
  right: 70px;
}

.two-in-one .container:nth-child(1) p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  max-width: 330.75px;
  color: var(--primary-color);
}

.swiper-section .swiper {
  width: 91%;
  height: 100%;
}

.swiper-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-section .swiper-slide img:hover {
  transform: scale(0.92);
}

.swiper-section {
  border-width: 1px, 0px, 1px, 0px;

  border-style: solid;

  border-color: rgba(2, 208, 206, 0.1);

  background: rgba(2, 208, 206, 0.06);
}

.swiper-section .container .row {
  position: relative;
}

.swiper-section .container .row .swiper-button-prev,
.swiper-section .container .row .swiper-button-next {
  color: white;
  font-size: 20px !important;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-section .row .row {
  width: 91%;
  margin: auto;
  margin-bottom: 34px;
}

.swiper-section .row .row h3 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 25px;
  font-weight: 800;
  line-height: 28.76px;
}

.bounses .container .row:nth-child(5) {
  margin-top: 50px;
  gap: 30px;
  flex-wrap: wrap;
  z-index: 1;
}

.bounses .container .row:nth-child(5) .col-1 {
  /* background-color: #02D0CE1A; */
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(2, 208, 206, 0.1);
  background: rgba(2, 208, 206, 0.06);
  flex-wrap: 300px;
}

.bounses .container .row:nth-child(5) .main-image {
  padding: 20px 20px 0px 20px;
}

.bounses .container .row:nth-child(5) .crow-para {
  background-color: var(--secondary-color);
  max-width: 150px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bounses .container .row:nth-child(5) .crow-para p {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
}

.bounses .container .row:nth-child(5) .btn-margin {
  padding: 15px 0px 30px 0px;
}

.bounses .container .row:nth-child(5) .underlin-copy a {
  padding: 5px 10px;
  background-color: #01191a;
  border-radius: 6px;
  border: 1px solid rgba(2, 208, 206, 0.1);
  color: var(--primary-color);
  max-width: 220px;
  margin: auto;
  margin-bottom: 20px;
}

/* CODE FOR socialMediaLinks Section */
.socialMediaLinks .row {
  flex-wrap: wrap;
  justify-content: center;
}

.socialMediaLinks .main-heading {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 35px;
  font-weight: 800;
  line-height: 40.26px;
  margin-bottom: 100px;
}

.socialMediaLinks .col-1 {
  text-align: center;
  border: 1px solid rgba(2, 208, 206, 0.1);
  background: rgba(2, 208, 206, 0.06);
  border-radius: 6px;
  position: relative;
  padding: 35px 0px 0px 0px;
  flex-basis: 150px;
  margin-bottom: 50px;
  max-width: 173px;
}

.socialMediaLinks .col-1 img {
  margin-bottom: 20px;
}

.socialMediaLinks img.main-image {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  margin-bottom: 0px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.socialMediaLinks h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 10px;
}

.socialMediaLinks .col-1 .social-media-icons {
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 6px;
}

.socialMediaLinks .col-1:nth-child(1) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(1) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: rgba(169, 112, 255, 1);
}

.socialMediaLinks .col-1:nth-child(2) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(2) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: rgba(241, 241, 241, 1);
}

.socialMediaLinks .col-1:nth-child(3) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(3) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  background: radial-gradient(
    92.18% 99.11% at 26.56% 107.7%,
    #ffdd55 0%,
    #ffdd55 10%,
    #ff543e 50%,
    #c837ab 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.socialMediaLinks .col-1:nth-child(4) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(4) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: rgba(255, 0, 0, 1);
}

.socialMediaLinks .col-1:nth-child(5) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(5) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: rgba(2, 208, 206, 1);
}

.socialMediaLinks .col-1:nth-child(6) .social-media-icons i,
.socialMediaLinks .col-1:nth-child(6) .social-media-icons p {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.73px;
  color: rgba(88, 101, 242, 1);
}

.socialMediaLinks .col-1 a img:hover {
  transform: scale(0.92);
}

/* CODE FOR CLIPPING PAGE */
.clipping-page form .container-fluid {
  max-width: 660px;
  margin: auto;
  background: rgba(2, 208, 206, 0.06);
  border: 1px solid rgba(2, 208, 206, 0.1);
  border-radius: 10px;
  padding: 15px;
}

.clipping-page form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 4px 10px;
  color: var(--primary-color);
  outline: none;
}

.clipping-page form .box .sub-box {
  flex: 1;
  margin-bottom: 5px;
}

.clipping-page form .box .sub-box .pri-box {
  background: rgba(2, 208, 206, 0.06);
  padding: 10px;
  width: 100%;
  gap: 0px;
}

.clipping-page form .box:nth-child(2) .pri-box {
  background: rgba(2, 208, 206, 0.06);
  padding: 10px;
}

.clipping-page form .box {
  margin-bottom: 14px;
}

.clipping-page form .box:nth-child(3) {
  margin-bottom: 0px;
}

.clipping-page form .box label {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  display: inline-block;
  margin-bottom: 6px;
}

.clipping-page form .btn {
  margin-top: 30px;
  margin-bottom: 150px;
}

.form-content {
  margin-bottom: 80px;
  position: relative;
  z-index: -1;
}

.form-content h1.heading {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 40px;
  font-weight: 800;
  line-height: 46.02px;
  text-align: center;
  margin-bottom: 20px;
}

.form-content p {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  gap: 10px;
}

.form-content .para-content {
  position: relative;
  max-width: 808px;
  margin: auto;
}

.form-content .container {
  position: relative;
}

.form-content .para-content::after {
  content: "";
  position: absolute;
  width: 100%;
  top: -100px;
  left: 0px;
  right: 0px;
  bottom: -100px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(2, 208, 206, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.form-content .container i {
  color: var(--secondary-color);
  font-size: 75px;
  position: absolute;
  top: 0;
  text-shadow: 0px 0px 16px rgba(2, 208, 206, 0.53);
}

.form-content .container i:nth-child(1) {
  transform: rotate(13.4deg);
  left: 50px;
  top: 20px;
  font-size: 60px;
}

.form-content .container i:nth-child(2) {
  right: 50px;
  transform: rotate(-13deg);
  top: 20px;
}
form .btn a {
  z-index: 0;
}

/* CODE FOR REGISTER PAGE  */
.register-content .container {
  max-width: 782.19px;
  margin: auto;
}

.register-content .container .row {
  margin-bottom: 30px;
  gap: 30px;
}

.register-content .container .col-1:nth-child(1) img {
  border: 1px solid rgba(2, 208, 206, 0.1);
  border-radius: 10px;
}

.register-content .container h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 32.21px;
  color: var(--secondary-color);
  margin-bottom: 4px;
  text-shadow: var(--secondary-color) 0px 0px 12px;
}

.register-content .container h1 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 28px;
  font-weight: 900;
  line-height: 32.21px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.register-content .container h1 span {
  color: var(--white-color);
}
.register-content .container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.92px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.lower-text .col-12 h1 {
  font-family: var(--primary-font) !important;
  font-family: Akira Expanded;
  font-size: 28px;
  font-weight: 800;
  line-height: 32.21px;
  color: var(--white-color);
  text-align: center;
}

.lower-text .col-12 h1 span {
  font-family: var(--primary-font) !important;
  color: var(--secondary-color);
}

.lower-text .col-12 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: var(--primary-color);
  text-align: center;
  margin-top: 14px;
}

/* CODE FOR participants PAGE  */
.participants {
  margin-bottom: 100px;
}
.participants .container {
  max-width: 801px;
  margin: auto;
}

.participants .row {
  margin-bottom: 30px;
}

.participants .row h1 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 25px;
  font-weight: 800;
  line-height: 28.76px;
}

.participants .row p {
  position: relative;
  padding: 14px 32px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 12.21px;
  font-weight: 800;
  line-height: 14.05px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.participants .row p:hover {
  cursor: pointer;
  transform: scale(0.93);
}

.participants .row p:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 30px;
  background: url(../images/participate-bg.svg) no-repeat;
}

.user-info{
  color: white;
  max-width: 60px; /* or another value that suits your design */
  white-space: nowrap;
  text-overflow: ellipsis; /* This will add "..." if the name is too long */
}

.wagered-value{
  color: white;
}

.prize-value{
  color: rgb(255, 115, 0);
}

.rank-label, .user-label, .wagered-label, .prize-label{
  color: white;
}

.participants .row-content p {
  color: var(--primary-color);
}

.participants .row-content .numer {
  padding: 10px 16px;
  background: rgba(2, 208, 206, 0.06);
  border: 1px solid rgba(2, 208, 206, 0.1);
  border-radius: 8px;
  color: var(--white-color);
}

.participants .row-content .box {
  padding: 5px 10px;
  border-radius: 10px;
  background: rgb(59, 35, 20);
  border: 1px solid #262626;
  margin-top: 5px;
  position: relative;
  z-index: 999;
}

.participants .row-content .box .sub-box:nth-child(1) {
  gap: 30px;
}

.participants .row-content .box .sub-box:nth-child(1) img {
  width: 34.5px;
  max-width: 34.5px;
  max-height: 34.5px;
  height: 34.5px;
  border-radius: 50%;
}

.participants .row-content .box-content:nth-child(1) p {
  width: 150px;
  text-align: end;
}

.participants .row-content .box-content:nth-child(2) p {
  width: 127px;
  /* text-align: end; */
}

.participants .row-content .col-without-bg img {
  margin-right: 6px;
}

.participants .row-content .col-without-bg {
  margin-bottom: 15px;
}

.participants .row-content .col-without-bg p {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
}
.leadership-page .hero-section {
  background: url(../images/hero-bg.png) no-repeat center center/cover;
  width: 100%;
  position: relative;
}
.leadership-page .hero-section h1 {
  color: #f88f52;
  font-weight: 900;
  text-shadow: 2px 0px 14px rgba(255, 123, 0, 0.5);
  font-size: 40px;
  margin-bottom: 10px;
}

.leadership-page .hero-section .col-12::after {
  content: "";
  top: -400px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: url(../images/purpleShadow.png) no-repeat center;
  position: absolute;
  z-index: 0;
}
.leadership-page .hero-section .col-12 h1 span {
  color: var(--white-color) !important;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 999;
  text-shadow: none !important;
}

.leadership-page .hero-section .col-12 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  max-width: 483px;
}

.leadership-page .hero-section .col-12 p span {
  color: orange !important;
}
.leadership-page .hero-section .col-12 .btn-button {
  position: relative;
  z-index: 999 !important;
}
.leadership-page .hero-section .col-12 .btn-button a {
  background: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 16.11px;
  text-align: center;
  color: var(--white-color);
  padding: 16px 50px;
  display: inline-block;
  position: relative;
  z-index: 9999 !important;
}
.leadership-page .hero-section .col-12 .btn-button a span {
  color: var(--secondary-color) !important;
}

.leadership-page .hero-section .col-12 .btn-button a::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: url(../images/bg-dashed-btn-border.svg) no-repeat;
  z-index: -1;
}

.btn-button:hover {
  transform: scale(0.93);
  cursor: pointer;
}

.leadership-page .hero-section .col-12 img.logo {
  width: 211.72px;
}

.timer-package .container {
  max-width: 866px;
  padding-bottom: 0px;
}

.timer-package .row .col-1 {
  min-height: 342.4px;
  background: url(../images/card-bg.svg) no-repeat;
  position: relative;
  padding-top: 50px;
}

.timer-package .row .col-1:nth-child(2) {
  position: relative;
  top: -60px;
}

.timer-package .row .col-1 img {
  position: absolute;
  width: 96.08px;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.timer-package .row .col-1:nth-child(2) .img-apackage {
  position: relative;
  top: -50px;
}

.timer-package .row .col-1:nth-child(2) .crown-image {
  width: 30px;
  top: -70px;
  right: 100px;
  transform: translate(0%, 0%);
  position: absolute;
}

.timer-package .row .col-1 h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29.05px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.timer-package .row .col-1 .underline {
  width: 37.5px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.07);
  margin: auto;
}

.timer-package .row .col-1 p {
  margin-top: 15px;
  padding: 2px 7px;
  background: linear-gradient(90deg, #b499cf 32.14%, #d3cdd8 117.86%);
  font-size: 14px;
  line-height: 16.94px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 25px;
}

.timer-package .row .col-1:nth-child(2) p {
  background: linear-gradient(90deg, #d8a836 32.14%, #f4d67a 117.86%);
}

.timer-package .row .col-1:nth-child(3) p {
  background: linear-gradient(90deg, #8a6556 32.14%, #ac8766 117.86%);
}

.timer-package .row .col-1 .dollar-wagered p {
  background: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  display: block;
}

.timer-package .row .col-1 .dollar-wagered p span {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.timer-package .row .col-1 .dollar-wagered p span span {
  background: linear-gradient(90deg, #b499cf 32.14%, #d3cdd8 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.timer-package .row .col-1:nth-child(2) .dollar-wagered p span span {
  background: linear-gradient(90deg, #d8a836 32.14%, #f4d67a 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.timer-package .row .col-1:nth-child(3) .dollar-wagered p span span {
  background: linear-gradient(90deg, #8a6556 32.14%, #ac8766 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.timer-package .row .col-1 h2 {
  padding: 5px 0px;
  font-size: 30px;
  font-weight: 800;
  line-height: 59px;
  background: linear-gradient(90deg, #b499cf 32.14%, #d3cdd8 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.timer-package .row .col-1:nth-child(2) h2 {
  background: linear-gradient(90deg, #d8a836 32.14%, #f4d67a 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.timer-package .row .col-1:nth-child(3) h2 {
  background: linear-gradient(90deg, #8a6556 32.14%, #ac8766 117.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.leadership-page .hero-section {
  padding-bottom: 150px;
}

.leadership-page .timer-package {
  position: relative;
  top: -120px;
}

.leadership-page .timer-package .container:nth-child(1) .row {
  flex-wrap: wrap;
}

.leadership-page .timer-package .container:nth-child(1) .row .col-1 {
  flex-basis: 230px;
  max-width: 274.51px;
  margin: auto;
  margin-bottom: 50px;
  z-index: 0;
}

.leadership-page .timer-package .container:nth-child(1) .row .col-1:hover {
  transform: scale(0.95);
}

/* count down section  */

.countdown {
  text-align: center;
}

.countdown div {
  display: inline-block;
  margin: 0 10px;
}

.countdown div span {
  display: block;
  font-size: 39.15px;
  color: #d07602;
  font-weight: 800;
  text-shadow: 0px 0px 16px rgba(208 116 2 / 0.53);
  position: relative;
}

.countdown div span::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 35px;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}

.countdown div:nth-child(4) span::after {
  background-color: transparent;
}

.label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  font-size: 17.27px;
  font-weight: 400;
  line-height: 20.9px;
}

@media (max-width: 48rem) {
  .countdown div span {
    font-size: 1.5rem;
  }

  .label {
    font-size: 0.875rem;
  }
}

@media (max-width: 30rem) {
  .countdown div {
    margin: 0 0.25rem;
  }

  .countdown div span {
    font-size: 1.25rem;
  }

  .label {
    font-size: 0.75rem;
  }
}
.count-down .timePara {
  color: var(--white-color);
  font-size: 18.42px;
  font-weight: 600;
  line-height: 22.3px;
  margin-bottom: 15px;
}
.count-down .row {
  display: flex;
  align-items: center;
}
.count-down .container {
  padding: 0px 0px 50px 0px;
}
.count-down .row .underline {
  height: 1px;
  background-color: rgba(255, 255, 255, 1);
  width: 30%;
  opacity: 0.1;
}

.register-page .form-content h1 {
  font-size: 40px;
  font-weight: 800;
}

.register-page .form-content p {
  max-width: 425.5px;
  margin: auto;
  text-align: center;
  line-height: 1.5;
}

.register-page .form-content img.img-size {
  width: 211px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.register-page .form-content .arrow-down img {
  animation: arrow-up-down 2s infinite;
}

@keyframes arrow-up-down {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* CODE FOR REWARDS PAGE */
.giveaways .bounses .container h1 {
  margin-bottom: 10px !important;
  font-size: 55px;
  font-family: var(--primary-font) !important;
}
.mainRewardsPara {
  line-height: 1.3;
  max-width: 360px;
  text-align: center;
  margin: auto;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.giveaways .bounses .container .row {
  background-color: transparent !important;
  border: none !important;
  /* align-items: lef; */
  text-align: left;
}
.giveaways .bounses .container .col-1 {
  background-color: transparent !important;
  border: none !important;
  text-align: left !important;
  margin-bottom: 20px;
}
.giveaways .bounses .container .col-1 img.mainImage {
  width: 100%;
  margin-bottom: 10px;
}

.giveaways .bounses .container .col-1 h5,
.giveaways .bounses .container .col-1 p {
  margin-bottom: 7px;
  color: var(--white-color);
}
.giveaways .bounses .container .col-1 .btn a {
  padding: 0px 20px;
  height: 40px;
}
.giveaways .bounses .container .col-1 h5 {
  color: var(--white-color);
  font-size: 17px !important;
  font-weight: 800;
  line-height: 20.57px;
}

.giveaways .bounses .container .col-1 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: var(--white-color);
}

/* CODE FOR FOOTER  */
footer {
  background-color: #00000060;
}

footer h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: white;
  margin-bottom: 10px;
}

footer h4 {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;
  font-weight: 800;
  line-height: 18.41px;
  color: white;
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 16px;
}

footer .plus-18 {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid #d099021a;
  background-color: #d077021a;
  padding: 10px;
  border-radius: 10px;
}

footer .row {
  margin-bottom: 50px;
  flex-wrap: wrap;
}

footer .row .col-1 {
  flex-basis: 170px;
  margin-bottom: 20px;
}

footer .row .col-2 {
  flex-basis: 290px;
}

footer .plus-18 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: white;
}

footer .copy-right,
footer .copy-right a {
  color: white;
}

footer li a {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.36px;
}

footer li a:hover {
  color: orange;
}

footer .icons {
  flex-wrap: wrap;
}

footer .icons i, .ico {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #e99d44;
  font-size: 20px;
  color: var(--not-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .icons i:hover, .ico:hover {
  background-color: #693c08;
  color: var(--white-color);
}

footer .logo img {
  width: 90%;
}

/* for laptop and desktop  */
@media only screen and (min-width: 991.99px) {
  .pc {
    display: none !important;
  }
}

/* for tablet and small laptop */
/* 1139 */
@media only screen and (max-width: 1139.98px) {
  .two-in-one .container:nth-child(1) h1 img {
    right: 9px;
  }
}

@media only screen and (max-width: 991.98px) {
  .mobile {
    display: none !important;
  }

  .two-in-one .row {
    flex-direction: column;
    align-items: start;
  }

  .two-in-one .row .col-1 {
    max-width: 355px;
  }
}

/* For mobile */
@media only screen and (max-width: 767.98px) {
  .crown-text {
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0px;
  }

  .bounses .container .row:nth-child(3) .sub-row {
    flex-direction: column-reverse;
  }

  .bounses .row .col-3,
  .bounses .container .row:nth-child(3) .col-1 {
    flex-basis: 10px;
  }

  .bounses .container .row:nth-child(3) {
    padding: 30px 10px;
  }

  .swiper-section .row .row {
    flex-direction: column;
  }

  .socialMediaLinks .main-heading {
    font-size: 25px;
    margin-bottom: 50px;
  }

  .leadership-page .hero-section h1 {
    font-size: 25px;
  }

  .participants .row {
    flex-direction: column;
    align-items: start;
  }

  .participants .row-content .box .sub-box:nth-child(1) {
    gap: 10px;
  }

  .participants .row-content .box-content:nth-child(1) p {
    width: 100px;
  }

  .timer-package .row .col-1 {
    margin-bottom: 80px !important;
  }

  .timer-package .row .col-1:nth-child(2) {
    top: 0px;
  }
  .count-down .row .underline {
    display: none;
  }
  .countdown div span::after {
    right: -12px;
    top: 20px;
  }
  .participants .pri-box {
    gap: 0px;
  }
  .register-content .container .row {
    flex-direction: column;
  }
  .leadership-page .timer-package .container:nth-child(1) .row .col-1 {
    flex-basis: 230px;
    max-width: 274.51px;
    margin: auto;
    margin-bottom: 50px;
    z-index: 1;
  }
  .leadership-page .hero-section {
    padding-bottom: 0px;
  }
  .leadership-page .timer-package {
    top: 10px;
  }
  .leadership-page .hero-section .col-12::after {
    top: -150px;
  }
}
@media screen and (max-width: 458.98px) {
  .participants .row-content .numer {
    padding: 5px 8px;
    font-size: 10px;
  }
  .participants .row-content .box .sub-box:nth-child(1) img {
    width: 24px;
  }
  .participants .row-content p {
    font-size: 12px;
  }
  .participants .pri-box img {
    width: 26px;
  }
  .participants .row-content .box-content:nth-child(1) p {
    font-size: 12px;
  }
  .participants .row-content .box-content:nth-child(1) p img {
    width: 8px;
  }
  .participants .row-content .box-content:nth-child(2) p {
    width: 84px;
    font-size: 12px;
  }
  .participants .row-content .box-content:nth-child(2) p img {
    width: 8px;
  }
  .participants .row-content .col-without-bg {
    margin-bottom: 5px;
  }
  .form-content .container i:nth-child(1) {
    left: 40px;
    top: 48px;
    font-size: 45px;
  }
  .form-content .container i:nth-child(2) {
    right: 40px;
    top: 48px;
    font-size: 45px;
  }
  .clipping-page form .box {
    flex-direction: column;
    width: 100%;
  }
  .clipping-page form .box .sub-box {
    width: 100%;
  }
  .lower-text .col-12 h1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 344px) {
  .swiper-section .container .row .swiper-button-prev,
  .swiper-section .container .row .swiper-button-next {
    margin-top: 50px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Ensure parent elements don't interfere */
.bounses .container .row:nth-child(3),
.bounses .container .row:nth-child(5) .col-1,
.bounses .btn,
.bounses .btn-margin {
  position: relative;
  z-index: 1;
}

/* Specific styles for buttons in the 4th row (CSGORoll, Hellcase, DMmarket) */
.bounses .container .row:nth-child(5) .btn-margin {
  position: relative;
  z-index: 2;
}

.bounses .container .row:nth-child(5) .btn-margin .btn {
  position: relative;
  z-index: 3;
}

.bounses .container .row:nth-child(5) .btn-margin .btn a {
  position: relative;
  z-index: 4;
}

/* Hover effect for all buttons */
.bounses .btn a:hover,
.bounses .btn-margin .btn a:hover {
  transform: scale(0.95);
}

.centered-blue {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.register-highlight {
  animation: highlight 3s ease-in-out infinite,
    wiggle-burst 3s ease-in-out infinite;
  display: inline-block;
  color: #8152f8 !important;
}

@keyframes highlight {
  0%,
  100% {
    color: var(--secondary-color);
  }
  50% {
    color: var(--primary-color);
  }
}

@keyframes wiggle-burst {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  15% {
    transform: rotate(-5deg);
  }
  5%,
  20% {
    transform: rotate(5deg);
  }
  25%,
  100% {
    transform: rotate(0deg);
  }
}

.rules-dropdown {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-toggle {
  background-color: #ff4136;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.dropdown-toggle .fa-info-circle {
  margin-right: 10px;
  font-size: 24px;
}

.dropdown-toggle:hover {
  background-color: #e7261d;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-content {
  display: none;
  background-color: #fff0f0;
  border: 2px solid #ff4136;
  border-top: none;
  padding: 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown-content p {
  color: #333 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0;
}

.rules-dropdown.active .dropdown-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.rules-dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.rules-dropdown.active .dropdown-content {
  display: block;
}

/* CODE FOR PREV LEADERBOARD PAGE  */
.gallery {
  display: inline-block !important;
  width: 100%;
}
.paymentBtn {
  margin-top: 24px !important;
  gap: 0px !important;
  position: relative;
  z-index: 9999 !important;
}
.leadership-page .hero-section button.gf-btn {
  position: relative;
  z-index: 99 !important;
  background-color: transparent !important;
}
.leadership-page .hero-section button.gf-btn img {
  width: 140px !important;
}
.leadership-page .hero-section button.gf-btn .paymentLogo {
  position: relative;
  z-index: 999 !important;
  width: 152.19px !important;
  line-height: 5;
}

.leadership-page .gf-column {
  float: left;
  display: none;
}

/* The "show" class is added to the filtered elements */
.leadership-page .show {
  display: block;
  width: 100%;
}

.leadership-page .gf-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 999 !important;
  transition: color 0.3s, border-bottom 0.3s;
}

.leadership-page .butonsSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.leadership-page .sets .hide,
.leadership-page .sets .pophide {
  width: 0%;
  opacity: 0;
}

.paymentLogo {
  transition: opacity 0.3s; /* Smooth transition for opacity change */
  opacity: 0.3;
  border-bottom: 2px solid var(--primary-color) !important;

  padding: 15px;
}

.leadership-page .gf-btn-active .paymentLogo,
.leadership-page .gf-btn:hover .paymentLogo {
  border-bottom: 2px solid var(--primary-color) !important;
  opacity: 1 !important;
}

.site-btn-active {
  position: relative;
  z-index: 9999;
}

.gallery {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.gf-column {
  display: none;
}

/* Show the selected gallery */
.gf-column.show {
  display: block;
}

/* Custom Section Styling */
.live-stream-section {
    padding: 40px 0; /* Add vertical padding for spacing */
    text-align: center;
}

/* Custom Section Styling */
.live-stream-section {
    padding: 40px 0; /* Add vertical padding for spacing */
    text-align: center;
}

.iframe-text {
    font-size: 24px; /* Larger text size for visibility */
    font-weight: bold;
    color: #f88f52; /* Text color */
    text-shadow: 2px 0px 14px rgba(255, 123, 0, 0.5);
    margin-bottom: 20px; /* Space between the text and iframe */
    padding: 10px;
    border-radius: 5px;  /* Optional rounded corners */
    display: inline-block;  /* Keeps the text width just as wide as the content */
}

/* Iframe Container with responsive aspect ratio */
.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio of 16:9 for the iframe */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000; /* Add black background if iframe doesn't load properly */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Optional: Make the iframe responsive on small screens */
@media (max-width: 768px) {
    .iframe-container {
        padding-bottom: 75%; /* 4:3 aspect ratio for smaller screens */
    }

    .iframe-text {
        font-size: 18px; /* Smaller text for smaller screens */
    }
}

.particle-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: 0;
    background-color: rgba(220, 126, 38, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
    mix-blend-mode: screen;
}

.particle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    filter: blur(4px);
}

@keyframes floatParticle {
    0% {
    transform: translateY(0) scale(.5) rotate(0deg);
    opacity: 0;
}
20% {
    opacity: 1;
}
100% {
    transform: translate(calc(-50vw + 100vw * var(--x)),-120vh) scale(1.2) rotate(1turn);
    opacity: 0;
}
}