* {
  font-size: 16px;
}

.imgIcon {
  width: 32px;
}

.mainHeaderSection {
  margin-top: 24px;
  background: linear-gradient(to right, rgba(242, 201, 76, 0.1), #f2c94c, rgba(242, 201, 76, 0.1));
  padding: 8px 8px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
.mainHeaderSection h1 {
  font-family: "Play", Display, sans-serif;
  font-size: 1.7em;
  text-align: center;
}
.mainHeaderSection .subContext {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0px 8px;
}
.mainHeaderSection .subContext .companyName, .mainHeaderSection .subContext .role {
  font-size: 0.8em;
  padding: 0px;
  margin: 0;
}
.mainHeaderSection .subContext .subtitleMed {
  font-size: 1.2em;
  margin: 0;
}

.primaryButton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  min-width: 112px;
  border-radius: 40px;
  background-color: #F2C94C;
  color: #1C2536;
  border: none;
  text-align: center;
  white-space: nowrap;
  max-width: 200px;
}
.primaryButton:hover {
  background-color: #C2A13D;
  color: #FBFBFB;
}

.withIcon .imgIcon {
  padding-right: 8px;
}

.secondaryButton {
  display: block;
  padding: 8px 12px;
  max-width: 160px;
  min-width: 112px;
  border-radius: 40px;
  background-color: #FBFBFB;
  color: #1C2536;
  border: 2px solid #1C2536;
}
.secondaryButton:hover {
  background-color: #49515E;
  color: #FBFBFB;
}

.tertiaryButton {
  background-color: transparent;
  border: none;
  display: flex;
  padding: 8px 16px;
  font-family: "Play", Display, sans-serif;
}
.tertiaryButton .backIcon {
  color: #1C2536;
}
.tertiaryButton .backIcon svg {
  fill: currentColor;
}
.tertiaryButton .label {
  color: #1C2536;
}
.tertiaryButton:hover .backIcon, .tertiaryButton:hover .label {
  color: #C2A13D;
}

.back-button {
  display: flex;
  margin: auto;
  width: 90vw;
  margin-top: 40px;
}

.listHeading {
  margin-top: 24px;
  font-weight: bold;
}

.list-columns {
  display: flex;
  flex-direction: column;
}
.list-columns ul {
  margin: 0;
}
.list-columns ul li {
  width: 160px;
}

.card {
  display: flex;
  flex-direction: column;
  width: 348px;
  height: auto;
  cursor: pointer;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: #FBFBFB;
  border: none;
  box-shadow: 1px 1px 4px #49515E;
  transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 1px 1px 12px #F2C94C;
  text-decoration: none;
}
.card .content {
  display: flex;
  flex-direction: column;
}
.card .content .card-title {
  color: #1C2536;
  background-color: white;
  border-bottom: 2px solid #F2C94C;
  font-family: "Play", Display, sans-serif;
  font-size: 20px;
  padding: 16px;
  border-radius: 8px 8px 0px 0px;
  text-align: center;
  width: 100%;
}
.card .content .itemDetails {
  padding: 0px 16px;
  display: flex;
  gap: 16px;
  color: #1C2536;
}
.card .content .itemDetails p {
  font-size: 0.75rem;
  margin: 0;
}
.card .content .problemStatment {
  padding: 24px 16px;
  font-size: 1rem;
  color: #1C2536;
}
.card .cardImage {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: auto;
  height: 80px;
  border-radius: 0px 0px 8px 8px;
}

.thumbnailCard {
  display: flex;
  flex-direction: column;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.thumbnailCard:hover {
  transform: translate(-6px, -4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.thumbnailCard img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px 8px 0px 0px;
  height: 300px;
  background-color: #FBFBFB;
}
.thumbnailCard .caption {
  display: block;
  position: relative;
  background-color: #1C2536;
  color: #FBFBFB;
  padding: 16px;
  border-radius: 0px 0px 8px 8px;
  text-align: center;
}
.thumbnailCard .caption h2 {
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  padding-bottom: 8px;
}
.thumbnailCard .caption p {
  margin: 0;
}
.thumbnailCard .project {
  background-color: #F2C94C;
  color: #1C2536;
}

.graphicProjectsCard {
  display: flex;
  flex-direction: column;
  width: 300px;
  border-radius: 8px;
  box-shadow: 1px 1px 4px #49515E;
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
}
.graphicProjectsCard:hover {
  box-shadow: 1px 1px 12px #F2C94C;
  text-decoration: none;
}
.graphicProjectsCard img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px 8px 0px 0px;
  height: 300px;
  background-color: #FBFBFB;
}
.graphicProjectsCard .imgCover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 1/1 !important;
}
.graphicProjectsCard .caption {
  display: block;
  position: relative;
  background-color: #1C2536;
  color: #FBFBFB;
  padding: 16px;
  border-radius: 0px 0px 8px 8px;
  text-align: center;
}
.graphicProjectsCard .caption h2 {
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  padding-bottom: 8px;
  width: 100%;
}
.graphicProjectsCard .caption p {
  margin: 0;
}
.graphicProjectsCard .project {
  background-color: #F2C94C;
  color: #1C2536;
}

.imageOnlyCard {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.imageOnlyCard:hover {
  transform: translate(-6px, -4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.imageOnlyCard img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px 8px 8px 8px;
  height: 300px;
  background-color: #FBFBFB;
}

.imageModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.imageModal.active {
  display: flex;
}
.imageModal .modalContent {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.imageModal .closeModal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.blenderModel {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.blenderModel:hover {
  transform: translate(-6px, -4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.blenderModel img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  height: 300px;
  width: 100%;
  background-color: #FBFBFB;
}

.modelModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-y: auto;
}
.modelModal.active {
  display: flex;
}
.modelModal .closeModal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.modelModal .closeModal:hover {
  color: #ccc;
}
.modelModal #modelContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 900px;
  height: 80vh;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.imageCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  max-width: 880px;
  background-color: #1C2536;
  color: #FBFBFB;
  border-radius: 8px;
}
.imageCard .heading {
  padding: 8px 12px;
  margin: 0;
  border-radius: 8px;
}
.imageCard .heading h3 {
  font-family: "Play", Display, sans-serif;
  font-size: 1em;
  margin: 0;
}
.imageCard .heading .subhead {
  font-size: 0.75em;
  margin: 0;
}
.imageCard .imgContainer {
  display: flex;
  flex-direction: row;
  background-color: #0B0F16;
  gap: 8px;
}
.imageCard .imgContainer .myFlexColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
}
.imageCard .imgContainer .myFlexColumn .label {
  color: #FBFBFB;
}
.imageCard .imgContainer .myFlexColumn .projectImg {
  width: 100%;
}
.imageCard .imgContainer .myFlexColumn .bottom-margin img {
  margin-bottom: 8px;
}
.imageCard .imgContainer .divider {
  width: 2px;
  height: 300px;
  background-color: #A4A8AF;
  align-self: center;
  border-radius: 2px;
}
.imageCard img {
  width: 100%;
}
.imageCard .notes {
  background-color: #1C2536;
  color: #FBFBFB;
  padding: 8px 12px;
  border-radius: 0px 0px 8px 8px;
}
.imageCard .notes p, .imageCard .notes li {
  font-size: 0.75em;
  font-weight: 300;
  margin: 0;
}
.imageCard .notes ul {
  margin: 0;
}

.comparisonCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  max-width: 384px;
  background-color: #1C2536;
  color: #FBFBFB;
  border-radius: 8px;
}
.comparisonCard .heading {
  padding: 8px 12px;
  margin: 0;
  border-radius: 8px;
}
.comparisonCard .heading h3 {
  font-family: "Play", Display, sans-serif;
  font-size: 1em;
  margin: 0;
}
.comparisonCard .heading .subhead {
  font-size: 0.75em;
  margin: 0;
  padding-top: 4px;
}
.comparisonCard .imgContainer {
  display: flex;
  flex-direction: row;
  background-color: #0B0F16;
  gap: 8px;
}
.comparisonCard .imgContainer .myFlexColumn {
  display: flex;
  flex-direction: column;
  height: 368px;
  margin: auto;
  padding: 16px 24px;
}
.comparisonCard .imgContainer .myFlexColumn .label {
  color: #FBFBFB;
  align-self: center;
}
.comparisonCard .imgContainer .myFlexColumn p.label.after {
  color: #F2C94C;
}
.comparisonCard .imgContainer .myFlexColumn .imageFlexCont {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparisonCard .imgContainer .myFlexColumn .projectImg {
  max-width: 148px;
}
.comparisonCard .imgContainer .divider {
  width: 2px;
  height: 200px;
  background-color: #A4A8AF;
  align-self: center;
  border-radius: 2px;
}
.comparisonCard img {
  width: 100%;
}
.comparisonCard .notes {
  background-color: #1C2536;
  color: #FBFBFB;
  padding: 12px 16px;
  border-radius: 0px 0px 8px 8px;
  height: 100%;
}
.comparisonCard .notes p, .comparisonCard .notes li {
  font-size: 0.9em;
  font-weight: 300;
  margin: 0;
}
.comparisonCard .notes p {
  padding-top: 4px;
}
.comparisonCard .notes ul {
  margin: 0;
  padding-top: 4px;
  padding-bottom: 8px;
}

#freeForAll {
  background-color: rgb(52, 11, 107);
}

#battleboats {
  background-color: rgb(29, 93, 166);
}

#shadowBoxing {
  background-color: rgb(179, 28, 28);
}

.comparisonCard2 {
  display: flex;
  flex-direction: column;
  width: 80vw;
}
.comparisonCard2 .heading {
  padding: 8px 12px;
  margin: 0;
  border-radius: 8px 8px 0px 0px;
  background-color: #1C2536;
  color: #FBFBFB;
}
.comparisonCard2 .heading h3 {
  font-family: "Play", Display, sans-serif;
  font-size: 1.25em;
  margin: 0;
}
.comparisonCard2 .heading .subhead {
  font-size: 0.75em;
  margin: 0;
  padding-top: 8px;
}
.comparisonCard2 .cardContentCont {
  display: flex;
  flex-direction: column;
  background-color: #0B0F16;
  width: 100%;
  gap: 24px;
}
.comparisonCard2 .cardContentCont .myFlexColumn {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 16px 24px;
}
.comparisonCard2 .cardContentCont .myFlexColumn .label {
  color: #FBFBFB;
  align-self: center;
}
.comparisonCard2 .cardContentCont .myFlexColumn p.label.after {
  color: #F2C94C;
}
.comparisonCard2 .cardContentCont .myFlexColumn .imageGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: auto;
}
.comparisonCard2 .cardContentCont .myFlexColumn .projectImg {
  flex: 1 1 300px;
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  align-self: center;
}
.comparisonCard2 .cardContentCont .vDivider {
  display: none;
  width: 2px;
  height: 90%;
  background-color: #A4A8AF;
  align-self: center;
}
.comparisonCard2 .cardContentCont .hDivider {
  display: flex;
  width: 60%;
  height: 2px;
  background-color: #A4A8AF;
  align-self: center;
}
.comparisonCard2 img {
  width: 100%;
}
.comparisonCard2 .notes {
  background-color: #1C2536;
  color: #FBFBFB;
  padding: 16px 24px;
  border-radius: 0px 0px 8px 8px;
  height: 100%;
}
.comparisonCard2 .notes p, .comparisonCard2 .notes li {
  font-size: 1em;
  font-weight: 300;
  margin: 0;
}
.comparisonCard2 .notes p {
  padding-top: 4px;
  padding-bottom: 16px;
}
.comparisonCard2 .notes ul {
  margin: 0;
  padding-top: 4px;
  padding-bottom: 16px;
}

.block {
  border: 2px solid #F2C94C;
  padding: 16px;
  border-radius: 8px;
  width: 300px;
  background-color: #FBFBFB;
}
.block h3 {
  font-family: "Play", Display, sans-serif;
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
}
.block ul li {
  font-family: "Sansation", serif;
}

.testimonial-carousel {
  font-family: "Sansation", serif;
  width: 100%;
  text-align: center;
  position: relative;
  background-color: #49515E;
  padding-top: 24px;
}
.testimonial-carousel h2 {
  color: #FBFBFB;
  padding: 24px 16px 0px;
  font-family: "Play", Display, sans-serif;
}
.testimonial-carousel h3 {
  color: #FBFBFB;
  padding: 0px;
  margin-top: 0px;
  font-family: "Play", Display, sans-serif;
  font-size: 1.5em;
}
.testimonial-carousel .testimonial-track {
  position: relative;
  width: 272px;
  margin: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial-carousel .testimonial-track .testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.testimonial-carousel .testimonial-track .testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.testimonial-carousel .testimonial-track .testimonial-card .quote {
  font-size: 1.2em;
  color: #FBFBFB;
  margin-bottom: 0.5rem;
  max-height: 800px;
  overflow-y: auto;
  line-height: 1.5;
  padding-right: 0.5rem;
}
.testimonial-carousel .testimonial-track .testimonial-card .author {
  font-weight: bold;
  color: #FBFBFB;
  margin-top: 24px;
}
.testimonial-carousel .testimonial-controls {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  padding: 0 16px;
  pointer-events: none;
  z-index: 3;
}
.testimonial-carousel .testimonial-controls button {
  pointer-events: auto;
  background-color: rgba(28, 37, 54, 0.3);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  color: #FBFBFB;
  cursor: pointer;
  padding: 8px 12px;
}
.testimonial-carousel .testimonial-controls button:hover {
  color: #F2C94C;
  background-color: rgba(28, 37, 54, 0.8);
  border: 1px solid #F2C94C;
}

@media only screen and (min-width: 768px) {
  .testimonial-carousel {
    font-family: "Sansation", serif;
    width: 100%;
    text-align: center;
    position: relative;
    background-color: #49515E;
    padding-top: 24px;
  }
  .testimonial-carousel h2 {
    color: #FBFBFB;
  }
  .testimonial-carousel .testimonial-track {
    position: relative;
    width: 600px;
    margin: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .testimonial-carousel .testimonial-track .testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1;
  }
  .testimonial-carousel .testimonial-track .testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  .testimonial-carousel .testimonial-track .testimonial-card .quote {
    font-size: 1.1rem;
    color: #FBFBFB;
    margin-bottom: 0.5rem;
    max-height: 12rem;
    overflow-y: auto;
    line-height: 1.5;
    padding-right: 0.5rem;
  }
  .testimonial-carousel .testimonial-controls {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 104px;
  }
  .back-button {
    display: flex;
    margin: auto;
    width: 80vw;
    margin-top: 40px;
  }
  .mainHeaderSection {
    margin-top: 24px;
    background: linear-gradient(to right, rgba(242, 201, 76, 0), #f2c94c, rgba(242, 201, 76, 0));
    padding: 8px 0px;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
  .mainHeaderSection h1 {
    font-family: "Play", Display, sans-serif;
    font-size: 3em;
    text-align: center;
  }
  .mainHeaderSection .subContext {
    display: flex;
    justify-content: center;
    gap: 64px;
  }
  .mainHeaderSection .subContext .companyName, .mainHeaderSection .subContext .role {
    font-size: 1em;
    padding: 0px;
    margin: 0;
  }
  .mainHeaderSection .subContext .subtitleMed {
    font-size: 1.5em;
  }
  .listHeading {
    margin-top: 24px;
  }
  .list-columns {
    display: flex;
    flex-direction: row;
  }
  .list-columns ul {
    margin: 0;
  }
  .list-columns ul li {
    width: 160px;
  }
  .card {
    display: flex;
    flex-direction: row;
    width: 448px;
    cursor: pointer;
    aspect-ratio: 16/9;
    height: 256px;
    overflow: hidden;
  }
  .card .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .card .content .card-title {
    width: 348px;
    text-align: center;
    font-size: 20px;
    padding: 16px;
    border-radius: 8px 0px 0px 0px;
  }
  .card .content .itemDetails {
    padding: 0px 16px;
    display: flex;
    gap: 16px;
    color: #1C2536;
  }
  .card .content .itemDetails p {
    font-size: 0.75rem;
    margin: 0;
  }
  .card .content .problemStatment {
    padding: 24px 16px;
    font-size: 1rem;
  }
  .card .content .secondaryButton {
    width: 100%;
    margin: auto;
  }
  .card .cardImage {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100%;
    border-radius: 0px 8px 8px 0px;
  }
  .imageCard .heading {
    background-color: #1C2536;
    color: #FBFBFB;
    padding: 8px 12px;
    margin: 0;
  }
  .imageCard .heading h3 {
    font-family: "Play", Display, sans-serif;
    font-size: 1.25em;
  }
  .imageCard .notes p, .imageCard .notes li {
    font-size: 14px;
    font-weight: 300;
  }
  .comparisonCard {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-width: 384px;
  }
  .comparisonCard .heading {
    padding: 8px 12px;
  }
  .comparisonCard .heading h3 {
    font-family: "Play", Display, sans-serif;
    font-size: 1em;
  }
  .comparisonCard .heading .subhead {
    font-size: 0.75em;
    margin: 0;
  }
  .comparisonCard .imgContainer {
    display: flex;
    flex-direction: row;
    background-color: #0B0F16;
    gap: 8px;
  }
  .comparisonCard .imgContainer .myFlexColumn {
    display: flex;
    flex-direction: column;
    height: 368px;
    margin: auto;
    padding: 16px 24px;
  }
  .comparisonCard .imgContainer .myFlexColumn .label {
    color: #FBFBFB;
    align-self: center;
  }
  .comparisonCard .imgContainer .myFlexColumn p.label.after {
    color: #F2C94C;
  }
  .comparisonCard .imgContainer .myFlexColumn .imageFlexCont {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .comparisonCard .imgContainer .myFlexColumn .projectImg {
    max-width: 148px;
  }
  .comparisonCard .imgContainer .divider {
    width: 2px;
    height: 200px;
    background-color: #A4A8AF;
    align-self: center;
  }
  .comparisonCard img {
    width: 100%;
  }
  .comparisonCard2 {
    display: flex;
    flex-direction: column;
    width: 80vw;
  }
  .comparisonCard2 .heading {
    padding: 8px 12px;
    margin: 0;
    border-radius: 8px 8px 0px 0px;
    background-color: #1C2536;
    color: #FBFBFB;
  }
  .comparisonCard2 .cardContentCont {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .comparisonCard2 .cardContentCont .myFlexColumn {
    flex: 1 1 50%;
    max-width: 50%;
    margin: 0;
  }
  .comparisonCard2 .cardContentCont .myFlexColumn .label {
    color: #FBFBFB;
    align-self: center;
  }
  .comparisonCard2 .cardContentCont .myFlexColumn p.label.after {
    color: #F2C94C;
  }
  .comparisonCard2 .cardContentCont .myFlexColumn .imageGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: auto;
  }
  .comparisonCard2 .cardContentCont .myFlexColumn .projectImg {
    margin: 0 auto;
    display: block;
    max-width: 600px;
    width: 100%;
    height: auto;
  }
  .comparisonCard2 .cardContentCont .vDivider {
    display: block;
  }
  .comparisonCard2 .cardContentCont .hDivider {
    display: none;
  }
  .comparisonCard2 img {
    width: 100%;
  }
}/*# sourceMappingURL=components.css.map */