.hero-section__image {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.home-hero {
    background-image: url(../assets/home-bg.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg-grey {
    background-image: url(../assets/price-bg.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.makes-section {
    background: #F3F4F6;
    position: relative;
}

.makes-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: -100px;
    left: 0;
    width: 100%;
    height: 340px;
    background-image: url(../assets/makes-bg.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.makes-section::before {
    content: '';
    position: absolute;
    pointer-events: none;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 340px;
    background-image: url(../assets/makes-bg.png);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.section {
    padding: 60px 0;
}

.footer {
    background-image: url(../assets/footer-bg.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
}

.footer-top {
    padding: 70px 0;
}

.footer-body {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    padding: 48px 0;
    border-top: 1px solid #FFFFFF1F;
}

.footer-menu {
    display: flex;
    flex: auto;
    justify-content: end;
}

.footer-menu__item {
    max-width: 240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.footer-menu__title {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 8%;
}

.footer-menu__list {
    display: flex;
    flex-direction: column;
}

.footer-menu__list-link {
    gap: 12px;
    text-transform: capitalize;
    font-weight: 400;
    color: #A0A0A0;
    padding: 10px 0;
}

.footer-menu__list-link:hover {
    color: var(--white)
}

.footer-menu__stope {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-try {
    background-image: url(../assets/try-section-bg.png);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.faq-item {
    background-color: #F8F8F8;
    border: 1px solid #F8F8F8;
    border-radius: 24px;
}

.faq-item.active {
    background-color: transparent;
    border-color: #52B9DE;
}

.faq-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 32px;
    gap: 20px;
}

.faq-item__title {
    font-weight: 700;
    font-size: 24px;
}

.faq-item__icon {
    display: block;
    position: relative;
    /* position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); */
    width: 34px;
    height: 34px;
}

.faq-item__icon::after,
.faq-item__icon::before {
    content: "";
    display: block;
    background-color: #525252;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    z-index: 2;
}

.faq-item__icon::after {
    height: 18px;
    width: 2px;
    right: 16px;
}

.faq-item__icon::before {
    width: 18px;
    height: 2px;
    right: 8px;
}

.faq-item.active .faq-item__icon:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
}

.faq-item.active .faq-item__icon::before {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.faq-item__body {
    display: none;
}

.faq-item__body-content {
    color: #737373;
    line-height: 30px;
    padding: 0 32px 24px 32px;

}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.section-header__text {
    font-size: 18px;
    line-height: 28px;
    color: #737373;
}

.table-wrapper {
    overflow: auto;
    box-shadow: 0px 3px 4px 0px #5B68711A, 0px 0px 1px 0px #1A202452;
    border-radius: 24px;
    background-color: var(--white);
}

.default-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;

}

.default-table td {
    border-top: 1px solid #E8E8E8;
    vertical-align: middle;
    text-align: center;

}

.default-table th {
    color: #737373;

}

.default-table th:first-child, .default-table td:first-child {
    text-align: start;
    background-color: #F9FAFB;
    border-right: 1px solid #E8E8E8;

}

.default-table td, .default-table th {
    padding: 20px 24px;
}

.default-table td {
    min-width: 194px;
}

.swiper-item {
    box-shadow: 0px 3px 4px 0px #5B68711A, 0px 0px 1px 0px #1A202452;
    border-radius: 24px;
    overflow: hidden;
}

.swiper-item__image {
    min-height: 280px;
}

.swiper-item__image img {
    width: 100%;
}

.swiper-button {
    width: 48px;
    height: 48px;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button::after {
    display: none;
}

.swiper-item__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.swiper-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.swiper-item__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #737373;
}

.plan-card {
    box-shadow: 0px 3px 4px 0px #5B68711A, 0px 0px 1px 0px #1A202452;
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.plan-card.popular {
    background: linear-gradient(117.5deg, #58D0FF 0%, #C2F6FA 50%, #13A3DD 99.99%);
    padding: 3px;
    border-radius: 26px;
}

.plan-card__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px;
    background-color: var(--white);
    border-radius: 24px;
}

.plan-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 8px 0;
}

.plan-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;

}

[data-period="month"] .period-year {
    display: none;
}

[data-period="year"] .period-month {
    display: none;
}

.plan-card__description {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
}

.plan-card__price {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;

}

.hr {
    height: 1px;
    background-color: #E8E8E8;
    width: 100%;
}

.plan-card__list {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: auto;
}

.plan-card__list li {
    display: flex;
    align-items: start;
    gap: 8px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;

}

.plan-card__list li .ico {
    width: 18px;
    min-width: 18px;
}

.plan-card__badge {
    background: linear-gradient(119.08deg, #58D0FF -49.08%, #C2F6FA 60.5%, #13A3DD 170.08%);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    padding: 0 9px;
    border-radius: 360px;
}

.btn--gradient-blue {
    background: linear-gradient(90deg, #1C7EA8 0%, #2CA0CB 100%);
    box-shadow: 0px 0px 10.17px 0px #2CA0CB inset, 0px 2.54px 2.54px 0px #2CA0CB inset;
    color: white;
}

.plan-card__price--period {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #737373;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
  display: none;
}

.toggle-switch-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00C950;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out;
}

.toggle-switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 1px 2px 0px #00000033, 0px 0px 1px 0px #0000003D;
  transition: transform 0.3s ease-in-out;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background {
  background-color: #00C950;
  /* box-shadow: inset 0 0 0 2px #04b360; */
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background .toggle-switch-handle {
  transform: translateX(18px);
}
