html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: Poppins, sans-serif;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
    background: #FFF;
    margin: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


.header__form__title{
    color: #0E2742;
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    line-height: 130%;
}

.header__form__subtitle{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.title{
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    line-height: 130%;
}

.subtitle{
    color: #56647B;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.card__title{
    font-size: 22px;
    font-weight: 500;
    line-height: 130%;
}

.card__descr{
    color: #56647B;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.btn__default{
    display: flex;
    padding: 19px 42px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 115%;
    text-transform: uppercase;
    border-radius: 14px;
    background: #FF4800;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn__default:hover{
    background: #E44D12;
}

.btn__ghost{
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 2px solid #FFF;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}

.btn__ghost a{
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.btn__ghost:hover{
    border: 2px solid #cacaca;
}

.btn__ghost:hover a{
    color: #cacaca;
}

.btn__ghost svg path{
    transition: stroke 0.3s ease;
}

.btn__ghost:hover svg path{
    stroke: #cacaca;
}

.btn__ghost.mobile{
    display: none;
}

.btn__secondary{
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #56647B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    background: inherit;
    line-height: 115%;
    text-transform: uppercase;
    align-content: center;
    justify-content: center;
    cursor: pointer;
}

.zip__input__wrapper{
    position: relative;
}

.zip__input__wrapper::after{
    content: url('../images/zip.svg');
    position: absolute;
    top: 22px;
    left: 20px;
}

.zip__input, .base__input{
    border-radius: 14px;
    background: #F2F2F2;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 47px;
    color: #01132E;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.zip__input:focus, .base__input:focus{
  outline: 2px solid #00B7FF;
  box-shadow: none;
}

.zip__input::placeholder, .base__input::placeholder{
    color: #91969E;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.validated__input{
    border: 1px solid #1AFF8C;
    position: relative;
}

.validated__input__wrapper{
    position: relative;
}

.validated__input__wrapper::before{
    content: url(../images/greenArrow.svg);
    position: absolute;
    top: 50%;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
}

input:-internal-autofill-selected{
    background-color: #fff !important;
}

span.error {
    display: block;
    padding-top: 10px;
    color: #FF4800;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.zip__input.error{
    border: 2px solid #FF4800;
}

.zip__input.error:focus, .base__input.error:focus{
  outline: none;
  box-shadow: none;
}

.step {
  display: none;
  flex-direction: column;
  justify-content: center;
}

.step.active {
  display: flex;
}

.checkbox__group{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #212B36;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.checkbox__group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox__input {
  display: none;
}

.checkbox__custom {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 2px solid #637381;
  display: inline-block;
  position: relative;
  transition: background-color 0.2s, transform 0.2s;
}

.checkbox__input:checked + .checkbox__custom {
  background-color: #0AC448;
  border: none;
  width: 17.5px;
  height: 17.5px;
}

.checkbox__custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.checkbox__input:checked + .checkbox__custom::after {
  opacity: 1;
}

.step__bottom__group{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #212B36;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    justify-content: center;
}

.step__card__list{
    display: flex;
    align-items: stretch;
    gap:16px;
    margin-top: 14px;
    justify-content: center;
    margin-bottom: 25px;
}

.step__card__list__item {

  input[type="radio"] {
    display: none;
  }

  input[type="radio"]:checked {
    color: #fff;
  }

  input[type="radio"]:checked {
    color: white;
  }
}

.step__card__list__item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    border-radius: 14px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    padding: 24px 16px 20px 16px;
    color: #0E2742;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.step__card__list__item img{
    width: 66.064px;
    height: 42.506px;
}

.step__policy{
    color: #898989;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 15.4px */
    letter-spacing: 0.22px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.step__policy a{
    color: #898989;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.22px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.container{
    max-width: 1245px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    box-sizing: border-box;
}

/* =============================================HEDAER=========================================== */

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 750px;
  gap: 20px;
  height: calc(100vh - 48px);
  overflow: hidden;
  isolation: isolate;
  background-color: #FFF;
  margin: 24px;
  box-sizing: border-box;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url('../images/mainBg.webp') lightgray 50% / cover no-repeat;
    backdrop-filter: blur(6px);
    z-index: -1;
    border-radius: 20px;
  }
}

.header .container {
  max-width: 1213px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 114px 44px 89px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  box-sizing: border-box;
}

.logo.mobile{
    display: none;
}

.header__btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__form{
    display: flex;
    align-self: center;
    padding: 24px 28px 28px 28px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 22px;
    background: #FFF;
    max-width: 566px;
}

.header__form__text{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btns__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zip__input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form__progress__list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.form__progress__list__item{
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #919EAB;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 157%;
    position: relative;
}

.form__progress__list__item::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    width: 72px;
    height: 1px;
    background: rgba(145, 158, 171, 0.24);
}

.form__progress__list__item:last-child::after{
    display: none;
}

.form__progress__list__item.active{
    background: #0AC448;
}

.header__bottom__list{
    display: flex;
    align-items: center;
    gap: 54px;
    margin-top: 20px;
}

.header__bottom__list__item{
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    align-items: center;
}

.header__bottom__list__item img{
    width: 34px;
    height: 34px;
}

.custom-select {
    position: relative;
    width: 100%;
    font-family: sans-serif;
}

.custom-select__trigger {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 14px;
    background: #F2F2F2;
    color: #919EAB;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.arrow {
    transition: transform 0.3s ease;
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 92%;
    padding: 18px 24px;
    display: none;
    z-index: 5;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 9px 30.2px 0 rgba(0, 0, 0, 0.25);
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    display: block;
    padding: 12px 4px;
    cursor: pointer;
    position: relative;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-option:hover {
    opacity: 0.7;
}

.custom-select__trigger span {
    color: #919EAB;;
}

.custom-select.selected-chosen .custom-select__trigger span {
    color: #000;
}

.custom-option.selected::after {
    content: url('../images/checkOrange.svg');
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FF5A2D;
    font-size: 24px;
}


/* ===============================================HOW-TO-GET======================================= */

.get .title{
    margin-bottom: 42px;
}

.cards__group__wrapper{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cards__wrapper{
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

.card{
    border-radius: 14px;
    background: #F2F2F2;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 0;
}

.card__icon{
    display: flex;
    padding: 9.5px 9px 8.5px 9px;
    justify-content: center;
    align-items: center;
    border-radius: 39px;
    background: rgba(255, 72, 0, 0.15);
}

.card__img {
  flex: 2 1 0;
  border-radius: 16px;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ================================================HOW-MUCH================================================ */

.how__much{
    margin-top: 140px;
    margin-bottom: 140px;
}

.how__much__header{
    text-align: center;
    margin: 0 auto;
}

.how__much .title{
    margin-bottom: 20px;
    max-width: 890px;
}

.how__much .subtitle{
    max-width: 890px;
    margin-bottom: 54px;
}

.how__much__table__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}

.plans-table-wrapper{
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; 
}

.plans-table-wrapper::-webkit-scrollbar {
  height: 8px; /* толщина горизонтального скролла */
  width: 8px;  /* толщина вертикального скролла */
}

.plans-table-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.plans-table-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}

table {
  width: 100%;
  min-width: 900px;
  border-spacing: 0;
  border: 1px solid #DBDBDB;
  border-radius: 16px;
  table-layout: fixed;
}

th, td {
  padding: 18px;
  border-bottom: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
}

th:last-child, td:last-child {
  border-right: none;
}

tr:last-child td {
  border-bottom: none;
}

.th-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.th-content img {
  width: 20px;
  height: 20px;
}

.td-green{
    background: rgba(10, 196, 72, 0.15);
}

.td-light-green{
    background: rgba(10, 196, 72, 0.06);
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.badge--green {
    border-radius: 4.837px;
    background: rgba(15, 165, 95, 0.15);
}

.badge--red {
  background: rgba(255, 72, 0, 0.15);
}

.badge--orange {
  background: rgba(255, 165, 0, 0.15);
}

.badge--gray {
    background: rgba(118, 118, 118, 0.15);
}

.price-row td {
  font-weight: 500;
  border-top: 1px solid #EAEAEA;
  background: #fff;
}

.price-row.highlight td {
  /* background: #FAE4AE; */
  font-weight: 700;
}


/* =========================================DETERMINES========================================= */

.determines{
    margin-bottom: 140px;
}

.determines .title, .determines .subtitle{
    text-align: left;
}
.determines__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.determines__wrapper:first-child{
    margin-bottom: 40px;
}

.determines__title__group,
.determines__cards,
.determines__img {
  width: 50%;
}

.determines__title__group__img,
.determines__img {
  border-radius: 16px;
  overflow: hidden;
}

.determines__title__group__img img,
.determines__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.determines__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.determines__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f2f2f2;
  border-radius: 14px;
  flex: 1;
}

.determines .title {
  margin-bottom: 20px;
}

.determines .subtitle {
  margin-bottom: 40px;
}

.determines .btn__default{
    align-self: center;
    margin-top: 54px;
}


/* =============================================================WORTH=========================================================== */

.worth {
  margin-bottom: 120px;
}

.worth .title{
    margin-bottom: 20px;
}

.worth .subtitle, .worth .title {
    text-align: left;
}

.worth__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.worth__group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 39px;
  flex-wrap: wrap;
}

.worth__title__group,
.worth__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  padding: 20px;
}

.worth__img {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.worth__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.worth__text {
  display: flex;
  padding: 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: rgba(10, 196, 72, 0.15);
  max-height: 124px;
  margin-top: 30px;
}

.worth__text .subtitle{
    font-size: 16px;
}

.worth__text img {
  width: 32px;
  height: 32px;
}

/* ============================================FOOTER====================================== */

footer{
    background: #F2F2F2;
}

.footer__wrapper{
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo{
    margin-bottom: 36px;
}

.footer__text{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.28px;
    margin-bottom: 28px;
}

.footer__nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer__list{
    display: flex;
    gap: 21px;
    align-items: center;
}

.footer__list__item a{
    color: #FF4800;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    letter-spacing: 0.24px;
    text-decoration: none;
}

.footer__copyright{
    color: #000;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    letter-spacing: 0.24px;
}

/* =========================================================THANK-PAGE=================================================== */

.loader__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.loader__content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader__title{
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.loader__text {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.loader__img{
    max-width: 172.055px;
    max-height: 94.954px;
}

.loader__img img{
    width: 100%;
    height: 100%;
}

.loader__dots::after {
  content: '';
  display: inline-block;
  width: 1em;
  text-align: left;
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

.thank__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    border-bottom: 1px solid #DDDDDD;
}

.thank__header .logo__img img{
    width: 100%;
}

.thank__header .btn__ghost{
    background: #FF4800;
}

.thank__section{
    padding: 20px 44px;
}

.thank__section__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.thank__compare{
    width: 100%;
    display: flex;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 10px;
    color: #0E2742;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    border: 1px solid #FFF;
    border-radius: 12px;
    background: rgba(10, 196, 72, 0.12);
    max-width: 448px;
    margin-bottom: 46px;
}

.thank__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.text__light__bold{
  display: block;
position: relative;
margin-left: 30px;
}

.text__light__bold.success::before {
  content: url("../images/shieldCheckmark.svg");
  color: #0AC448;
  font-size: 1.2em;
  left: -30px;
  top: -5px;
  position: absolute;
}

.thank__content__error__img img{
    width: 100%;
    height: 100%;
    max-width: 936px;
    max-height: 502px;
}

.thank__content__img img{
    max-width: 634px;
    max-height: 485px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank__content__text .title{
    margin-bottom: 24px;
}

.thank__content .btn__default{
    position: absolute;
    bottom: 9px;
    left: 39%;
}

.thank__footer__wrapper{
    display: flex;
    flex-direction: column;
    padding: 30px 114px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footer__nav__list{
    display: flex;
    gap: 21px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.footer__nav__list a{
    color: #FF811A;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.24px;
    text-decoration: none;
}

.footer__copyright {
    color: #000;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    letter-spacing: 0.24px;
}

.footer__text, .footer__text a{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.28px;
}

.footer__text a{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media(max-width: 650px){
    .thank__header .logo__img{
        width: 250px;
    }

    .thank__header{
        padding: 20px;
    }
}


/* =================================PRIVACY=================================== */

.privacy__wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.privacy__wrapper ul,ol{
    list-style: disc;
}

.privacy__wrapper li{
    color: #56647B;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.notice{
    color: #56647B;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.privacy__title{
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 130%; /* 54.6px */
}

.privacy__text{
    color: #56647B;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.address__text{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%; /* 28.6px */
}

strong{
    color: #0E2742;;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%; /* 28.6px */
}

.privacy__link{
    color: #FF4800;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    letter-spacing: 0.24px;
}

@media (max-width: 900px) {
    .privacy__wrapper li, .privacy__text, .privacy__link, .address__text, .notice{
        font-size: 16px;
    }

    .privacy__title {
        font-size: 26px;
    }
}


/* =============================================DO-NOT-SELL=========================================== */

.form-group{
    width: 100%;
    max-width: 520px;
}

.form-group input[type='text'] {
    border-radius: 10px;
    background: #E7EDFF;
    padding: 15px 20px;
    width: 100%;
    font-size:16px;
    border: none;
}

.form-group input[type='text']::placeholder{
    color: #5773c7;
}

.legal-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-group .btn__default{
    margin: 0 auto;
}

.form-group-option {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.form-group-option input {
    display: none;
}

.form-group-option label {
    border-radius: 10px;
    background: #E7EDFF;
    width: 100%;
    max-width: 228px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px;
    margin: 0 7px 14px;
    cursor: pointer;

}

.form-group-zip {
    max-width: 386px;
    margin: 0 auto;
}


@media (max-width: 750px) {
    .form-group {
        max-width: 100%;
        padding: 0 15px;
    }

    .form-group input[type='text'] {
        font-size: 14px;
        padding: 12px 15px;
    }

    .form-group-option label {
        max-width: 100%;
        margin: 0 0 14px;
    }
}

@media (max-width: 360px) {
    .form-group input[type='text'] {
        font-size: 13px;
        padding: 10px 12px;
    }
}


/* =======================================MEDIA==================================== */


@media (max-width: 1050px) {
    .header__form{
        padding: 14px;
    }

    .header__form__title{
        font-size: 24px;
    }

    .header__form__subtitle{
        font-size: 18px;
    }

    .header__bottom__list{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header__bottom__list__item{
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .title{
        font-size: 28px;
    }
    
    .card__title{
        font-size: 20px;
    }

    .card__descr{
        font-size: 14px;
    }

    .subtitle{
        font-size: 14px;
    }

    .how__much__table__wrapper{
        align-items: stretch;
    }

    .worth__text .subtitle{
        font-size: 14px;
    }

    .get,.how__much,.determines,.worth{
        margin-bottom: 100px;
    }
}

@media (max-width: 840px) {
    .btn__ghost.mobile {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        gap: 0;
    }

    .btn__ghost.mobile svg {
        width: 24px;
        height: 24px;
    }

    .btn__ghost{
        display: none;
    }

    .header__btns{
        margin-bottom: 15px;
    }

    .header .container{
        padding: 20px 20px 44px 20px;
    }

    .cards__wrapper{
        flex-direction: column;
    }

    .card__img{
        flex: 1;
    }

  .determines__wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .determines__title__group,
  .determines__cards,
  .determines__img {
    width: 100%;
  }

  .determines__wrapper.reverse{
    flex-direction: column-reverse !important;
  }

  .worth__text{
    max-height: none;
  }

  .worth__group{
    flex-direction: column;
  }

  .worth__group.reverse{
    flex-direction: column-reverse;
  }

  .footer__nav{
    flex-direction: column;
    gap: 10px;
  }

  .footer__copyright{
    text-align: center;
  }

  .custom-options{
        padding: 12px;
    }
}

@media (max-width: 650px) {
    .logo.mobile{
        display: block;
    }

    .logo{
        display: none;
    }

    .header__bottom__list__item{
        font-size: 14px;
    }

    .form__progress__list__item::after{
        width: 50px;
    }
}

@media (max-width: 520px) {
    .form__progress__list__item::after{
        width: 30px;
        left: 35px;
    }

    .checkbox__group label{
        gap: 5px;
        font-size: 12px;
    }

    .custom-option{
        padding: 6px 4px;
        font-size: 16px;
    }

    .header{
        margin: 0;
    }

    .get .title {
        margin-top: 20px;
    }

    .header::before{
        border-radius: 0;
    }

    .step__policy{
        max-height: 150px;
        overflow-y: auto;
    }

    .zip__input, .base__input{
        font-size: 16px;
        padding-left: 30px;
    }

    .zip__input__wrapper::after {
        top: 18px;
        left: 8px;
    }
}

@media (max-width: 420px) {
    .btn__ghost.mobile{
        width: 30px;
        height: 30px;
    }

    .form__progress__list__item::after{
        left: 30px;
    }

    .header__bottom__list__item {
        font-size: 12px;
    }

    .footer__logo{
        width: 250px;
    }

    .footer__logo img{
        width: 100%;
    }

    .checkbox__custom{
        padding-right: 5px;
    }

    .header__form__title{
        font-size: 20px;
    }

    .header__form__subtitle{
        font-size: 16px;
    }

    .header__bottom__list{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header__bottom__list__item{
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .title{
        font-size: 24px;
    }
    
    .card__title{
        font-size: 18px;
    }

    .worth__text .subtitle{
        font-size: 12px;
    }

    .step__card__list {
        flex-direction: column;
    }

    .step__card__list__item{
        flex-direction: row;
    }

    .custom-option{
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .form__progress__list__item::after{
        width: 10px;
    }
}