@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.event-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px;
  padding: 50px 0;
  gap: 40px 60px;
}

.drop {
  position: relative;
  width: 350px;
  height: 350px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.9);
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop:nth-child(1) {
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
}

.drop:nth-child(2) {
  border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
}

.drop:nth-child(3) {
  border-radius: 35% 65% 31% 69% / 57% 59% 41% 43%;
}

.drop:hover {
  border-radius: 50%;
}

.content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  gap: 15px;
}

.content h2 {
  position: relative;
  width: 80px;
  height: 80px;
  color: var(--clr);
  box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),
    inset -2px -5px -10px rgba(255, 255, 255, 1),
    15px 15px 10px rgba(0, 0, 0, 0.05), 15px 10px 15px rgba(0, 0, 0, 0.025);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.content a {
  position: relative;
  padding: 10px 25px;
  background: var(--clr);
  text-decoration: none;
  color: #fff;
  border-radius: 25px;
  font-weight: 500;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  opacity: 0.75;
  transition: 0.5s;
}

.content a:hover {
  opacity: 1;
}

.content a::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
}

.content p {
  color: rgb(255, 255, 255);
}

@media (max-width: 600px) {
  .drop {
    width: 280px;
    height: 280px;
  }
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

:root {
  --mainDark: #3a3e3b;
  --mainWhite: #fff;
  --mainGrey: #e4e4e4;
  --mainTransition: all 0.3s linear;
  --mainFont: 'Poppins', sans-serif;
  --mainBlue: #17c8ff;
}

#ceeplus-ng {
  display: none;
}

.quiz {
  color: white;
  text-align: center;
}

/* quiz ka css */

.btn {
  width: 100px;
  font-size: 14px;
  height: 40px;
  border: none;
  outline: none;
  background: #c38b8b;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.btn::before {
  position: absolute;
  content: '';
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background: linear-gradient(
    124deg,
    #ff2400,
    #e81d1d,
    #e8b71d,
    #e3e81d,
    #1de840,
    #1ddde8,
    #2b1de8,
    #dd00f3,
    #dd00f3
  );
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  animation: move 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.btn::before {
  opacity: 1;
}

.btn::after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .quiz {
    margin-top: 110px;
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* end of quiz css */

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #000000;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--mainWhite);
}

a:active {
  color: var(--mainWhite);
  text-decoration: none;
}

a:visited {
  color: var(--mainWhite);
}

p {
  font-family: var(--mainFont);
}

a:hover {
  color: white;
}

.text-center {
  text-align: center;
}

h2 {
  color: var(--mainWhite);
}

section {
  margin: auto;
  max-width: 100vw;
  overflow-x: hidden;
}

.hr-line {
  border-bottom: 2px solid #17c8ff;
  display: block;
  width: 50px;
  margin: -5px auto 2rem;
}

/* hamburger menu button */
#hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 1.5rem;
  cursor: pointer;
}

.show-links {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 70vw;
  top: 0;
  right: 0;
  background-color: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  overflow: hidden;
  height: 0;
  position: relative;
  /* position: sticky; */
}

li {
  list-style-type: none;
}

li > a {
  color: var(--mainWhite);
  transition: var(--mainTransition);
  font-size: 15px;
  font-family: var(--mainFont);
}

li > a:hover {
  color: var(--mainDark);
  padding-left: 0.5rem;
  text-decoration: none;
}

#close-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.hr-nav {
  border-bottom: 1px solid var(--mainBlue);
  display: block;
  width: 65%;
}

.nav-items {
  padding-left: 1rem;
}

nav > div {
  padding-top: 10rem;
}

/* floating social media starts */

.fl-fl {
  background: #17c8ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -160px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.uil {
  font-size: 25px;
  color: black;
  padding: 12px 0;
  width: 45px;
  /* margin-left: 8px; */
}

.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: black !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px !important;
  vertical-align: top !important;
}

.float-fb {
  /* top: 160px; */
  top: 215px;
}

.float-ln {
  /* top: 215px; */
  top: 270px;
}

.float-gp {
  /* top: 270px; */
  top: 325px;
}

.float-rs {
  /* top: 325px; */
  top: 380px;
}

/* .float-ig {
  top: 380px;
}

.float-pn {
  top: 435px;
} */

@media only screen and (max-width: 480px) {
  .media {
    display: none;
  }
}

@media only screen and (max-width: 425px) {
  .media {
    display: none;
  }
}

#social img {
  height: 25px;
  width: 25px;
  margin: 9rem 0.3rem 0;
}

#logo1 {
  width: 55px;
  height: 55px;
  margin: 30px 15px;
  /* margin-right: 10px; */
}

#logo2 {
  width: 50px;
  height: 62px;
  /* margin-top: 30px; */
  /* margin: 30px; */
}

#home {
  height: 90vh;
}

#intro-wrap {
  color: var(--mainGrey);
  display: flex;
  align-items: center;
  /* align-self: flex-start; */
  height: 80vh;
  width: 100vw;
  padding: 0 1rem;
}

h1 {
  font-size: 60px;
  font-family: 'Bebas Neue', cursive;
  margin-bottom: -20px;
}

#motto {
  font-size: 15px;
  padding-top: 10px;
}

#description {
  margin: 13px auto;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
}

button {
  border-radius: 5px;
  text-align: center;
  margin-top: 0.8rem;
}

button > a:hover {
  text-decoration: none;
}

#learn {
  padding: 10px 40px;
  background-color: #17c8ff;
  border: none;
  margin-right: 0.7rem;
}

#learn > a {
  color: #000;
}

#discuss {
  padding: 10px;
  background-color: inherit;
  border: 1px solid var(--mainBlue);
}

#discuss > a {
  color: var(--mainBlue);
}

/* #home-photo {
  display: none;
} */

#home-photo {
  display: block;
  width: 250px;
  height: 250px;
  animation: rotation 15s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wrap-reverse {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  align-items: center;
  align-self: center;
  /* text-align: center; */
}

/*about us section*/

#about p {
  color: var(--mainGrey);
  background-color: #000;
  font-size: 13px;
  line-height: 2;
  word-spacing: 1px;
  margin: unset;
  padding-top: 1rem;
}

.about-photo {
  width: 80vw;
  height: 150vh;
}

.about-page {
  padding: 2rem;
}

/*Portfolio style*/
#Portfolio {
  margin: 4rem 0;
}

@media only screen and (max-width: 480px) {
  #about {
    padding-top: 150px;
  }
}

.box {
  height: 330px;
  position: relative;
  width: 285px;
  margin: 0 auto 2rem;
}

#one {
  background-color: #8ec5fc;
  background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
}

#two {
  background-color: #ffdee9;
  background-image: linear-gradient(0deg, #ffdee9 0%, #b5fffc 100%);
}

#three {
  background-color: #a9c9ff;
  background-image: linear-gradient(180deg, #a9c9ff 0%, #ffbbec 100%);
}

#four {
  background-color: #ffdee9;
  background-image: linear-gradient(0deg, #ffdee9 0%, #b5fffc 100%);
}

#five {
  background-color: #faaca8;
  background-image: linear-gradient(19deg, #faaca8 0%, #ddd6f3 100%);
}

#six {
  background-color: #d9afd9;
  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
}

#seven {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(200, 162, 200, 1) 68%
  );
}

#eight {
  background-color: #8ec5fc;
  background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
}

#Portfolio .box {
  display: flex;
  align-items: center;
  justify-content: center;
}

#Portfolio .box a {
  padding: 12rem 2rem 2rem;
  text-decoration: none;
  width: 220px;
}

.label {
  font-family: var(--mainFont);
  color: Black;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
}

#Portfolio img {
  right: 0px;
  position: absolute;
  top: 0;
  margin: 12px;
  width: 30px;
  height: 30px;
}

/* PATRONAGE SECTION */
.patronage {
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  /* height: 100vh; */
  font-family: 'Open Sans';
}

.education {
  --bg-color: #ffd861;
  --bg-color-light: #ffeeba;
  /* --text-color-hover: #4C5656; */
  --box-shadow-color: #17c8ff;
}

.wallet {
  --bg-color: #ceb2fc;
  --bg-color-light: #f0e7ff;
  /* --text-color-hover: #fff; */
  --box-shadow-color: #17c8ff;
}

.human-resources {
  --bg-color: #dce9ff;
  --bg-color-light: #f1f7ff;
  /* --text-color-hover: #4C5656; */
  --box-shadow-color: #17c8ff;
}

.card {
  width: 300px;
  height: 400px;
  background: #0f0f0f;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.11), 0 4px 6px var(--box-shadow-color);
}

.card:hover .overlay {
  transform: scale(4) translateZ(0);
}

.card:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.card:hover .circle:after {
  background: var(--bg-color-light);
}

.card:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}

.card p {
  font-size: 14px;
  color: white;
  margin-top: 30px;
  z-index: 1000;
  padding-left: 6px;
  transition: color 0.3s ease-out;
  text-decoration: none;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle img {
  width: 100px;
  border-radius: 50%;
}

/* .circle:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  top: 7px;
  left: 7px;
  transition: opacity 0.3s ease-out;
} */

/* .overlay {
  width: 118px;
  position: absolute; 
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  top: 70px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
} */
/*Carousel/Slider*/
@media screen and (min-width: 426px) {
  #small {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  #slider {
    display: none;
  }

  .about-photo {
    display: none;
  }
}

/*Carousel/Slider ends*/

/*What we do section*/
#work {
  margin: 5rem 0;
}

.services {
  background-color: #0f0f0f;
  border-radius: 10px;
  height: auto;
  color: var(--mainWhite);
  padding: 1rem;
  width: 285px;
}

#work img {
  display: block;
  margin: 0 auto;
  height: 40px;
  width: 40px;
}

.work-image {
  padding-top: 15px;
  display: block;
  margin: 0 auto;
  height: 70px;
  width: 70px;
  background-color: black;
  border-radius: 50px;
}

#work p {
  font-weight: 200;
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  word-spacing: 2px;
}

#contacts {
  color: var(--mainWhite);
}

.link {
  text-decoration: none;
}

#contacts img {
  height: 30px;
  width: 30px;
  display: block;
  margin: 0 auto;
}

.imago {
  padding-top: 20px;
  height: 70px;
  width: 70px;
  border-radius: 70%;
  border: 1px solid var(--mainBlue);
  display: block;
  margin: 0 auto;
}

#contacts {
  padding-bottom: 4rem;
  padding-top: 2rem;
}

.in-touch1 {
  margin: 2rem 0 4rem;
}

#contacts p {
  margin-top: 1rem;
  font-size: 13px;
}

h4 {
  margin: 1rem 0;
}

#small .mobile img {
  height: 277px;
}

/*footer styles*/
footer {
  color: var(--mainWhite);
  background-color: #0f0f0f;
  font-weight: 300;
  margin: 0px;
  font-family: var(--mainFont);
  font-size: 13px;
}

.foot {
  height: 20px;
  width: 20px;
}

.first p {
  text-align: left;
}

.logo-name {
  height: 30px;
  width: 100px;
}

.hr-footer {
  border-bottom: 2px solid var(--mainBlue);
  width: 40px;
  margin-top: -5px;
}

@media only screen and (min-width: 990px) {
  .second,
  .third {
    margin-top: 20px;
  }

  footer .container {
    padding-left: 100px;
    font-size: 17px;
  }

  .second {
    padding-left: 120px;
  }
}

/*footer styles end*/

/*media query for tablet*/
@media only screen and (min-width: 608px) {
  #hamburger,
  .hr-nav,
  #close-icon,
  #social {
    display: none;
  }

  nav {
    overflow: visible;
  }

  nav > div {
    padding-top: unset;
  }

  .nav-items {
    display: flex;
    justify-content: right;
    margin: -5rem 4rem 0 0;
  }

  li > a:hover {
    border-bottom: 1px solid var(--mainBlue);
  }

  #intro-wrap {
    height: 100vh;
  }

  #intro {
    width: 60vw;
    margin-left: 7rem;
  }

  h1 {
    font-size: 70px;
  }

  #description,
  #work p,
  #contacts p,
  footer p,
  footer a {
    font-size: 14px;
  }

  .wrapper {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    grid-gap: 30px;
  }

  .flex-box {
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .paragraph-div {
    width: 50vw;
  }

  .about-photo {
    width: 40vw;
    height: inherit;
  }

  #about p {
    line-height: 1.7;
  }

  #work {
    padding-left: 25px;
  }

  .wrap {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 3rem;
  }

  .in-touch1 {
    margin: unset;
  }
}

@media only screen and (min-width: 980px) {
  #home {
    overflow: hidden;
    /**to remove the overflow the animation rotation brings*/
  }

  #intro-wrap {
    justify-content: center;
    gap: 2rem;
  }

  #intro {
    width: 40vw;
    margin: unset;
  }

  h1 {
    font-size: 80px;
  }

  #description {
    margin: 30px auto;
  }

  .wrapper {
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
  }

  #home-photo {
    display: block;
    width: 500px;
    height: 500px;
    animation: rotation 30s infinite linear;
  }

  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .paragraph-div {
    width: 40vw;
  }

  .about-photo {
    width: 40vw;
  }

  #description,
  #about p,
  #contacts p,
  footer p,
  footer a {
    font-size: 15px;
  }
}

/*general query for laptop*/
@media only screen and (min-width: 1200px) {
  #intro-wrap {
    gap: 4rem;
    /* text-align: center;
    align-self: center; */
  }

  #intro {
    width: 35vw;
  }

  .paragraph-div {
    width: 30vw;
  }

  .about-photo {
    width: 35vw;
    height: 84vh;
  }
}

@media only screen and (max-width: 480px) {
  body {
    width: 100%;
  }

  #logo1 {
    width: 42px;
    height: 42px;
    margin: 30px 10px;
    /* padding-top: 5px; */
  }

  #logo2 {
    width: 35px;
    height: auto;
  }

  .about-photo {
    display: none;
  }
}

#dropdownMenuButton {
  position: relative;
  top: 6px;
  left: 4px;
  color: white;
}

.grey {
  background-color: rgba(0, 0, 0, 0.753) !important;
  color: whitesmoke;
  padding-bottom: 20px;
}

.grey:hover {
  color: #b5fffc;
}

.lottie {
  max-width: 250px;
}

.flexed {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#lottie-6 {
  width: 250px;
}

#lottie-3 {
  width: 250px;
}

.pad {
  padding-bottom: 10px;
}

.centered {
  text-align: center;
  align-self: center;
  align-content: center;
  align-items: center;
  padding: 0px !important;
}

.padd-it {
  position: relative;
  top: 6px;
}

.padd-bit {
  padding-right: 30px;
}

@media only screen and (max-width: 480px) {
  .header {
    position: relative;
    top: 60px;
  }

  .card {
    margin-top: 10px !important;
  }

  .padd-bit {
    padding-right: 0px;
    padding-bottom: 10px;
  }
}

.dropdown-item {
  color: #fff;
}

/* ===========================
   CIPHERX EVENT POPUP WITH BORDER ANIMATION
   =========================== */

@property --rotate {
  syntax: '<angle>';
  initial-value: 132deg;
  inherits: false;
}

/* Overlay */
#eventPopupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0; /* Modern browsers */
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

#eventPopupOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* Wrapper */
.popup-wrapper {
  position: relative;
  -webkit-animation: popupFade 0.4s ease;
  animation: popupFade 0.4s ease;
}

/* ===========================
   POPUP CONTAINER
   =========================== */
.event-popup {
  position: relative;
  width: 70%;
  max-width: 95%;
  justify-self: center;
  border-radius: 14px;
  display: flex;
  overflow: visible;
  /* IMPORTANT */
  background: transparent;
  /* IMPORTANT */
}

/* ===== Animated BORDER layer ===== */
.event-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  background-image: -webkit-linear-gradient(
    var(--rotate),
    #5ddcff,
    #3c67e3 43%,
    #4e00c2
  );
  background-image: linear-gradient(
    var(--rotate),
    #5ddcff,
    #3c67e3 43%,
    #4e00c2
  );
  -webkit-animation: popupSpin 2.5s linear infinite;
  animation: popupSpin 2.5s linear infinite;
  z-index: 0;
}

/* ===== INNER WHITE SURFACE (MASK) ===== */
.event-popup::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  /* BORDER THICKNESS */
  border-radius: 10px;
  background: #000000;
  z-index: 1;
}

/* ===========================
   ACTUAL CONTENT (ABOVE MASK)
   =========================== */
.popup-image,
.popup-content {
  position: relative;
  z-index: 2;
}

/* Image */
.popup-image {
  width: 50%;
  padding: 6px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

/* Content */
.popup-content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-content a {
  color: black;
}
.popup-content h2 {
  margin-bottom: 15px;
  color: #ffffff;
}

.popup-content p {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: justify;
}

/* Button */
.popup-btn {
  align-self: center;
  display: inline-block;
  padding: 12px 20px;
  background: #17c8ff;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #15b3e6;
  text-decoration: none;
  color: #fff !important;
}

/* ===========================
   CLOSE BUTTON
   =========================== */
.popup-close {
  position: absolute;
  top: -18px;
  right: 180px;
  background: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  pointer-events: auto;
}

/* ===========================
   ANIMATIONS
   =========================== */
@-webkit-keyframes popupFade {
  from {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes popupFade {
  from {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes popupSpin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

@keyframes popupSpin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

/* Closing animation */
#eventPopupOverlay.closing {
  opacity: 0;
}

#eventPopupOverlay.closing .popup-wrapper {
  -webkit-animation: popupClose 0.35s ease forwards;
  animation: popupClose 0.35s ease forwards;
}

@-webkit-keyframes popupClose {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }
}

@keyframes popupClose {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }
}

/* Popup heading outside box */
.popup-heading {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

/* homepage cipherx about  */
.cipherx-about-photo {
  height: 70vh;
  position: relative;
  top: 100px;
}

.paragraph-div p {
  text-align: justify;
}

.paragraph-div a {
  display: flex;
  justify-self: center;
}

/* ===========================
   MOBILE VIEW
   =========================== */
@media (max-width: 768px) {
  .event-popup {
    flex-direction: column;
    width: 100%;
    overflow: visible;
  }

  .popup-image,
  .popup-content {
    width: 100%;
  }

  .popup-image img {
    border-radius: 8px 8px 0 0;
  }

  .popup-content {
    padding-bottom: 0;
  }

  /* Hide text on mobile */
  .popup-content h2,
  .popup-content p {
    display: none;
  }

  .popup-content {
    padding: 15px;
    align-items: center;
  }

  .popup-btn {
    margin-top: 10px;
    position: absolute;
    bottom: -60px;
    /* distance below popup */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5;
  }

  .popup-close {
    top: -70px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .popup-heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .cipherx-about-photo {
    height: 330px;
    position: relative;
    top: 0px;
  }
}
