:root {
  /**
     * colors
     */
  /* gradient */
  --bg-gradient-onyx: linear-gradient(
    to bottom right,
    hsl(240, 1%, 25%) 3%,
    hsl(0, 0%, 19%) 97%
  );
  --bg-gradient-blueish: linear-gradient(to bottom, #0d1b2a, #1b263b);
  --bg-gradient-jet: linear-gradient(
      to bottom right,
      hsla(240, 1%, 18%, 0.251) 0%,
      hsla(240, 2%, 11%, 0) 100%
    ),
    hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(
    to bottom right,
    hsl(189, 100%, 71%) 0%,
    hsla(36, 100%, 69%, 0) 50%
  );
  --bg-gradient-yellow-2: linear-gradient(
      135deg,
      hsla(45, 100%, 71%, 0.251) 0%,
      hsla(35, 100%, 68%, 0) 59.86%
    ),
    hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(to bottom right, #3be6fc, #28ff14);
  --text-gradient-yellow: linear-gradient(
    to right,
    hsl(157, 100%, 53%),
    hsla(182, 100%, 68%, 0.99)
  );
  /* solid */
  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(165, 100%, 62%);
  --vegas-green: hsl(150, 54%, 58%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(147, 82%, 49%);
  /**
     * shadow
     */
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);
  /**
     * transition
     */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-width: 35vh;
  background: var(--smoky-black);
}

.stark-bg {
  object-fit: cover;
  display: block;
  opacity: 10%;
  width: 100%;
  height: 100vh;
  filter: blur(6px);
}

header {
  position: absolute;
  color: white;
  font-size: 8vh;
  top: 50px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  font-variant: small-caps;
}

.glassmorphism {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(0.7px);
  box-shadow: 0 0px 10px 0 #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 210px;
  width: min(95%, 950px);
  position: absolute;
  top: 200px;
  margin-top: 0px;
}

.glassmorphism .rounded-image {
  border-radius: 20%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  left: 25px;
  position: absolute;
  top: 210/2;
}

.glassmorphism .info {
  margin: 0;
  color: white;
  font-size: 22px;
  left: 178px;
  text-align: auto;
  position: absolute;
  font-family: Copperplate, "Copperplate Gothic Light", fantacy;
  font-variant: small-caps;
}

.glassmorphism a {
  text-decoration: none;
}

.glassmorphism .btn {
  position: absolute;
  text-decoration: none;
  overflow: hidden;
  top: 190px;
  min-height: 53px;
  min-width: 166px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  cursor: pointer;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-12.74%, rgba(110, 239, 255, 0.5)),
    color-stop(56.76%, rgba(106, 224, 255, 0.271))
  );
  background: linear-gradient(
    90deg,
    rgba(110, 239, 255, 0.5) -12.74%,
    rgba(106, 224, 255, 0.271) 56.76%
  );
  border: 2px solid #acf7ff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.glassmorphism .btn:before {
  content: "";
  width: 4px;
  height: 28px;
  background: #19173b;
  border: 2px solid #acf7ff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  bottom: -7px;
  left: 4px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.glassmorphism .btn:after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  border-top: 15px solid transparent;
  border-left: 15px solid #fffcf7;
}

.info2 {
  position: absolute;
  margin: 10px;
  padding: 10px;
  top: 550px;
  border-radius: 5px;
}

.info2 h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--white-2);
}

.info2 p {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 2px;
  color: var(--white-1);
  text-align: justify;
}


.swiper {
  width: 100%;
}

.swiper-wrapper {
  width: 100%;
  height: 35em;
  display: flex;
  align-items: center;
}

a, img {
  position: relative;
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  align-content: center;
}

.card_title,
.card_title .h1 {
  background: auto;
  text-decoration: none;
  color: #b8b8b8;
  border: #52d8ff;
  border-style: double;
  font-size: 30px;
  text-align: center;
  font-variant: small-caps;
  font-family: Copperplate, "Copperplate Gothic Light", fantacy;
}
.card {
  width: 20em;
  height: 90%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-12.74%, rgba(110, 239, 255, 0.5)),
    color-stop(56.76%, rgba(106, 224, 255, 0.271))
  );
  background: linear-gradient(
    90deg,
    rgba(110, 239, 255, 0.5) -12.74%,
    rgba(106, 224, 255, 0.271) 56.76%
  );
  border: 2.5px solid #acf7ff;
  border-radius: 2em;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
  padding: 2em 1em;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 2em;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 3px;
}

.swiper-slide:not(.swiper-slide-active) {
  filter: blur(1.5px);
}

.card__image {
  width: 10em;
  height: 10em;
  border-radius: 10%;
  border: 1.5px solid var(--smoky-black);
  padding: 3px;
  margin-bottom: 2em;
}

.card__image img {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover;
}

.card__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.card__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  top: 0.2em;
}

.card__text {
  text-align: center;
  font-size: 1.1rem;
  margin: 1em 0;
  color: #fff;
}

.card__btn {
  background-color: var(--smoky-black);
  color: #000000;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: 0.5em;
  border-radius: 0.5em;
  margin-top: 0.5em;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

footer {
  z-index: 999;
  position: relative;
  background-color: #2a2b2f;
  font-size: 2.5vh;
  color: white;
  width: 100%;
  padding: 25px;
  text-align: center;
  bottom: 0px;
  font-family: Copperplate, "Copperplate Gothic Light", fantacy;
  font-variant: small-caps;
}

@media only screen and (min-width: 780px) {
  .glassmorphism {
    top: 250px;
  }
  .swiper {
    position: absolute;
    top: 800px;
  }
  .card {
    width: 30em;
    height: 100%;
  }
}