/**
 * Helper classes
 */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0; }
  .clearfix:after {
    clear: both; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.text-just {
  text-align: justify !important; }

.align-top {
  vertical-align: top; }

.align-bottom {
  vertical-align: bottom; }

.align-middle {
  vertical-align: middle; }

.align-baseline {
  vertical-align: baseline; }

.bold {
  font-weight: bold; }

.regular {
  font-weight: normal; }

.italic {
  font-style: italic; }

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.break-word {
  word-wrap: break-word; }

.no-wrap {
  white-space: nowrap !important; }

.inline {
  display: inline !important; }

.block {
  display: block !important; }

.inline-block {
  display: inline-block !important; }

.none {
  display: none !important; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

.fixed {
  position: fixed; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.m-0 {
  margin: 0; }

.mt-5 {
  margin-top: 5px; }

.mb-20 {
  margin-bottom: 20px; }

/**
 * Colors
 */
.text-danger {
  color: #da4d54; }

/**
 * Flex helper classes
 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start; }

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }

.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end; }

.flex-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around; }

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.flex-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end; }

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse; }

.flex-content-between {
  -webkit-align-content: space-between;
  -moz-align-content: space-between;
  -ms-flex-line-pack: space-between;
  align-content: space-between; }

.flex-grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.flex-align-right {
  margin-left: auto; }

.flex-align-left {
  margin-right: auto; }

.flex-align-top {
  margin-bottom: auto; }

.flex-align-bottom {
  margin-top: auto; }

.fluid {
  display: block;
  width: 100% !important; }

/**
 * Form Result
 */
.form-result {
  font-size: 12px;
  line-height: 20px; }

/**
 * Inputs
 */
.input {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  color: #6c6d75;
  border: 1px solid #dbdcde;
  border-radius: 4px;
  outline: none;
  background-color: #f5f5fa;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s; }
  .input.leftpad {
    padding-left: 50px; }
  .input.rightpad {
    padding-right: 50px; }
  .input.error {
    border-color: #da4d54; }
  .input:focus {
    border-color: #15b6c1; }

/**
 * Input placeholders
 */
::placeholder {
  opacity: 1;
  color: #6c6d75; }

:-ms-input-placeholder {
  color: #6c6d75; }

::-ms-input-placeholder {
  color: r #6c6d75; }

/**
 * Selectbox
 */
.selectbox {
  position: relative; }
  .selectbox select {
    padding-right: 35px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .selectbox::after {
    position: absolute;
    top: 21px;
    right: 20px;
    content: '';
    pointer-events: none;
    border-top: .34em solid #727ea0;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent; }

/**
 * Input icons, tiplinks
 */
.input-icon, .input-tiplink {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }

.input-icon {
  left: 20px;
  font-size: 14px;
  color: #6c6d75; }

.input-tiplink {
  right: 20px;
  font-size: 12px;
  line-height: 20px;
  color: #15b6c1; }

/**
 * Checkbox
 */
.checkbox {
  display: none; }
  .checkbox + div {
    position: relative;
    padding-left: 25px;
    font-size: 12px;
    line-height: 20px;
    cursor: pointer;
    color: #727ea0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .checkbox + div .icon {
      position: absolute;
      top: 0;
      left: 0;
      width: 20px;
      height: 20px;
      font-size: 20px;
      text-align: center;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      transition: all ease 0.3s;
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      transform: rotateY(0deg); }
      .checkbox + div .icon.checked {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: scale(0.8) rotateY(0deg);
        -moz-transform: scale(0.8) rotateY(0deg);
        transform: scale(0.8) rotateY(0deg); }
  .checkbox:checked + div .icon.checked {
    visibility: visible;
    opacity: 1;
    color: #15b6c1;
    -webkit-transform: scale(1) rotateY(0deg);
    -moz-transform: scale(1) rotateY(0deg);
    transform: scale(1) rotateY(0deg); }
  .checkbox:checked + div .icon.unchecked {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.8) rotateY(0deg);
    -moz-transform: scale(0.8) rotateY(0deg);
    transform: scale(0.8) rotateY(0deg); }

/**
 * Buttons
 */
.simple-button, .gradient-button {
  display: inline-block;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  line-height: 15px;
  text-decoration: none;
  letter-spacing: .9px;
  text-transform: uppercase;
  border-radius: 4px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s; }

.simple-button {
  margin-right: 25px;
  color: #15b6c1;
  background: #e4fafc; }
  .simple-button:hover {
    color: #fff;
    background: #15b6c1; }

.gradient-button {
  color: #fff;
  background: linear-gradient(135deg, #3be8b0 0%, #02cdff 100%);
  background-size: 100% 2%; }
  .gradient-button:hover {
    box-shadow: 0 15px 20px 0 rgba(212, 212, 233, 0.6); }

.button {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border: 1px solid #15b6c1;
  border-radius: 24px;
  outline: 0;
  background-color: #15b6c1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s; }
  .button:hover {
    color: #15b6c1;
    border-color: #15b6c1;
    background-color: #f5f5fa; }
  .button i {
    margin-left: 5px; }

.fbloginbtn {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  color: #6c6d75;
  border: 1px solid #dbdcde;
  border-radius: 24px;
  background-color: transparent;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s; }
  .fbloginbtn i {
    position: absolute;
    left: 25px;
    font-size: 24px;
    color: #39579a; }
  .fbloginbtn:hover {
    color: #fff;
    background-color: #39579a; }
    .fbloginbtn:hover i {
      color: #fff; }

@media screen and (max-width: 991px) {
  .simple-button, .gradient-button {
    font-size: 10px; } }

body {
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  color: #7283a0;
  background-color: #fff; }
  body.alternatebg {
    background-color: #f5f5fa; }
  body.inprogress:after {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.95) url("../img/round-loading.svg") center no-repeat; }

a {
  text-decoration: none;
  color: #15b6c1; }

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #21326e; }

.section-description {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 37px;
  color: #7283a0; }

@media screen and (max-width: 2400px) and (min-width: 1500px) {
  body.bg-img {
    background-size: 60% !important; } }

@media screen and (min-width: 992px) {
  body.bg-img {
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 70%; } }

@media screen and (max-width: 991px) {
  .section-title {
    font-size: 24px;
    line-height: 30px; }
  .section-description {
    font-size: 16px;
    line-height: 30px; } }

footer {
  padding: 50px 0;
  border-top: 1px solid rgba(114, 126, 160, 0.3); }
  footer .brand-logo a {
    margin-right: 15px; }
  footer .brand-logo img {
    width: 80px; }
  footer .brand-logo p {
    font-size: 14px;
    line-height: 23px; }
  footer ul.links {
    margin: 0;
    padding: 0;
    list-style: none; }
    footer ul.links li {
      margin-left: 40px; }
      footer ul.links li:first-child {
        margin-left: 0; }
    footer ul.links a {
      font-size: 14px;
      font-weight: 600;
      line-height: 18px;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      transition: all ease 0.3s;
      color: #7283a0; }
      footer ul.links a:hover {
        color: #33334f; }

@media screen and (max-width: 991px) {
  footer {
    padding: 20px 0; }
    footer .brand-logo {
      width: 100%;
      text-align: center; }
      footer .brand-logo a {
        margin: 0;
        width: 100%; }
      footer .brand-logo img {
        width: 70px;
        margin: 0 auto; }
      footer .brand-logo p {
        margin-left: auto;
        margin-top: 10px;
        width: 100%;
        font-size: 12px; }
    footer ul.links {
      width: 100%;
      margin-top: 20px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; } }

header {
  padding: 55px 0; }
  header .brand-logo {
    position: relative;
    z-index: 3; }
    header .brand-logo a {
      display: inline-block; }
    header .brand-logo img {
      width: 125px; }
  header nav ul {
    margin: 0; }
  header nav li {
    display: inline-block; }
  header nav a {
    margin: 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    color: #fff; }
  header nav .btn {
    padding: 10px 30px;
    color: #fd646b;
    border-radius: 22px;
    background-color: #fff; }
  header .language {
    position: relative;
    z-index: 3;
    cursor: pointer; }
    header .language .active {
      margin-left: 20px;
      font-size: 14px;
      font-weight: 700;
      color: #fff; }
    header .language .dropdown-list {
      position: absolute;
      top: calc(100% + 10px);
      right: -7px;
      display: none;
      width: auto;
      border-radius: 4px;
      background-color: #fff;
      box-shadow: 0 1px 10px 0 rgba(212, 212, 233, 0.5); }
      header .language .dropdown-list::before, header .language .dropdown-list::after {
        position: absolute;
        height: 10px;
        content: '';
        background-color: #fff; }
      header .language .dropdown-list::before {
        z-index: 10;
        top: 0;
        right: 6px;
        width: 20px; }
      header .language .dropdown-list::after {
        top: -5px;
        right: 9px;
        width: 10px;
        box-shadow: 0 1px 10px 0 rgba(212, 212, 233, 0.5);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg); }
      header .language .dropdown-list .language-list {
        text-align: center; }
      header .language .dropdown-list a {
        display: block;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 800;
        transition: all linear .2s;
        white-space: nowrap;
        color: #21326e; }
        header .language .dropdown-list a:hover {
          color: #fff;
          background-color: #fd646b; }
  header .menu-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin-left: 15px; }
    header .menu-toggle .trigger {
      position: relative;
      display: inline-block;
      width: 100%;
      height: 2px;
      line-height: 30px;
      background-color: #21326e; }
      header .menu-toggle .trigger::before, header .menu-toggle .trigger::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        content: '';
        background-color: #21326e;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out; }
      header .menu-toggle .trigger::after {
        top: -7px; }
      header .menu-toggle .trigger::before {
        bottom: -7px; }
    header .menu-toggle.is-active .trigger {
      background-color: transparent; }
      header .menu-toggle.is-active .trigger::after {
        top: 0;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg); }
      header .menu-toggle.is-active .trigger::before {
        bottom: 0;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg); }

@media screen and (max-width: 991px) {
  header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #c5ccd8;
    background-color: white; }
    header .brand-logo img {
      width: 80px; }
    header nav ul {
      position: absolute;
      z-index: 100;
      top: 60px;
      left: 0;
      display: none;
      box-sizing: border-box;
      width: 100%;
      margin: 0;
      padding: 20px 0;
      text-align: center;
      background: #fff;
      -webkit-box-shadow: 0 2px 14px -3px rgba(197, 204, 216, 0.75);
      -moz-box-shadow: 0 2px 14px -3px rgba(197, 204, 216, 0.75);
      box-shadow: 0 2px 14px -3px rgba(197, 204, 216, 0.75); }
      header nav ul li {
        display: block; }
        header nav ul li a {
          display: block;
          padding: 10px;
          font-size: 16px;
          font-weight: 700;
          color: #21326e; }
        header nav ul li .btn {
          display: inline-block;
          margin: 10px 0;
          border: 2px solid; }
          header nav ul li .btn:hover {
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            color: #fff;
            background-color: #fd646b;
            border-color: #fd646b; }
    header .language .active {
      color: #21326e; } }

@media screen and (min-width: 992px) {
  header nav ul {
    list-style: none; }
  header nav a {
    position: relative; }
    header nav a::after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      margin-bottom: -5px;
      content: '';
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      border-bottom: 2px solid #fff;
      border-radius: 3px; }
    header nav a:hover::after {
      width: 100%; }
  header nav .btn {
    display: inline-block; }
    header nav .btn::after {
      display: none; }
  header .menu-toggle {
    display: none; }
  header.alternate nav a {
    color: #fd646b; }
    header.alternate nav a:after {
      border-bottom-color: #fd646b; }
  header.alternate nav .btn {
    background-color: #fd646b;
    color: #fff; }
  header.alternate .language .active {
    color: #fd646b; } }

#home-top {
  padding: 200px 0; }
  #home-top .managing-accounts {
    float: left;
    width: 45%; }
  #home-top .section-title {
    margin-bottom: 30px;
    font-weight: bold; }
  #home-top .section-description {
    margin-bottom: 50px; }
  #home-top .bg-animation-section {
    position: relative;
    float: right;
    width: 55%;
    height: 500px;
    margin-top: -150px; }
  #home-top .browser-img {
    height: 420px;
    background-image: url(../img/browser.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain; }
  #home-top .tree {
    position: absolute;
    bottom: 20%;
    left: 0; }
  #home-top .tree-pot {
    position: absolute;
    right: 10%;
    bottom: -15%; }

@media screen and (max-width: 1199px) and (min-width: 992px) {
  #home-top .tree-pot {
    bottom: 5%; }
  #home-top .tree img,
  #home-top .tree-pot img {
    width: 80%; } }

@media screen and (max-width: 991px) {
  #home-top {
    padding: 100px 0; }
    #home-top .managing-accounts {
      float: none;
      width: auto;
      text-align: center; }
    #home-top .section-title {
      margin: 0 0 15px 0;
      font-size: 24px;
      line-height: 38px; }
    #home-top .section-description {
      margin: 0 0 30px 0;
      font-size: 16px;
      line-height: 24px; }
    #home-top .simple-button {
      display: none; }
    #home-top .bg-animation-section {
      display: none; } }

#manage .box {
  box-sizing: border-box;
  width: 25%;
  margin-right: 80px; }

#manage .bg-pink {
  background: linear-gradient(315deg, #bb0ab0 0%, #f61d00 100%);
  box-shadow: 0 4px 8px 0 rgba(217, 20, 85, 0.3); }

#manage .bg-orange {
  background: linear-gradient(135deg, #feb21d 0%, #f61d00 100%);
  box-shadow: 0 4px 8px 0 rgba(250, 101, 14, 0.3); }

#manage .bg-purple {
  background: linear-gradient(135deg, #bb0ab0 0%, #3200c3 100%);
  box-shadow: 0 4px 8px 0 rgba(118, 5, 186, 0.3); }

#manage .rounded-corners-icon {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 32px; }
  #manage .rounded-corners-icon i {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 45px;
    color: #fff;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    transform: translate(50%, -50%); }

#manage .title {
  margin: 20px 0;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  line-height: 45px;
  color: #21326e; }

#manage .desc {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 37px; }

#manage .features-link a {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 23px;
  text-decoration: none;
  color: #15b6c1; }

@media screen and (max-width: 991px) {
  #manage .boxlist {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
  #manage .box {
    width: 280px;
    margin: 0 30px 30px 30px;
    text-align: center; }
  #manage .rounded-corners-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 25px; }
    #manage .rounded-corners-icon i {
      font-size: 30px; }
  #manage .title {
    margin: 15px 0;
    font-size: 18px;
    line-height: 24px; }
  #manage .desc {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 24px; }
  #manage .features-link a {
    font-size: 14px;
    line-height: 18px; } }

#features {
  padding: 120px 0; }
  #features .feature-list {
    margin-top: 85px; }
  #features .features-block {
    margin-right: 50px; }
  #features .feature {
    margin-bottom: 50px; }
  #features .rounded-icon {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background-color: #fff3e4; }
    #features .rounded-icon i {
      position: absolute;
      top: 50%;
      right: 50%;
      font-size: 32px;
      color: #ffa742;
      -webkit-transform: translate(50%, -50%);
      -moz-transform: translate(50%, -50%);
      transform: translate(50%, -50%); }
  #features .title {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: #21326e; }
  #features .description {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 37px; }

@media screen and (max-width: 991px) {
  #features {
    padding: 50px 0; }
    #features .feature-list {
      margin-top: 50px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    #features .features-block {
      margin: 0 50px 50px 50px; }
      #features .features-block:last-child {
        margin-bottom: 0; }
    #features .feature {
      width: 200px;
      text-align: center; }
    #features .rounded-icon {
      width: 55px;
      height: 55px;
      margin: 0 auto; }
      #features .rounded-icon i {
        font-size: 24px; }
    #features .title {
      margin: 15px 0;
      font-size: 18px;
      line-height: 24px; }
    #features .description {
      font-size: 14px;
      line-height: 24px; } }

#modules {
  margin-bottom: 100px;
  padding: 100px 0;
  color: #fff; }
  #modules .section-title {
    width: 55%;
    margin-bottom: 60px;
    color: inherit; }
    #modules .section-title h1 {
      margin: 0 0 20px 0;
      font-size: 40px;
      font-weight: 800;
      line-height: 55px; }
    #modules .section-title p {
      margin: 0;
      font-size: 20px;
      font-weight: 500;
      line-height: 37px; }
  #modules .module {
    width: calc((100% - 50px)/3);
    margin-bottom: 30px; }
    #modules .module i {
      font-size: 48px; }
  #modules .module-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 45px; }
  #modules .module-description {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px; }

@media screen and (max-width: 991px) {
  #modules {
    margin: 0;
    padding: 0;
    color: inherit; }
    #modules .section-title {
      width: auto;
      text-align: center; }
      #modules .section-title h1 {
        font-size: 24px;
        font-weight: 700;
        line-height: 30px;
        color: #21326e; }
      #modules .section-title p {
        font-size: 16px;
        line-height: 30px; }
    #modules .module-list {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }
    #modules .module {
      width: 280px;
      margin: 0 15px 30px 15px;
      text-align: center; }
      #modules .module i {
        font-size: 34px;
        color: #ffa742; }
    #modules .module-title {
      margin: 5px 0;
      font-size: 18px;
      line-height: 24px;
      color: #21326e; }
    #modules .module-description {
      font-size: 14px;
      line-height: 24px; } }

@media screen and (min-width: 992px) {
  #modules {
    height: 60vw;
    background-image: url("../img/module-bg.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; } }

@media screen and (min-width: 992px) and (max-width: 1300px) {
  #modules {
    height: 90vw !important; } }

#pricing .package-list {
  margin-top: 125px;
  text-align: center; }

#pricing .package {
  position: relative;
  min-width: 25%;
  max-width: 300px;
  margin-bottom: 50px;
  padding: 45px 0 65px 0;
  background-color: #fff;
  box-shadow: 0 1px 15px 0 rgba(212, 212, 233, 0.6); }
  #pricing .package:first-child {
    border-radius: 8px 0 0 8px; }
  #pricing .package:last-child {
    border-radius: 0 8px 8px 0; }
  #pricing .package sup {
    top: 0;
    font-size: inherit; }

#pricing .package-head {
  padding: 0 25px 45px; }
  #pricing .package-head .title {
    float: left;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px; }
  #pricing .package-head .price {
    float: right;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #33334f; }
    #pricing .package-head .price span {
      font-size: 10px;
      font-weight: 500;
      line-height: 13px;
      color: #7283a0; }

#pricing .annual-save {
  position: relative;
  margin-bottom: 55px;
  padding: 23px 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  border-top: 2px solid #eceff3;
  border-bottom: 2px solid #eceff3; }

#pricing ul.feature {
  margin: 0 0 40px;
  padding: 0;
  font-size: 16px;
  line-height: 30px;
  list-style: none; }
  #pricing ul.feature .title {
    font-weight: 800;
    color: #33334f; }
  #pricing ul.feature li {
    font-weight: 500;
    line-height: 30px; }

#pricing .package.popular {
  z-index: 2;
  border-radius: 8px; }
  #pricing .package.popular .badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    color: #fff;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #3be8b0 0%, #02cdff 100%); }
  #pricing .package.popular .package-head .title::after {
    margin-left: 8px;
    font-family: 'Material Design Icons';
    font-size: 16px;
    content: '\F2D1';
    background: -webkit-gradient(linear, left top, left bottom, from(#f61d00), to(#feb21d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }

#pricing .module {
  display: block;
  width: 30px;
  height: 30px;
  margin: 2px;
  padding: 7px 6px 5px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  #pricing .module.disabled {
    opacity: .3;
    color: #7283a0 !important;
    background: #e0e0e0 !important; }

@media screen and (min-width: 992px) {
  #pricing .popular {
    margin-top: -35px !important;
    margin-bottom: 0 !important;
    padding-top: 80px !important; } }

@media screen and (max-width: 991px) {
  #pricing {
    padding: 50px 0; }
    #pricing .package-list {
      margin-top: 50px; }
    #pricing .package {
      width: 280px;
      min-width: 0;
      max-width: none;
      margin: 20px;
      border-radius: 8px; } }

@media screen and (max-width: 425px) {
  #pricing .package {
    width: 100%;
    margin: 20px 0; } }

#quote {
  padding: 120px 0; }
  #quote .quote-body {
    padding: 70px 60px;
    box-shadow: 0 18px 35px 0 rgba(212, 212, 233, 0.4); }
  #quote a {
    margin-left: auto; }

@media screen and (max-width: 991px) {
  #quote {
    padding: 50px 0; }
    #quote .quote-body {
      flex-direction: column;
      text-align: center; }
    #quote .section-title {
      font-size: 30px;
      line-height: 40px; }
    #quote .section-description {
      font-size: 16px;
      line-height: 24px; }
    #quote a {
      margin: 20px 0 0 0; } }

@media screen and (max-width: 425px) {
  #quote .quote-body {
    padding: 70px 30px; } }

.signinarea .inner {
  width: 340px;
  margin: 150px auto; }

.signinarea .title {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
  color: #33334f; }

.signinarea .actions {
  font-size: 12px;
  color: #6c6d75; }

.signinarea hr {
  height: 1px;
  margin: 20px 0;
  color: #dbdcde;
  border: none;
  background-color: #dbdcde; }

.signinarea .formnav .label {
  margin-right: 8px;
  font-size: 12px;
  line-height: 15px;
  color: #6c6d75; }

.signinarea .formnav .dot {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #e7e7f5; }

.signinarea .formnav .active {
  background-color: #15b6c1;
  box-shadow: 0 4px 9px 0 rgba(21, 182, 193, 0.3); }

.signinarea .bottom-text {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #6c6d75; }

.signinarea .recaptcha .g-recaptcha > div {
  margin: 0 auto; }

@media screen and (max-width: 425px) {
  .signinarea .inner {
    width: auto;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center; }
  .signinarea .title {
    font-size: 28px;
    line-height: 30px; } }

.staticpage {
  padding: 50px 0; }
  .staticpage .title {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: 700;
    line-height: 50px;
    color: #33334f; }
  .staticpage .content {
    font-size: 18px;
    line-height: 34px;
    font-weight: 300; }
