@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Major+Mono+Display&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fjalla One', sans-serif;
}
body{
  // display: flex;
  // min-height: 100vh;
  // padding: 20px;
  align-items: center;
  justify-content: center;
  background: #000;
  // background-image: url(../images/new_reg.png);
  background-image: url(../images/form_image_4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100vh;
  height: 100vh;
  min-height: 100vh;
  background-size: contain;
  background-attachment: fixed;
  background-position: right;
}

.wrapper{
  // max-width: 1090px;
  width: 100%;
  margin: auto;
    margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.wrapper .table{
  background: rgba(0, 0, 0, 0.4);
  width: calc(25% - 5px);
  padding: 30px 30px;
  position: relative;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 4px solid white;
    border-radius: 16px;
    backdrop-filter: blur(16px);
  height: 70vh;
}
.table .price-section{
  display: flex;
  justify-content: center;
}
.table .price-area{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  padding: 2px;
}
.price-area .inner-area{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  line-height: 117px;
  text-align: center;
  color: #fff;
  position: relative;
}
.price-area .inner-area .text{
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  top: -10px;
  left: 17px;
}
.price-area .inner-area .price{
  font-size: 32px;
  font-weight: 500;
  //margin-left: 16px;
}
.table .package-name{
  width: 100%;
  height: 2px;
  margin: 35px 0;
  position: relative;
}
.table .package-name::before{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  font-weight: 500;
  background: #fff;
  padding: 0 15px;
  transform: translate(-50%, -50%);
}
.table .features li{
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.features li .list-name{
  font-size: 18px;
  font-weight: 400;
    color: white;
    padding-right: 10px;
}
.features li .icon{
  font-size: 15px;
}
.features li .icon.check{
  color: #2db94d;
    background: transparent;
    border: 1px solid #FFF;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
}
.features li .icon.cross{
  color: #9C1C20;
    background: transparent;
    border: 1px solid #FFF;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
}
.table .btn{
  width: 100%;
  display: flex;
  margin-top: 35px;
  justify-content: center;
}
.table .btn button{
  width: 80%;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 5vh;
}
.table .btn button:hover{
  // border-radius: 5px;
}
.basic .features li::selection{
  background: #ffd861;
}
.basic ::selection,
.basic .price-area,
.basic .inner-area{
  background: #ffd861;
}
.basic .btn button{
  border: 2px solid #ffd861;
  background: #fff;
  color: #ffd861;
}
.basic .btn button:hover{
  background: #ffd861;
  color: #fff;
}

.renter .features li::selection{
  background: #ffd861;
}
.renter ::selection,
.renter .price-area,
.renter .inner-area{
  background: white;
    border: 2px solid #9C1C20;
}
.renter .btn button{
  background: #fff;
  color: #9C1C20;
    border: 2px solid #9C1C20;
}
.renter .btn button:hover{
  background: #9C1C20;
  color: #fff;
}

.premium ::selection,
.premium .price-area,
.premium .inner-area {
    background: #9C1C20;
    color: white;
}
.premium .btn button{
  color: #9C1C20;
}
.premium .btn button:hover{
  background: #9C1C20;
    color: white;
}
.ultimate ::selection,
.ultimate .price-area,
.ultimate .inner-area{
  background: #43ef8b;
}
.ultimate .btn button{
  border: 2px solid #43ef8b;
  color: #43ef8b;
  background: #fff;
}
.ultimate .btn button:hover{
  background: #43ef8b;
  color: #fff;
}
.basic .package-name{
  background: transparent;
}
.renter .package-name{
  background: transparent;
}

.premium .package-name{
  background: transparent;
}
.ultimate .package-name{
  background: transparent;
}
.basic .package-name::before{
  content: "Individual";
    color: white;
    background: transparent;
    width: 100%;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
}
.renter .package-name::before{
  content: "Renter";
    color: white;
    font-size: 24px;
    background: transparent;
    width: 100%;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
}
.premium .package-name::before{
  content: "Small Business";
  font-size: 24px;
    color: white;
    background: transparent;
    width: 100%;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
}
.ultimate .package-name::before{
  content: "Enterprise";
  font-size: 24px;
    color: white;
    background: transparent;
    width: 100%;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
  .wrapper .table{
    width: calc(25% - 10px);
    margin-bottom: 40px;
    height: 80vh;
  }
}

@media (max-width: 1400px) {
  .wrapper .table{
    width: calc(33% - 10px);
    margin-bottom: 40px;
  }
}
@media (max-width: 1080px) {
  .wrapper .table{
    width: calc(50% - 10px);
    margin-bottom: 40px;
  }
}
@media (max-width: 698px) {
  .wrapper .table{
    width: 100%;
  }
  body{
      // display: flex;
      align-items: center;
      justify-content: center;
      // min-height: 100vh;
      // padding: 20px;
      background: #000;
  	background-size: cover;
  	background-image: url(../images/form_image_4.png);
  background-repeat: no-repeat;
  	background-attachment: fixed;
      }
}
::selection{
  color: #fff;
}
.table .ribbon{
  width: 150px;
  height: 150px;
  position: absolute;
  top: -7px;
  left: -7px;
  overflow: hidden;
}
.table .ribbon::before,
.table .ribbon::after{
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  border: 7px solid #4606ac;
  border-top-color: transparent;
  border-left-color: transparent;
}
.table .ribbon::before{
  top: 0px;
  right: -15px;
}
.table .ribbon::after{
  bottom: -15px;
  left: 0px;
}
.table .ribbon span{
  position: absolute;
  top: 30px;
  right: 0;
  transform: rotate(-45deg);
  width: 200px;
  background: #9C1C20;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0,0,0,0.12);
}

