@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap");
html {
  box-sizing: border-box;
}

* {
  font-size: 16px;
  line-height: 140%;
  font-family: "Ubuntu", sans-serif;
  color: #1d1d1b;
}
@media (min-width: 1200px) {
  * {
    font-size: 18px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;

  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;

  list-style: none;
}

button {
  padding: 0;

  color: inherit;

  background: transparent;
  border: none;
}

input {
  outline: none;
}

.txt-medium {
  font-weight: 500;
}

.txt-red {
  color: #e30613;
}

.txt-gray {
  color: #888888;
}

.btn {
  display: block;
  padding: 0 28px;

  font-weight: 500;
  line-height: 56px;
  text-align: center;

  background: white;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;

  transition: 0.3s;
}
@media (max-width: 767.98px) {
  .btn {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .btn {
    font-size: 16px;
  }
}
.btn:hover {
  color: white;

  background: transparent;
  border-color: white;
}
.btn.red {
  color: white;

  background: #e30613;
}
.btn.red:hover {
  background: #b5030d;
}
.btn.border-red {
  color: #e30613;

  border-color: #e30613;
}

section {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  section {
    padding-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  section {
    padding-bottom: 100px;
  }
}

h2,
h3 {
  margin-bottom: 36px;

  font-weight: 500;
  font-size: 24px;
  text-align: center;
}
h2 span,
h3 span {
  font-weight: 500;
  font-size: 24px;
}
@media (min-width: 1200px) {
  h2,
  h3 {
    margin-bottom: 48px;

    font-size: 32px;
  }
  h2 span,
  h3 span {
    font-size: 32px;
  }
}

.advantages-block {
  row-gap: 20px;
}
.advantages-block .item {
  height: 100%;
  padding: 20px;

  border: 1px solid #dfdfdf;
  border-radius: 4px;
}
.advantages-block .item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.advantages-block .item p {
  margin-bottom: 14px;
}
.advantages-block .item p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .advantages-block .item p {
    font-size: 16px;
  }
}
.advantages-block .item__count {
  display: block;
  margin-bottom: 14px;

  font-weight: 500;
  font-size: 28px;
  color: #e30613;
}
@media (min-width: 768px) {
  .advantages-block {
    row-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .advantages-block .item {
    padding: 30px;
  }
  .advantages-block .item svg {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .advantages-block .item__count {
    font-size: 48px;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

  gap: 5px;
}
.slick-dots li {
  width: 4px;
  height: 4px;

  background: #888888;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active {
  width: 10px;
  height: 10px;

  background: #e30613;
}
.slick-dots li.slick-active + li {
  width: 6px;
  height: 6px;
}
.slick-dots li.custom-dot {
  width: 6px;
  height: 6px;
}
.slick-dots button {
  font-size: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;

  display: block;
  width: 32px;
  height: 32px;

  font-size: 0;

  background-image: url("../img/sprite.svg#arrow");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.2;
}
.slick-arrow:hover {
  opacity: 0.4;
}
.slick-arrow.slick-next {
  right: -62px;
}
.slick-arrow.slick-prev {
  left: -62px;

  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.slider__item-title {
  margin-bottom: 16px;
  padding-top: 24px;

  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
@media (min-width: 1200px) {
  .slider__item-title {
    margin-bottom: 18px;

    font-size: 24px;
  }
}
.slider__item p,
.slider__item ul {
  margin-bottom: 14px;
}
.slider__item p:last-child,
.slider__item ul:last-child {
  margin-bottom: 0;
}
.slider__item img {
  border-radius: 4px;
}

.list li {
  position: relative;

  margin-bottom: 8px;
  padding-left: 16px;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;

  display: block;
  width: 6px;
  height: 6px;

  background: #e30613;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list.dot-top li::before {
  top: 12px;
}

.form input {
  width: 100%;
  height: 46px;
  padding: 16px;

  border: 1px solid #dfdfdf;
  border-radius: 4px;
}
.form input::-webkit-input-placeholder {
  font-size: 16px;
}
.form input::-moz-placeholder {
  font-size: 16px;
}
.form input::-ms-input-placeholder {
  font-size: 16px;
}
.form input::placeholder {
  font-size: 16px;
}
.form__inputs {
  display: flex;
  flex-wrap: wrap;

  row-gap: 20px;
}
.form__inputs .btn {
  margin-top: 10px;
}
.form__politics {
  margin-top: 24px;

  font-size: 14px;
  text-align: center;
}
.form__politics span {
  font-size: 14px;
  text-decoration: underline;

  cursor: pointer;
}
@media (min-width: 1200px) {
  .form__politics {
    margin-top: 18px;

    font-size: 15px;
  }
  .form__politics span {
    font-size: 15px;
  }
}

.header {
  position: fixed;
  z-index: 100;

  width: 100%;

  background: white;
  box-shadow: 0 4px 16px rgba(20, 20, 20, 0.06);
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 1200px) {
  .header__wrap {
    height: 80px;
  }
}
.header__logo {
  width: 140px;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}
.header__contacts {
  display: flex;

          column-gap: 27px;

  -webkit-column-gap: 27px;
     -moz-column-gap: 27px;
}
@media (max-width: 1199.98px) {
  .header__contacts a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;

    background: #e30613;
    border-radius: 50%;

    transition: 0.3s;
  }
  .header__contacts a:hover {
    background: #b5030d;
  }
  .header__contacts a span {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header__contacts a svg {
    display: none;
  }
}
.header__contacts_email span {
  font-size: 15px;
  text-decoration: underline;
}
.header__contacts_email:hover span {
  color: #b5030d;
  text-decoration: inherit;
}
.header__contacts_phone:hover span {
  color: #b5030d;
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .header__contacts {
            column-gap: 45px;

    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
  }
}

.first {
  padding-top: 160px;
  padding-bottom: 50px;

  background-image: url("../img/bg-up.svg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}
.first .row {
  row-gap: 40px;
}
.first h1,
.first p {
  color: white;
}
@media (max-width: 1199.98px) {
  .first h1,
  .first p {
    text-align: center;
  }
}
.first h1 {
  margin-bottom: 24px;

  font-weight: 500;
  font-size: 28px;
}
.first p {
  margin-bottom: 36px;
}
@media (max-width: 1199.98px) {
  .first p {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .first .btn {
    margin: 0 auto;
  }
}
.first img {
  width: 100%;
}
@media (min-width: 768px) {
  .first {
    padding-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .first {
    padding-bottom: 150px;

    background-position-y: 120%;
    background-size: cover;
  }
  .first h1 {
    margin-bottom: 36px;

    font-size: 48px;
  }
  .first p {
    margin-bottom: 46px;
  }
}

.description p {
  margin-bottom: 24px;

  text-align: center;
}
.description p:last-child {
  margin-bottom: 0;
}
.description p,
.description span {
  font-size: 20px;
}

.setting-options__wrap {
  row-gap: 20px;
}
.setting-options__wrap + img {
  margin: 60px auto 0;
}
.setting-options__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;

  background: white;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(20, 20, 20, 0.08);

  row-gap: 30px;
}
.setting-options__item:hover {
  border-color: #dfdfdf;
  box-shadow: none;
}
.setting-options__item-title {
  margin-bottom: 16px;

  font-weight: 500;
  font-size: 20px;
  color: #e30613;
}
.setting-options__item-title:last-child {
  margin-bottom: 0;
}
.setting-options__item-price {
  margin-bottom: 16px;

  font-weight: 500;
  font-size: 24px;
}
.setting-options__item-desc {
  margin-bottom: 20px;

  font-size: 14px;
  color: #888888;
}
@media (max-width: 1199.98px) {
  .setting-options__attention-icon {
    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin: 0 auto 16px;
  }
  .setting-options__attention p {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .setting-options__wrap {
    row-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .setting-options__item {
    max-width: 500px;
    padding: 30px;
  }
  .setting-options__item-title {
    margin-bottom: 30px;

    font-size: 24px;
  }
  .setting-options__item-price {
    margin-bottom: 12px;

    font-size: 32px;
  }
  .setting-options__item-desc {
    margin-bottom: 30px;

    font-size: 15px;
  }
  .setting-options__attention {
    padding-top: 56px;
    padding-left: 20px;
  }
  .setting-options__attention-icon {
    margin-bottom: 24px;
  }
}

.final-form {
  position: relative;

  background-color: #e30613;
}
.final-form.big-top {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .final-form::after {
    height: 900px;
  }
}
.final-form h2,
.final-form p {
  color: white;
}
.final-form p {
  margin-bottom: 36px;

  text-align: center;
}

.must-update__item svg {
  display: block;
  margin-bottom: 16px;
}
.must-update__item-title {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .must-update__item {
    position: relative;

    padding-top: 20px;
    padding-bottom: 20px;
  }
  .must-update__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;

    display: block;
    width: calc(100% - 40px);
    height: 1px;

    background: #dfdfdf;
  }
  .must-update__item:first-child {
    padding-top: 0;
  }
  .must-update__item:last-child {
    padding-bottom: 0;
  }
  .must-update__item:last-child::after {
    content: none;
  }
}
@media (max-width: 1199.98px) {
  .must-update__item svg {
    margin-right: auto;
    margin-left: auto;
  }
  .must-update__item p,
  .must-update__item-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .must-update__wrap {
    row-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .must-update__item-wrap {
    height: 100%;
    padding-right: 20px;

    border-right: 1px solid #dfdfdf;
  }
  .must-update__item:last-child .must-update__item-wrap {
    border-right: none;
  }
  .must-update__item svg {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .must-update__item-title {
    margin-bottom: 24px;
  }
}

.tariff__wrap {
  justify-content: center;
  margin-bottom: 30px;

  row-gap: 20px;
}
.tariff__item {
  padding: 20px 20px 30px;

  border: 1px solid #dfdfdf;
  border-radius: 4px;
}
.tariff__item.popular {
  box-shadow: 0 4px 16px rgba(20, 20, 20, 0.06);
}
.tariff__item.popular .tariff__item-title {
  color: #e30613;
}
.tariff__item .btn {
  margin: 0 auto;
}
.tariff__item-top {
  margin-bottom: 30px;
}
.tariff__item-title {
  margin-bottom: 14px;

  font-size: 24px;
  text-align: center;
}
.tariff__item-title:last-child {
  margin-bottom: 0;
}
.tariff__item-price_big {
  font-size: 18px;
}
.tariff__item-price_small {
  margin-bottom: 10px;

  font-size: 14px;
  line-height: 1.2;
}
.tariff__item-price_small:last-child {
  margin-bottom: 0;
}
.tariff__item-price_old {
  text-decoration: line-through;
}
.tariff__item-info {
  display: flex;
  margin-bottom: 30px;
}
.tariff__item-info__naming {
  margin-bottom: 14px;

  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #888888;
}
.tariff__item-info__detail {
  flex-basis: 50%;
}
.tariff__item-info__detail * {
  text-align: center;
}
.tariff__item-info__detail:nth-child(odd) {
  padding-right: 6px;

  border-right: 1px solid #dfdfdf;
}
.tariff__item-info__detail:nth-child(even) {
  padding-left: 6px;
}
.tariff__item-more {
  padding-top: 30px;
}
.tariff__item-more__btn {
  display: flex;
  justify-content: center;

  text-align: center;
  text-decoration: underline;
          column-gap: 16px;

  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
}
.tariff__item-more__btn::after {
  content: url("../img/sprite.svg#arrow-more");

  width: 22px;
  height: 22px;
}
.tariff__item-more__btn.opened::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1199.98px) {
  .tariff__item-more__content {
    display: none;
    padding-top: 30px;
  }
}
.tariff__item-more__content ul {
  margin-bottom: 30px;
}
.tariff__item-more__content li {
  padding: 12px 0;

  font-size: 14px;
  line-height: 1.2;

  border-bottom: 1px solid #dfdfdf;
}
.tariff__item-more__content li span {
  font-size: 14px;
}
.tariff__item-more__content li:last-child {
  border-bottom: none;
}
.tariff__item-more__content li.feature {
  display: flex;
  align-items: center;
  width: calc(100% + 10px);
  margin-left: -10px;

          column-gap: 10px;

  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
}
.tariff__item-more__content li.feature::before {
  content: url("../img/sprite.svg#feature");

  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
@media (min-width: 1200px) {
  .tariff__item.popular {
    margin-top: -20px;
  }
  .tariff__item-price_big {
    font-size: 20px;
  }
  .tariff__item-price_small {
    font-size: 15px;
  }
  .tariff__item-info__naming {
    font-size: 15px;
  }
  .tariff__item-more__btn {
    display: none;
  }
}
.tariff__desc p {
  margin-bottom: 12px;

  font-size: 15px;
  text-align: center;
  color: #888888;
}
.tariff__desc p:last-child {
  margin-bottom: 0;
}

.footer {
  padding: 60px 0 50px;

  background: #1d1d1b;
}
.footer__title {
  color: white;
}
.footer__top {
  margin-bottom: 50px;

  row-gap: 24px;
}
.footer__contact {
  display: flex;
  align-items: center;

          column-gap: 16px;

  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
}
@media (max-width: 767.98px) {
  .footer__contact {
    justify-content: center;
  }
}
.footer__contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;

  background: #e30613;
  border-radius: 50%;

  transition: 0.3s;
}
.footer__contact-icon:hover {
  background: #b5030d;
}
.footer__contact span {
  font-weight: 500;
  color: white;
}
.footer__contact span:hover {
  text-decoration: underline;
}
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;

          column-gap: 12px;

  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
  row-gap: 16px;
}
.footer__social span {
  color: white;
}
.footer__social-icons {
  display: flex;

          column-gap: 8px;

  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
}
.footer__social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;

  background: #e30613;
  border-radius: 50%;

  transition: 0.3s;
}
.footer__social-icons a:hover {
  background: #b5030d;
}
.footer__bot p,
.footer__bot a {
  font-size: 14px;
  text-align: center;
  color: #888888;
}
.footer__bot a {
  display: block;
  width: -webkit-fit-content;
  width:    -moz-fit-content;
  width:         fit-content;
  margin-right: auto;
  margin-left: auto;

  text-decoration: underline;
}
.footer__bot a:hover {
  color: #dfdfdf;
  text-decoration: none;
}
.footer__copyright {
  margin-bottom: 16px;
}
.footer__policy {
  margin-bottom: 36px;

  text-decoration: underline;

  cursor: pointer;
}
.footer__policy:hover {
  color: #dfdfdf;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .footer {
    padding: 80px 0 40px;
  }
  .footer__top {
    margin-bottom: 70px;
  }
  .footer__bot p,
  .footer__bot a {
    font-size: 15px;
  }
  .footer__social {
    flex-direction: row;
  }
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  display: none;
  overflow-y: scroll;
}
.popup__back {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: rgba(0, 0, 0, 0.5);
}
.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;

  cursor: pointer;
}
.popup__wrap {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  max-width: 324px;
  padding: 30px;

  background-color: #ffffff;
  border-radius: 6px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.popup__wrap_top {
  top: 0;

  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.popup__top {
  margin-bottom: 24px;
}
.popup__title {
  margin-bottom: 10px;

  font-weight: 500;
  font-size: 20px;
}
.popup__text > * {
  margin-bottom: 8px;
}
.popup__text h3 {
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}
.popup__text a {
  color: #b5030d;
}
.popup_thanks .btn {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .popup__wrap {
    max-width: 500px;
    padding: 36px;
  }
}
@media (min-width: 1200px) {
  .popup__top {
    margin-bottom: 30px;
  }
  .popup__title {
    font-size: 24px;
  }
  .popup_policy .popup__wrap {
    max-width: 80%;
  }
}

.thanks-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 130px 0;
}
@media (min-width: 992px) {
  .thanks-block {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .thanks__right {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}
.thanks__left {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .thanks__left {
    margin-bottom: 0;
  }
}
.thanks__info {
  max-width: 350px;
}
.thanks__title {
  margin-bottom: 25px;

  font-weight: 700;
  font-size: 39px;
  color: #352f2d;
}
.thanks__text {
  margin-bottom: 40px;

  font-weight: 400;
  font-size: 15px;
  color: #352f2d;
}
.thanks__btn {
  display: inline-block;
  padding: 0 28px;

  font-weight: 500;
  line-height: 56px;
  text-align: center;
  color: white;

  background: white;
  background: #e30613;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;

  transition: 0.3s;
}
.thanks__btn:hover {
  color: white;

  background: #b5030d;
  border-color: white;
}

section.thanks {
  padding-bottom: 0;
}
/*# sourceMappingURL=main.css.map */
