*, *:after, *:before {
  box-sizing: border-box;
  font-family: 'Poppins';
}

.container h2, h4, p, ul, li {
  margin: 0;
  padding: 0;
}

.container h2, h4 {
  font-family: 'Poppins';
  text-transform: uppercase;
  color: #333333;
}

h2 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.container p, li {
  font-family: 'Poppins';
  font-weight: 400;
  color: #555;
  line-height: 22px;
}

.container ul, li {
  text-decoration: none;
  list-style: disc outside;
}

.container ul {
  padding-left: 10px;
}

.container svg {
  margin: 0px;
  min-width: 24px;
  min-height: 24px;
}


.container #logo1{
  width: 125px;
  height: 100px;
  position: left;

}
.container .cardContainer {
  width: 125px;
  height: 400px;
  min-width: 272px;
  min-height: 400px;
  margin: 4px;
  display: inline-block;
}

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

.container .card {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-100px);
          transform: translateZ(-100px);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.container .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;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}
.container .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: 110%;
  border-radius: 5px;
  background-color: white;
}
.card .front {
  z-index: 2;
}
.conozcanos{
   font-family: 'Poppins';;
}
.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: 90%;
  height: 165px;
}
.front .img1 {
  background-image: url(../img/Logo1.png);
}
.front .img2 {
  background-image: url(../img/Logo1.png);
}
.front .img3 {
  background-image: url(../img/Logo1.png);
}

.back {
  position: relative;
}
.back h2 {
  margin-top: 6px;
  margin-bottom: 18px;
}
.back .reviews {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}
.back .reviews p {
  color: #c4c4c4;
  font-weight: 300;
  margin: 1px 0 0 6px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.back .reviews:hover p {
  color: #555;
}

.back .btn {
  position: absolute;
  bottom: 16px;
  width: calc(100% - 32px);
  height: 56px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: rgb(65,142,194);
   background-image: -webkit-gradient(linear, right top, left top, from(rgb(65, 142, 194)714), to(rgb(151, 166, 173)));
  background-image: linear-gradient(-90deg, rgb(65, 142, 194),rgb(151,166,173));
  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 {
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  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 svg {
  margin: 1px 0 0 4px;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}