@import url("https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap");

* {
  transition: all 0.5s linear;
  font-family: "Roboto", sans-serif;
  color: #151b26;
  font-weight: 400;
}

html,
body {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
}

.logo {
  width: 133px;
}

.logo.black {
  display: none;
}

@media (min-width: 992px) {
  .navbar-brand {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
    padding-bottom: 0.9375rem;
    padding-right: 1rem;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}

.nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.nav-dropdown > .dropdown-menu {
  top: 200%;
  border-radius: 0;
  transition: 0.3s all ease-in-out;
}

.nav-dropdown:hover > .dropdown-menu {
  display: block;
  top: 100%;
}

.nav-dropdown > .dropdown-toggle::after {
  display: none;
}

.drop-down-arrow {
  font-size: 0.625rem;
  margin-left: 0.125rem;
}

.navbar-search {
  display: none;
  margin-top: 1rem;
  margin-left: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #21c87a;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.navbar-search::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.navbar-search:focus {
  margin-top: 1rem;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #21c87a;
}

.navbar-signin-btn {
  color: #fff;
  background-color: #21c87a;
  border-color: #21c87a;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  margin-top: 12px;
}

.navbar i {
  color: #fff;
}

.navbar-signin-btn:hover {
  background-color: #1ca766 !important;
  border-color: #1a9c5f !important;
}

.navbar-toggler {
  outline: 0 !important;
}

.menu-bar {
  color: #21c87a;
  font-size: 25px;
}

.scrolled,
.clicked {
  background: #fff !important;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.24);
}

.scrolled .logo.white,
.clicked .logo.white {
  display: none;
}

.scrolled .logo.black,
.clicked .logo.black {
  display: inline;
}

.scrolled .nav-link,
.clicked .nav-link,
.scrolled i,
.clicked i {
  color: #000;
}

.scrolled .nav-link:hover,
.clicked .nav-link:hover {
  color: #000;
}

.scrolled .navbar-signin-btn,
.clicked .navbar-signin-btn {
  color: #fff;
}

.scrolled .navbar-signin-btn:hover,
.clicked .navbar-signin-btn:hover {
  color: #fff;
}

.scrolled .navbar-signin-btn i,
.clicked .navbar-signin-btn i {
  color: #fff;
}

.scrolled .navbar-search::placeholder,
.clicked .navbar-search::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 1rem;
  }

  .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
  }

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-search-icon {
    display: none;
  }

  .navbar-search {
    display: block;
    margin-right: 15px;
  }

  .navbar-signin-btn {
    width: 100px;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .navbar-brand {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Header */
header {
  background: url(../images/header-bg-mobile.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  header {
    background: url(../images/header-bg.jpg) no-repeat top center;
  }
}

header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(21, 27, 38, 0.5) 100%
  );
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (min-width: 992px) {
  .height-85 {
    height: 85vh;
  }
}

@media (max-width: 991.98px) {
  header {
    padding: 8rem 0;
  }
}

.signup-form-wrap {
  padding: 2.5rem;
}

.signup-form-wrap .form-control {
  font-size: 16px;
  line-height: 37px;
  height: 50px;
  color: #151b26;
  font-weight: 400;
}

.signup-form-wrap .form-control::placeholder {
  color: #8c98a4;
}

.btn-success {
  font-size: 16px;
  line-height: 37px;
  height: 50px;
  color: #fff;
  background-color: #21c87a !important;
  border-color: #21c87a !important;
}

.btn-success:hover {
  background-color: #1ca766 !important;
  border-color: #1a9c5f !important;
}

/* Steps */
.steps {
  padding: 5rem 0;
  background-image: linear-gradient(
    0deg,
    #f5f8fb 0%,
    rgba(255, 255, 255, 0) 25%
  );
  background-repeat: repeat-x;
}

@media (max-width: 991.98px) {
  .steps {
    padding: 5rem 0;
  }
}

.text-gray-700 {
  color: #646f79;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.letter-spacing-0_06 {
  letter-spacing: 0.06rem;
}

.text-lh-xs {
  line-height: 1.2;
}

.wizard-steps {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wizard-steps::after {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: 5rem;
  right: 5rem;
  height: 2px;
  background-color: #f5f8fb;
  z-index: 1;
}

@media (min-width: 992px) {
  .w-lg-80 {
    width: 80% !important;
  }
}

.wizard-steps-item.active {
  color: #212529;
}

.wizard-steps-item {
  text-align: center;
  z-index: 2;
  font-weight: bold;
  font-size: 1.25rem;
  color: #8c98a4;
}

.cursor-pointer {
  cursor: pointer;
}

.wizard-steps-num-wrapper {
  display: inline-block;
  background-color: #fff;
  padding: 1.5rem;
}

.wizard-steps-title {
  font-weight: normal;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

.wizard-steps-item.active .wizard-steps-num {
  background-color: #21c87a;
}

.wizard-steps-num {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -1rem;
  line-height: 0.7;
  background-color: #fff;
}

.shadow {
  box-shadow: 0 0 2.1875rem rgba(140, 152, 164, 0.25) !important;
}

.wizard-steps-item.active .wizard-steps-num-inner {
  color: #fff;
}

.wizard-steps-num-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 4rem !important;
  }
}

.text-lh-xs {
  line-height: 1.2;
}

@media (min-width: 768px) {
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
}

.mb-7,
.my-7 {
  margin-bottom: 3rem !important;
}

.options-content {
  display: none;
}

@media (max-width: 768.98px) {
  .options-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.options-content.active {
  display: block;
}

.btn-primary {
  color: #fff;
  background-color: #21c87a;
  border-color: #21c87a;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.btn-primary:hover {
  text-decoration: none;
  color: #fff;
  background-color: #1ca766;
  border-color: #1a9c5f;
}

.btn-outline-primary {
  color: #21c87a;
  background-color: #fff;
  border-color: #21c87a;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.btn-outline-primary:hover {
  text-decoration: none;
  color: #fff;
  background-color: #21c87a;
  border-color: #21c87a;
}

/* Features */
.features {
  padding: 5rem 0;
}

@media (max-width: 991.98px) {
  .features {
    padding: 5rem 0;
  }
}

.features-side-menu {
  padding: 2rem 3rem 2rem 3rem;
}

.f-menu-item {
  display: block;
  padding: 0.5rem 0;
  cursor: pointer;
}

.f-menu-item.active,
.f-menu-item:hover {
  color: #21c87a;
  position: relative;
}

@media (min-width: 992px) {
  .features-side-menu {
    border-right: 0.25rem solid rgba(100, 111, 121, 0.09);
  }

  .f-menu-item.active::after {
    content: "";
    width: 0.25rem;
    height: 100%;
    background: #21c87a;
    position: absolute;
    top: 0;
    right: -3.2rem;
  }
}

.features-img {
  max-width: 4rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: #646f79;
  font-size: 17px;
}

.feature-link,
.feature-link span {
  color: #21c87a;
  text-decoration: none;
  background-color: transparent;
}

.feature-link:hover {
  color: #168652;
  text-decoration: none;
}

.my-tabs:not(:nth-of-type(1)) {
  display: none;
}

.u-label--purple {
  color: #796eff;
  background-color: rgba(121, 110, 255, 0.1);
}

.u-label--sm {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}
.u-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.625rem 1.125rem;
  border-radius: 6.1875rem;
  transition: 0.2s ease-in-out;
}

/* FAQ */
.faq {
  padding: 10rem 0;
}

@media (max-width: 991.98px) {
  .faq {
    padding: 5rem 0;
  }
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 4rem !important;
  }
}

.card-collapse {
  border: none;
}

.card-collapse__header {
  padding: 0;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

.card-collapse__btn {
  color: #151b26;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
  white-space: inherit;
}

.card-collapse__btn:hover,
.card-collapse__btn:focus {
  color: #168652;
  text-decoration: none;
}

.card-collapse__body {
  color: #646f79;
}

.card-collapse__btn-arrow {
  color: #21c87a;
  margin-left: 1rem;
  transition: 0.3s ease-in-out;
}

.card-collapse__btn-arrow-inner {
  font-size: 0.8125rem;
  color: #21c87a;
}

.collapsed .card-collapse__btn-arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.see-all-faq-link {
  color: #21c87a;
  text-decoration: none;
  background-color: transparent;
}

.see-all-faq-link:hover {
  color: #1a9c5f;
  text-decoration: none;
  background-color: transparent;
}

/* Pricing */
.pricing {
  padding: 10rem 0;
}

@media (max-width: 991.98px) {
  .pricing {
    padding: 5rem 0;
  }
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f5f8fb;
}

.btn-choose {
  color: #fff;
  background-color: #21c87a;
  border-color: #21c87a;
  font-size: 0.6875rem;
}

.btn-choose:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1ca766;
  border-color: #1a9c5f;
}

.btn-outline-choose {
  color: #21c87a;
  background-color: #fff;
  border-color: #21c87a;
  font-size: 0.6875rem;
}

.btn-outline-choose:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1ca766;
  border-color: #1a9c5f;
}

.text-purple {
  color: #796eff !important;
}

.text-muted {
  color: #8c98a4 !important;
}

.font-size-14 {
  font-size: 0.875rem;
}

/* Footer */
footer {
  padding: 4rem 0;
  background-color: #151b26;
}

.min-width-3 {
  min-width: 1rem;
}

.lists-list-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
}

.lists-list-footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.lists-list-footer a span {
  color: rgba(255, 255, 255, 0.7);
}

.mb-7,
.my-7 {
  margin-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
}

.select-language-wrap .select-language-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #646f79;
  padding: 0.7rem 1rem;
}

.select-language-wrap .select-language-btn:hover {
  text-decoration: none;
  color: #fff !important;
}

.select-language-wrap .select-language-btn:hover .text-muted {
  text-decoration: none;
  color: #fff !important;
}

#footerLanguage {
  position: absolute;
  left: 0;
  top: -25.5rem;
  min-width: 18.5rem;
  z-index: 10000;
  display: none;
  box-shadow: 0 0.125rem 0.9375rem rgba(100, 111, 121, 0.1);
}

@media (min-width: 576px) {
  #footerLanguage {
    min-width: 22.5rem;
  }
}

.max-width-3 {
  max-width: 1rem;
}

.select-language-from {
  background: #fff;
  padding: 2.5rem 2rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.languages-list a {
  color: #151b26;
  font-size: 0.875rem;
  padding: 0.375rem 0;
}

.languages-list a:hover,
.languages-list a.active {
  color: #21c87a;
  text-decoration: none;
}

.langauges-list-footer {
  display: block;
  background-color: #f5f8fb;
  padding: 2.5rem 2rem;
}

.langauges-list-footer:hover {
  text-decoration: none;
}

.langauges-list-footer .signup-text {
  color: #21c87a;
}

.langauges-list-footer .signup-text:hover {
  color: #168652;
}

.langauges-list-footer .signup-text span {
  color: #21c87a;
}

.langauges-list-footer .signup-text:hover span {
  color: #168652;
}
