*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
  --mediumGray: #999;
  --darkGray: #444;
  --lightGray: #f5f5f5;
  --lightGray01: #f3f3f3;
  --lightgray02: #d9d9d9;
  --pink: #fa1c4b;
  --pinkDark: #e42049;
  --boxGray: #918881;
  --brown: #d4a274;
  --cyan: #49b4ae;
  --purple: #ef62cf;
  --blue: #1c75fa;
  --dark: #38322c;
  --orange: #fa6a1c;
  --darkBlue: #3437df;
  --darkBrown: #f4923f;
  --cyanBright: #54d0c9;
  --purpleBright: #ee61cf;
}

body {
  margin: 0;
}

.jc-cards-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--lightGray);
  color: var(--darkGray);
  font: 14px/1.625 "Archivo", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .jc-cards-section {
    font-size: 15px;
    padding: 75px 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-section {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  .jc-cards-section {
    font-size: 16px;
  }
}

.jc-cards-container {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .jc-cards-container {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .jc-cards-container.large {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-container.large {
    max-width: 1024px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-container.large {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-container.large {
    max-width: 1440px;
  }
}
@media (min-width: 1700px) {
  .jc-cards-container.large {
    max-width: 1680px;
  }
}

.jc-cards-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  gap: 10px;
}
@media (min-width: 768px) {
  .jc-cards-filters {
    gap: 30px;
    font-size: 16px;
    margin: 0 0 50px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-filters {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-filters {
    gap: 50px;
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-filters {
    gap: 70px;
  }
}
.jc-cards-filters li > a {
  display: block;
  text-decoration: none;
  color: currentColor;
  transition: 0.4s;
}
.jc-cards-filters li > a sup {
  font-size: 11px;
  font-weight: 400;
  position: relative;
  top: -5px;
}
@media (min-width: 768px) {
  .jc-cards-filters li > a sup {
    font-size: 14px;
  }
}
.jc-cards-filters li:hover > a, .jc-cards-filters li.active > a {
  color: var(--pink);
}
.jc-cards-filters.addition {
  color: var(--black);
  justify-content: center;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition {
    gap: 20px;
    font-size: 16px !important;
  }
}
.jc-cards-filters.addition li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #a3a3a3;
  background: var(--white);
  border-radius: 40px;
  padding: 2px 2px 2px 15px;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition li > a {
    gap: 20px;
    padding: 3px 3px 3px 25px;
  }
}
.jc-cards-filters.addition li > a sup {
  width: 32px;
  height: 32px;
  border: 1px solid #a3a3a3;
  background: var(--white);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition li > a sup {
    width: 48px;
    height: 48px;
  }
}
.jc-cards-filters.addition-2 {
  border: 2px solid var(--darkGray);
  gap: 0;
  position: relative;
  font-size: 13px;
}
@media (min-width: 480px) {
  .jc-cards-filters.addition-2 {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-filters.addition-2 {
    font-size: 16px;
  }
}
.jc-cards-filters.addition-2:before {
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 40px;
  background: var(--lightGray);
  display: none;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2:before {
    display: block;
  }
}
.jc-cards-filters.addition-2 li {
  padding: 0 10px;
  position: relative;
  margin: 0 -2px;
}
@media (min-width: 480px) {
  .jc-cards-filters.addition-2 li {
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2 li {
    padding: 0 20px;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-filters.addition-2 li {
    padding: 0 30px;
  }
}
.jc-cards-filters.addition-2 li:before {
  width: 1px;
  height: 14px;
  background: var(--darkGray);
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2 li:before {
    width: 2px;
    height: 20px;
    left: 0;
  }
}
.jc-cards-filters.addition-2 li + li:before {
  display: block;
}
.jc-cards-filters.addition-2 li > a {
  padding: 10px 0;
  position: relative;
  text-align: center;
}
@media (min-width: 480px) {
  .jc-cards-filters.addition-2 li > a {
    padding: 15px 0;
  }
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2 li > a {
    padding: 20px 0;
  }
}
.jc-cards-filters.addition-2 li > a:before {
  width: 0;
  height: 4px;
  background: var(--darkGray);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  opacity: 0;
  transition: 0.35s;
  display: none;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2 li > a:before {
    display: block;
  }
}
.jc-cards-filters.addition-2 li > a sup {
  top: 0;
  vertical-align: top;
  font-size: inherit;
  font-weight: inherit;
  display: none;
}
@media (min-width: 768px) {
  .jc-cards-filters.addition-2 li > a sup {
    display: inline;
  }
}
.jc-cards-filters.addition-2 li:hover > a:before, .jc-cards-filters.addition-2 li.active > a:before {
  width: 100%;
  opacity: 1;
}

.jc-cards-style01 {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jc-cards-style01 {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style01 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 {
    gap: 30px;
  }
}
.jc-cards-style01 .jc-cards {
  background: var(--white);
  width: 100%;
  border-top: 5px solid var(--pink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .jc-cards-style01 .jc-cards {
    width: calc(50% - 8px);
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style01 .jc-cards {
    width: calc(33.333% - 8px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style01 .jc-cards {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 .jc-cards {
    width: calc(33.333% - 20px);
  }
}
.jc-cards-style01 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  padding: 25px 20px 15px;
}
@media (min-width: 1200px) {
  .jc-cards-style01 .jc-cards .jc-cards-textbox {
    padding: 35px 25px 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 .jc-cards .jc-cards-textbox {
    padding: 45px 35px 25px;
  }
}
.jc-cards-style01 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.jc-cards-style01 .jc-cards h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .jc-cards-style01 .jc-cards h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style01 .jc-cards h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 .jc-cards h2 {
    font-size: 36px;
  }
}
.jc-cards-style01 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style01 .jc-cards h2 a:hover {
  color: var(--pink);
}
.jc-cards-style01 .jc-cards .jc-cards-holder {
  position: relative;
}
.jc-cards-style01 .jc-cards .jc-cards-date {
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 1;
  background: var(--lightGray01);
  width: 96px;
  height: 96px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--black);
  font-weight: 800;
}
@media (min-width: 1200px) {
  .jc-cards-style01 .jc-cards .jc-cards-date {
    left: 25px;
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 .jc-cards .jc-cards-date {
    left: 35px;
    width: 125px;
    height: 125px;
  }
}
.jc-cards-style01 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 36px;
  line-height: 1;
  color: var(--pink);
  display: block;
}
@media (min-width: 1200px) {
  .jc-cards-style01 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style01 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 46px;
  }
}
.jc-cards-style01 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
  border-radius: 100% 100% 0 100%;
}
.jc-cards-style01 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.jc-cards-style01 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.jc-cards-style02 {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jc-cards-style02 {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style02 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 {
    gap: 30px;
  }
}
.jc-cards-style02 .jc-cards {
  background: var(--white);
  border: 1px solid var(--lightgray02);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  margin: 0 0 20px;
  padding: 24px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style02 .jc-cards {
    border-radius: 30px;
    width: calc(50% - 8px);
    margin: 0 0 7px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style02 .jc-cards {
    width: calc(33.333% - 8px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards {
    width: calc(33.333% - 14px);
    padding: 35px 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 .jc-cards {
    width: calc(33.333% - 20px);
  }
}
.jc-cards-style02 .jc-cards:after {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 7px;
  height: 100%;
  background: #e3e3e3;
  content: "";
  border-radius: 30px;
  z-index: -1;
}
.jc-cards-style02 .jc-cards .jc-cards-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 22px;
  padding: 0 5px;
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards .jc-cards-meta {
    padding: 0 15px;
    gap: 20px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 .jc-cards .jc-cards-meta {
    padding: 0 25px;
  }
}
.jc-cards-style02 .jc-cards .jc-cards-info {
  flex-grow: 1;
  min-width: 0;
  flex-basis: 0;
  display: flex;
  gap: 2px;
  flex-direction: column;
  padding-left: 15px;
  border-left: 1px solid #737373;
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards .jc-cards-info {
    padding-left: 20px;
    gap: 5px;
  }
}
.jc-cards-style02 .jc-cards .jc-cards-subtext {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jc-cards-style02 .jc-cards .jc-cards-subtext a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.jc-cards-style02 .jc-cards .jc-cards-subtext a:hover {
  color: var(--pink);
}
.jc-cards-style02 .jc-cards .jc-cards-date {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--black);
  font-weight: 800;
}
.jc-cards-style02 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 36px;
  line-height: 1;
  color: var(--pink);
  display: block;
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 46px;
  }
}
.jc-cards-style02 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .jc-cards-style02 .jc-cards .jc-cards-image {
    border-radius: 27px;
  }
}
.jc-cards-style02 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 64.75%;
}
.jc-cards-style02 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style02 .jc-cards .jc-cards-textbox {
  padding: 0 5px;
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards .jc-cards-textbox {
    padding: 0 15px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 .jc-cards .jc-cards-textbox {
    padding: 0 25px;
  }
}
.jc-cards-style02 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.jc-cards-style02 .jc-cards h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .jc-cards-style02 .jc-cards h2 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style02 .jc-cards h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style02 .jc-cards h2 {
    font-size: 36px;
  }
}
.jc-cards-style02 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style02 .jc-cards h2 a:hover {
  color: var(--pink);
}

.jc-cards-style03 {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jc-cards-style03 {
    gap: 8px;
  }
}
.jc-cards-style03 .jc-cards {
  background: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style03 .jc-cards {
    width: calc(50% - 4px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style03 .jc-cards {
    width: calc(33.333% - 6px);
  }
}
.jc-cards-style03 .jc-cards .jc-cards-meta {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--pink);
}
.jc-cards-style03 .jc-cards .jc-cards-info {
  background: var(--pinkDark);
  width: 100%;
  text-align: center;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jc-cards-style03 .jc-cards .jc-cards-date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  height: 90px;
  width: 86px;
}
@media (min-width: 1200px) {
  .jc-cards-style03 .jc-cards .jc-cards-date {
    height: 114px;
    width: 98px;
  }
}
.jc-cards-style03 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  display: block;
}
@media (min-width: 1200px) {
  .jc-cards-style03 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style03 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 46px;
  }
}
.jc-cards-style03 .jc-cards .jc-cards-subtext {
  display: block;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jc-cards-style03 .jc-cards .jc-cards-subtext a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}
.jc-cards-style03 .jc-cards .jc-cards-subtext a:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/comment.svg") no-repeat;
  background-size: 100% 100%;
  margin: 2px 0 0;
}
.jc-cards-style03 .jc-cards .jc-cards-subtext a:hover {
  opacity: 0.75;
}
.jc-cards-style03 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
}
.jc-cards-style03 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 74.75%;
}
.jc-cards-style03 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style03 .jc-cards .jc-cards-textbox {
  padding: 20px 15px;
}
@media (min-width: 1200px) {
  .jc-cards-style03 .jc-cards .jc-cards-textbox {
    padding: 25px;
    min-height: 230px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style03 .jc-cards .jc-cards-textbox {
    padding: 35px;
  }
}
.jc-cards-style03 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.jc-cards-style03 .jc-cards h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .jc-cards-style03 .jc-cards h2 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style03 .jc-cards h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style03 .jc-cards h2 {
    font-size: 36px;
  }
}
.jc-cards-style03 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style03 .jc-cards h2 a:hover {
  color: var(--pink);
}
.jc-cards-style03 .jc-cards .jc-cards-footer {
  padding: 20px 15px;
  border-top: 1px solid #bababa;
}
@media (min-width: 1200px) {
  .jc-cards-style03 .jc-cards .jc-cards-footer {
    padding: 25px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style03 .jc-cards .jc-cards-footer {
    padding: 35px;
  }
}
.jc-cards-style03 .jc-cards .jc-cards-footer .jc-cards-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.35s;
}
.jc-cards-style03 .jc-cards .jc-cards-footer .jc-cards-link:hover {
  color: var(--pink);
}
.jc-cards-style03 .jc-cards .jc-cards-footer .jc-cards-link:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../images/arrow.svg") no-repeat;
  background-size: 100% 100%;
  margin: 1px 0 0;
}

.jc-cards-style04 {
  display: flex;
  flex-direction: column;
}
.jc-cards-style04 .jc-cards {
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards {
    margin-bottom: 0;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-image {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards .jc-cards-image {
    width: 50%;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.jc-cards-style04 .jc-cards .jc-cards-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style04 .jc-cards .jc-cards-textbox {
  width: 100%;
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards .jc-cards-textbox {
    width: 50%;
    padding: 25px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style04 .jc-cards .jc-cards-textbox {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards .jc-cards-textbox {
    position: relative;
    padding: 45px 45px 45px 80px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style04 .jc-cards .jc-cards-textbox {
    padding: 60px 60px 60px 80px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-head {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid #5e5e5e;
}
@media (min-width: 1024px) {
  .jc-cards-style04 .jc-cards .jc-cards-head {
    margin: 0 0 35px;
    padding: 0 0 30px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--pink);
  text-align: center;
  color: var(--white);
  font-weight: 800;
  height: 86px;
  width: 86px;
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards .jc-cards-date {
    height: 108px;
    width: 108px;
    left: auto;
    top: 65px;
    right: -45px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  display: block;
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style04 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 46px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.jc-cards-style04 .jc-cards h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards h2 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style04 .jc-cards h2 {
    font-size: 36px;
  }
}
.jc-cards-style04 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style04 .jc-cards h2 a:hover {
  color: var(--pink);
}
.jc-cards-style04 .jc-cards p {
  line-height: 1.875;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jc-cards-style04 .jc-cards .jc-cards-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards .jc-cards-author {
    gap: 20px;
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style04 .jc-cards .jc-cards-author {
    margin-top: 40px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-author .jc-cards-avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
  border: 2px solid #dbdbdb;
}
@media (min-width: 768px) {
  .jc-cards-style04 .jc-cards .jc-cards-author .jc-cards-avatar {
    width: 70px;
    height: 70px;
    border-width: 4px;
  }
}
.jc-cards-style04 .jc-cards .jc-cards-author .jc-cards-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style04 .jc-cards .jc-cards-subtext {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jc-cards-style04 .jc-cards:nth-child(even) {
  flex-direction: row-reverse;
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards:nth-child(even) .jc-cards-date {
    left: -65px;
    right: auto;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style04 .jc-cards:nth-child(even) .jc-cards-textbox {
    padding: 45px 90px 45px 45px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style04 .jc-cards:nth-child(even) .jc-cards-textbox {
    padding: 60px 90px 60px 60px;
  }
}

.jc-cards-style05 {
  display: flex;
  flex-wrap: wrap;
  counter-reset: number-counter;
}
@media (min-width: 768px) {
  .jc-cards-style05 {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style05 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style05 {
    gap: 30px;
  }
}
.jc-cards-style05 .jc-cards {
  background: var(--boxGray);
  color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  margin: 0 0 15px;
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .jc-cards-style05 .jc-cards {
    width: calc(50% - 6px);
    margin: 0;
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards {
    padding: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style05 .jc-cards {
    width: calc(50% - 10px);
    padding: 35px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style05 .jc-cards {
    width: calc(50% - 15px);
    padding: 45px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  position: relative;
  min-height: 250px;
  counter-increment: number-counter;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-textbox {
    min-height: 322px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-textbox:before {
  content: counter(number-counter) ". ";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 36px;
  line-height: 1;
  color: #d8d8d8;
  display: block;
  font-weight: 800;
}
@media (min-width: 1200px) {
  .jc-cards-style05 .jc-cards .jc-cards-textbox:before {
    font-size: 42px;
    top: 15px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style05 .jc-cards .jc-cards-textbox:before {
    font-size: 46px;
    top: 20px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: #d8d8d8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.jc-cards-style05 .jc-cards h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .jc-cards-style05 .jc-cards h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style05 .jc-cards h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style05 .jc-cards h2 {
    font-size: 36px;
  }
}
.jc-cards-style05 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style05 .jc-cards h2 a:hover {
  opacity: 0.75;
}
.jc-cards-style05 .jc-cards .jc-cards-date {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  border-radius: 15px;
  margin-left: auto;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-date {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style05 .jc-cards .jc-cards-date {
    width: 108px;
    height: 108px;
    border-radius: 30px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 32px;
  line-height: 1;
  color: var(--white);
  display: block;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style05 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style05 .jc-cards .jc-cards-date .jc-cards-day {
    font-size: 46px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .jc-cards-style05 .jc-cards .jc-cards-foot {
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-foot {
    margin-top: 40px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-author {
    gap: 20px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-author .jc-cards-avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-author .jc-cards-avatar {
    width: 70px;
    height: 70px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-author .jc-cards-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style05 .jc-cards .jc-cards-subtext {
  display: block;
  font-weight: 800;
  color: #d8d8d8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jc-cards-style05 .jc-cards .jc-cards-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .jc-cards-style05 .jc-cards .jc-cards-link {
    width: 56px;
    height: 56px;
  }
}
.jc-cards-style05 .jc-cards .jc-cards-link img {
  transition: 0.3s;
}
.jc-cards-style05 .jc-cards .jc-cards-link:hover {
  background: var(--white);
}
.jc-cards-style05 .jc-cards .jc-cards-link:hover img {
  filter: invert(1);
}
.jc-cards-style05 .jc-cards.pink {
  background: var(--pink);
}
.jc-cards-style05 .jc-cards.brown {
  background: var(--brown);
}
.jc-cards-style05 .jc-cards.cyan {
  background: var(--cyan);
}
.jc-cards-style05 .jc-cards.purple {
  background: var(--purple);
}
.jc-cards-style05 .jc-cards.blue {
  background: var(--blue);
}
.jc-cards-style05 .jc-cards.dark {
  background: var(--dark);
}
.jc-cards-style05 .jc-cards.orange {
  background: var(--orange);
}

.jc-cards-style06 {
  display: flex;
  flex-wrap: wrap;
  counter-reset: number-counter;
}
@media (min-width: 768px) {
  .jc-cards-style06 {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style06 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style06 {
    gap: 30px;
  }
}
.jc-cards-style06 .jc-cards {
  background: var(--white);
  color: var(--black);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 15px;
  padding: 20px 15px;
  text-align: center;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .jc-cards-style06 .jc-cards {
    width: calc(50% - 6px);
    margin: 0;
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style06 .jc-cards {
    padding: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style06 .jc-cards {
    width: calc(33.333% - 14px);
    padding: 30px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style06 .jc-cards {
    width: calc(33.333% - 20px);
    padding: 35px 45px 45px;
  }
}
.jc-cards-style06 .jc-cards .jc-cards-holder {
  position: relative;
}
.jc-cards-style06 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
  margin: 0 0 40px;
}
.jc-cards-style06 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.jc-cards-style06 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style06 .jc-cards .jc-cards-meta {
  text-align: center;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 25px;
}
.jc-cards-style06 .jc-cards .jc-cards-meta a {
  color: var(--pink);
  text-decoration: none;
  transition: 0.3s;
}
.jc-cards-style06 .jc-cards .jc-cards-meta a:hover {
  opacity: 0.75;
}
.jc-cards-style06 .jc-cards .jc-cards-category {
  display: block;
  font-weight: 800;
  color: var(--mediumGray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px;
}
.jc-cards-style06 .jc-cards h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jc-cards-style06 .jc-cards h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style06 .jc-cards h2 {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style06 .jc-cards h2 {
    font-size: 26px;
  }
}
.jc-cards-style06 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style06 .jc-cards h2 a:hover {
  color: var(--pink);
}
.jc-cards-style06 .jc-cards .jc-cards-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 0;
}
.jc-cards-style06 .jc-cards .jc-cards-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #565656;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .jc-cards-style06 .jc-cards .jc-cards-link {
    width: 56px;
    height: 56px;
  }
}
.jc-cards-style06 .jc-cards .jc-cards-link img {
  transition: 0.3s;
  filter: invert(1);
}
.jc-cards-style06 .jc-cards:hover {
  background: #171717;
}
.jc-cards-style06 .jc-cards:hover h2 {
  color: var(--white);
}
.jc-cards-style06 .jc-cards:hover .jc-cards-link {
  border-color: var(--white);
}
.jc-cards-style06 .jc-cards:hover .jc-cards-link img {
  filter: invert(0);
}
.jc-cards-style06 .jc-cards:hover .jc-cards-link:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.jc-cards-style07 {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jc-cards-style07 {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style07 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style07 {
    gap: 30px;
  }
}
.jc-cards-style07 .jc-cards {
  background: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 15px;
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style07 .jc-cards {
    width: calc(50% - 8px);
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style07 .jc-cards {
    width: calc(33.333% - 8px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style07 .jc-cards {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style07 .jc-cards {
    width: calc(25% - 23px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style07 .jc-cards:nth-child(even) {
    margin-top: 30px;
    margin-bottom: -30px;
  }
}
.jc-cards-style07 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  padding: 20px 15px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .jc-cards-style07 .jc-cards .jc-cards-textbox {
    padding: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style07 .jc-cards .jc-cards-textbox {
    padding: 25px 35px;
  }
}
.jc-cards-style07 .jc-cards h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jc-cards-style07 .jc-cards h2 a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
.jc-cards-style07 .jc-cards h2 a:hover {
  color: var(--pink);
}
.jc-cards-style07 .jc-cards .jc-cards-date {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  background: var(--lightGray01);
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
}
.jc-cards-style07 .jc-cards .jc-cards-date .jc-cards-day {
  font-size: 40px;
  line-height: 1;
  color: var(--pink);
  display: block;
}
.jc-cards-style07 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
}
.jc-cards-style07 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 146%;
}
.jc-cards-style07 .jc-cards .jc-cards-image:after {
  width: 100%;
  height: 190px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(34, 34, 34, 0.8) 100%);
}
.jc-cards-style07 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.jc-cards-style08 {
  column-count: 2;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .jc-cards-style08 {
    column-count: 3;
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style08 {
    column-count: 4;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style08 {
    column-count: 5;
  }
}
.jc-cards-style08 .jc-cards {
  margin: 0 0 12px;
  break-inside: avoid;
}
@media (min-width: 768px) {
  .jc-cards-style08 .jc-cards {
    margin: 0 0 16px;
  }
}
.jc-cards-style08 .jc-cards a {
  display: block;
}
.jc-cards-style08 .jc-cards img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1200px) {
  .jc-cards-style08 .jc-cards:nth-child(5) {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style08 .jc-cards:nth-child(5) {
    padding-top: 160px;
  }
}

.jc-cards-style09 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
@media (min-width: 480px) {
  .jc-cards-style09 {
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style09 {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style09 {
    gap: 32px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style09 {
    gap: 45px;
  }
}
.jc-cards-style09 .jc-cards {
  width: 100%;
}
@media (min-width: 480px) {
  .jc-cards-style09 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style09 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style09 .jc-cards {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style09 .jc-cards {
    width: calc(33.333% - 22px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style09 .jc-cards {
    width: calc(33.333% - 30px);
  }
}
.jc-cards-style09 .jc-cards .jc-cards-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
}
.jc-cards-style09 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 113.4%;
}
.jc-cards-style09 .jc-cards .jc-cards-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style09 .jc-cards a {
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.jc-cards-style09 .jc-cards a:hover {
  color: var(--pink);
}
.jc-cards-style09 .jc-cards .jc-cards-title {
  font-size: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--black);
  text-transform: uppercase;
}
.jc-cards-style09 .jc-cards:nth-child(even) .jc-cards-image:before {
  padding-top: 61.9%;
}

.jc-cards-style10 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .jc-cards-style10 {
    gap: 24px;
  }
}
@media (min-width: 1550px) {
  .jc-cards-style10 {
    gap: 86px;
  }
}
.jc-cards-style10 .jc-cards {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style10 .jc-cards {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style10 .jc-cards {
    width: calc(50% - 12px);
    padding-left: 2%;
  }
}
@media (min-width: 1550px) {
  .jc-cards-style10 .jc-cards {
    width: calc(50% - 43px);
  }
}
.jc-cards-style10 .jc-cards:before {
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border: 1px solid #8b8b8b;
}
@media (min-width: 1024px) {
  .jc-cards-style10 .jc-cards:before {
    right: 5%;
  }
}
@media (min-width: 1550px) {
  .jc-cards-style10 .jc-cards:before {
    left: -3%;
    right: 3%;
    right: 2%;
  }
}
.jc-cards-style10 .jc-cards .jc-cards-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1550px) {
  .jc-cards-style10 .jc-cards .jc-cards-image {
    margin: 0 -5% 0 0;
  }
}
.jc-cards-style10 .jc-cards .jc-cards-image:before {
  content: "";
  display: block;
  padding-top: 56.4%;
}
.jc-cards-style10 .jc-cards .jc-cards-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style10 .jc-cards .jc-cards-textbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding: 15px;
}
@media (min-width: 1024px) {
  .jc-cards-style10 .jc-cards .jc-cards-textbox {
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style10 .jc-cards .jc-cards-textbox {
    padding: 25px 0;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style10 .jc-cards .jc-cards-textbox {
    gap: 30px;
  }
}
.jc-cards-style10 .jc-cards a {
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.jc-cards-style10 .jc-cards a:hover {
  color: var(--pink);
}
.jc-cards-style10 .jc-cards .jc-cards-title {
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-align: center;
  color: var(--black);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .jc-cards-style10 .jc-cards .jc-cards-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style10 .jc-cards .jc-cards-title {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style10 .jc-cards .jc-cards-title {
    font-size: 22px;
  }
}
.jc-cards-style10 .jc-cards .jc-cards-text {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .jc-cards-style10 .jc-cards .jc-cards-text {
    font-size: 14px;
  }
}

.jc-cards-style11 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style11 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "item1 item1 item1 item2 item2 item2" "item3 item4 item5 item6 item6 item6" "item7 item8 item8 item8 item9 item10";
  }
}
@media (min-width: 1024px) {
  .jc-cards-style11 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style11 {
    gap: 30px;
  }
}
.jc-cards-style11 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
}
.jc-cards-style11 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style11 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item1 {
    grid-area: item1;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item2 {
    grid-area: item2;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item3 {
    grid-area: item3;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item4 {
    grid-area: item4;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item5 {
    grid-area: item5;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item6 {
    grid-area: item6;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item7 {
    grid-area: item7;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item8 {
    grid-area: item8;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item9 {
    grid-area: item9;
  }
}
@media (min-width: 768px) {
  .jc-cards-style11 .jc-cards-item10 {
    grid-area: item10;
  }
}

.jc-cards-style12 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
@media (min-width: 480px) {
  .jc-cards-style12 {
    gap: 0;
  }
}
.jc-cards-style12 .jc-cards {
  width: calc(50% - 7px);
  position: relative;
}
@media (min-width: 480px) {
  .jc-cards-style12 .jc-cards {
    width: 50%;
  }
}
.jc-cards-style12 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
}
.jc-cards-style12 .jc-cards .jc-cards-image .jc-cards-image-wrap {
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.jc-cards-style12 .jc-cards .jc-cards-image .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width: 480px) {
  .jc-cards-style12 .jc-cards .jc-cards-image .jc-cards-image-wrap:before {
    padding-top: 116%;
  }
}
.jc-cards-style12 .jc-cards .jc-cards-image .jc-cards-image-wrap:hover {
  color: var(--orange);
}
.jc-cards-style12 .jc-cards .jc-cards-image .jc-cards-image-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style12 .jc-cards .jc-cards-favourite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  border-radius: 100%;
  padding: 2px 0 0;
}
@media (min-width: 480px) {
  .jc-cards-style12 .jc-cards .jc-cards-favourite {
    top: 15px;
    right: 15px;
  }
}
@media (min-width: 768px) {
  .jc-cards-style12 .jc-cards .jc-cards-favourite {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style12 .jc-cards .jc-cards-favourite {
    top: 15px;
    right: 15px;
  }
}
.jc-cards-style12 .jc-cards .jc-cards-favourite input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.jc-cards-style12 .jc-cards .jc-cards-favourite input[type=checkbox]:checked + img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(47%) saturate(7217%) hue-rotate(334deg) brightness(95%) contrast(107%);
}
.jc-cards-style12 .jc-cards .jc-cards-favourite img {
  width: 20px;
  height: 20px;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style12 .jc-cards .jc-cards-favourite img {
    width: 26px;
    height: 26px;
  }
}
.jc-cards-style12 .jc-cards.small .jc-cards-image {
  width: 100%;
  margin: 0 auto;
  background: var(--white);
}
@media (min-width: 480px) {
  .jc-cards-style12 .jc-cards.small .jc-cards-image {
    width: 80%;
    padding: 5%;
  }
}
@media (min-width: 768px) {
  .jc-cards-style12 .jc-cards.small .jc-cards-image {
    width: 330px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style12 .jc-cards.small .jc-cards-image {
    padding: 7%;
    width: 420px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style12 .jc-cards.small .jc-cards-image {
    width: 502px;
    padding: 10%;
  }
}
@media (min-width: 480px) {
  .jc-cards-style12 .jc-cards.small .jc-cards-image .jc-cards-image-wrap:before {
    padding-top: 94%;
  }
}

.jc-cards-style13 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style13 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "item1 item1 item1 item1" "item2 item3 item4 item4" "item5 item6 item4 item4" "item7 item8 item4 item4" "item9 item9 item10 item11" "item9 item9 item12 item13";
  }
}
@media (min-width: 1024px) {
  .jc-cards-style13 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style13 {
    gap: 30px;
  }
}
.jc-cards-style13 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
}
.jc-cards-style13 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style13 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item1 {
    grid-area: item1;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item2 {
    grid-area: item2;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item3 {
    grid-area: item3;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item4 {
    grid-area: item4;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item5 {
    grid-area: item5;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item6 {
    grid-area: item6;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item7 {
    grid-area: item7;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item8 {
    grid-area: item8;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item9 {
    grid-area: item9;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item10 {
    grid-area: item10;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item11 {
    grid-area: item11;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item12 {
    grid-area: item12;
  }
}
@media (min-width: 768px) {
  .jc-cards-style13 .jc-cards-item13 {
    grid-area: item13;
  }
}

.jc-cards-style14 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .jc-cards-style14 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "item1  item2  item3 item4" "item5  item5  item6 item6" "item7  item8  item9 item9";
  }
}
.jc-cards-style14 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
}
.jc-cards-style14 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style14 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item1 {
    grid-area: item1;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item2 {
    grid-area: item2;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item3 {
    grid-area: item3;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item4 {
    grid-area: item4;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item5 {
    grid-area: item5;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item6 {
    grid-area: item6;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item7 {
    grid-area: item7;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item8 {
    grid-area: item8;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item9 {
    grid-area: item9;
  }
}
@media (min-width: 768px) {
  .jc-cards-style14 .jc-cards-item10 {
    grid-area: item10;
  }
}

.jc-cards-style15 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.jc-cards-style15 .jc-cards-row {
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style15 .jc-cards-row {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style15 .jc-cards-row {
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style15 .jc-cards-row {
    margin-bottom: 30px;
  }
}
.jc-cards-style15 .jc-cards-row.pink .jc-cards-title {
  background: var(--pink);
}
.jc-cards-style15 .jc-cards-row.brown .jc-cards-title {
  background: var(--darkBrown);
}
.jc-cards-style15 .jc-cards-row.cyan .jc-cards-title {
  background: var(--cyanBright);
}
.jc-cards-style15 .jc-cards-row.purple .jc-cards-title {
  background: var(--purpleBright);
}
.jc-cards-style15 .jc-cards-title {
  background: var(--darkBlue);
  color: var(--white);
  font-size: 27px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  padding: 15px 20px;
  letter-spacing: 1px;
  width: 100%;
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .jc-cards-style15 .jc-cards-title {
    width: auto;
    font-size: 36px;
    letter-spacing: 2px;
    writing-mode: sideways-lr;
    padding: 30px 20px;
    margin: 0 14px 0 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style15 .jc-cards-title {
    font-size: 44px;
    margin-right: 20px;
    padding: 35px 25px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style15 .jc-cards-title {
    margin-right: 30px;
    font-size: 60px;
    padding: 45px 35px;
  }
}
@media (max-width: 767px) {
  .jc-cards-style15 .jc-cards-title br {
    display: none;
  }
}
.jc-cards-style15 .jc-cards-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -7px;
}
@media (min-width: 768px) {
  .jc-cards-style15 .jc-cards-holder {
    flex-grow: 1;
    min-width: 0;
    flex-basis: 0;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style15 .jc-cards-holder {
    margin: -10px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style15 .jc-cards-holder {
    margin: -15px;
  }
}
.jc-cards-style15 .jc-cards {
  width: 50%;
  position: relative;
  padding: 7px;
}
@media (min-width: 768px) {
  .jc-cards-style15 .jc-cards {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style15 .jc-cards {
    padding: 10px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style15 .jc-cards {
    padding: 15px;
  }
}
.jc-cards-style15 .jc-cards .jc-cards-image {
  overflow: hidden;
  position: relative;
}
.jc-cards-style15 .jc-cards .jc-cards-image .jc-cards-image-wrap {
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.jc-cards-style15 .jc-cards .jc-cards-image .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 118.3%;
}
.jc-cards-style15 .jc-cards .jc-cards-image .jc-cards-image-wrap:hover {
  color: var(--orange);
}
.jc-cards-style15 .jc-cards .jc-cards-image .jc-cards-image-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.jc-cards-style16 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style16 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "item1  item2  item3" "item4  item5  item5" "item6  item5  item5" "item7  item8 item8" "item9 item9 item10";
  }
}
@media (min-width: 1024px) {
  .jc-cards-style16 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style16 {
    gap: 30px;
  }
}
.jc-cards-style16 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
}
.jc-cards-style16 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style16 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item1 {
    grid-area: item1;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item2 {
    grid-area: item2;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item3 {
    grid-area: item3;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item4 {
    grid-area: item4;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item5 {
    grid-area: item5;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item6 {
    grid-area: item6;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item7 {
    grid-area: item7;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item8 {
    grid-area: item8;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item9 {
    grid-area: item9;
  }
}
@media (min-width: 768px) {
  .jc-cards-style16 .jc-cards-item10 {
    grid-area: item10;
  }
}

.jc-cards-style17 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style17 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style17 {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style17 {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style17 {
    gap: 60px;
  }
}
.jc-cards-style17 .jc-cards {
  overflow: hidden;
}
.jc-cards-style17 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.jc-cards-style17 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style17 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
.jc-cards-style17 .jc-cards-shape1 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style17 .jc-cards-shape2 .jc-cards-image {
  border-radius: 0;
}
.jc-cards-style17 .jc-cards-shape3 .jc-cards-image {
  border-radius: 100% 100% 100% 0;
}
.jc-cards-style17 .jc-cards-shape4 .jc-cards-image {
  border-radius: 100% 0 100% 100%;
}
.jc-cards-style17 .jc-cards-shape5 .jc-cards-image {
  border-radius: 0 0 100% 100%;
}
.jc-cards-style17 .jc-cards-shape6 .jc-cards-image {
  border-radius: 0 100% 100% 100%;
}
.jc-cards-style17 .jc-cards-shape7 .jc-cards-image {
  border-radius: 100% 100% 0 100%;
}
.jc-cards-style17 .jc-cards-shape8 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style17 .jc-cards-shape9 .jc-cards-image {
  border-radius: 100% 100% 0 0;
}

.jc-cards-style18 {
  column-count: 2;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .jc-cards-style18 {
    column-count: 3;
    column-gap: 16px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style18 {
    column-gap: 30px;
  }
}
.jc-cards-style18 .jc-cards {
  margin: 0 0 12px;
  break-inside: avoid;
}
@media (min-width: 768px) {
  .jc-cards-style18 .jc-cards {
    margin: 0 0 16px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style18 .jc-cards {
    margin: 0 0 30px;
  }
}
.jc-cards-style18 .jc-cards img {
  width: 100%;
  height: auto;
  display: block;
}
.jc-cards-style18 .jc-cards .jc-cards-image-wrap {
  display: block;
}

.jc-cards-style19 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style19 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style19 {
    gap: 30px;
  }
}
.jc-cards-style19 .jc-cards {
  overflow: hidden;
  padding: 15px;
  width: calc(100% - 7px);
}
@media (min-width: 480px) {
  .jc-cards-style19 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style19 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style19 .jc-cards {
    padding: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style19 .jc-cards {
    width: calc(33.333% - 14px);
    padding: 35px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style19 .jc-cards {
    width: calc(33.333% - 20px);
  }
}
.jc-cards-style19 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .jc-cards-style19 .jc-cards .jc-cards-image {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style19 .jc-cards .jc-cards-image {
    margin-bottom: 35px;
  }
}
.jc-cards-style19 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style19 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style19 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.jc-cards-style19 .jc-cards .jc-cards-title {
  font-size: 16px;
  font-weight: 700;
  display: block;
  color: var(--white);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .jc-cards-style19 .jc-cards .jc-cards-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style19 .jc-cards .jc-cards-title {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style19 .jc-cards .jc-cards-title {
    font-size: 22px;
  }
}
.jc-cards-style19 .jc-cards .jc-cards-title a {
  text-decoration: none;
  color: currentColor;
}
@media (min-width: 768px) {
  .jc-cards-style19 .jc-cards.large {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style19 .jc-cards.large {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style19 .jc-cards.large {
    width: calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style19 .jc-cards.large .jc-cards-image-wrap:before {
    padding-top: 73%;
  }
}
.jc-cards-style19 .jc-cards-shape1 .jc-cards-image {
  border-radius: 100% 100% 100% 0;
}
.jc-cards-style19 .jc-cards-shape2 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style19 .jc-cards-shape3 .jc-cards-image {
  border-radius: 100% 100% 0 100%;
}
.jc-cards-style19 .jc-cards-shape4 .jc-cards-image {
  border-radius: 0 80% 0 0;
}
.jc-cards-style19 .jc-cards-shape5 .jc-cards-image {
  border-radius: 0 0 0 80%;
}
.jc-cards-style19 .jc-cards-shape6 .jc-cards-image {
  border-radius: 0 100% 100% 100%;
}
.jc-cards-style19 .jc-cards-shape7 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style19 .jc-cards-shape8 .jc-cards-image {
  border-radius: 0 100% 100% 100%;
}

.jc-cards-style20 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .jc-cards-style20 {
    justify-content: center;
  }
}
.jc-cards-style20 .jc-cards {
  overflow: hidden;
  transform: rotate(45deg);
  border: 7px solid var(--white);
  width: 125px;
  height: 125px;
  margin: 20px;
}
@media (min-width: 768px) {
  .jc-cards-style20 .jc-cards {
    width: 150px;
    height: 150px;
    margin: 30px;
  }
}
@media (min-width: 768px) {
  .jc-cards-style20 .jc-cards {
    margin: 0 30px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style20 .jc-cards {
    width: 200px;
    height: 200px;
    border-width: 13px;
    margin: 0 41px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style20 .jc-cards {
    width: 225px;
    height: 225px;
    border-width: 20px;
    margin: 0 53px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style20 .jc-cards {
    width: 275px;
    height: 275px;
    border-width: 30px;
    margin: 0 62px;
  }
}
@media (min-width: 1700px) {
  .jc-cards-style20 .jc-cards {
    width: 333px;
    height: 333px;
    border-width: 40px;
    margin: 0 68px;
  }
}
.jc-cards-style20 .jc-cards .jc-cards-image {
  width: 144%;
  height: 144%;
  overflow: hidden;
  transform: rotate(-45deg);
  margin: -22%;
}
.jc-cards-style20 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style20 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.jc-cards-style20 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width: 768px) {
  .jc-cards-style20 .jc-cards:nth-child(6n+1) {
    margin-left: auto;
  }
}
.jc-cards-style20 .jc-cards-shape1 .jc-cards-image {
  border-radius: 100% 100% 100% 0;
}
.jc-cards-style20 .jc-cards-shape2 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style20 .jc-cards-shape3 .jc-cards-image {
  border-radius: 100% 100% 0 100%;
}
.jc-cards-style20 .jc-cards-shape4 .jc-cards-image {
  border-radius: 0 80% 0 0;
}
.jc-cards-style20 .jc-cards-shape5 .jc-cards-image {
  border-radius: 0 0 0 80%;
}
.jc-cards-style20 .jc-cards-shape6 .jc-cards-image {
  border-radius: 0 100% 100% 100%;
}
.jc-cards-style20 .jc-cards-shape7 .jc-cards-image {
  border-radius: 100%;
}
.jc-cards-style20 .jc-cards-shape8 .jc-cards-image {
  border-radius: 0 100% 100% 100%;
}

.jc-cards-style21 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style21 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style21 {
    gap: 30px;
  }
}
.jc-cards-style21 .jc-cards {
  overflow: hidden;
  width: 100%;
  background: var(--white);
}
@media (min-width: 480px) {
  .jc-cards-style21 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style21 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style21 .jc-cards {
    width: calc(25% - 15px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style21 .jc-cards {
    width: calc(25% - 23px);
  }
}
.jc-cards-style21 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jc-cards-style21 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style21 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 78%;
}
.jc-cards-style21 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style21 .jc-cards .jc-cards-play {
  position: absolute;
  left: 12px;
  top: 0;
  width: 40px;
  height: 50px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 25px 25px;
  padding-left: 2px;
  transition: 0.4s;
}
@media (min-width: 1024px) {
  .jc-cards-style21 .jc-cards .jc-cards-play {
    width: 50px;
    height: 60px;
  }
}
.jc-cards-style21 .jc-cards .jc-cards-play:hover {
  background: var(--pinkDark);
}
.jc-cards-style21 .jc-cards .jc-cards-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 13px;
  padding: 25px 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 77%, rgba(0, 0, 0, 0.95) 99%);
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .jc-cards-style21 .jc-cards .jc-cards-image-overlay {
    padding: 25px 20px 15px;
    font-size: 15px;
    gap: 10px;
  }
}
.jc-cards-style21 .jc-cards .jc-cards-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  transition: 0.35s;
}
@media (min-width: 1024px) {
  .jc-cards-style21 .jc-cards .jc-cards-stats {
    gap: 10px;
  }
}
.jc-cards-style21 .jc-cards .jc-cards-stats:hover {
  opacity: 0.75;
}
.jc-cards-style21 .jc-cards .jc-cards-stats .jc-cards-stats-icons {
  font-size: 0;
  line-height: 0;
}
.jc-cards-style21 .jc-cards .jc-cards-title {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
  color: var(--black);
  padding: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style21 .jc-cards .jc-cards-title {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style21 .jc-cards .jc-cards-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style21 .jc-cards .jc-cards-title {
    padding: 22px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style21 .jc-cards .jc-cards-title {
    padding: 30px;
    font-size: 20px;
  }
}
.jc-cards-style21 .jc-cards .jc-cards-title a {
  text-decoration: none;
  color: currentColor;
  transition: 0.4s;
}
.jc-cards-style21 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style21 .jc-cards:hover .jc-cards-image-overlay {
  opacity: 1;
  visibility: visible;
}

.jc-cards-style22 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1024px) {
  .jc-cards-style22 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "item2 item1 item1 item1" "item3 item1 item1 item1" "item4 item1 item1 item1" "item5 item6 item7 item8";
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style22 {
    gap: 26px;
  }
}
.jc-cards-style22 .jc-cards {
  width: calc(50% - 7px);
  position: relative;
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards {
    width: auto;
  }
}
.jc-cards-style22 .jc-cards .jc-cards-image {
  width: 100%;
  height: 100%;
}
.jc-cards-style22 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style22 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
}
.jc-cards-style22 .jc-cards .jc-cards-video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 77%, rgba(0, 0, 0, 0.95) 99%);
  transition: 0.4s;
  padding: 35px 10px 15px;
  display: none;
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards .jc-cards-video-overlay {
    padding: 40px 20px 15px;
  }
}
.jc-cards-style22 .jc-cards .jc-cards-play {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding-left: 2px;
  transition: 0.4s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .jc-cards-style22 .jc-cards .jc-cards-play {
    width: 50px;
    height: 50px;
  }
}
.jc-cards-style22 .jc-cards .jc-cards-play img {
  filter: invert(100%);
}
.jc-cards-style22 .jc-cards .jc-cards-play:hover {
  background: var(--pink);
}
.jc-cards-style22 .jc-cards .jc-cards-play:hover img {
  filter: invert(0);
}
.jc-cards-style22 .jc-cards .jc-cards-image-overlay {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 5px;
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards .jc-cards-image-overlay {
    gap: 10px;
  }
}
.jc-cards-style22 .jc-cards .jc-cards-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  transition: 0.35s;
}
.jc-cards-style22 .jc-cards .jc-cards-stats:hover {
  opacity: 0.75;
}
.jc-cards-style22 .jc-cards .jc-cards-stats .jc-cards-stats-icons {
  font-size: 0;
  line-height: 0;
}
.jc-cards-style22 .jc-cards .jc-cards-stats .jc-cards-stats-icons img {
  transform: scale(0.85);
}
.jc-cards-style22 .jc-cards .jc-cards-title {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  display: block;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards .jc-cards-title {
    font-size: 14px;
  }
}
.jc-cards-style22 .jc-cards .jc-cards-title a {
  text-decoration: none;
  color: currentColor;
  transition: 0.4s;
}
.jc-cards-style22 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style22 .jc-cards-item1 {
  width: 100%;
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item1 {
    width: auto;
    grid-area: item1;
  }
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-video-overlay {
  display: block;
  padding: 35px 15px 15px;
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-video-overlay {
    padding: 50px 30px 30px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-video-overlay {
    padding: 50px 50px 35px;
  }
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-play {
  width: 50px;
  height: 50px;
  box-shadow: none;
  background: var(--pink);
  left: 15px;
  top: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-play {
    width: 75px;
    height: 75px;
    left: 25px;
    top: 25px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-play {
    width: 100px;
    height: 100px;
    left: 40px;
    top: 40px;
  }
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-play img {
  filter: invert(0);
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-play img {
    width: 10px;
    height: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-play img {
    width: 14px;
    height: 32px;
  }
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-play:hover {
  background: var(--pinkDark);
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-image-overlay {
  font-size: 14px;
  gap: 20px;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-image-overlay {
    font-size: 16px;
  }
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-stats {
  gap: 10px;
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-stats .jc-cards-stats-icons img {
  transform: scale(1);
}
.jc-cards-style22 .jc-cards-item1 .jc-cards-title {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-title {
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style22 .jc-cards-item1 .jc-cards-title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item2 {
    grid-area: item2;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item3 {
    grid-area: item3;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item4 {
    grid-area: item4;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item5 {
    grid-area: item5;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item6 {
    grid-area: item6;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item7 {
    grid-area: item7;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style22 .jc-cards-item8 {
    grid-area: item8;
  }
}

.jc-cards-style23 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style23 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style23 {
    gap: 30px;
  }
}
.jc-cards-style23 .jc-cards {
  overflow: hidden;
  width: 100%;
  background: var(--white);
  border: 1px solid #afafaf;
  border-radius: 20px;
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .jc-cards-style23 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style23 .jc-cards {
    width: calc(33.333% - 15px);
    padding: 20px 15px;
    border-radius: 30px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style23 .jc-cards {
    width: calc(33.333% - 15px);
    padding: 25px 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style23 .jc-cards {
    width: calc(33.333% - 20px);
    padding: 30px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-camera-icon {
  padding: 0 10px;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}
@media (min-width: 1200px) {
  .jc-cards-style23 .jc-cards .jc-cards-camera-icon {
    padding: 0 20px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
@media (min-width: 1024px) {
  .jc-cards-style23 .jc-cards .jc-cards-image {
    border-radius: 25px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style23 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.jc-cards-style23 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style23 .jc-cards .jc-cards-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding-left: 2px;
  transition: 0.4s;
}
@media (min-width: 1200px) {
  .jc-cards-style23 .jc-cards .jc-cards-play {
    width: 80px;
    height: 80px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-play:hover {
  background: var(--pinkDark);
}
.jc-cards-style23 .jc-cards .jc-cards-image-overlay {
  font-size: 13px;
  padding: 25px 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .jc-cards-style23 .jc-cards .jc-cards-image-overlay {
    font-size: 16px;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style23 .jc-cards .jc-cards-image-overlay {
    gap: 20px;
    padding: 25px 20px 0;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  text-decoration: none;
  opacity: 0.5;
  transition: 0.35s;
}
@media (min-width: 1024px) {
  .jc-cards-style23 .jc-cards .jc-cards-stats {
    gap: 10px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-stats .jc-cards-stats-icons {
  font-size: 0;
  line-height: 0;
}
.jc-cards-style23 .jc-cards .jc-cards-stats .jc-cards-stats-icons img {
  filter: invert(100%);
}
.jc-cards-style23 .jc-cards .jc-cards-stats:hover {
  opacity: 1;
}
.jc-cards-style23 .jc-cards .jc-cards-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
  color: var(--black);
  padding: 15px;
}
@media (min-width: 1024px) {
  .jc-cards-style23 .jc-cards .jc-cards-title {
    font-size: 18px;
    padding: 20px 10px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style23 .jc-cards .jc-cards-title {
    padding: 25px 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style23 .jc-cards .jc-cards-title {
    font-size: 20px;
  }
}
.jc-cards-style23 .jc-cards .jc-cards-title a {
  text-decoration: none;
  color: currentColor;
  transition: 0.4s;
}
.jc-cards-style23 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}

.jc-cards-style24 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.jc-cards-style24 .jc-cards-column {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .jc-cards-style24 .jc-cards-column {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style24 .jc-cards-column:first-child {
    width: 40%;
  }
}
.jc-cards-style24 .jc-cards-instabox {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox {
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style24 .jc-cards-instabox {
    margin-bottom: 0;
  }
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instaicon {
  width: 80px;
  margin: 0 auto 25px;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instaicon {
    width: 120px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instaicon {
    width: 146px;
    margin-bottom: 60px;
  }
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instaicon img {
  width: 100%;
  height: auto;
  display: block;
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instatext {
  text-align: center;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instatext {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instatext {
    margin-bottom: 60px;
  }
}
.jc-cards-style24 .jc-cards-instabox h2 {
  color: var(--black);
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox h2 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style24 .jc-cards-instabox h2 {
    font-size: 70px;
  }
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instatag {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instatag {
    font-size: 20px;
  }
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instatag a {
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instatag a:hover {
  color: var(--pink);
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instbutton {
  font-size: 18px;
  line-height: 1.2;
  color: var(--black);
  font-weight: 900;
  background: #e5e5e5;
  border-radius: 30px;
  padding: 17px 55px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards-instabox .jc-cards-instbutton {
    font-size: 20px;
  }
}
.jc-cards-style24 .jc-cards-instabox .jc-cards-instbutton:hover {
  color: var(--white);
  background: var(--pink);
}
.jc-cards-style24 .jc-cards-holder {
  width: calc(100% + 16px);
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.jc-cards-style24 .jc-cards {
  overflow: hidden;
  width: 100%;
  padding: 8px;
  width: 50%;
}
@media (min-width: 768px) {
  .jc-cards-style24 .jc-cards {
    width: 33.333%;
  }
}
.jc-cards-style24 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jc-cards-style24 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style24 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.jc-cards-style24 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.jc-cards-style25 {
  display: flex;
  flex-direction: column;
}
.jc-cards-style25 h2 {
  color: var(--black);
  font-size: 40px;
  line-height: 1;
  font-weight: 100;
  text-transform: uppercase;
  margin: 0 0 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .jc-cards-style25 h2 {
    font-size: 55px;
    margin: 0 0 50px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style25 h2 {
    font-size: 70px;
    margin: 0 0 60px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style25 h2 {
    font-size: 90px;
  }
}
.jc-cards-style25 h2 a {
  text-decoration: none;
  color: currentColor;
}
.jc-cards-style25 .jc-cards-holder {
  width: calc(100% + 16px);
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.jc-cards-style25 .jc-cards {
  overflow: hidden;
  width: 100%;
  padding: 8px;
  width: 50%;
}
@media (min-width: 768px) {
  .jc-cards-style25 .jc-cards {
    width: 33.333%;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style25 .jc-cards {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style25 .jc-cards {
    width: 20%;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style25 .jc-cards {
    width: 16.666%;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style25 .jc-cards:nth-child(8n+5) {
    margin-left: 20%;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style25 .jc-cards:nth-child(8n+5) {
    margin-left: 0;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style25 .jc-cards:nth-child(10n+6) {
    margin-left: 16.666%;
  }
}
.jc-cards-style25 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jc-cards-style25 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style25 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.jc-cards-style25 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.jc-cards-style26 {
  column-count: 2;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .jc-cards-style26 {
    column-count: 3;
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style26 {
    column-count: 4;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style26 {
    column-gap: 30px;
  }
}
.jc-cards-style26 .jc-cards {
  margin: 0 0 12px;
  break-inside: avoid;
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards {
    margin: 0 0 16px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style26 .jc-cards {
    margin: 0 0 30px;
  }
}
.jc-cards-style26 .jc-cards .jc-cards-image-wrap {
  display: block;
}
.jc-cards-style26 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.jc-cards-style26 .jc-cards .jc-cards-textbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  background: var(--white);
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards .jc-cards-textbox {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style26 .jc-cards .jc-cards-textbox {
    padding-left: 20px;
  }
}
.jc-cards-style26 .jc-cards .jc-cards-title {
  font-size: 12px;
  line-height: 1.2;
  color: var(--black);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards .jc-cards-title {
    font-size: 16px;
    gap: 10px;
  }
}
.jc-cards-style26 .jc-cards .jc-cards-title img {
  width: 20px;
  height: 20px;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards .jc-cards-title img {
    width: 34px;
    height: 34px;
  }
}
.jc-cards-style26 .jc-cards .jc-cards-title a {
  color: currentColor;
  display: block;
  text-decoration: none;
  transition: 0.35s;
}
.jc-cards-style26 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style26 .jc-cards .jc-cards-favourite {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  border-radius: 100%;
  padding: 2px 0 0;
  margin-right: -8px;
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards .jc-cards-favourite {
    width: 44px;
    height: 44px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style26 .jc-cards .jc-cards-favourite {
    margin-right: -4px;
  }
}
.jc-cards-style26 .jc-cards .jc-cards-favourite input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.jc-cards-style26 .jc-cards .jc-cards-favourite input[type=checkbox]:checked + img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(47%) saturate(7217%) hue-rotate(334deg) brightness(95%) contrast(107%);
}
.jc-cards-style26 .jc-cards .jc-cards-favourite img {
  width: 20px;
  height: 20px;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style26 .jc-cards .jc-cards-favourite img {
    width: 26px;
    height: 26px;
  }
}

.jc-cards-style27 {
  column-count: 1;
  column-gap: 12px;
}
@media (min-width: 480px) {
  .jc-cards-style27 {
    column-count: 2;
  }
}
@media (min-width: 768px) {
  .jc-cards-style27 {
    column-count: 3;
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style27 {
    column-count: 4;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style27 {
    column-gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style27 {
    column-count: 5;
  }
}
.jc-cards-style27 .jc-cards {
  margin: 0 0 12px;
  break-inside: avoid;
  border: 1px solid var(--pink);
  border-radius: 12px;
  padding: 15px;
  background: var(--white);
}
@media (min-width: 768px) {
  .jc-cards-style27 .jc-cards {
    margin: 0 0 16px;
  }
}
@media (min-width: 1024px) {
  .jc-cards-style27 .jc-cards {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style27 .jc-cards {
    margin: 0 0 30px;
    border-radius: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style27 .jc-cards {
    padding: 25px;
  }
}
.jc-cards-style27 .jc-cards .jc-cards-image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}
.jc-cards-style27 .jc-cards .jc-cards-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.jc-cards-style27 .jc-cards .jc-cards-textbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0 0;
  background: var(--white);
}
.jc-cards-style27 .jc-cards .jc-cards-title {
  font-size: 14px;
  line-height: 1.2;
  color: var(--pink);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .jc-cards-style27 .jc-cards .jc-cards-title {
    font-size: 16px;
  }
}
.jc-cards-style27 .jc-cards .jc-cards-title a {
  color: currentColor;
  display: block;
  text-decoration: none;
  transition: 0.35s;
}
.jc-cards-style27 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style27 .jc-cards .jc-cards-tags {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.1;
  gap: 7px;
  color: var(--darkGray);
}
.jc-cards-style27 .jc-cards .jc-cards-tags a {
  color: currentColor;
  text-decoration: none;
  transition: 0.35s;
  display: block;
}
.jc-cards-style27 .jc-cards .jc-cards-tags a:hover {
  color: var(--pink);
}
.jc-cards-style27 .jc-cards .jc-cards-date {
  display: block;
  font-weight: 700;
}
.jc-cards-style27 .jc-cards .jc-cards-like-button {
  background: #ffdddd;
  border-radius: 25px;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--darkGray);
  transition: 0.35s;
}
.jc-cards-style27 .jc-cards .jc-cards-like-button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(78%) saturate(4766%) hue-rotate(338deg) brightness(103%) contrast(96%);
}
.jc-cards-style27 .jc-cards .jc-cards-like-button:hover {
  background: #ffc2c2;
}

.jc-cards-style28 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style28 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style28 {
    gap: 30px;
  }
}
.jc-cards-style28 .jc-cards {
  overflow: hidden;
  width: calc(100% - 7px);
  background: var(--white);
}
@media (min-width: 480px) {
  .jc-cards-style28 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style28 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style28 .jc-cards {
    width: calc(33.333% - 14px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style28 .jc-cards {
    width: calc(33.333% - 20px);
  }
}
.jc-cards-style28 .jc-cards .jc-cards-image {
  width: 100%;
  overflow: hidden;
}
.jc-cards-style28 .jc-cards .jc-cards-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.jc-cards-style28 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.jc-cards-style28 .jc-cards .jc-cards-image-wrap:before {
  content: "";
  display: block;
  padding-top: 98.3%;
}
.jc-cards-style28 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  gap: 20px;
}
.jc-cards-style28 .jc-cards .jc-cards-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}
.jc-cards-style28 .jc-cards .jc-cards-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 3px;
}
@media (min-width: 1440px) {
  .jc-cards-style28 .jc-cards .jc-cards-meta li {
    padding: 0 6px;
  }
}
.jc-cards-style28 .jc-cards .jc-cards-meta li:first-child {
  width: 100%;
}
@media (min-width: 1200px) {
  .jc-cards-style28 .jc-cards .jc-cards-meta li:first-child {
    width: auto;
    max-width: 165px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style28 .jc-cards .jc-cards-meta li:first-child {
    max-width: 250px;
  }
}
.jc-cards-style28 .jc-cards .jc-cards-meta img {
  display: block;
}
.jc-cards-style28 .jc-cards .jc-cards-meta .jc-cards-avatar {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.jc-cards-style28 .jc-cards .jc-cards-meta .jc-cards-icon {
  height: 16px;
  width: auto;
}
.jc-cards-style28 .jc-cards .jc-cards-meta a {
  display: block;
  color: var(--black);
  text-decoration: none;
  transition: 0.35s;
}
.jc-cards-style28 .jc-cards .jc-cards-meta a:hover {
  color: var(--pink);
}
.jc-cards-style28 .jc-cards .jc-cards-logo {
  width: 24px;
  height: 24px;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
@media (min-width: 1440px) {
  .jc-cards-style28 .jc-cards .jc-cards-logo {
    width: 30px;
    height: 30px;
  }
}
.jc-cards-style28 .jc-cards .jc-cards-logo a {
  display: block;
}
.jc-cards-style28 .jc-cards .jc-cards-logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .jc-cards-style28 .jc-cards.large {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style28 .jc-cards.large {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style28 .jc-cards.large {
    width: calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .jc-cards-style28 .jc-cards.large .jc-cards-image-wrap:before {
    padding-top: 64.1%;
  }
}

.jc-cards-style29 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style29 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 {
    gap: 30px;
  }
}
.jc-cards-style29 .jc-cards {
  overflow: hidden;
  width: calc(100% - 7px);
  border: 1px solid var(--darkGray);
  padding: 10px;
}
@media (min-width: 480px) {
  .jc-cards-style29 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style29 .jc-cards {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style29 .jc-cards {
    width: calc(33.333% - 14px);
    padding: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 .jc-cards {
    width: calc(33.333% - 20px);
  }
}
.jc-cards-style29 .jc-cards .jc-cards-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--darkGray);
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-image {
    height: 300px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 .jc-cards .jc-cards-image {
    height: 366px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jc-cards-style29 .jc-cards .jc-cards-image-wrap img {
  transform: scale(0.5);
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-image-wrap img {
    transform: scale(0.75);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 .jc-cards .jc-cards-image-wrap img {
    transform: scale(1);
  }
}
.jc-cards-style29 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 0 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-textbox {
    gap: 20px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 5px;
}
.jc-cards-style29 .jc-cards .jc-cards-ratings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0;
  line-height: 0;
}
.jc-cards-style29 .jc-cards .jc-cards-ratings ul li {
  width: 13px;
}
.jc-cards-style29 .jc-cards .jc-cards-ratings .jc-cards-ratings-count {
  font-size: 13px;
  line-height: 1;
}
.jc-cards-style29 .jc-cards .jc-cards-title {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  color: var(--black);
  width: 100%;
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-title {
    font-size: 20px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-title a {
  color: var(--black);
  display: block;
  transition: 0.35s;
  text-decoration: none;
  text-transform: uppercase;
}
.jc-cards-style29 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style29 .jc-cards .jc-cards-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}
.jc-cards-style29 .jc-cards .jc-cards-pricings {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-new-price,
.jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-new-price,
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-new-price,
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 32px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
  font-size: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style29 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 20px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-cart {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-radius: 100%;
  flex-shrink: 0;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-cart {
    width: 50px;
    height: 50px;
  }
}
.jc-cards-style29 .jc-cards .jc-cards-cart img {
  transform: scale(0.7);
}
@media (min-width: 768px) {
  .jc-cards-style29 .jc-cards .jc-cards-cart img {
    transform: scale(1);
  }
}
.jc-cards-style29 .jc-cards .jc-cards-cart:hover {
  background: var(--pink);
}

.jc-cards-style30 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1200px) {
  .jc-cards-style30 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style30 {
    gap: 30px;
  }
}
.jc-cards-style30 .jc-cards {
  overflow: hidden;
  width: calc(100% - 7px);
  border: 1px solid var(--darkGray);
  padding: 10px;
  background: #dbdbdb;
}
@media (min-width: 480px) {
  .jc-cards-style30 .jc-cards {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1024px) {
  .jc-cards-style30 .jc-cards {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  .jc-cards-style30 .jc-cards {
    width: calc(50% - 15px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--darkGray);
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-image {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style30 .jc-cards .jc-cards-image {
    width: 48%;
    height: 320px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jc-cards-style30 .jc-cards .jc-cards-image-wrap img {
  transform: scale(0.5);
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-image-wrap img {
    transform: scale(0.75);
  }
}
@media (min-width: 1440px) {
  .jc-cards-style30 .jc-cards .jc-cards-image-wrap img {
    transform: scale(1);
  }
}
.jc-cards-style30 .jc-cards .jc-cards-textbox {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 0 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-textbox {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .jc-cards-style30 .jc-cards .jc-cards-textbox {
    width: 48.5%;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 5px;
}
.jc-cards-style30 .jc-cards .jc-cards-ratings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0;
  line-height: 0;
}
.jc-cards-style30 .jc-cards .jc-cards-ratings ul li {
  width: 13px;
}
.jc-cards-style30 .jc-cards .jc-cards-ratings .jc-cards-ratings-count {
  font-size: 13px;
  line-height: 1;
}
.jc-cards-style30 .jc-cards .jc-cards-title {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  color: var(--black);
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-title {
    font-size: 20px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-title a {
  color: var(--black);
  display: block;
  transition: 0.35s;
  text-decoration: none;
  text-transform: uppercase;
}
.jc-cards-style30 .jc-cards .jc-cards-title a:hover {
  color: var(--pink);
}
.jc-cards-style30 .jc-cards .jc-cards-pricings {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  padding: 0 0 10px;
}
.jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-new-price,
.jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-new-price,
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-new-price,
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 32px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
  font-size: 14px;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .jc-cards-style30 .jc-cards .jc-cards-pricings .jc-cards-old-price {
    font-size: 20px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
}
.jc-cards-style30 .jc-cards .jc-cards-button {
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  flex-grow: 1;
  min-width: 0;
  flex-basis: 0;
  height: 40px;
  text-decoration: none;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-button {
    height: 50px;
    font-size: 16px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-button:hover {
  background: var(--pink);
}
.jc-cards-style30 .jc-cards .jc-cards-favourite input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.jc-cards-style30 .jc-cards .jc-cards-favourite input[type=checkbox]:checked + .jc-cards-favourite-icon {
  background: var(--pink);
  border-color: var(--pink);
}
.jc-cards-style30 .jc-cards .jc-cards-favourite input[type=checkbox]:checked + .jc-cards-favourite-icon img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
.jc-cards-style30 .jc-cards .jc-cards-favourite .jc-cards-favourite-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  padding: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-favourite .jc-cards-favourite-icon {
    width: 50px;
    height: 50px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-favourite img {
  width: 22px;
  height: 22px;
  transition: 0.35s;
  transform: scale(0.7);
  filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(0%) hue-rotate(154deg) brightness(92%) contrast(106%);
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-favourite img {
    transform: scale(1);
  }
}
.jc-cards-style30 .jc-cards .jc-cards-favourite:hover .jc-cards-favourite-icon {
  background: var(--pink);
}
.jc-cards-style30 .jc-cards .jc-cards-favourite:hover .jc-cards-favourite-icon img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
.jc-cards-style30 .jc-cards .jc-cards-sizes {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-sizes {
    gap: 10px;
  }
}
.jc-cards-style30 .jc-cards .jc-cards-option input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.jc-cards-style30 .jc-cards .jc-cards-option input[type=radio]:checked + .jc-cards-option-text {
  background: var(--white);
}
.jc-cards-style30 .jc-cards .jc-cards-option .jc-cards-option-text {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--black);
  border-radius: 100%;
  color: var(--black);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jc-cards-style30 .jc-cards .jc-cards-option .jc-cards-option-text {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}