html {
  font-family: "Poppins", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 500;
  scroll-behavior: smooth;
}

textarea,
input {
  font-family: "Poppins", "Arial", sans-serif;
}

textarea {
  resize: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

.header {
  padding: 20px;
  border-bottom: 2px solid #4160ff;
}
.header__title {
  text-align: center;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: auto;
}
.main__title {
  margin: 20px;
}
.main__subtitle {
  color: #808080;
  margin-bottom: 20px;
}

label {
  font-size: 13px;
  color: #424242;
}

.btn-period-mode-switch {
  display: inline-block;
}
.btn-period-mode-switch > label.btn-period-mode-switch-inner {
  display: block;
  position: relative;
  width: 140px;
  height: 30px;
  background: #e0e0e0;
  border-radius: 15px;
  box-shadow: 0px 0px 20px -3px #4160ff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-period-mode-switch > label.btn-period-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  top: 7px;
  right: 15px;
}
.btn-period-mode-switch > label.btn-period-mode-switch-inner:after {
  content: attr(data-off);
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  width: 70px;
  height: 16px;
  padding: 5px 0px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.btn-period-mode-switch input[type=checkbox] {
  position: absolute;
  top: 0;
  width: 50px;
  height: 25px;
  opacity: 0;
  z-index: 1;
}
.btn-period-mode-switch input[type=checkbox]:checked + label.btn-period-mode-switch-inner:after {
  content: attr(data-on);
  left: 68px;
}
.btn-period-mode-switch input[type=checkbox]:checked + label.btn-period-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.plans-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
  padding-block: 20px;
}
@media (max-width: 1180px) {
  .plans-container {
    gap: 0;
  }
}
@media (max-width: 900px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: auto;
  }
}

.plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 30%;
  min-width: 240px;
  padding: 10px;
  background-color: #f2f6ff;
  border-radius: 15px;
  transition: all 0.3s ease;
  animation: slideInFromLeft 0.5s ease forwards;
}
.plan:hover {
  background-color: #fff;
  box-shadow: 0px 0px 20px -3px #4160ff;
}
.plan__icon {
  position: relative;
  top: -20px;
  width: 60px;
  height: 60px;
  border: 2px solid #4160ff;
  border-radius: 50%;
  background-image: url("../pictures/icon.png");
  background-size: contain;
}
.plan__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4160ff;
}
.plan__features {
  position: relative;
}
.plan__features::after {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  width: 40px;
  height: 1px;
  background-color: #4160ff;
  left: -45px;
}
.plan__features::before {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  width: 40px;
  height: 1px;
  background-color: #4160ff;
  right: -45px;
}
.plan__list {
  list-style: none;
}
.plan__item {
  padding-bottom: 5px;
}
.plan__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4160ff;
  transition: all 0.3s ease;
  transform: scaleX(0);
}
.plan__item:hover::after {
  transform: scaleX(1);
}
.plan__button {
  font-size: 16px;
  height: 40px;
  width: 35%;
  margin-bottom: 20px;
  border: 1px solid #4160ff;
  border-radius: 0 15px;
  background-color: #4160ff;
  transition: all 0.3s ease;
}
.plan__button:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px -3px #4160ff;
  border-radius: 15px;
}
.plan__button:active {
  background-color: #fff;
}
.plan__price__amount {
  font-weight: bold;
  font-size: 32px;
  color: #4160ff;
}
@media (max-width: 900px) {
  .plan {
    width: 50%;
  }
}

/*# sourceMappingURL=style.css.map */
