a {
  text-decoration: none;
}

.main-menu {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
}

.main-menu .menu-link {
  display: inline-block;
  margin: 0 15px;
  color: #333;
  font-size: 18px;
}
body {
  background: linear-gradient(180deg, #F1F6FF 0%, rgba(255, 255, 255, 0) 78.28%);
}
#header {
  padding: 30px 0;
  
}

#logo {
  font-weight: bold;
  font-size: 30px;
}

#main {
  padding: 60px 0;
 
  background: linear-gradient(180deg, #F1F6FF 0%, rgba(255, 255, 255, 0) 78.28%);
}

.section-hero h1 {
  font-size: 70px;
  font-weight: bold;
}

.section-hero h1 span {
  color: var(--bs-primary);
}

.section-hero .container>*>*:not(:last-child) {
  margin-bottom: 4rem;
}

.hero-desc {
  font-size: 24px;
  color: #64748b;
  font-weight: 600;
}

.max-w-4xl {
  max-width: 56rem;
  margin: auto;
}

.hero-cta .btn,
.btn-large {
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 40px;
}

#header .container {
  max-width: calc(100vw - 50px);
}

.text-right {
  text-align: right;
}

.btn-login,
.btn-plan-cta {
  padding: 5px 30px;
}

.custom-gap>*:not(:last-child) {
  margin-bottom: 30px;
}
.plan-wrap{
  --f-columns: 3;
  --f-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--f-gap));
  margin-bottom: calc(-1 * var(--f-gap));
}
.plan-wrap > * {
  margin-left: var(--f-gap);
  margin-bottom: var(--f-gap);
  width: calc((100% / var(--f-columns) - var(--f-gap)));
}

/* .plan-wrap {
  display: flex;
  margin-left: -15px;
} */

.plan-wrap>* {
  background: #f5f5f7;
  padding: 45px 60px 45px 60px;
  margin-left: 15px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  
}

.plan-item>*:not(:last-child) {
  margin-bottom: 30px;
}

.plan-desc {
  font-size: 14px;
  text-align: center;
}

.plan-desc-item {
  text-align: left;

}

.plan-head>.plan-price {
  color: var(--bs-primary);
  font-size: 30px;
  font-weight: bold;
}


.plan-bottom>*:not(:last-child) {
  margin-bottom: 30px;
}

.section-payment .container {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  max-width: 50%;
}

.section-payment h1 {
  font-size: 30px;
}

.payment-content>*:not(:last-child) {
  margin-bottom: 15px;
}

.form-payment {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 10px;
}

.form-payment-inner {
  border: 1px solid #cbd5e1;
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1rem;
}

.btn-payment {
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
}

#footer {
  background: #fafafb;
  padding: 30px 0;
}
#footer ul {
  padding-left: 0;
  margin-bottom: 0;
}
#footer li {
  list-style: none;
  
}
#footer a {
  color: #333;
}
.footer-title {
  font-size: 18px;
  font-weight: bold;
}
.menu-footer > *:not(:last-child) {
  margin-bottom: 5px;
}
#footer .menu-footer-term > * {
  color:#64748b;
}
.menu-footer-term > *:not(:last-child) {
  margin-right: 20px;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeee;
}
.footer-info-item > *:not(:last-child) {
  margin-bottom: 0;
}

.footer-info > *:not(:last-child) {
  margin-bottom: 15px;
}

.footer-info-item {
  background: #fff;
  padding: 15px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
}

.footer-info {
  margin-top: 15px;
}

.footer-info-item:hover {
  border-color: var(--bs-primary);
}
.footer-logo {
  font-weight: bold;
  color: var(--bs-primary);
  font-size: 20px;
}
@media screen and (max-width: 767.98px) {
  .section-hero h1 {
    font-size: 40px;
  }


  .plan-wrap {
    flex-wrap: wrap;
  }

  .plan-wrap>* {
    width: 100%;
  }

  .plan-wrap>*:not(:last-child) {
    margin-bottom: 30px;
  }

  .section-payment .container {
    max-width: 100%;
  }

  .d-sm-block {
    display: none;
  }
}