/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Lora:wght@500;600&family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro&family=JetBrains+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #ffd54f;
  --first-color-alt: #6b7280;
  --title-color: white;
  --text-color: white;
  --text-color-light: hsl(19, 8%, 55%);
  --body-color: #000212;
  --container-color: #0a192f;


  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Space Grotesk", sans-serif;
  --title-font: "Space Grotesk", sans-serif;
  --subtitle-font: "Space Grotesk", sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3,
p {
  color: white;
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.nav__buttons {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

/*REUSABLE CSS CLASSES */

.container {
  max-width: 1024px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 0.2rem;
}

.section {
  padding-block: 3rem 1rem;
}

.section__title {
  font-size:90px;
  margin-bottom: 5.5rem;
  margin-top: 5.5rem;
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: "Space Grotesk", sans-serif;
}

@media only screen and (max-width: 767px){
  .section__title {
    font-size:50px;
    margin-bottom: 5.5rem;
    margin-top: 5.5rem;
    color: white;
    text-align: center;
    font-weight: bold;
    font-family: var(--title-font);
  }
}

.section__subtitle {
  display: block;
  font-size: var(--h2-font-size);
  font-family: var(--title-font);
  color: white;
  margin-bottom: 0.5rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.main {
  overflow: hidden;
  /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: -1;
  left: 0;
  margin-bottom: 0px;
  z-index: var(--z-fixed);
  background: linear-gradient(to bottom, #000212, #0c0c23, rgba(21, 28, 102, 0.7));
  border: blur(4px);
  box-shadow: 0px 3.89851px 30px rgba(0, 0, 0, 0.17),
    0px 11.1386px 71.2871px rgba(30, 40, 146, 0.7);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle,
.nav__close {
  display: flex;
  color: var(--title-color);
}

.nav__logo {
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav__logo img {
  width: 26px;
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    box-shadow: 0 8px 20px hsla(19, 64%, 24%, 0.1);
    padding-block: 3.5rem;
    transition: top 0.4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: color 0.4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__img-1,
.nav__img-2 {
  position: absolute;
  opacity: 0.2;
}

.nav__img-1 {
  width: 100px;
  top: 0.75rem;
  left: -2rem;
  transform: rotate(165deg);
}

.nav__img-2 {
  width: 50px;
  right: -1rem;
  bottom: 0;
  transform: rotate(-30deg);
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.bg-header {
  box-shadow: 0 2px 8px hsla(19, 64%, 24%, 0.1);
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  margin-top: 0;
}

.home__container {
  row-gap: 3rem;
  padding-top: 2rem;
  
}

.home__img {
  width: 300px;
  justify-self: center;
}

.home__data {
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: white;
}

.home__title img {
  width: 40px;
}

.home__title div {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.home__description {
  padding: 0 1rem;
  margin-bottom: 2.5rem;
  color: white;
}

.home__leaf-1,
.home__leaf-2 {
  position: absolute;
  opacity: 0.5;
}

.home__leaf-1 {
  width: 80px;
  top: 8rem;
  left: -1rem;
  transform: rotate(90deg);
}

.home__leaf-2 {
  width: 200px;
  right: -2rem;
  bottom: 1rem;
  transform: rotate(-15deg);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  color: #fff;
  font: weight 400px;
  background-color: #455eb5;
  border-radius: 8px;
  border: none;
  box-shadow: #0c0c23;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.button i {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.button:hover {
  background-color: var(--first-color-alt);
  box-shadow: 0px 0px 10px rgba(209, 209, 209, 0.5);
}

.button:hover i {
  transform: translateX(0.25rem);
}

/*=============== ABOUT ===============*/
.about {
  position: relative;
}

.about__container {
  row-gap: 1rem;
}

.about__data {
  text-align: center;
}

.about__title img {
  width: 30px;
}

.about__title div {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}

.about__img {
  width: 300px;
  justify-self: center;
}



/*=============== POPULAR ===============*/
.popular__container {
  padding-top: 4rem;
  grid-template-columns: 250px;
  justify-content: center;
  row-gap: 5.5rem;
}
.popular__container__center {
  padding-top: 4rem;
  grid-template-columns: 250px;
  justify-content: center;
  row-gap: 5.5rem;
}

.popular__card {
  position: relative;
  background: linear-gradient(to bottom, #000212, #0c0c23, #000212);
  padding: 7rem 2rem 1.5rem;
  box-shadow: 0 8px 20px hsla(19, 64%, 48%, 0.08);
  border-radius: 1rem;
  text-align: center;
  transition: background 0.5s;
  /* for dark mode animation */
}

.popular__img {
  width: 200px;
  height: 200px;
  position: absolute;
  padding-top: 30px;
  inset: 0;
  top: -6.5rem;
  margin-top: 20px;
  margin: 0 auto;
  transition: transform 0.4s;
}

.popular__name {
  font-size: var(--h3-font-size);
  font-family: var(--title-font);
  margin-bottom: 0.25rem;
  color: white;
}

.popular__description {
  display: block;
  font-size: var(--smaller-font-size);
  margin-bottom: 1rem;
  font-family: var(--subtitle-font);
}

.popular__price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: var(--first-color);
}

.popular__button {
  display: flex;
  background-color: var(--first-color);
  padding: 6px;
  border-radius: 50%;
  border: none;
  outline: none;
  color: aliceblue;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px hsla(19, 64%, 20%, 0.2);
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.popular__button:hover {
  background-color: var(--first-color-alt);
}

.popular__card:hover .popular__img {
  transform: translateY(-0.25rem);
}

/*=============== RECENTLY ===============*/
.recently {
  position: relative;
}

.recently__container {
  row-gap: 4rem;
}

.recently__data {
  position: relative;
  text-align: center;
}

.recently__description {
  margin-bottom: 2rem;
}

.recently__data-img {
  width: 25px;
  position: absolute;
  top: 3.5rem;
  right: 1.5rem;
  transform: rotate(30deg);
}

.recently__img {
  width: 300px;
  justify-self: center;
}

.recently__leaf-1,
.recently__leaf-2 {
  position: absolute;
  opacity: 0.2;
}

.recently__leaf-1 {
  width: 80px;
  top: 17rem;
  left: -1rem;
  transform: rotate(15deg);
}

.recently__leaf-2 {
  width: 40px;
  right: -1rem;
  bottom: 12rem;
  transform: rotate(30deg);
}

/*=============== NEWSLETTER ===============*/
.letter__container {
  position: relative;
  align-items: center;
  justify-content: center;


}

.newsletter__content {
  position: relative;
  background-color: #0c0c23;
  border-radius: 2.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5;
  text-align: center;
  overflow: hidden;
  margin-bottom: 1rem;
  margin: 0 auto;
  max-width: 800px;

}

.newsletter__img {
  width: 250px;
  top: -0.5rem;
  margin-left: 130px;

}


@media only screen and (max-width: 767px) {
  .newsletter__img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* centers the container horizontally */
  }
  
  .section__subtitle {
    text-align: left;
  }
}


.newsletter__data .section__title {
  color: white;
  margin-bottom: 1rem;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.newsletter__data {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
}

.newsletter__form {
  background-color: #fff;
  padding: 5px 5px 5px 16px;
  border-radius: 4rem;
  display: flex;
  column-gap: 0.5rem;
}

.newsletter__button {
  font-family: var(--body-font);
  border: none;
  outline: none;
}

.newsletter__input {
  width: 90%;
  color: var(--text-color);
  outline: none;
  border: none;
}

.newsletter__button {
  cursor: pointer;
}

.newsletter__spinach {
  width: 30px;
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  transform: rotate(55deg);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: #000212;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #000212;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000212;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 3rem;
  background-color: var(--container-color);
  box-shadow: 0 4px 12px hsla(19, 64%, 24%, 0.1);
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 0.25rem;
  font-size: 1.1rem;
  color: var(--first-color);
  z-index: var(--z-tooltip);
  transition: bottom 0.3s, transform 0.3s, background 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section {
    padding-block: 4rem 1;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__leaf-1 {
    top: 5rem;
  }

  .home__leaf-2 {
    bottom: 0;
  }

  .about__leaf {
    bottom: 8rem;
  }

  .recently__data-img {
    right: 0.5rem;
  }

  .newsletter__content {
    padding: 6rem 1rem 2rem;
  }

  .newsletter__form {
    flex-direction: column;
    background: none;
    row-gap: 1rem;
  }

  .newsletter__input {
    width: initial;
    padding: 1rem;
    border-radius: 4rem;
  }

  .newsletter__button {
    justify-content: center;
  }

  .footer__content {
    gap: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {

  .home__container,
  .about__container,
  .recently__container,
  .newsletter__content {
    grid-template-columns: 0.7fr;
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 767px) {
  .nav {
    column-gap: 3rem;

  }

  .nav__toggle,
  .nav__close,
  .nav__img-1,
  .nav__img-2 {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__menu {
    margin-left: auto;
  }

  .dark-theme .nav__menu {
    box-shadow: none;
  }

  .popular__container {
    grid-template-columns: repeat(2, 240px);
  }

  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .section {
    padding-block: 1.5rem 1.5rem;
  }

  .section__subtitle {
    margin-bottom: 0.75rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .home__container {
    position: relative;
    grid-template-columns: 480px 500px;
    padding-block: 7rem 3rem;
  }

  .home__data {
    text-align: initial;
    order: -1;
  }

  .home__title img {
    width: 60px;
  }

  .home__title div {
    justify-content: initial;
    column-gap: 1rem;
  }

  .home__description {
    padding-inline: 0 10rem;
  }

  .home__img {
    width: 600px;
    position: absolute;
    top: 5rem;
    right: -2rem;
  }

  .about__container {
    grid-template-columns: 450px 360px;
    align-items: center;
    column-gap: 7rem;
  }

  .about__data {
    order: 1;
  }

  .about__data,
  .about .section__subtitle,
  .about .section__title {
    text-align: initial;
  }

  .about__title div {
    column-gap: 1rem;
    justify-content: initial;
  }

  .about__title img {
    width: 50px;
  }

  .about__img {
    width: 450px;
  }

  .popular__container {
    grid-template-columns: repeat(3, 262px);
    column-gap: 3.5rem;
    padding-block: 6rem 4rem;
  }

  .popular__card {
    padding: 7.5rem 2rem 2rem;
    border-radius: 1.5rem;
  }

  .popular__img {
    width: 230px;
  }

  .popular__button {
    bottom: 2rem;
  }

  .recently__container {
    grid-template-columns: 350px 480px;
    align-items: center;
    column-gap: 7rem;
    padding-bottom: 2rem;
  }

  .recently__data,
  .recently .section__subtitle,
  .recently .section__title {
    text-align: initial;
  }

  .recently__data-img {
    width: 30px;
    top: 5.5rem;
    right: 2.5rem;
  }

  .recently__img {
    width: 480px;
  }

  .newsletter__content {
    grid-template-columns: 350px 360px;
    align-items: center;
    column-gap: 6rem;
    padding: 2.5rem;
    border-radius: 4.5rem;
    box-shadow: 0px 3.89851px 30px rgba(0, 0, 0, 0.17), 0px 11.1386px 71.2871px rgba(30, 40, 146, 0.7);
  }

  .newsleter__img {
    position: initial;
    width: 350px;
  }

  .newsletter .section__subtitle,
  .newsletter .section__title {
    text-align: initial;
  }

  .newsletter .section__title {
    margin-bottom: 2.5rem;
  }

  .newsletter__form {
    padding: 8px 8px 8px 24px;
  }

  .newsletter__button {
    font-size: var(--normal-font-size);
  }

  .newsletter__spinach {
    width: 40px;
    right: 5rem;
    bottom: -2.5rem;
  }

  .scrollup {
    right: 3rem;
  }
}

@media screen and (min-width: 1064px) {
  .container {
    margin-inline: auto;
  }
}

@media screen and (min-width: 1280px) {
  .home__leaf-1 {
    width: 150px;
    top: 5rem;
  }

  .home__leaf-2 {
    width: 180px;
    right: -4rem;
  }

  .about__leaf {
    width: 200px;
    bottom: 3rem;
  }

  .recently__leaf-1 {
    width: 150px;
    top: 19rem;
  }

  .recently__leaf-2 {
    width: 100px;
    bottom: 15rem;
  }



  .newsletter__img {
    width: 250px;
    position: relative;
    left: -8rem;
  }

  .newsletter__content {
    grid-template-columns: 198px 390px;
    align-items: center;
    /* column-gap: 6rem; */
    padding: 2.5rem;
    border-radius: 4.5rem;
  }
}

/*Timeline*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.timeline-head {
  align-items: center;
  text-align: center;
}

.timeline ul {
  padding: 50px 30px;
  align-items: center;
  text-align: center;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  font-family: var(--subtitle-font);
  align-items: center;
  text-align: center;
}

.timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #0a192f transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #0a192f;
}

time {
  display: block;
  font-family: var(--subtitle-font);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #f8f8f5;
  box-shadow: 10px 10px 300px #d215eb, 0px 0px 100px #340b6b,
    0px 0px 200px #174acf;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }

  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }

  .timeline ul li div {
    width: calc(100vw - 91px);
  }

  .timeline ul li:nth-child(even) div {
    left: 45px;
  }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #4f86f7 transparent transparent;
  }
}

/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%);
}

.timeline-heptagon ul li::after {
  clip-path: polygon(50% 0%,
      90% 20%,
      100% 60%,
      75% 100%,
      25% 100%,
      0% 60%,
      10% 20%);
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.25);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

/*FAQ*/

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq {
  margin: 20px 20px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq.active {
  background-color: #0a192f9c;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::before,
.faq.active::after {
  content: "\f075";
  font-family: "Font Awesome 5 Free";
  color: #2ecc71;
  font-size: 7rem;
  position: absolute;
  opacity: 0.2;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.faq.active::before {
  color: #3498db;
  top: -10px;
  left: -30px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
  font-family: "Clash Display";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
  font-family: "Clash Display";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  color: white;
}

.faq-toggle:focus {
  outline: 0;
}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #ffffff;
  display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

/*_______________________Team________________________*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

/***** Layout & Section Title *****/


.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}



.section-title {
  width: 100%;
  text-align: center;
  padding: 45px 0 30px 0;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 5px;
  left: calc(50% - 25px);
  background: #fff;
}

.section-title h1 {
  color: #fff;
  font-size: 50px;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .section-title h1 {
    font-size: 40px;
    letter-spacing: 3px;
  }
}

@media (max-width: 567.98px) {
  .section-title h1 {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

/* footer section start */

.footer-section {
  background: #000212;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.single-cta a:hover i, 
  .single-cta a:focus i {
    color: red;
  }

  .single-cta:hover i {
    color: red;
  }
.cta-text {
  padding-left: 15px;
  display: inline-block;
  color: rgb(255, 255, 255);
}

.cta-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  font-size: 15px;
}


.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-widget ul li a:hover {
  color: #ffd54f;
}

@media only screen and (max-width: 767px) {
  .single-cta{
    margin-left: 20px;
  }
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.instagram-bg,
.twitter-bg,
.youtube-bg {
  background: #455eb5;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ffd54f;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.copyright-area {
  background: #0c0c23;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

/*Prizes*/

.outer-containerprize {
  margin: 100px auto 0 auto;
  width: 100%;
  max-width: 500px;
}

.containerprize {
  width: 200px;
  height: 250px;
  border-radius: 10px;
  float: left;
  position: relative;
  top: 0;
  z-index: 1;
  box-shadow: 0 5px 10px 0px #3c385c;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media only screen and (max-width: 480px) {
  .containerprize {
    width: 120px;
    height: 120px;
    margin-left: 70px;
  }

  .activeprize {
    height: 200px;
  }
}

.container1prize {
  background: #5967c3;
  background: -webkit-linear-gradient(left top, #5967c3, #83cedc);
  background: linear-gradient(to bottom right, #5967c3, #83cedc);
}

.container2prize {
  background: #ffaec2;
  background: -webkit-linear-gradient(left top, #ffaec2, #7e4aaf);
  background: linear-gradient(to bottom right, #ffaec2, #7e4aaf);
  margin-left: -50px;
  z-index: 2;
}

.container3prize {
  background: #ca619c;
  background: -webkit-linear-gradient(left top, #ca619c, #dbc084);
  background: linear-gradient(to bottom right, #ca619c, #dbc084);
  margin-left: -50px;
}

.activeprize {
  z-index: 3;
  top: -25px;
  height: 300px;
}

@media only screen and (max-width: 480px) {
  .activeprize {
    height: 200px;
  }
}

.title {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 15px;
}

@media only screen and (max-width: 480px) {
  .title {
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
  }
}

.title::after {
  content: "";
  display: block;
  height: 3.5px;
  width: 13px;
  background-color: #fff;
  border-radius: 15px;
  margin: 5px auto 0 auto;
}

@media only screen and (max-width: 480px) {
  .title::after {
    content: "";
    display: block;
    height: 3.5px;
    width: 13px;
    background-color: #fff;
    border-radius: 15px;
    margin: 5px auto 0 auto;
  }
}

.main_number {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11rem;
  color: #ffffff;
  opacity: 0.2;
  font-weight: 800;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main_number::before {
  content: "£";
  font-size: 2rem;
  position: absolute;
  top: 40px;
  left: 40px;
}

.activeprize .main_number {
  top: 45%;
}

.containerprize a {
  text-decoration: none;
  color: #3c385c;
  font-weight: 800;
  font-size: 0.7rem;
  background-color: #fff;
  width: 170px;
  line-height: 40px;
  display: block;
  border-radius: 30px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.containerprize a span {
  opacity: 0.6;
}

.activeprize a {
  bottom: -20px;
}

.activeprize a span {
  opacity: 1;
}

.containerprize_text {
  position: absolute;
  top: 82%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media only screen and (max-width: 480px) {
  .containerprize_text {
    position: absolute;
    top: 82%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.activeprize .container_text {
  top: 65%;
}

.containerprize_text span {
  display: block;
}

.containerprize_text1 {
  font-size: 0.9rem;
}

.containerprize_text2 {
  font-size: 2.5rem;
}

@media only screen and (max-width: 480px) {
  .containerprize_text1 {
    font-size: 0.8rem;
  }

  .containerprize_text2 {
    font-size: 1.5rem;
  }
}

/*Home*/

/*slider*/
.slider {
  width: 100%;
}

.slider_image{
  width: 150px;
   height: 150px;
   margin: 30px;
}

.slider input {
  display: none;
}

.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 600px;
  perspective: 1000px;
  overflow: hidden;

}

.testimonials .item {
  width: 300px;
  padding:5px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.4s;
  user-select: none;
  cursor: pointer;
  box-shadow: 0px 3.89851px 30px rgba(32, 31, 31, 0.17), 0px 11.1386px 71.2871px rgba(7, 12, 67, 0.7);
 background: #0c0c23;
 background: linear-gradient(to bottom, #000212, #000000, #000212);
 font-weight: bolder;
 margin-top: 40px;
border: 1px solid white;
border-radius: 30px;
}

.prizehead{
    color: white;
    margin-top: 10px;
    font-weight:90px;
    font-family:"Space Grotesk", sans-serif;
    font-size: xx-large;

}
.prizeamt{
  margin-top: 10px;
  font-size: 60px;
  font-weight: 50px;
  font-family: "Helvetica"; 
  src: url("//db.onlinewebfonts.com/t/86f80c2b3e0f3f67d24a4176f769ea0e.eot");
  /*font-family: Arial, Helvetica, sans-serif;*/
  text-shadow: 2px 2px #0c0c23;
}

.prizeamt_team{
  margin-top: 10px;
  font-size: 40px;
  font-weight: 50px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 2px 2px #0c0c23;
}

@media only screen and (max-width: 767px){

  .prizeamt_team{
    margin-top: 10px;
    font-size: 45px;
    font-weight: 50px;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px #0c0c23;
  }
}


.prizedes{
  color: white;
  margin-top: 10px;
  font-size: 20px;
  font-family:"Roboto";
  padding: 20px;

}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

@media only screen and (max-width: 767px){
  .dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}

.dots label {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #413b52;
  margin: 7px;
  transition-duration: 0.2s;

}

#t-1:checked~.dots label[for="t-1"],
#t-2:checked~.dots label[for="t-2"],
#t-3:checked~.dots label[for="t-3"] {
  transform: scale(2);
  background-color: #fff;
  box-shadow: 0px 0px 0px 3px #dddddd24;
}

#t-1:checked~.dots label[for="t-2"],
#t-2:checked~.dots label[for="t-1"],
#t-2:checked~.dots label[for="t-3"],
#t-3:checked~.dots label[for="t-2"] {
  transform: scale(1.5);
}

#t-1:checked~.testimonials label[for="t-2"],
#t-2:checked~.testimonials label[for="t-3"],
#t-3:checked~.testimonials label[for="t-1"] {
  transform: translate3d(300px, 0, -90px) rotateY(-15deg);
  z-index: 3;
  filter: blur(5px);
}

#t-2:checked~.testimonials label[for="t-1"],
#t-3:checked~.testimonials label[for="t-2"],
#t-1:checked~.testimonials label[for="t-3"] {
  transform: translate3d(-300px, 0, -90px) rotateY(15deg);
  z-index: 3;
  filter: blur(5px);
}

#t-1:checked~.testimonials label[for="t-1"],
#t-2:checked~.testimonials label[for="t-2"],
#t-3:checked~.testimonials label[for="t-3"] {
  z-index: 4;
}


/*organisers*/

.overylay_team_wrap .teamoverly_wrap {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin-left: 140px;
  box-shadow: 0 14px 28px #0c0c23;
  border-radius: 10px;
}



@media only screen and (max-width: 767px) {
  .overylay_team_wrap .teamoverly_wrap {
    position: relative;
    overflow: hidden;
    width: 140px;
    height: 140px;
    margin-left:20%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

  }

}

.overylay_team_wrap .teamoverly_wrap .teamoverly_img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  border-radius: 10px;
}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;
  opacity: 0;
  background: rgba(25, 25, 25, 0.65);
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  border-radius: 10px;

}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  height: auto;
  padding: 45px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_info_title .teamoverly_name {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  z-index: 3;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}


.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_info_title .teamoverly_Post {
  position: relative;
  color: #fefeff;
  font-size: 15px;
  z-index: 3;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}


@media only screen and (max-width: 767px) {
  .overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_info_title .teamoverly_name {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    z-index: 3;
    text-transform: capitalize;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  .overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_info_title .teamoverly_Post {
    position: relative;
    color: #ffffff;
    font-size: 13px;
    z-index: 3;
    text-transform: capitalize;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }


}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_social ul.teamoverly_social_item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_social ul.teamoverly_social_item li {
  display: inline-block;
  margin-right: 10px;
}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_social ul.teamoverly_social_item li a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  z-index: 3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #340b6b;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.overylay_team_wrap .teamoverly_wrap .teamoverly_info .teamoverly_info_inner .teamoverly_social ul.teamoverly_social_item li a:hover {
  background: #0a192f;

}

.overylay_team_wrap .teamoverly_wrap:hover .teamoverly_info {
  opacity: 1;
}

.overylay_team_wrap .teamoverly_wrap:hover .teamoverly_info .teamoverly_name {
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}

.overylay_team_wrap .teamoverly_wrap:hover .teamoverly_info .teamoverly_Post {
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}

.overylay_team_wrap .teamoverly_wrap:hover .teamoverly_social ul li a {
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}

@media (min-width: 320px) {
  .team {
    flex: 0 0 25.33%;
    max-width: 25.33%;
  }
}

/* Desktops (992px and up) */
@media (min-width: 992px) {
  .team {
    flex: 0 0 25%;
    max-width: 25%;
  }
}


@media only screen and (max-width: 767px) {
  .team {
    margin: 45px;

  }

}



/*staff coordinators*/
.staff {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.staff-card {
  position: relative;
  height: 190px;
  width: 178px;
  border-radius: 15px;
  background: linear-gradient(to bottom, #000212, #0c0c23, #000212);
  transition: 0.3s ease-out;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

@media only screen and (max-width: 767px) {
  .staff-card {
    height: 190px;
    width: 190px;

  }

  .staff-card-top {
    height: 190px;
    width: 178px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .staff-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    transition: 0.3s ease-out;
    border: 7px solid transparent;


  }

  .staff-card-name {
    font-family: --var(--subtitle-font);
    font-size: 15px;

  }

}

.staff-card:hover {
  height: 250px;
  background: linear-gradient(to bottom, #000212, #0c0c23, #000212);
}

.staff-card-top {
  height: 200px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  transition: 0.3s ease-out;
  border: 7px solid transparent;
}

.staff-card:hover .team-card-image {
  border: 7px solid #f46873;
}

.staff-card-image img {
  transition: 0.3s ease-out;
  height: 110%;
  width: 100%;

  /*if the image is rectangular use height: 100%;*/
  /*if the image is square replace height: 100%; by width: 100%;*/
}

.staff-card:hover img {
  height: 110%;
}

.staff-card-bottom {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, #000212 #000212);
  position: absolute;
  bottom: -80px;
  opacity: 0;
  transition: 0.3s ease-out;
}

.staff-card:hover .staff-card-bottom {
  bottom: 0;
  opacity: 1;
}

.staff-card-name {
  font-family: --var(--subtitle-font);
  font-size: 20px;
  margin-bottom: 5px;
}

.staff-card-position {
  font-family: --var(--subtitle-font);
  font-size: 10px;
  color: #ffffff;
}





#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000212;
  z-index: 800;
  height: 100%;
  width: 100%;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  padding: 0;
}

#loader:before {
  content: "";
  border-top: 11px solid rgba(255, 255, 255, 0.1);
  border-right: 11px solid rgba(255, 255, 255, 0.1);
  border-bottom: 11px solid rgba(255, 255, 255, 0.1);
  border-left: 11px solid white;
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*Sponser*/


.sponser__container {
  padding-top: 15rem;
  grid-template-columns: 300px;
  justify-content: center;
  background: #000212;
}

.sponser__card {
  position: relative;
  background: #000212;
  padding: 7rem 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.sponser__img {
  width: 300px;
  height: 300px;
  position: absolute;
  inset: 0;
  top: -15rem;
  margin-top: 20px;
  margin: 0 auto;
  transition: transform 0.4s;
}



/* Countdown wrapper */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Countdown boxes */
.countdown-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 130px;
  padding: 20px;
  margin: 15px;
  border-radius: 20px;
  background-color: #000212;
  border: 2px solid white;
  animation: countdown-box-anim 1s ease-in-out alternate infinite;
  box-shadow: 0px 3.89851px 30px rgba(0, 0, 0, 0.17), 0px 11.1386px 71.2871px rgba(7, 12, 67, 0.7);
}

/* Countdown values */
.countdown-value {
  font-size: 40px;
  font-weight:bolder;
  color:#ffffff;
}

/* Countdown labels */
.countdown-label {
  font-size: 20px;
  color: #e4e4e4;
  font-weight: bolder;
}

@media only screen and (max-width: 767px) {
  .countdown-box{
    width: 50px;
    height: 50px;
    margin: 2px;
    border-radius: 10px;
    padding: 8px;
  }

  .countdown-value {
    font-size: 15px;
    font-weight: bold;
    color:#ffffff;
  }

  .countdown-label {
    font-size: 10px;
    color: #e4e4e4;
    margin: 4px;
  }
}

