/*=====packages css======*/
  /* html, body {
  background-color: #2B3A4C;
}*/
.clear{
  clear: both;
}
.package {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .package {
    grid-template-columns: 1fr;
    grid-row-gap: 7rem;
  }
}
.package__item {
  /*height: 100%;*/
  /*transition: all ease-in-out 0.3s;*/
  /*display: inherit;*/
  width: 93%;
}
.package__item:hover {
  /*transform: translateY(-5px);*/
}
.package__item .package__header {
  background-color: white;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}
.package__item .package__header .package__name {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  color: white;
}
.package__item .package__body {
  background-color: #f5f5f5;
  /*padding: 1rem;*/
  /*min-height: 82%;*/
}
@media screen and (max-width: 800px) {
  .package__item .package__body {
    min-height: 100%;
  }
}
.package__item .package__body .package__price-container {
  /*min-height: 150px;*/
  background-color: rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}
@media screen and (max-width: 800px) {
  .package__item .package__body .package__price-container {
    min-height: 100%;
  }
}
.package__item .package__body .package__price-container--column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .package__item .package__body .package__price-container--column {
    grid-template-columns: 1fr;
  }
}
.package__item .package__body .package__price-container--column .package__column {
  display: grid;
}
.package__item .package__body .package__price-container--column .package__column [class^=package__column] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.package__item .package__body .package__price-container--column .package__column .package__column-title {
  color: white;
  background-color: #78a87f;
  font-weight: 600;
}
.package__item .package__body .package__price-container--column .package__column .package__column-price {
  font-weight: bold;
}
.package__item .package__body .package__price-container--column .package__column .package__column-price--bb {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.package__item .package__body .package__price-container--column .package__column--2 {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.package__item .package__body .package__price-container--column .package__column--2 .package__column-title {
  background-color: #5d9064;
}
.package__item .package__body .package__price {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  position: relative;
}
.package__item .package__body .package__price--sm {
  font-size: 1.8rem;
}
.package__item .package__body .package__price--xs {
  font-size: 1.2rem;
}
.package__item .package__body .package__price--monthly::after {
  content: "Monthly";
  background-color: #459bba;
  border-radius: 8px;
  font-size: 10px;
  padding: 1px 5px;
  color: white;
  position: absolute;
}
.package__item .package__body .package__price--quarterly::after {
  content: "Quarterly";
  background-color: orange;
  border-radius: 8px;
  font-size: 10px;
  padding: 1px 5px;
  color: white;
  position: absolute;
}
.package__item .package__body .package__price--yearly::after {
  content: "Yearly";
  background-color: #377c95;
  border-radius: 8px;
  font-size: 10px;
  padding: 1px 5px;
  color: white;
  position: absolute;
}
.package__item .package__body .package__price--ind-yearly::after {
  content: "Yearly Individual";
  background-color: #5043C9;
  border-radius: 8px;
  font-size: 10px;
  padding: 1px 5px;
  color: white;
  position: absolute;
}
.package__item .package__body .package__price--ins-yearly::after {
  content: "Yearly Institutional";
  background-color: #5d9064;
  border-radius: 8px;
  font-size: 10px;
  padding: 1px 5px;
  color: white;
  position: absolute;
}
.package__item .package__body ul {
  /*margin-top: 1rem;*/
  margin:0;
}
.package__item .package__body > ul{
  height: 250px;
  overflow-y: auto;
}
.package__item .package__body ul li {
  position: relative;
  font-size: 12px;
  /*font-weight: 600;*/
  color: #31363c;
  text-align: left;
}
.package__item .package__footer button {
  background-color: #2287F5;
  color: white;
  padding: 8px 0;
  width: 100%;
  border: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.3s;
  font-weight: 600;
}
.package__item .package__footer button::after {
  content: "»";
  opacity: 0;
  position: absolute;
  top: 0;
  font-size: 1.5rem;
  transition: all ease-in-out 0.3s;
}
.package__item .package__footer button:hover::after {
  opacity: 1;
  transform: translateX(4px);
}
.package__item:nth-child(1) .package__header {
  background-color: #eea726;
}
.package__item:nth-child(1) .package__footer button {
  background-color: #eea726;
}
.package__item:nth-child(1) .package__footer button:hover {
  background-color: #e49912;
}
.package__item:nth-child(2) .package__header {
  background-color: #459bba;
}
.package__item:nth-child(2) .package__footer button {
  background-color: #459bba;
}
.package__item:nth-child(2) .package__footer button:hover {
  background-color: #3d88a4;
}
.package__item:nth-child(3) .package__header {
  background-color: #78a87f;
}
.package__item:nth-child(3) .package__footer button {
  background-color: #78a87f;
}
.package__item:nth-child(3) .package__footer button:hover {
  background-color: #659c6d;
}
.packages_info_h3{
  text-align: center;
  margin-bottom: 0;
  padding: 20px;
  font-size: 30px;
  background: #e5e5e5;
  color: #000;
  font-weight: 600;
  font-family: sans-serif;
}
.packages_info_h3 span{
  font-size: 25px;
  color: #ff7600;
}
.packages_info_ul{
  padding-top: 26px;
  padding-bottom:26px;
  padding-right: 36px;
  text-align: justify;
  padding-left:0;
  list-style-type:none;
}
.packages_info_ul li ul li{
  list-style-type: disclosure-closed;
  text-align: initial;
  line-height: 22px;
  font-weight: 600;
  margin: 0px;
  font-size:13px;
}
.comment_btn{
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: 26px!important;
  margin-bottom: 33px!important;
}
.pay-btn{
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 15px;
}