@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}

:root { 
  --background-color: #ffffff;
  --default-color: #272829;
  --heading-color: #45505b; 
  --accent-color: #0563bb; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #45505b; 
  --nav-hover-color: #0563bb; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0563bb; 
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: #fff;
  font-family: var(--default-font);
  font-size:20px;
  overflow-y: scroll;
}

a {
  color: #1C3144;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--heading-font);
}

.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  z-index: 997;
  min-width: 200px;
}
.title_om{
  font-size: 55px;
  color: #fff;
}
.typed{
color: #fff;
font-size: 25px;
}

.banner-t{
padding-top: 100px;
padding-left: 100px;
}

.herom{
  margin-top: -150px;
}
.bannee{
  display: block;
}
@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
 
}

@media (min-width: 1200px) and (max-width: 1600px) {
 /*.header~main {
    /*margin-left: 160px;}*/
  }

  .header~main .hero {
    width: 100vw;
  }


.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: #1C3144;
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: color-mix(in srgb, #fff, transparent 45%);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  
  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--contrast-color);
  background: #1C3144;
}

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

.footer {
  color: #fff;
  background-color: #80B6D0;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  color: #fff;
}

.footer p {
  font-size: 15px;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1C3144;
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, #1C3144, transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #1C3144;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #80B6D0, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .certificate-s {
    margin: 0 0px;
}

  .aboutsec{
    margin-left: 0px;
    margin-right: 0px;
    margin-top: -740px;
  }
  .play_icon_main {
    width: 100%;
    margin-top: -60px !important;
    margin-left: 150px;
}
.hero_section {
  width: 100%;
  float: left;
  background-image: url(../img/banner2.png) !important;
  height: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 345px;
padding-top: 0px !important;
}
.banner-t {
  padding-top: 100px;
  padding-left: 40px;
}
.title_om {
  font-size: 20px;
  color: #fff;
}
.typed {
  color: #fff;
  font-size: 20px;
}
.servi {
  padding: 0px 0px !important;
}
.bannee{
  display: none;
}
}

.page-title {
  --background-color: color-mix(in srgb, #fff, transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color:#fff;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  overflow: clip;
  margin-bottom: 100px;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #80B6D0 !important;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #80B6D0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #80B6D0, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, #fff, transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: #1C3144;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .certificate-s {
    margin: 0 0px;
}
  .hero p {
    font-size: 20px;
  }
  .aboutsec{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}
.aboutsec{
  margin-left: 200px;
  margin-right: 200px;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

.stats i {
  background-color: #1C3144;
  color: #fff;
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  font-weight: 700;
  color: color-mix(in srgb, #6E6E6E, transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.resume .resume-title {
  color: #80B6D0;
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #C6A75E;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, #1C3144, transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid #C6A75E;
}

.media .media-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
  
  z-index: 9999;
  position: relative;
}

.media .media-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.media .media-filters li:hover,
.media .media-filters li.filter-active {
  color: #fff;
  background-color: #1C3144;
}

.media .media-filters li:first-child {
  margin-left: 0;
}

.media .media-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .media .media-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  
}

.media .media-item {
  position: relative;
  overflow: hidden;
}

.media .media-item .media-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #3F92CB, transparent 10%);
  padding: 15px;
}

.media .media-item .media-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: #fff;
}

.media .media-item .media-info p {
  color: color-mix(in srgb, #fff, transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.media .media-item .media-info .preview-link,
.media .media-item .media-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, #fff, transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.media .media-item .media-info .preview-link:hover,
.media .media-item .media-info .details-link:hover {
  color: #fff;
}

.media .media-item .media-info .details-link {
  right: 14px;
  font-size: 28px;
}

.media .media-item:hover .media-info {
  opacity: 1;
  bottom: 0;
}

.wrap {
  margin: 2rem;

  transform-style: preserve-3d;
  transform: perspective(100rem);

  cursor: pointer;
}
.servi {
  padding: 0px 180px;
}
.services {
  --rX: 0;
  --rY: 0;
  --bX: 50%;
  --bY: 80%;

  width: 100%;
  height: auto;
  border: 1px solid var(--background-color);
  border-radius: 1.6rem;
  padding: 4rem;

  display: flex;
  align-items: flex-end;

  position: relative;
  transform: rotateX(calc(var(--rX) * 1deg)) rotateY(calc(var(--rY) * 1deg));

  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/btech1.png');
  background-position: var(--bX) var(--bY);
  background-size: 20rem auto;
  box-shadow: 0 0 3rem .5rem hsla(0, 0%, 0%, .2);

  transition: transform .6s 1s;
}

.services::before,
.services::after {
  content: "";

  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;

  position: absolute;
  z-index: 2;

  opacity: .3;
  transition: .3s;
}

.services::before {
  top: 2rem;
  right: 2rem;

  border-bottom-width: 0;
  border-left-width: 0;
}

.services::after {
  bottom: 2rem;
  left: 2rem;

  border-top-width: 0;
  border-right-width: 0;
}

.services--active {
  transition: none;
}

.services--2 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/biometriass.png');
  
}

.services--3 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/seguridadin2.png');
}
.services--4 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/software1.png');
}
.services--5 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/infraestructura_1.png');
}
.services--6 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/otec_1.png');
}
.services--7 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/sbdd-1.png');
}
.services--8 {
  background-image:
  linear-gradient(to bottom, rgba(63, 146, 203, 0.72), rgba(11, 34, 91, 0.93)),
  url('/assets/img/services/cloudservice2.png');
}

.services p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.services i {
  color: #fff;
  text-align: center;
}

.wrap:hover .services::before,
.wrap:hover .services::after {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: #1C3144;
  background: color-mix(in srgb, #1C3144, transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #1C3144;
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.media-details .media-details-slider img {
  width: 100%;
}

.media-details .swiper-wrapper {
  height: auto;
}

.media-details .swiper-button-prev,
.media-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.media-details .swiper-button-prev:after,
.media-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.media-details .swiper-button-prev:hover:after,
.media-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .media-details .swiper-button-prev,
  .media-details .swiper-button-next {
    display: none;
  }
}

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

.media-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.media-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.media-details .media-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.media-details .media-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.media-details .media-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.media-details .media-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.media-details .media-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.media-details .media-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.media-details .media-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.media-details .media-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.media-details .media-description p {
  padding: 0;
}

.media-details .media-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.media-details .media-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.media-details .media-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.media-details .media-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.media-details .media-description .testimonial-item .quote-icon-left,
.media-details .media-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

.media-details .media-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.media-details .media-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


.glightbox-clean .gslide-title {
  font-size: 18px;
  font-weight: 400;
  font-family: arial;
  color: #3F92CB;
  margin-bottom: 19px;
  line-height: 1.4em;
  text-align: center;
  text-transform: uppercase;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #80B6D0;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #80B6D0;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}
.bright{
  text-align: right;
}

.p_section{
  color: #1C3144;
  font-size: 20px;
  font-weight: bold;
}
.banner_prensa{
  background: linear-gradient(to bottom, rgba(63, 146, 203, 0.52), rgba(11, 34, 91, 0.73)),
  url('/assets/img/bg_prensa.jpg');
  height: 300px;
  background-position: 50px;
}


.card-wrapper{
  max-width: 1100px;
  margin: 0 auto;
}
img{
  width: 100%;
  display: block;
}
.img-display{
  overflow: hidden;
}
.img-showcase{
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.img-showcase img{
  min-width: 100%;
}
.img-select{
  display: flex;
}
.img-item{
  margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
  margin-right: 0;
}
.img-item:hover{
  opacity: 0.8;
}
.product-content{
  padding: 2rem 1rem;
}
.product-title{
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
}
.product-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 80px;
  background: #12263a;
}
.product-link{
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}
.product-link:hover{
  opacity: 0.9;
}
.product-rating{
  color: #ffc107;
}
.product-rating span{
  font-weight: 600;
  color: #252525;
}
.product-price{
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}
.product-price span{
  font-weight: 400;
}
.last-price span{
  color: #f64749;
  text-decoration: line-through;
}
.new-price span{
  color: #256eff;
}
.product-detail h2{
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}
.product-detail p{
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}
.product-detail ul{
  margin: 1rem 0;
  font-size: 0.9rem;
}
.product-detail ul li{
  margin: 0;
  list-style: none;
  background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat;
  background-size: 18px;
  padding-left: 1.7rem;
  margin: 0.4rem 0;
  font-weight: 600;
  opacity: 0.9;
}
.product-detail ul li span{
  font-weight: 400;
}
.purchase-info{
  margin: 1.5rem 0;
}
.purchase-info input,
.purchase-info .btn{
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}
.purchase-info input{
  width: 60px;
}
.purchase-info .btn{
  cursor: pointer;
  color: #fff;
}
.purchase-info .btn:first-of-type{
  background: #256eff;
}
.purchase-info .btn:last-of-type{
  background: #f64749;
}
.purchase-info .btn:hover{
  opacity: 0.9;
}
.social-links{
  display: flex;
  align-items: center;
}
.social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border: 1px solid #fff;
  margin: 0 0.2rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.5s ease;
}
.social-links a:hover{
  background: #1C3144;
  border-color: transparent;
  color: #fff;
}

@media screen and (min-width: 992px){
  .card{
      
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 1.5rem;
  }
  .card-wrapper{
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .product-imgs{
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 1000;
        position: relative;
  }
  .product-content{
      padding-top: 0;
  }
  
}


.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 70%;
  height: 70vh;
  padding: 0px;
  margin-left: 15%;
  z-index: 9999;
  position: relative;
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
}
.item:hover {
  flex: 7;
}

.item-1 {
  background-image: url("");
}

.item-2 {
  background-image: url("https://images.unsplash.com/photo-1492760864391-753aaae87234?auto=format&fit=crop&w=1336&q=80");
}

.item-3 {
  background-image: url("https://images.unsplash.com/photo-1503631285924-e1544dce8b28?auto=format&fit=crop&w=1234&q=80");
}

.item-4 {
  background-image: url("https://images.unsplash.com/photo-1510425463958-dcced28da480?auto=format&fit=crop&w=1352&q=80");
}

.item-5 {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?auto=format&fit=crop&w=1234&q=80");
}

.social {
  position: absolute;
  right: 35px;
  bottom: 0;
}
.social img {
  display: block;
  width: 32px;
}


.particle {
  position: absolute;
  border-radius: 50%;
}

@-moz-keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(180px);
  }
}
@-webkit-keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(180px);
  }
}
@keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(180px);
  }
}
@-moz-keyframes floatReverse {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-180px);
  }
}
@-webkit-keyframes floatReverse {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-180px);
  }
}
@keyframes floatReverse {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-180px);
  }
}
@-moz-keyframes float2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(280px);
  }
}
@-webkit-keyframes float2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(280px);
  }
}
@keyframes float2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(280px);
  }
}
@-moz-keyframes floatReverse2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-280px);
  }
}
@-webkit-keyframes floatReverse2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-280px);
  }
}
@keyframes floatReverse2 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-280px);
  }
}
.particle:nth-child(1) {
  height: 24px;
  width: 24px;
  left: 86%;
  top: 41%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 40s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(2) {
  height: 19px;
  width: 19px;
  left: 19%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(3) {
  height: 12px;
  width: 12px;
  left: 61%;
  top: 79%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(4) {
  height: 25px;
  width: 25px;
  left: 92%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(5) {
  height: 22px;
  width: 22px;
  left: 49%;
  top: 79%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(6) {
  height: 22px;
  width: 22px;
  left: 97%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(7) {
  height: 17px;
  width: 17px;
  left: 18%;
  top: 60%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 30s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(8) {
  height: 21px;
  width: 21px;
  left: 97%;
  top: 85%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 30s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(9) {
  height: 13px;
  width: 13px;
  left: 13%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 40s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(10) {
  height: 23px;
  width: 23px;
  left: 90%;
  top: 80%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 38s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(11) {
  height: 17px;
  width: 17px;
  left: 71%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 23s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(12) {
  height: 13px;
  width: 13px;
  left: 46%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(13) {
  height: 16px;
  width: 16px;
  left: 47%;
  top: 76%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 27s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(14) {
  height: 17px;
  width: 17px;
  left: 79%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(15) {
  height: 17px;
  width: 17px;
  left: 31%;
  top: 95%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 29s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(16) {
  height: 15px;
  width: 15px;
  left: 45%;
  top: 74%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 31s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(17) {
  height: 15px;
  width: 15px;
  left: 57%;
  top: 90%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 40s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(18) {
  height: 25px;
  width: 25px;
  left: 61%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(19) {
  height: 22px;
  width: 22px;
  left: 71%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 22s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(20) {
  height: 18px;
  width: 18px;
  left: 21%;
  top: 8%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 28s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(21) {
  height: 25px;
  width: 25px;
  left: 32%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(22) {
  height: 17px;
  width: 17px;
  left: 15%;
  top: 18%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 23s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(23) {
  height: 23px;
  width: 23px;
  left: 83%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(24) {
  height: 19px;
  width: 19px;
  left: 36%;
  top: 84%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 35s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(25) {
  height: 19px;
  width: 19px;
  left: 35%;
  top: 58%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 25s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(26) {
  height: 18px;
  width: 18px;
  left: 90%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(27) {
  height: 19px;
  width: 19px;
  left: 87%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(28) {
  height: 20px;
  width: 20px;
  left: 34%;
  top: 57%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 25s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(29) {
  height: 14px;
  width: 14px;
  left: 65%;
  top: 8%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(30) {
  height: 21px;
  width: 21px;
  left: 60%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(31) {
  height: 14px;
  width: 14px;
  left: 10%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(32) {
  height: 16px;
  width: 16px;
  left: 89%;
  top: 46%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(33) {
  height: 21px;
  width: 21px;
  left: 54%;
  top: 81%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 22s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(34) {
  height: 11px;
  width: 11px;
  left: 3%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(35) {
  height: 21px;
  width: 21px;
  left: 53%;
  top: 79%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(36) {
  height: 13px;
  width: 13px;
  left: 20%;
  top: 47%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(37) {
  height: 16px;
  width: 16px;
  left: 8%;
  top: 22%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(38) {
  height: 11px;
  width: 11px;
  left: 80%;
  top: 87%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(39) {
  height: 23px;
  width: 23px;
  left: 54%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(40) {
  height: 11px;
  width: 11px;
  left: 16%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(41) {
  height: 20px;
  width: 20px;
  left: 63%;
  top: 63%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 24s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(42) {
  height: 13px;
  width: 13px;
  left: 49%;
  top: 70%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 38s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(43) {
  height: 13px;
  width: 13px;
  left: 56%;
  top: 26%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(44) {
  height: 23px;
  width: 23px;
  left: 53%;
  top: 10%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 24s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(45) {
  height: 18px;
  width: 18px;
  left: 41%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(46) {
  height: 19px;
  width: 19px;
  left: 11%;
  top: 10%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(47) {
  height: 18px;
  width: 18px;
  left: 58%;
  top: 84%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(48) {
  height: 20px;
  width: 20px;
  left: 91%;
  top: 4%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(49) {
  height: 21px;
  width: 21px;
  left: 41%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(50) {
  height: 15px;
  width: 15px;
  left: 59%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 25s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(51) {
  height: 15px;
  width: 15px;
  left: 29%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 37s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(52) {
  height: 22px;
  width: 22px;
  left: 51%;
  top: 64%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(53) {
  height: 12px;
  width: 12px;
  left: 62%;
  top: 40%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(54) {
  height: 23px;
  width: 23px;
  left: 19%;
  top: 57%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 23s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(55) {
  height: 22px;
  width: 22px;
  left: 36%;
  top: 87%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 32s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(56) {
  height: 18px;
  width: 18px;
  left: 8%;
  top: 14%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 32s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(57) {
  height: 12px;
  width: 12px;
  left: 86%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(58) {
  height: 17px;
  width: 17px;
  left: 99%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(59) {
  height: 15px;
  width: 15px;
  left: 93%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(60) {
  height: 20px;
  width: 20px;
  left: 1%;
  top: 88%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 29s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(61) {
  height: 23px;
  width: 23px;
  left: 82%;
  top: 29%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 37s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(62) {
  height: 11px;
  width: 11px;
  left: 91%;
  top: 68%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 29s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(63) {
  height: 16px;
  width: 16px;
  left: 41%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 22s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(64) {
  height: 18px;
  width: 18px;
  left: 98%;
  top: 68%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(65) {
  height: 15px;
  width: 15px;
  left: 51%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(66) {
  height: 23px;
  width: 23px;
  left: 64%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 22s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(67) {
  height: 16px;
  width: 16px;
  left: 3%;
  top: 52%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 34s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(68) {
  height: 25px;
  width: 25px;
  left: 28%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 38s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(69) {
  height: 15px;
  width: 15px;
  left: 42%;
  top: 34%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(70) {
  height: 15px;
  width: 15px;
  left: 71%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 28s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(71) {
  height: 25px;
  width: 25px;
  left: 22%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(72) {
  height: 18px;
  width: 18px;
  left: 35%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(73) {
  height: 24px;
  width: 24px;
  left: 20%;
  top: 66%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(74) {
  height: 24px;
  width: 24px;
  left: 12%;
  top: 44%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 37s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(75) {
  height: 21px;
  width: 21px;
  left: 82%;
  top: 41%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(76) {
  height: 13px;
  width: 13px;
  left: 97%;
  top: 22%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(77) {
  height: 23px;
  width: 23px;
  left: 39%;
  top: 39%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 23s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(78) {
  height: 14px;
  width: 14px;
  left: 94%;
  top: 87%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 23s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(79) {
  height: 22px;
  width: 22px;
  left: 35%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(80) {
  height: 15px;
  width: 15px;
  left: 89%;
  top: 74%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 22s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(81) {
  height: 12px;
  width: 12px;
  left: 56%;
  top: 43%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(82) {
  height: 16px;
  width: 16px;
  left: 17%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 21s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(83) {
  height: 12px;
  width: 12px;
  left: 28%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(84) {
  height: 12px;
  width: 12px;
  left: 23%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(85) {
  height: 11px;
  width: 11px;
  left: 32%;
  top: 4%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 35s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(86) {
  height: 22px;
  width: 22px;
  left: 89%;
  top: 69%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 36s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(87) {
  height: 17px;
  width: 17px;
  left: 67%;
  top: 28%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(88) {
  height: 15px;
  width: 15px;
  left: 93%;
  top: 11%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(89) {
  height: 22px;
  width: 22px;
  left: 49%;
  top: 14%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(90) {
  height: 18px;
  width: 18px;
  left: 55%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(91) {
  height: 25px;
  width: 25px;
  left: 73%;
  top: 72%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(92) {
  height: 12px;
  width: 12px;
  left: 19%;
  top: 99%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 31s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(93) {
  height: 11px;
  width: 11px;
  left: 99%;
  top: 34%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(94) {
  height: 16px;
  width: 16px;
  left: 41%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(95) {
  height: 13px;
  width: 13px;
  left: 87%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 27s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(96) {
  height: 20px;
  width: 20px;
  left: 28%;
  top: 6%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(97) {
  height: 22px;
  width: 22px;
  left: 28%;
  top: 47%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 27s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(98) {
  height: 22px;
  width: 22px;
  left: 34%;
  top: 6%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(99) {
  height: 25px;
  width: 25px;
  left: 9%;
  top: 71%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(100) {
  height: 15px;
  width: 15px;
  left: 13%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 32s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(101) {
  height: 20px;
  width: 20px;
  left: 61%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 27s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(102) {
  height: 16px;
  width: 16px;
  left: 91%;
  top: 37%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(103) {
  height: 24px;
  width: 24px;
  left: 70%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(104) {
  height: 14px;
  width: 14px;
  left: 33%;
  top: 77%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(105) {
  height: 17px;
  width: 17px;
  left: 25%;
  top: 32%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(106) {
  height: 15px;
  width: 15px;
  left: 26%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(107) {
  height: 23px;
  width: 23px;
  left: 85%;
  top: 61%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 25s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(108) {
  height: 23px;
  width: 23px;
  left: 83%;
  top: 35%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(109) {
  height: 11px;
  width: 11px;
  left: 14%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(110) {
  height: 19px;
  width: 19px;
  left: 53%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(111) {
  height: 22px;
  width: 22px;
  left: 70%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(112) {
  height: 16px;
  width: 16px;
  left: 94%;
  top: 64%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 31s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(113) {
  height: 22px;
  width: 22px;
  left: 39%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 27s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(114) {
  height: 21px;
  width: 21px;
  left: 29%;
  top: 99%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(115) {
  height: 18px;
  width: 18px;
  left: 90%;
  top: 98%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(116) {
  height: 11px;
  width: 11px;
  left: 23%;
  top: 44%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 35s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(117) {
  height: 17px;
  width: 17px;
  left: 27%;
  top: 25%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(118) {
  height: 12px;
  width: 12px;
  left: 59%;
  top: 16%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 31s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(119) {
  height: 23px;
  width: 23px;
  left: 70%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 28s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(120) {
  height: 13px;
  width: 13px;
  left: 32%;
  top: 8%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(121) {
  height: 18px;
  width: 18px;
  left: 58%;
  top: 76%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 28s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(122) {
  height: 15px;
  width: 15px;
  left: 75%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(123) {
  height: 20px;
  width: 20px;
  left: 56%;
  top: 73%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(124) {
  height: 15px;
  width: 15px;
  left: 88%;
  top: 54%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(125) {
  height: 20px;
  width: 20px;
  left: 19%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 32s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(126) {
  height: 15px;
  width: 15px;
  left: 5%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 25s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(127) {
  height: 25px;
  width: 25px;
  left: 38%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(128) {
  height: 20px;
  width: 20px;
  left: 89%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 32s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(129) {
  height: 23px;
  width: 23px;
  left: 21%;
  top: 13%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(130) {
  height: 18px;
  width: 18px;
  left: 72%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(131) {
  height: 22px;
  width: 22px;
  left: 61%;
  top: 61%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(132) {
  height: 24px;
  width: 24px;
  left: 80%;
  top: 84%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(133) {
  height: 14px;
  width: 14px;
  left: 8%;
  top: 49%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 27s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(134) {
  height: 13px;
  width: 13px;
  left: 72%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(135) {
  height: 19px;
  width: 19px;
  left: 57%;
  top: 25%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(136) {
  height: 12px;
  width: 12px;
  left: 46%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(137) {
  height: 14px;
  width: 14px;
  left: 99%;
  top: 90%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 21s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(138) {
  height: 12px;
  width: 12px;
  left: 87%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 25s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(139) {
  height: 18px;
  width: 18px;
  left: 40%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(140) {
  height: 14px;
  width: 14px;
  left: 97%;
  top: 91%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(141) {
  height: 20px;
  width: 20px;
  left: 22%;
  top: 53%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 36s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(142) {
  height: 16px;
  width: 16px;
  left: 83%;
  top: 90%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(143) {
  height: 16px;
  width: 16px;
  left: 24%;
  top: 37%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(144) {
  height: 20px;
  width: 20px;
  left: 61%;
  top: 18%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 38s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(145) {
  height: 19px;
  width: 19px;
  left: 20%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(146) {
  height: 22px;
  width: 22px;
  left: 36%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(147) {
  height: 11px;
  width: 11px;
  left: 60%;
  top: 10%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 36s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(148) {
  height: 16px;
  width: 16px;
  left: 9%;
  top: 48%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(149) {
  height: 25px;
  width: 25px;
  left: 35%;
  top: 5%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(150) {
  height: 14px;
  width: 14px;
  left: 75%;
  top: 87%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 28s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(151) {
  height: 20px;
  width: 20px;
  left: 66%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(152) {
  height: 11px;
  width: 11px;
  left: 55%;
  top: 22%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 38s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(153) {
  height: 15px;
  width: 15px;
  left: 95%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(154) {
  height: 20px;
  width: 20px;
  left: 76%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(155) {
  height: 18px;
  width: 18px;
  left: 22%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(156) {
  height: 20px;
  width: 20px;
  left: 25%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(157) {
  height: 24px;
  width: 24px;
  left: 25%;
  top: 81%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(158) {
  height: 14px;
  width: 14px;
  left: 84%;
  top: 1%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(159) {
  height: 16px;
  width: 16px;
  left: 78%;
  top: 1%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(160) {
  height: 17px;
  width: 17px;
  left: 6%;
  top: 7%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(161) {
  height: 22px;
  width: 22px;
  left: 6%;
  top: 55%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(162) {
  height: 24px;
  width: 24px;
  left: 38%;
  top: 28%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 31s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(163) {
  height: 24px;
  width: 24px;
  left: 95%;
  top: 57%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(164) {
  height: 25px;
  width: 25px;
  left: 30%;
  top: 53%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(165) {
  height: 15px;
  width: 15px;
  left: 7%;
  top: 81%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(166) {
  height: 15px;
  width: 15px;
  left: 62%;
  top: 47%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 33s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(167) {
  height: 18px;
  width: 18px;
  left: 98%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 27s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(168) {
  height: 21px;
  width: 21px;
  left: 74%;
  top: 80%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 27s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(169) {
  height: 23px;
  width: 23px;
  left: 9%;
  top: 5%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(170) {
  height: 16px;
  width: 16px;
  left: 39%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(171) {
  height: 12px;
  width: 12px;
  left: 91%;
  top: 76%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 35s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(172) {
  height: 16px;
  width: 16px;
  left: 58%;
  top: 7%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 40s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(173) {
  height: 16px;
  width: 16px;
  left: 14%;
  top: 26%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(174) {
  height: 22px;
  width: 22px;
  left: 17%;
  top: 73%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(175) {
  height: 18px;
  width: 18px;
  left: 30%;
  top: 35%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(176) {
  height: 19px;
  width: 19px;
  left: 82%;
  top: 10%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(177) {
  height: 23px;
  width: 23px;
  left: 52%;
  top: 98%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(178) {
  height: 24px;
  width: 24px;
  left: 73%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(179) {
  height: 13px;
  width: 13px;
  left: 35%;
  top: 25%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 30s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(180) {
  height: 20px;
  width: 20px;
  left: 83%;
  top: 16%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(181) {
  height: 22px;
  width: 22px;
  left: 18%;
  top: 93%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(182) {
  height: 15px;
  width: 15px;
  left: 12%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(183) {
  height: 11px;
  width: 11px;
  left: 49%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(184) {
  height: 15px;
  width: 15px;
  left: 94%;
  top: 83%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(185) {
  height: 23px;
  width: 23px;
  left: 57%;
  top: 99%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 24s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(186) {
  height: 25px;
  width: 25px;
  left: 44%;
  top: 19%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 30s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(187) {
  height: 16px;
  width: 16px;
  left: 28%;
  top: 36%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 22s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(188) {
  height: 23px;
  width: 23px;
  left: 74%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(189) {
  height: 14px;
  width: 14px;
  left: 93%;
  top: 54%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(190) {
  height: 16px;
  width: 16px;
  left: 39%;
  top: 68%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(191) {
  height: 16px;
  width: 16px;
  left: 72%;
  top: 71%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 31s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(192) {
  height: 24px;
  width: 24px;
  left: 41%;
  top: 77%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 33s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(193) {
  height: 11px;
  width: 11px;
  left: 24%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(194) {
  height: 19px;
  width: 19px;
  left: 94%;
  top: 62%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(195) {
  height: 13px;
  width: 13px;
  left: 62%;
  top: 47%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(196) {
  height: 13px;
  width: 13px;
  left: 44%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(197) {
  height: 18px;
  width: 18px;
  left: 7%;
  top: 71%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 34s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(198) {
  height: 12px;
  width: 12px;
  left: 40%;
  top: 40%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 33s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(199) {
  height: 13px;
  width: 13px;
  left: 87%;
  top: 76%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(200) {
  height: 25px;
  width: 25px;
  left: 7%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 33s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(201) {
  height: 14px;
  width: 14px;
  left: 60%;
  top: 96%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(202) {
  height: 19px;
  width: 19px;
  left: 65%;
  top: 83%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(203) {
  height: 15px;
  width: 15px;
  left: 72%;
  top: 34%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 22s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(204) {
  height: 23px;
  width: 23px;
  left: 4%;
  top: 84%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(205) {
  height: 21px;
  width: 21px;
  left: 20%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(206) {
  height: 22px;
  width: 22px;
  left: 69%;
  top: 37%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(207) {
  height: 11px;
  width: 11px;
  left: 79%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(208) {
  height: 11px;
  width: 11px;
  left: 73%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(209) {
  height: 16px;
  width: 16px;
  left: 78%;
  top: 47%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(210) {
  height: 25px;
  width: 25px;
  left: 73%;
  top: 45%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 40s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(211) {
  height: 22px;
  width: 22px;
  left: 99%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(212) {
  height: 16px;
  width: 16px;
  left: 77%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(213) {
  height: 22px;
  width: 22px;
  left: 18%;
  top: 19%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(214) {
  height: 13px;
  width: 13px;
  left: 43%;
  top: 6%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(215) {
  height: 22px;
  width: 22px;
  left: 74%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(216) {
  height: 16px;
  width: 16px;
  left: 15%;
  top: 88%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(217) {
  height: 22px;
  width: 22px;
  left: 85%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(218) {
  height: 18px;
  width: 18px;
  left: 59%;
  top: 62%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(219) {
  height: 25px;
  width: 25px;
  left: 91%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(220) {
  height: 20px;
  width: 20px;
  left: 45%;
  top: 93%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(221) {
  height: 21px;
  width: 21px;
  left: 10%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 22s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(222) {
  height: 25px;
  width: 25px;
  left: 34%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 36s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(223) {
  height: 18px;
  width: 18px;
  left: 91%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 38s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(224) {
  height: 25px;
  width: 25px;
  left: 19%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(225) {
  height: 20px;
  width: 20px;
  left: 85%;
  top: 74%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 32s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(226) {
  height: 15px;
  width: 15px;
  left: 73%;
  top: 77%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 29s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(227) {
  height: 15px;
  width: 15px;
  left: 2%;
  top: 81%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(228) {
  height: 20px;
  width: 20px;
  left: 34%;
  top: 7%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(229) {
  height: 17px;
  width: 17px;
  left: 64%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(230) {
  height: 23px;
  width: 23px;
  left: 98%;
  top: 78%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 22s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(231) {
  height: 19px;
  width: 19px;
  left: 86%;
  top: 24%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(232) {
  height: 24px;
  width: 24px;
  left: 81%;
  top: 64%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(233) {
  height: 13px;
  width: 13px;
  left: 80%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(234) {
  height: 16px;
  width: 16px;
  left: 7%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(235) {
  height: 12px;
  width: 12px;
  left: 18%;
  top: 86%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(236) {
  height: 21px;
  width: 21px;
  left: 84%;
  top: 24%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(237) {
  height: 17px;
  width: 17px;
  left: 62%;
  top: 97%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(238) {
  height: 16px;
  width: 16px;
  left: 98%;
  top: 95%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(239) {
  height: 12px;
  width: 12px;
  left: 20%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(240) {
  height: 11px;
  width: 11px;
  left: 8%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(241) {
  height: 17px;
  width: 17px;
  left: 90%;
  top: 11%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(242) {
  height: 16px;
  width: 16px;
  left: 17%;
  top: 9%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(243) {
  height: 17px;
  width: 17px;
  left: 82%;
  top: 83%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 29s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(244) {
  height: 13px;
  width: 13px;
  left: 50%;
  top: 9%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(245) {
  height: 24px;
  width: 24px;
  left: 30%;
  top: 39%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 33s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(246) {
  height: 13px;
  width: 13px;
  left: 70%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 21s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(247) {
  height: 24px;
  width: 24px;
  left: 13%;
  top: 95%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(248) {
  height: 18px;
  width: 18px;
  left: 52%;
  top: 4%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(249) {
  height: 24px;
  width: 24px;
  left: 6%;
  top: 26%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(250) {
  height: 22px;
  width: 22px;
  left: 93%;
  top: 48%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(251) {
  height: 24px;
  width: 24px;
  left: 34%;
  top: 69%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 30s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(252) {
  height: 25px;
  width: 25px;
  left: 73%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 37s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(253) {
  height: 15px;
  width: 15px;
  left: 21%;
  top: 78%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(254) {
  height: 21px;
  width: 21px;
  left: 34%;
  top: 78%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(255) {
  height: 23px;
  width: 23px;
  left: 93%;
  top: 51%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(256) {
  height: 24px;
  width: 24px;
  left: 71%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(257) {
  height: 15px;
  width: 15px;
  left: 50%;
  top: 71%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(258) {
  height: 17px;
  width: 17px;
  left: 64%;
  top: 95%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 24s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(259) {
  height: 11px;
  width: 11px;
  left: 62%;
  top: 74%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 28s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(260) {
  height: 14px;
  width: 14px;
  left: 47%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 27s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(261) {
  height: 16px;
  width: 16px;
  left: 59%;
  top: 52%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(262) {
  height: 17px;
  width: 17px;
  left: 28%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 29s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(263) {
  height: 19px;
  width: 19px;
  left: 61%;
  top: 51%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 28s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(264) {
  height: 19px;
  width: 19px;
  left: 31%;
  top: 63%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(265) {
  height: 12px;
  width: 12px;
  left: 84%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 33s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(266) {
  height: 18px;
  width: 18px;
  left: 75%;
  top: 32%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 33s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(267) {
  height: 12px;
  width: 12px;
  left: 6%;
  top: 79%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(268) {
  height: 14px;
  width: 14px;
  left: 51%;
  top: 4%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 35s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(269) {
  height: 12px;
  width: 12px;
  left: 30%;
  top: 16%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 38s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(270) {
  height: 17px;
  width: 17px;
  left: 59%;
  top: 65%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(271) {
  height: 14px;
  width: 14px;
  left: 29%;
  top: 39%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(272) {
  height: 23px;
  width: 23px;
  left: 63%;
  top: 44%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 27s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(273) {
  height: 14px;
  width: 14px;
  left: 27%;
  top: 99%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(274) {
  height: 17px;
  width: 17px;
  left: 17%;
  top: 45%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(275) {
  height: 17px;
  width: 17px;
  left: 79%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 37s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(276) {
  height: 21px;
  width: 21px;
  left: 45%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(277) {
  height: 23px;
  width: 23px;
  left: 62%;
  top: 35%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(278) {
  height: 22px;
  width: 22px;
  left: 47%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(279) {
  height: 15px;
  width: 15px;
  left: 37%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 39s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(280) {
  height: 25px;
  width: 25px;
  left: 100%;
  top: 36%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 28s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(281) {
  height: 13px;
  width: 13px;
  left: 55%;
  top: 44%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 34s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(282) {
  height: 24px;
  width: 24px;
  left: 85%;
  top: 51%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(283) {
  height: 15px;
  width: 15px;
  left: 9%;
  top: 13%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(284) {
  height: 21px;
  width: 21px;
  left: 53%;
  top: 57%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 22s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(285) {
  height: 23px;
  width: 23px;
  left: 10%;
  top: 26%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 32s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(286) {
  height: 17px;
  width: 17px;
  left: 79%;
  top: 5%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 38s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(287) {
  height: 25px;
  width: 25px;
  left: 43%;
  top: 33%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(288) {
  height: 25px;
  width: 25px;
  left: 29%;
  top: 90%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(289) {
  height: 11px;
  width: 11px;
  left: 32%;
  top: 67%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(290) {
  height: 21px;
  width: 21px;
  left: 64%;
  top: 48%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(291) {
  height: 25px;
  width: 25px;
  left: 17%;
  top: 69%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(292) {
  height: 17px;
  width: 17px;
  left: 76%;
  top: 61%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(293) {
  height: 19px;
  width: 19px;
  left: 62%;
  top: 54%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(294) {
  height: 20px;
  width: 20px;
  left: 19%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(295) {
  height: 14px;
  width: 14px;
  left: 99%;
  top: 24%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 39s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(296) {
  height: 17px;
  width: 17px;
  left: 7%;
  top: 93%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 35s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(297) {
  height: 14px;
  width: 14px;
  left: 50%;
  top: 55%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 31s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(298) {
  height: 23px;
  width: 23px;
  left: 14%;
  top: 46%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(299) {
  height: 21px;
  width: 21px;
  left: 52%;
  top: 17%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(300) {
  height: 16px;
  width: 16px;
  left: 26%;
  top: 91%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 40s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(301) {
  height: 15px;
  width: 15px;
  left: 10%;
  top: 13%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 25s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(302) {
  height: 11px;
  width: 11px;
  left: 8%;
  top: 51%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 36s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(303) {
  height: 24px;
  width: 24px;
  left: 24%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 38s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(304) {
  height: 12px;
  width: 12px;
  left: 38%;
  top: 85%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(305) {
  height: 25px;
  width: 25px;
  left: 43%;
  top: 75%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 39s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(306) {
  height: 16px;
  width: 16px;
  left: 70%;
  top: 78%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(307) {
  height: 18px;
  width: 18px;
  left: 45%;
  top: 68%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 26s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(308) {
  height: 13px;
  width: 13px;
  left: 75%;
  top: 42%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(309) {
  height: 13px;
  width: 13px;
  left: 43%;
  top: 53%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(310) {
  height: 19px;
  width: 19px;
  left: 36%;
  top: 52%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 26s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(311) {
  height: 14px;
  width: 14px;
  left: 47%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(312) {
  height: 23px;
  width: 23px;
  left: 9%;
  top: 86%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 32s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(313) {
  height: 19px;
  width: 19px;
  left: 47%;
  top: 8%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 37s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(314) {
  height: 24px;
  width: 24px;
  left: 45%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(315) {
  height: 19px;
  width: 19px;
  left: 64%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(316) {
  height: 15px;
  width: 15px;
  left: 20%;
  top: 29%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 34s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(317) {
  height: 21px;
  width: 21px;
  left: 25%;
  top: 58%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(318) {
  height: 11px;
  width: 11px;
  left: 29%;
  top: 28%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(319) {
  height: 13px;
  width: 13px;
  left: 96%;
  top: 1%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 30s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(320) {
  height: 11px;
  width: 11px;
  left: 67%;
  top: 15%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(321) {
  height: 17px;
  width: 17px;
  left: 63%;
  top: 36%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(322) {
  height: 20px;
  width: 20px;
  left: 40%;
  top: 66%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 34s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(323) {
  height: 19px;
  width: 19px;
  left: 16%;
  top: 20%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 40s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(324) {
  height: 18px;
  width: 18px;
  left: 25%;
  top: 65%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(325) {
  height: 20px;
  width: 20px;
  left: 39%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 33s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(326) {
  height: 16px;
  width: 16px;
  left: 28%;
  top: 16%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 28s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(327) {
  height: 16px;
  width: 16px;
  left: 97%;
  top: 35%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(328) {
  height: 19px;
  width: 19px;
  left: 88%;
  top: 14%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 30s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(329) {
  height: 15px;
  width: 15px;
  left: 16%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 22s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(330) {
  height: 14px;
  width: 14px;
  left: 33%;
  top: 43%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(331) {
  height: 16px;
  width: 16px;
  left: 30%;
  top: 89%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 22s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(332) {
  height: 23px;
  width: 23px;
  left: 68%;
  top: 50%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(333) {
  height: 16px;
  width: 16px;
  left: 20%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 32s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(334) {
  height: 20px;
  width: 20px;
  left: 84%;
  top: 9%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(335) {
  height: 21px;
  width: 21px;
  left: 82%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(336) {
  height: 21px;
  width: 21px;
  left: 35%;
  top: 38%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(337) {
  height: 23px;
  width: 23px;
  left: 32%;
  top: 62%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(338) {
  height: 16px;
  width: 16px;
  left: 1%;
  top: 3%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 33s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(339) {
  height: 12px;
  width: 12px;
  left: 81%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 38s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(340) {
  height: 17px;
  width: 17px;
  left: 69%;
  top: 13%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 40s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(341) {
  height: 14px;
  width: 14px;
  left: 11%;
  top: 69%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(342) {
  height: 23px;
  width: 23px;
  left: 55%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 25s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(343) {
  height: 22px;
  width: 22px;
  left: 66%;
  top: 80%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 39s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(344) {
  height: 23px;
  width: 23px;
  left: 23%;
  top: 19%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 28s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(345) {
  height: 12px;
  width: 12px;
  left: 73%;
  top: 72%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 23s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(346) {
  height: 12px;
  width: 12px;
  left: 35%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 21s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(347) {
  height: 17px;
  width: 17px;
  left: 96%;
  top: 95%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 21s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(348) {
  height: 16px;
  width: 16px;
  left: 93%;
  top: 26%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 37s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(349) {
  height: 20px;
  width: 20px;
  left: 39%;
  top: 53%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 23s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(350) {
  height: 21px;
  width: 21px;
  left: 39%;
  top: 91%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 32s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(351) {
  height: 22px;
  width: 22px;
  left: 88%;
  top: 30%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 22s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(352) {
  height: 21px;
  width: 21px;
  left: 44%;
  top: 64%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 33s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(353) {
  height: 15px;
  width: 15px;
  left: 9%;
  top: 80%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 38s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(354) {
  height: 15px;
  width: 15px;
  left: 17%;
  top: 27%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(355) {
  height: 25px;
  width: 25px;
  left: 70%;
  top: 2%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 40s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(356) {
  height: 21px;
  width: 21px;
  left: 72%;
  top: 100%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 24s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(357) {
  height: 14px;
  width: 14px;
  left: 18%;
  top: 37%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 32s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(358) {
  height: 22px;
  width: 22px;
  left: 48%;
  top: 10%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(359) {
  height: 19px;
  width: 19px;
  left: 86%;
  top: 79%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 24s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(360) {
  height: 12px;
  width: 12px;
  left: 48%;
  top: 13%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 1s;
  animation-duration: 21s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(361) {
  height: 14px;
  width: 14px;
  left: 86%;
  top: 46%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 33s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(362) {
  height: 12px;
  width: 12px;
  left: 19%;
  top: 5%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(363) {
  height: 11px;
  width: 11px;
  left: 47%;
  top: 45%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 40s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(364) {
  height: 13px;
  width: 13px;
  left: 64%;
  top: 63%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(365) {
  height: 24px;
  width: 24px;
  left: 17%;
  top: 60%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 23s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(366) {
  height: 11px;
  width: 11px;
  left: 26%;
  top: 51%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 30s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(367) {
  height: 19px;
  width: 19px;
  left: 93%;
  top: 94%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 36s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(368) {
  height: 25px;
  width: 25px;
  left: 99%;
  top: 31%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 36s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(369) {
  height: 20px;
  width: 20px;
  left: 49%;
  top: 30%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(370) {
  height: 11px;
  width: 11px;
  left: 40%;
  top: 19%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 39s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(371) {
  height: 14px;
  width: 14px;
  left: 4%;
  top: 90%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 24s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(372) {
  height: 23px;
  width: 23px;
  left: 96%;
  top: 73%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 31s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(373) {
  height: 22px;
  width: 22px;
  left: 42%;
  top: 77%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(374) {
  height: 11px;
  width: 11px;
  left: 44%;
  top: 8%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 37s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(375) {
  height: 12px;
  width: 12px;
  left: 59%;
  top: 92%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 32s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(376) {
  height: 23px;
  width: 23px;
  left: 79%;
  top: 96%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.9s;
  animation-duration: 40s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(377) {
  height: 20px;
  width: 20px;
  left: 15%;
  top: 86%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(378) {
  height: 24px;
  width: 24px;
  left: 46%;
  top: 65%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.8s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(379) {
  height: 19px;
  width: 19px;
  left: 97%;
  top: 23%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 22s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(380) {
  height: 13px;
  width: 13px;
  left: 4%;
  top: 59%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(381) {
  height: 19px;
  width: 19px;
  left: 4%;
  top: 85%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 27s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(382) {
  height: 15px;
  width: 15px;
  left: 75%;
  top: 44%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 34s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(383) {
  height: 21px;
  width: 21px;
  left: 21%;
  top: 89%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 37s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(384) {
  height: 23px;
  width: 23px;
  left: 30%;
  top: 54%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(385) {
  height: 11px;
  width: 11px;
  left: 51%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.5s;
  animation-duration: 28s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(386) {
  height: 19px;
  width: 19px;
  left: 30%;
  top: 12%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 26s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(387) {
  height: 20px;
  width: 20px;
  left: 43%;
  top: 36%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 31s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(388) {
  height: 13px;
  width: 13px;
  left: 92%;
  top: 21%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 37s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(389) {
  height: 20px;
  width: 20px;
  left: 14%;
  top: 18%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 26s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(390) {
  height: 22px;
  width: 22px;
  left: 66%;
  top: 56%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.1s;
  animation-duration: 28s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(391) {
  height: 25px;
  width: 25px;
  left: 42%;
  top: 55%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 35s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(392) {
  height: 14px;
  width: 14px;
  left: 25%;
  top: 34%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.4s;
  animation-duration: 30s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(393) {
  height: 19px;
  width: 19px;
  left: 12%;
  top: 73%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 39s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(394) {
  height: 15px;
  width: 15px;
  left: 34%;
  top: 96%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 21s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(395) {
  height: 13px;
  width: 13px;
  left: 97%;
  top: 76%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.3s;
  animation-duration: 29s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(396) {
  height: 22px;
  width: 22px;
  left: 68%;
  top: 71%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 29s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(397) {
  height: 20px;
  width: 20px;
  left: 10%;
  top: 15%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.7s;
  animation-duration: 23s;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(398) {
  height: 25px;
  width: 25px;
  left: 100%;
  top: 87%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 32s;
  animation-name: float2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(399) {
  height: 13px;
  width: 13px;
  left: 23%;
  top: 57%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.2s;
  animation-duration: 39s;
  animation-name: floatReverse2;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.particle:nth-child(400) {
  height: 24px;
  width: 24px;
  left: 71%;
  top: 52%;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  animation-delay: 0.6s;
  animation-duration: 37s;
  animation-name: floatReverse;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

#home {
  margin-bottom: 6rem;
  background: url(../img) left top no-repeat;
  padding: 0px 0;
}

.typed-cursor {
  font-size: 30px;
  color: #80B6D0;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: #80B6D0;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #80B6D0;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #80B6D0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
  }
}


.hero_section {
  width: 100%;
  float: left;
  background-image: url(../img/banner.png);
  height: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 345px;
  padding-top: 200px;
}


.play_icon_main {
  width: 100%;
  margin-top: 150px;
  float: left;
}

.play_icon {
  width: 200px;
  margin: 0 auto;
  z-index: 5;
}

.play_icon::before {
  content: '';
  position: absolute;
  top: 49%;
  left: 70px;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 100%;
  z-index: -1;
  animation: fadeEffect 1.3s infinite ease;
  box-shadow: 0px 0px 10px 0px;
  right: inherit;
}

@keyframes fadeEffect {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1
  }
  100% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0;
  }
}

canvas {
  -webkit-filter: url("#turbulence");
  filter: url("#turbulence");
  position: fixed;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n + 1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n + 1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n + 1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n + 1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #80B6D0;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n + 1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #80B6D0;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #80B6D0;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: #80B6D0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #80B6D0;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #80B6D0;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #80B6D0;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 60%;
}
.timeline__event--type2:after {
  background: #1C3144;
}
.timeline__event--type2 .timeline__event__date {
  color: #fff;
  background: #1C3144;
}
.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:after {
  background: #1C3144;
}
.timeline__event--type2 .timeline__event__icon {
  background: #1C3144;
  color: #fff;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #1C3144;
}
.timeline__event--type2 .timeline__event__title {
  color: #1C3144;
}
.timeline__event--type3:after {
  background: #C6A75E;
}
.timeline__event--type3 .timeline__event__date {
  color: #fff;
  background-color: #C6A75E;
}
.timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:after {
  background: #C6A75E;
}
.timeline__event--type3 .timeline__event__icon {
  background: #C6A75E;
  color: #fff;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #C6A75E;
}
.timeline__event--type3 .timeline__event__title {
  color: #C6A75E;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}
@media (max-width: 786px) {
  .certificate-s {
    margin: 0 0px !important;
}
 
  .timeline__event {
    flex-direction: column;
    align-self: center;
    width: 100%;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}


.testimonial p {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 35px;
}
.testimonial .name {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 35px;
  text-align: left;
}
.testimonial .designation {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
  opacity: 0.65;
}
.unt {
  margin-bottom: 20px;
  margin-top: 60px;
}
.hero-text {
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #fff;
}
.gallery-thumbs {
  height: 100%;
}
.gallery-thumbs .swiper-wrapper {
  align-items: center;
}
.gallery-thumbs .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px !important;
  height: 330px;
  position: relative;
}
.gallery-thumbs .swiper-slide img {
  filter: contrast(0.5) blur(1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-thumbs .swiper-slide-active img {
  filter: contrast(1) blur(0px) !important;
}
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.flex-row .flex-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}


.testimonial-section .quote {
   width: 75%;
   height: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   padding-left: 100px;
   padding-right: 100px;
}
.swiper-container.testimonial {
   height: 100vh;
}
.testimonial-section .user-saying {
   background: #80B6D0;
   width: 60%;
   color: #fff;
   height: 100%;
}
.testi-user-img {
   width: 40%;
}
.testimonial-section {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   width: 100%;
   height: 100%;
}
.testimonial-section .quote p {
   font-size: 20px;
   font-weight: 300;
   line-height: 1.8;
   font-style: italic;
   margin: 0;
}
.quote-icon {
   width: 38px;
   display: block;
   margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 5vw;
  padding: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
}

.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}       

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 50%;      
}

.card__title {
  font-size: 18px;
  margin: 0 0 .3em;
  color: #6A515E;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";  
  font-size: .8em; 
  color: #D7BDCA;  
}

.card__status {
  font-size: .8em;
  color: #D7BDCA;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #D7BDCA;
  font-family: "MockFlowFont";   
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

button {
  margin: 20px;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-3 {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}



.navmenu {
  z-index: 999;
  padding: 0px;
}


.article a {
  color: #5b7abb;
  display: block;
}

.article h4 {
  font-weight: 600;
  color: #56ceba;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.articles-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 150px;
}

.article {
  background: #fff;
  margin: 20px;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #e7e7e7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.article:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.article i {
  font-size: 3.45rem;
  margin: 1rem 0;
  text-align: center;
}

.article1 i,
.article1 h4,
.article1 .cta {
  color: #80B6D0 ;
  text-align: center;
}

.article1:hover {
  border: 2px solid #80B6D0 ;
}
.certificate-s{
  margin: 0 150px;
}
.certificate {
  width: 100%;
  margin: 20px auto;
  position: relative
}
.certificate img {
  width: 100%;
  height: auto
}
.certificate .btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  border: none;
  border-radius: 4px;
  background-color: #80B6D0;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 3px 5px 15px 5px rgba(3,3,3,.3)
}
.certificate .btn:hover {
  background-color: #1C3144;
  color: #fff;
  box-shadow: 3px 5px 5px 0px rgba(3,3,3,.3);
}
.certificate .btn::after {
  content:'\00bb';
  font-size: 110%;
  transition: all 0.3s;
  opacity: 0;
}
.certificate .btn:hover::after {
  margin-left: 20px;
  opacity: 1;
}
.certificate a{
  color:#fff;
}