* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

/* -------------------- header/navabar ---------------- */
.navBar {
  padding-top: 1%;
}

#toggle {
  display: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  margin: 1% auto;
  justify-content: center;
  align-items: center;
}

#toggle::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 30px;
  background-color: #05fdd8;
  transform: translateY(-4px);
  transition: 0.3s;
}

#toggle::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 30px;
  background-color: #05fdd8;
  transform: translateY(4px);
  transition: 0.3s;
}

#toggle.active::before {
  transform: translateY(0px) rotate(-45deg);
  background-color: #fd2155;
}

#toggle.active::after {
  transform: translateY(0px) rotate(45deg);
  background-color: #fd2155;
}

.navBar ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.navBar ul li {
  margin-right: 50px;
  padding: 1rem;
}

.navBar ul li a {
  text-decoration: none;
  color: #05fdd8;
  cursor: pointer;
}

.navBar ul li a:hover {
  color: #fd2155;
}

.cursor {
  width: 2rem;
  height: 2rem;
  border: 1px dotted white;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.3s ease;
  transition-property: background, transform;
  transform-origin: 100% 100%;
  z-index: -1;
}

.link-bubble {
  transform: scale(2);
  justify-content: center;
  background-color: black;
}

/* -------------------- container ---------------- */

.demo {
  padding: 50px 0;
}

.heading-title {
  margin-bottom: 50px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.pricingTable {
  border: 2px solid #e3e3e3;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  transform: translateZ(0px);
  transition: 0.5s;
  border-radius: 10px;
}

.pricingTable:before,
.pricingTable:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  z-index: -1;
  transition: all 0.5s ease 0s;
  border-radius: 10px;
}

.pricingTable:before {
  border-right: 2px solid #474747;
  border-left: 2px solid #474747;
  transform: scaleY(0);
  transform-origin: 100% 0 0;
}

.pricingTable:after {
  border-bottom: 2px solid #474747;
  border-top: 2px solid #474747;
  transform: scaleX(0);
  transform-origin: 0 100% 0;
}

.pricingTable:hover:before {
  transform: scaleY(1);
  border-radius: 10px;
}

.pricingTable:hover:after {
  transform: scaleX(1);
  border-radius: 10px;
}

.pricingTable:hover {
  margin-top: -30px;
  box-shadow: -10px 5px 20px #4d4d4d;
  border-radius: 10px;
}

/*  --------------------- old design ---------  */

/* .pricingTable .pricingTable-header{
    background: #08c6aa;
    color: #fff;
    margin: -2px -2px 35px;
    padding: 40px 0;
} */

/* .pricingTable {
    border: 1px solid #dbdbdb;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
    margin: 0 -15px;
    text-align: center;
    transition: all 0.4s ease-in-out 0s;
}

.pricingTable:hover{
    border: 2px solid #e46367;
    margin-top: -30px;
} */

.pricingTable .pricingTable-header {
  padding: 30px 10px;
}

.pricingTable .heading {
  display: block;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 21px;
}

.pricingTable .pricing-plans {
  padding-bottom: 25px;
  border-bottom: 1px solid #d0d0d0;
  color: #000;
  font-weight: 900;
}

.pricingTable .price-value {
  color: #474747;
  display: block;
  font-size: 25px;
  font-weight: 800;
  line-height: 35px;
  padding: 0 10px;
}

.pricingTable .price-value span {
  font-size: 50px;
}

.pricingTable .subtitle {
  color: #82919f;
  display: block;
  font-size: 15px;
  margin-top: 15px;
  font-weight: 100;
}

.pricingTable .pricingContent ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.pricingTable .pricingContent ul li {
  padding: 10px 0;
}

.pricingTable .pricingContent ul li:nth-child(odd) {
  background-color: #fff;
}

.pricingTable .pricingContent ul li:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.pricingTable .pricingTable-sign-up {
  padding: 25px 0;
}

.pricingTable .btn-block {
  width: 50%;
  margin: 0 auto;
  background: #13cdcf;
  border: 1px solid transparent;
  padding: 10px 5px;
  color: #fff;
  text-transform: capitalize;
  border-radius: 5px;
  transition: 0.3s ease;
}

.pricingTable .btn-block:after {
  content: "\f090";
  font-family: "FontAwesome";
  padding-left: 10px;
  font-size: 15px;
}

.pricingTable:hover .btn-block {
  background: #fd2155;
  color: white;
  /* border:1px solid #08c6aa; */
}

/* make responsive */

@media screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .navBar {
    padding: 10px;
    position: static;
    display: block;
  }

  #toggle {
    display: flex;
  }

  .navBar ul {
    display: none;
    transition: 0.5s;
  }

  .navBar ul.active {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }

  .navBar ul li {
    margin-right: 0px;
    text-align: center;
  }

  .pricingTable {
    margin: 0 0 30px 0;
  }
}

@media (max-width: 500px) {
  #toggle {
    display: flex;
  }

  .navBar ul {
    display: none;
    transition: 0.5s;
  }

  .navBar ul.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .navBar ul li {
    margin-right: 0px;
    text-align: center;
  }
}
