/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.section-plans {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .section-plans {
    overflow: hidden;
  }
}

.plans {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media only screen and (min-width: 992px) {
  .plans.active .plans-box:not(.active) {
    opacity: 0.85;
  }
}
@media only screen and (max-width: 991px) {
  .plans {
    position: relative;
  }
  .plans.mobile-active .plans-box:not(.mobile-active) {
    opacity: 0.85;
  }
}
.plans:not(.dragging) {
  transition: all 0.4s ease;
}
.plans-header {
  display: flex;
}
.plans-opener {
  transition: all 0.4s ease;
  position: relative;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-right: 9px;
}
.plans-opener::before, .plans-opener::after {
  content: "";
  display: block;
  position: absolute;
  background: #FEFFEB;
}
.plans-opener::before {
  left: 0;
  top: 10px;
  height: 2px;
  width: 100%;
}
.plans-opener::after {
  left: 10px;
  top: 0;
  height: 100%;
  width: 2px;
}
.plans-box {
  transition: all 0.4s ease;
  user-select: none;
  color: #FEFFEB;
  padding: 17px 10px 43px 12px;
}
@media only screen and (min-width: 992px) {
  .plans-box {
    padding-bottom: 24px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .plans-box {
    padding-bottom: calc(24px + 19 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 992px) and (min-width: 1300px) {
  .plans-box {
    padding-bottom: 43px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-box {
    padding-top: 30px;
    min-width: 87%;
  }
}
@media only screen and (min-width: 992px) {
  .plans-box.active .plans-opener {
    transform: rotate(90deg);
  }
}
@media only screen and (max-width: 991px) {
  .plans-box.mobile-active {
    position: relative;
    z-index: 10;
  }
  .plans-box.mobile-active .plans-opener {
    transform: rotate(90deg);
  }
}
.plans-box-title {
  display: flex;
  text-transform: uppercase;
}
.plans-box-title h4 {
  margin-bottom: 0;
  margin-top: -0.15em;
  padding-bottom: 0.9em;
  min-height: 3.3em;
  padding-top: 4px;
}
@media only screen and (min-width: 1200px) {
  .plans-box-title h4 {
    padding-top: calc(4px + -4 * (100vw - 1200px) / 100);
  }
}
@media only screen and (min-width: 1300px) {
  .plans-box-title h4 {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .plans-box-title h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 1200px) {
  .plans-box-title h4 {
    font-size: calc(16px + 9 * (100vw - 1200px) / 100);
  }
}
@media only screen and (min-width: 992px) and (min-width: 1300px) {
  .plans-box-title h4 {
    font-size: 25px;
  }
}
.plans-box:hover .plans-arrow {
  animation: height-jump 0.8s ease;
}
.plans-counter {
  display: flex;
  padding-left: 18px;
}
@media only screen and (max-width: 991px) {
  .plans-counter {
    padding-left: 22px;
  }
}
.plans-subscript {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  margin-left: 0.3em;
}
.plans-arrow {
  position: absolute;
  height: 100%;
  left: -9px;
  top: 0;
  width: 2px;
  background: #FFFDED;
  padding-bottom: 0 !important;
}
.plans-arrow::after, .plans-arrow::before {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background: #FFFDED;
  bottom: -1px;
}
.plans-arrow::after {
  transform: rotate(45deg);
  left: 4px;
}
.plans-arrow::before {
  transform: rotate(-45deg);
  left: -4px;
}
.plans-number {
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media only screen and (min-width: 992px) {
  .plans-number {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .plans-number {
    font-size: calc(90px + 55 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 992px) and (min-width: 1300px) {
  .plans-number {
    font-size: 145px;
  }
}
.plans-number-inner {
  position: relative;
}
.plans-number-text {
  margin-left: 0.025em;
  padding-top: 0.08em;
}
@media only screen and (min-width: 992px) {
  .plans-number-text {
    margin-left: calc(0.025em + 0.06 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .plans-number-text {
    margin-left: 0.085em;
  }
}
.plans-footer {
  transition: all 0.4s ease;
  height: 0;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .plans-footer {
    width: 100% !important;
  }
}
.plans-content {
  display: none;
}
@media only screen and (min-width: 992px) {
  .plans-content {
    padding-left: 0 !important;
  }
  .plans-content hr {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .plans-content {
    height: 100%;
  }
  .plans-content h3, .plans-content a, .plans-content br {
    display: none !important;
  }
  .home .plans-content .link.with-gradient {
    display: inline-block !important;
    margin-bottom: 20px;
  }
  .home .plans-content p {
    margin-bottom: 0.5rem;
  }
  .home .plans-content h3 {
    display: inline-block !important;
  }
}
.plans-content-wrapper {
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px 35px 40px;
}
@media only screen and (min-width: 992px) {
  .plans-content-wrapper {
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
    width: 100% !important;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .plans-content-wrapper {
    padding-left: calc(30px + 10 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 992px) and (min-width: 1300px) {
  .plans-content-wrapper {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .plans-content-wrapper {
    padding-right: calc(30px + 20 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 992px) and (min-width: 1300px) {
  .plans-content-wrapper {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-content-wrapper {
    padding: 0 20px 36px 20px;
    position: relative;
  }
}
.plans-content hr {
  margin-top: 0;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .plans-content.active {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .plans-content.mobile-active {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .plans-icons {
    text-align: center;
  }
}
.plans-icons span {
  text-align: right;
  display: inline-block;
}
.plans-icons span:not(:last-child) {
  margin-right: 0px;
}
@media only screen and (min-width: 992px) {
  .plans-icons span:not(:last-child) {
    margin-right: calc(0px + 63 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .plans-icons span:not(:last-child) {
    margin-right: 63px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-icons span {
    text-align: center;
    margin-bottom: 20px;
  }
}
.plans-icons span img {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .plans-icons span img {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .plans-icons span img {
    width: 100%;
    height: 45px;
  }
}
/*# sourceMappingURL=plans-section.css.map*/