@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

.content{
  max-width: 1090px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
 .content .card{
  background: #EDDDD4;
  width: calc(33% - 20px);
  text-align: center;
  padding: 0px 30px  30px 30px;
  color: #283D3B;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 11px 26px 1px #0000004a, inset 0 -16px 90px #C4453640;
}
.content .card .top{ 
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  line-height: 80px;
  padding: 0px -30px  -30px -30px;
  color: #fff;
  user-select: none;
  border-radius: 15px 15px 15px 15px;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  margin-bottom: 20px;
}

.content .card .title{
 font-size: 27px;
 font-weight: 600;
}
.content .card .price-sec{
  margin-top: -10px;
  font-weight: 600;
}
.content .card .price{
  font-size: 45px;
}
.content .card .info{
  font-size: 16px;
  margin-top: 20px;
}
.content .card .details .one{
  margin-top: 25px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.content .card .details .one::before{
  position: absolute;
  content: "";
  width: 100%;
  background: #ddd;
  height: 1px;
  left: 0;
  top: -12px;
  border-radius: 25px;
}
.content .card .details .one i{
  color: #2db94d;
}
.content .card .details i.fa-times{
  color: #cd3241;
}
.content .card button{
  outline: none;
  border: none;
  height: 42px;
  color: #fff;
  margin-top: 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight:550;
  width: 100%;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 1px;
}
.content .one .top,
.content .one button{
  background: #197278;
}
.content .two .top,
.content .two button{
  background: #C44536;
}
.content .three .top,
.content .three button{
  background: #781940;
}
.content button:hover {
  background:hsl(225, 25%, 9%); 
  color: hsl(57, 97%, 45%);
  font-weight:550;
  outline-color: hsl(225, 25%, 9%);
  border-bottom: 2px solid rgba(0,0,0,0.1);
  border-top: 2px solid rgba(0,0,0,0.1);
  border-color: hsl(225, 25%, 9%);
}
.content .one ::selection{
background: #197278;
}
.content .two ::selection{
background:  #C44536;
}
.content .three ::selection{
background: #781940;
}
@media (max-width:1000px) {
   .content .card{
    background: #fff;
    width: calc(50% - 20px);
    margin-bottom: 30px;
}
}
@media (max-width:715px) {
 .content .card{
    width: 100%;
}
}
