@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
@media screen and (min-width: 1024px) {
  :root {
    --h2-font-size: 1.75rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

* {
  font-family: "Cairo", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

sup {
    background: red;
  color: white;
  padding: 3px;
  border-radius: 50%;
  font-size: 10px;
  min-width: 16px;
  min-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}​

body {
  background: #eaecfa;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/*Form*/

.card {
  border: none;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  box-shadow: none;
  border-color: #6a11cb;
}

.btn-primary {
  background-color: #6a11cb;
  border: none;
}

.btn-primary:hover {
  background-color: #4e0ec9;
}

/*cards*/
.card-wrapper {
  max-width: 1100px;
  height: fit-content;
  margin: 0 60px 35px;
  padding: 20px 10px;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:hover {
  border-color: #5372f0;
}

.card-list .card-item .card-link .the-link {
  text-decoration: none;
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge {
  color: #5732f0;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 16px 0 18px;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.card-list .card-link .card-title {
  font-size: 1.19rem;
  color: #000;
  font-weight: 600;
}

.card-list .card-link .btn {
  margin: 30px 0 5px;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.pr-card {
  border: #000 solid 2px;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 6px;
}

.pr-card:hover {
  box-shadow: 0 4px 8px 0 #55565B, 0 6px 20px 0 #55565B;
  transition: 0.2s ease;
}

.pr-card-text {
  color: #000;
  text-decoration: none;
}

.pr-image {
  width: 100%;
}

/*Profile*/
.profile {
  width: 70% !important;
  margin: 0 auto !important;
}

/*Footer*/
footer {
  background-color: #212529;
  color: #dee2e6;
  padding: 2rem 0;
}

footer a {
  color: #adb5bd;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

.social-icons a {
  font-size: 1.3rem;
  margin: 0 10px;
  color: #adb5bd;
}

.social-icons a:hover {
  color: #ffffff;
}

.add-card {
  border: 2px dashed #888;
  cursor: pointer;
  transition: 0.3s;
  background: #f8f8f8;
}

.add-card:hover {
  background: #dedede;
  scale: 1.02;
}

.add-icon {
  font-size: 60px;
  color: #555;
}