* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.6;
  background-color: #e6ffff;
  color: #433f63;
}

a {
  text-decoration: none;
  color: #007bff;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 10px;
}

div.a {
  text-align: left;
  text-indent: 50px;
}

.container {
  max-width: 1100px;
  background-color: #f8fafe;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 20px 20px;
}

.pricing {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.card {
  flex: 1;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 15px;
  color: #333;
  background: #f8fafe;
}

.card-pro h2 {
  background: linear-gradient(
    90deg,
    rgba(194, 227, 255, 1) 13%,
    rgba(180, 118, 254, 1) 100%
  );
  color: #fff;
}

.card-enterprise h2 {
  background: linear-gradient(
    90deg,
    rgba(255, 177, 194, 1) 13%,
    rgba(255, 203, 114, 1) 100%
  );
  color: #fff;
}

/* Price */
.card .price {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.card .price sup {
  font-size: 18px;
  position: relative;
  left: -5px;
}

.card .price span {
  font-size: 18px;
  margin-left: 5px;
}

.card .main-text {
  font-size: 14px;
  margin-bottom: 50px;
}

.card .secondary-text {
  font-size: 12px;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: block;
  background-color: #fff;
  color: #27264b;
  border: 1px solid #27264b;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary,
.btn:hover {
  background-color: #27264b;
  color: #fff;
}

.btn-primary:hover {
  background-color: #fff;
  color: #27264b;
}

/* List */
.card ul {
  text-align: left;
  margin-top: 50px;
}

.card ul li i {
  color: #98ca9e;
  margin-right: 10px;
}
/* ************************** */
.header {
  /*background: linear-gradient(45deg, #f00, #00f);*/
  color: #625ed6;
  padding: 10px 0;
  margin-bottom: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header.transparent {
  background: linear-gradient(
    45deg,
    rgba(255, 0, 0, var(--header-transparency)),
    rgba(0, 0, 255, var(--header-transparency))
  );
}

.header .menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.header .menu a {
  color: #2b0967;
}

.header .menu a:hover {
  color: #f00;
}

.section {
  margin: 30px 0;
}

.section h2 {
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #f00, #00f);
  color: #d8b8e3;
  font-size: 40px;
}

.section#home {
  margin-bottom: 100px;
}
