* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

:root {
  --primary: #ffffff;

  --text: #272727;

  --accent: #5057fd;

  --accent-light: #eff3ff;
}

body {
  font-family: "Poppins", sans-serif;

  min-height: 100vh;

  color: var(--text);

}

a {
  text-decoration: none;

  color: currentColor;
}

li {
  list-style: none;

  line-height: 2;
}

span {
  font-size: 14px;
}

p {
  font-weight: 500;
}

.pricing__section {
  margin-block: 3rem;
}

.wrapper {
  max-width: 1240px;

  margin-inline: auto;

  padding-inline: 1rem;
}

.title {
  text-align: center;

  display: grid;

  gap: 1rem;

  place-items: center;
}

.title h2 {
  font-size: 40px;
}

.toggle__section {
  display: flex;

  gap: 1rem;

  align-items: center;
}

.toggle__section input {
  display: none;
}

.toggle__section .toggle__btn {
  display: flex;

  padding: 4px;

  background: var(--accent);

  border-radius: 2rem;

  width: 2.35rem;
}

.toggle__section .toggle__btn span {
  display: block;

  width: 1rem;

  height: 1rem;

  background: var(--primary);

  border-radius: 50%;
}

input:checked ~ .toggle__btn {
  justify-content: end;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxx*/
.price__cards {
  margin-block: 2rem;

  display: grid;

  gap: 2rem;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price__card {
  padding: 2rem 1.5rem;

  box-shadow: 2px 0 24px #f7f7f7;

  border-radius: 1rem;

  display: inline-flex;

  gap: 1rem;

  flex-direction: column;
}

.price__details {
  flex: 1 1 auto;
}

.price__details h3 {
  font-size: 32px;

  line-height: 1.5;
}

.price__details ul {
  margin-block: 1rem;
}

.price__details ul li::before {
  content: ">";

  margin-right: 8px;

  font-weight: bold;
}

hr {
  border: none;

  height: 0;

  border-bottom: 1px solid #ddd;
}

.price__card .price {
  font-size: 32px;

  font-weight: 600;

  letter-spacing: -2px;
}

.price__card .price:before {
  content: "";
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 1rem 2rem;

  border-radius: 2rem;

  transition: 0.3s ease-in-out;
}

/*xxxxxxxxxxxxxx*/


.ri-user-voice-line {

 color: #F0FFF0;
 
}


.bg__acxx {
 background-color: #9E4638;

 color: #F0FFF0;
}




.bg__acxx11 {
 background-color: #8000ff;

 color: #F0FFF0;
}


.bg__accent {
 background-color: #008080;

 color: #F0FFF0;
}

.bg__accent-2 {
 background-color: #620062;

 color: #F0FFF0;
}

.bg__accent-8 {
 background-color: #FF7A5C;

 color: #F0FFF0;
}

.bg__primary {
 background-color: #242323;

 color: #F0FFF0;
}

.btn:hover {
  transform: scale(0.96);
}
