/*
 * Developer: Alireza Eskandarpour Shoferi
 * Designer: Wouter de Bres (dribbble.com/wdeb)
 *
 * Distributed under the terms of the MIT license
 * https://opensource.org/licenses/MIT
 */

.package header{
  width: 112%;margin-left: -24px;margin-top: -24px;padding-top: 30px;background: #45AABB;border-radius: 4px 4px 0 0; padding-bottom: 35px
}

.packages {
  overflow: hidden;
  padding-top: 1.3em
}
.package {
  box-sizing: border-box;
  width: 49%;
  // height: 380px;
  border: 3px solid #e8e8e8;
  border-radius: 7px;
  display: inline-block;
  padding: 24px;
  text-align: center;
  float: left;
  -webkit-transition: margin-top 0.5s linear;
  transition: margin-top 0.5s linear;
  position: relative;
  margin-right: 2%;
  margin-bottom: 3em;
}
.packages .package:nth-child(even){margin-right: 0}
.package:hover {
  margin-top: -10px;
  -webkit-transition: margin-top 0.3s linear;
  transition: margin-top 0.3s linear;
}
.name {
  color: #fff;
  font-weight: 300;
  font-size: 3rem;
  margin-top: -5px;
  margin-bottom: 25px
}
.price {
  color: #fff;
  margin-top: 13px;
  font-weight: bold;
  font-size: 2.5em;
}
// .price::after {
//   content: " / month per user";
//   font-weight: normal;
// }
.package hr {
  background-color: #dedede;
  border: none;
  height: 1px;
  top: -25px;
  position: inherit;
}
.trial {
  font-size: .9rem;
  font-weight: 600;
  padding: 2px 21px 2px 21px;
  color: #33c4b6;
  border: 1px solid #e4e4e4;
  border-radius: 15px;
  background-color: white;
  position: relative;
  bottom: -20px;
  z-index: 10;
    margin-top: -34px;
    display: inherit;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
}
.package ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 29px;
}
.package li {
  margin-bottom: 15px;
}
.package li i{
  color: #949494;
}
.checkIcon {
  font-family: "FontAwesome";
  content: "\f00c";
}
.package li::before {
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: 1.3rem;
  color: #33c4b6;
  margin-right: 3px;
}
.brilliant {
  border-color: #33c4b6;
}
/* Triangle */
.brilliant::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 64px 0 0;
  border-color: #3bc6b8 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.brilliant::after {
  font-family: "FontAwesome";
  content: "\f00c";
  color: white;
  position: absolute;
  left: 9px;
  top: 6px;
  text-shadow: 0 0 2px #37c5b6;
  font-size: 1.4rem;
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
  .package{width: 100%}

  .package header{width: 117%;}
}

@media only screen and (min-device-width : 668px) and (max-device-width : 768px) {
  .package header{width: 116.35%}
}