:root {
  --green-10: #00e5d2;
  --green-20: #00c8b8;
  --green-30: #00ac9e;
  --green-40: #008f83;
  --green-50: #007269;
  --green-60: #00564f;
  --green-70: #003935;
  --green-80: #001d1a;
  --gold: #e6b567;
  --pink: #ffbdbd;
  --secondaryColor: #ff8b70;
  --mainColor: #524787;
  --white: #ffffff;
  --containerColor: #a05290;
  --indexColor: #5cfbd8;
}

p {
  margin-bottom: 0;
}

.container-padding {
  margin-top: 64px;
  margin-bottom: 64px;
}

body {
  background-color: var(--mainColor);
  color: #fff;
  font-family: "Inter", sans-serif;
}

.btn {
  border-radius: 50px;
}

.btn-lg {
  padding: 8px 24px;
}
.btn-lg:hover {
  background-color: var(--containerColor) !important;
  border-color: var(--secondaryColor) !important;
}

.main-hero {
  height: 85vh;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero {
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero .row {
  height: 100%;
}

.hero .hero-col {
  display: flex;
  align-items: center;
}

.btn-primary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.btn-primary:hover {
  background-color: var(--mainColor);
  border-color: var(--secondaryColor);
}

.btn-outline-primary {
  color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.btn-outline-primary:hover {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
  text-align: center;
}

.feature img {
  width: 40px;
}

.feature .feature-title {
  margin-top: 16px;
  font-size: 22px;
}

.feature .feature-desc {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.6;
  font-weight: 300;
}

.form-hero {
  background-color: var(--containerColor);
  padding: 64px;
  margin-top: 96px;
  margin-bottom: 96px;
  border-radius: 5px;
}

.form-hero li,
.free-list li {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 8px;
}

.form-hero a {
  font-size: 26px;
}

footer {
  text-align: center;
  margin-top: 76px;
  background-color: var(--green-80);
}

.navbar-brand {
  font-size: 22px;
}

.nav-item {
  padding-right: 16px;
}

.hero-image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.hero-col .btn {
  font-size: 20px;
}

/* start tabs */
.tabs {
  padding: 64px 0px;
}

.tab-title {
  cursor: pointer;
  border-left: 4px solid rgba(240, 240, 240, 0.3);
}

.tab-title.active {
  border-left: 4px solid var(--green-10);
}

.tab-title p:first-child {
  font-size: 20px;
}

.tab-title p:last-child {
  font-weight: 100;
  font-size: 16px;
}

.tab-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tab-content {
  opacity: 0;
  height: 0;
  transition: opacity 0.4s;
}

.tab-content.active {
  opacity: 1;
  height: auto;
}

.tab-content img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

/* end tabs */

.pro-hero .pro-btn-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Medium devices (landscape tablets, 767px and down) */
@media only screen and (max-width: 767px) {
  .font-h1 {
    font-size: 30px;
  }

  .container-padding {
    margin-top: 30px;
  }

  .form-hero li,
  .free-list li {
    font-size: 14px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
  .font-h1 {
    font-size: 52px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .font-h1 {
    font-size: 62px;
  }
}

@media only screen and (max-width: 992px) {
  .secondary-hero .secondary-hero-desc {
    margin-top: 16px;
  }

  .form-hero {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .form-hero a {
    font-size: 26px;
  }

  .tabs {
    padding-bottom: 0;
  }

  .tab-content {
    padding: 16px;
  }

  .tabs > .row {
    width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 576px) {
  .hero {
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .hero:not(.secondary-hero) > .row {
    flex-direction: column-reverse;
  }

  .hero-desc > div {
    width: 100%;
  }

  .hero-desc {
    margin-top: 32px;
    text-align: center;
  }

  .feature {
    padding: 32px;
  }

  .form-hero a {
    font-size: 22px;
  }
}
