:root {
  --bg-color: #e5e5e5;
  --dark-color-50: rgba(0, 0, 0, 0.5);
  --form-bg: #fff;
  --accident-color: #2b3990;
  --accident-color-hover: #0b1734;
  --text-color: black;
  --light-color: #fff;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Serif";
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
}
body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 374.98px) {
  body {
    padding: 0;
  }
}
a,
button {
  text-decoration: none;
  cursor: pointer;
}
.form--column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--form-bg);
  border-radius: 10px;
}
@media (max-width: 374.98px) {
  .form--column {
    width: 100%;
    height: auto;
    margin: auto;
  }
}
@media (min-width: 375px) {
  .form--column {
    width: 100%;
    height: auto;
    margin-top: auto;
  }
}
.form__title span {
  color: black;
}
@media (max-width: 374.99px) {
  .form__title {
    font-size: 16px;
    text-align: center;
    padding: 15px 10px;
  }
}
@media (min-width: 375px) {
  .form__title {
    font-size: 16px;
    text-align: center;
    padding: 15px 10px;
  }
}
@media (min-width: 460px) {
  .form__title {
    font-size: 21px;
  }
}
@media (min-width: 768px) {
  .form__title {
    font-size: 24px;
  }
}
@media (max-width: 374.99px) {
  .form__desc {
    font-size: 14px;
    text-align: center;
    padding: 0 10px 15px;
  }
}
@media (min-width: 375px) {
  .form__desc {
    font-size: 14px;
    text-align: center;
    padding: 0 10px 15px;
  }
}
@media (min-width: 460px) {
  .form__desc {
    font-size: 18px;
  }
}
.form__label {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.form__label:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.form__input {
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--form-bg);
  position: relative;
  z-index: 2;
}
.form__input:focus {
  outline: 1px solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 374.99px) {
  .form__input {
    font-size: 14px;
    padding: 15px 10px;
  }
}
@media (min-width: 375px) {
  .form__input {
    font-size: 14px;
    padding: 15px 10px;
  }
}
@media (min-width: 460px) {
  .form__input {
    font-size: 16px;
  }
}
.form__input--column {
  flex: 1 1 calc(100% - 20px);
  width: 100%;
}
.form__input--column.phone-tr,
.form__input--column.phone-tr.error {
  max-width: 100%;
  padding-left: 85px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.form__input--column.input {
  padding-left: 50px;
}
.form__input--icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 55;
}
.form__check {
  width: 100%;
}
.form__check--label {
  font-size: 14px;
  color: var(--light-color);
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0.5em;
  white-space: nowrap;
}
.form__check--link {
  color: var(--light-color);
  cursor: pointer;
}
.form__check--input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 15px;
  height: 15px;
  border: 2px solid var(--light-color);
  border-radius: 2px;
  display: grid;
  place-content: center;
  position: relative;
}
.form__check--input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 10px 10px 0 var(--accident-color);
}
.form__check--input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.form__btn {
  padding: 15px;
  font-size: 16px;
  border-radius: 27px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-color);
  background-color: var(--accident-color);
  border-color: var(--accident-color);
  border-bottom: 5px solid var(--accident-color);
  cursor: pointer;
  transition: 1s;
}
.form__btn:hover {
  transition: 1s;
  background-color: var(--accident-color);
  border-color: var(--accident-color);
}
.form__btn--column {
  width: 100%;
}
.iti__selected-flag {
  padding: 0 10px !important;
}
.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color-50);
  z-index: 9999;
}
@media (max-width: 767.99px) {
  .popup {
    padding: 10px;
  }
}
.popup__privacy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  overflow-y: scroll;
  padding: 30px;
  background-color: var(--form-bg);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  max-width: 650px;
  height: 600px;
  position: relative;
}
@media (max-width: 767.99px) {
  .popup__privacy {
    padding: 20px;
    width: 100%;
    height: 500px;
  }
}
.popup__title {
  text-align: center;
  font-size: 18px;
}
.popup__desc {
  font-size: 14px;
}
.popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup ol {
  list-style: decimal;
  counter-reset: item;
}
.popup ol li {
  display: block;
  margin-bottom: 10px;
}
.popup ol li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
.popup ol li span {
  font-weight: 700;
  font-size: 18px;
}
.popup.hide {
  display: none;
}
.slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
}
.slide__logo {
  position: relative;
  width: 120px;
  height: auto;
  margin: 0 auto;
}
.slide__title {
  /* margin-top: 150px; */
  font-size: 32px;
  text-transform: uppercase;
  font-style: italic;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.slide__title span {
  color: var(--accident-color);
}
@media screen and (max-width: 374.98px) {
  .slide__title {
    font-size: 24px;
  }
}
.slide__subtitle {
  font-size: 24px;
  text-align: center;
  color: var(--text-color);
  padding: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 374.98px) {
  .slide__subtitle {
    font-size: 16px;
  }
}
/* .slide--start::before {
    content: "";
    background: rgba(0, 0, 0, 0.5); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
    ;
  } */
  .price{
    width: 100%;
    text-align: center;
    /* background-color: rgba(0, 0, 0, 0.599); */
    padding: 20px 0 ;
    color: #fd0203;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 54px;
    z-index: 2;
    position: relative;
  }
  .price span{
    position: relative;
    z-index: 3;
  }
  .price::before{
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    bottom: 0;
    right: 0; 
    background-color: rgba(0, 0, 0, 0.599);;
    z-index: 1;
    width: calc(100% + 40px);
    border-top: 1px solid #fa0501d3; 
    border-bottom: 1px solid #fa0501d3; 
  }
.slide__desc {
  font-size: 25px;
  text-transform: uppercase;
  font-style: italic;
  width: 100%;
  font-weight: 700;
  color: var(--light-color);
  text-align: center;
  z-index: 2;
}
.posible{
  margin-bottom: auto;
  font-size: 18px;
  position: relative;
  z-index: 2;
  color: black;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.posible span{
  position: relative;
  
  z-index: 2;
}
.posible::before{
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  bottom: 0;
  right: 0; 
  background-color: #fff;
  z-index: 1;
  width: calc(100% + 40px);
  border-top: 1px solid black; 
  border-bottom: 1px solid black; 
  z-index: 1;
}
.slide__btn {
  width: 100%;
  padding: 18px 34px;
  background-color: var(--accident-color);
  border-radius: 27px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--light-color);
  font-size: 16px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
  margin-top: auto;
}
.slide__btn:hover {
  background-color: var(--accident-color-hover);
}
.slide__link {
  width: 100%;
  color: var(--light-color);
  font-size: 16px;
  text-align: center;
  z-index: 55;
}
.slide__card {
  width: 100%;
  height: auto;
  background-color: var(--form-bg);
  border-radius: 10px;
  margin: auto;
}
.slide__group {
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.slide__group label {
  padding: 20px;
  width: 100%;
}
.slide__group input {
  display: none;
}
.slide__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.slide__wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.slide__wrap .step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accident-color);
}
.slide__wrap .step.active {
  background-color: var(--accident-color);
}
.slide__logo{
  width: 200px;
  z-index: 100;
  margin-top: 60px;
}
.slide__logo img{
  width: 100%;
}
.slide--start {
  background: url(../images-270/first-bg.jpg) no-repeat center/cover;
}
.slide--frst {
  background: url(../images-270/kazatomprom.jpg) no-repeat center/cover;
}
.slide--scnd {
  background: url(../images-270/kazatomprom.jpg) no-repeat center/cover;
}
.slide--thrd {
  background: url(../images-270/kazatomprom.jpg) no-repeat center/cover;
}
.slide--frth {
  background: url(../images-270/img_4.webp) no-repeat center/cover;
}
.slide--ffth {
  background: url(../images-270/img_5.webp) no-repeat center/cover;
}
.slide--sxth {
  background: url(../images-270/img_6.webp) no-repeat center/cover;
}
.slide--svnth {
  background: url(../images-270/img_7.webp) no-repeat center/cover;
}
.slide--finish {
  background: url(../images-270/kazatomprom.jpg) no-repeat center/cover;
}
.slide.hide {
  display: none;
}
@media screen and (max-width: 374.98px) {
  .slide {
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 375px) {
  .slide {
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 595px) {
  .slide {
    width: 400px;
    max-width: 400px;
    height: 715px;
    max-height: 715px;
  }
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: var(--bg-color) !important;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--bg-color);
  border-radius: 20px;
  border: 3px solid var(--accident-color);
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accident-color) var(--bg-color);
}
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
input.active.focus,
input.active:focus,
input.focus,
input:active.focus,
input:active:focus,
input:focus,
select.active.focus,
select.active:focus,
select.focus,
select:active.focus,
select:active:focus,
select:focus,
textarea.active.focus,
textarea.active:focus,
textarea.focus,
textarea:active.focus,
textarea:active:focus,
textarea:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
  text-decoration: none;
}
.form__text--small{
  color: white;
  font-size: 14px;
  margin-bottom: auto;
}