.cardContainer-flex {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 20px;
}
.cardContainer h2, 
.cardContainer h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #333333;
}

.cardContainer h2 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 15px;
}

.cardContainer p, 
.cardContainer li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #555;
  line-height: 22px;
  font-size: 17px;
}
.cardContainer p span {
  display: block;
  padding-top: 10px;
  font-weight: 600;
}
.cardContainer ul, 
.cardContainer li {
  text-decoration: none;
  list-style: disc outside;
}

.cardContainer ul {
  padding-left: 20px;
}

.cardContainer svg {
  margin: 0px;
  min-width: 24px;
  min-height: 24px;
}
.cardContainer {
  position: relative;
  width: 300px;
  height: 410px;
  min-width: 300px;
  min-height: 410px;
  margin: 4px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.active-card {
  -webkit-transform: translateZ(0px) rotateY(180deg) !important;
          transform: translateZ(0px) rotateY(180deg) !important;
}
.active-card:after {
  display: none;
}

.card {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -moz-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-100px);
          transform: translateZ(-100px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
-webkit-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);

-moz-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);

box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);
}
.card:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 14px 50px -4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}
.card:hover {
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.card:hover:after {
  opacity: 1;
}
.card .side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: white;
-webkit-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);

-moz-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);

box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.3);
}
.card .front {
  z-index: 2;
}
.card .back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.card .info {
  padding: 16px;
}

.front .img {
  background-color: #dadce2;
  background-position: center;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 250px;
}
.front .img1 {
  background-image: url(/Fonts/cardContainer/img/catalog_pic_1_b2b.jpg);
}
.front .img2 {
  background-image: url(/Fonts/cardContainer/img/catalog_pic_2_b2c.jpg);
}
.front .img3 {
  background-image: url(/Fonts/cardContainer/img/catalog_pic_3_about.jpg);
}

.back {
  position: relative;
}
.back h2 {
  margin-top: 6px;
  margin-bottom: 25px;
}
.back .reviews {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}
.back .reviews p {
  color: #c4c4c4;
  font-weight: 300;
  margin: 1px 0 0 6px;
  transition: 0.3s ease-in-out;
}
.back .reviews:hover p {
  color: #555;
}
.back li {
  line-height: 22px;
  margin: 2px 0 6px 0;
}
.back .btn {
  position: absolute;
  text-decoration: none;
  bottom: 16px;
  width: calc(100% - 32px);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFC324;
  background-image: linear-gradient(-90deg, #FFB714, #FFE579);
  border-radius: 5px;
  cursor: pointer;
}
.back .btn:hover h4 {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.back .btn:hover svg {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}
.back .btn h4 {
  font-size: 16px;
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.back .btn a:hover {
  color: #000;
}
.back .btn svg {
  margin: 1px 0 0 4px;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
  opacity: 0;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width : 1025px) {
.cardContainer {
    width: 250px;
    height: 530px;
    min-width: 230px;
    min-height: 500px;
}
.cardContainer h2 {
    line-height: 1.2;
}
}

@media only screen and (max-width : 430px) {
.cardContainer-flex {
    flex-wrap: wrap;
}
.cardContainer {
    width: 100%;
    height: 420px;
    min-width: 200px;
    min-height: 420px;

}
}

@media only screen and (max-width : 395px) {
.cardContainer {
    height: 450px;
    min-height: 450px;

}
}
