:root {
  --transition: all .3s ease;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 14px;
  line-height: 130%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', sans-serif;
}

input,
button,
textarea {
  font-family: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  display: block;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/* --------------- */

/* Global Style main */

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mb-50 {
  margin-bottom: 50px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(220, 224, 226, 0.7);
  width: 100%;
  height: 100%;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.popup.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.popup__wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.popup__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0px;
}

.popup__content {
  max-width: 870px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #000;
  padding: 70px 80px;
  text-align: center;
  background-color: #fff;
  border: 3px solid;
  -o-border-image: -o-linear-gradient(top, #ff452e 0%, #ffa740 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#ff452e), to(#ffa740));
     border-image: linear-gradient(180deg, #ff452e 0%, #ffa740 100%);
  border-image-slice: 1;
}

.popup__desc {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 30px;
}

.popup__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 11px;
  line-height: 130%;
}

.popup__form-content {
  margin-bottom: 20px;
}

.popup__form-item {
  position: relative;
}

.popup__form-item input {
  background: #f2f6fa;
  width: 100%;
  border-radius: 8px;
  padding: 5px 30px 5px 60px;
  min-height: 85px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.popup__form-item input:focus {
  -webkit-box-shadow: 0px 0px 1px 2px #7E868e;
          box-shadow: 0px 0px 1px 2px #7E868e;
}

.popup__form-item input::-webkit-input-placeholder {
  color: #7E868e;
}

.popup__form-item input::-moz-placeholder {
  color: #7E868e;
}

.popup__form-item input:-ms-input-placeholder {
  color: #7E868e;
}

.popup__form-item input::-ms-input-placeholder {
  color: #7E868e;
}

.popup__form-item input::placeholder {
  color: #7E868e;
}

.popup__form-item img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24px;
  width: 22px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup__form-item:not(:last-child) {
  margin-bottom: 20px;
}

.popup__form-btn {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-shadow: 0px 3px 18px rgba(153, 178, 186, 0.49);
          box-shadow: 0px 3px 18px rgba(153, 178, 186, 0.49);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 32px 15px;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#fe7e37), to(#f04e07));
  background: -o-linear-gradient(top, #fe7e37 0%, #f04e07 100%);
  background: linear-gradient(180deg, #fe7e37 0%, #f04e07 100%);
}

.popup__form-btn:hover:after {
  opacity: 1;
}

.popup__form-btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fe7e37), to(#f04e07));
  background: -o-linear-gradient(top, #fe7e37 50%, #f04e07 100%);
  background: linear-gradient(180deg, #fe7e37 50%, #f04e07 100%);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 37px;
}

.switch input {
  display: none;
}

.switch__slide {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #e7ebf0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #e7ebf0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: inset -2.5px -2.5px 5px #fafbff, inset 2.5px 2.5px 5px #a6abbd;
          box-shadow: inset -2.5px -2.5px 5px #fafbff, inset 2.5px 2.5px 5px #a6abbd;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.switch__slide.round {
  border-radius: 50px;
}

.switch__check:checked + .switch__slide {
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #ff5f1b;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #ff5f1b;
  -webkit-box-shadow: inset -2.5px -2.5px 5px rgba(255, 255, 255, 0.4), inset 2.5px 2.5px 5px #bf4e1d;
          box-shadow: inset -2.5px -2.5px 5px rgba(255, 255, 255, 0.4), inset 2.5px 2.5px 5px #bf4e1d;
  background-blend-mode: soft-light, normal;
}

.switch__slide:before {
  position: absolute;
  content: "";
  height: 27px;
  width: 27px;
  left: 7px;
  bottom: 5px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #e7ebf0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #e7ebf0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: -2.5px -2.5px 10px rgba(250, 251, 255, 0.4), 2.5px 2.5px 10px #a6abbd;
          box-shadow: -2.5px -2.5px 10px rgba(250, 251, 255, 0.4), 2.5px 2.5px 10px #a6abbd;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.switch__slide.round:before {
  border-radius: 50%;
}

.switch__check:checked + .switch__slide:before {
  background-color: #fff;
  -webkit-box-shadow: -2.5px -2.5px 10px rgba(255, 255, 255, 0.4), 2.5px 2.5px 10px #5A2E15;
          box-shadow: -2.5px -2.5px 10px rgba(255, 255, 255, 0.4), 2.5px 2.5px 10px #5A2E15;
  -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
          transform: translateX(25px);
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
  min-height: 16px;
  color: black;
}

.radio__input {
  position: absolute;
  opacity: 0;
}

.radio__span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ff452e;
  cursor: pointer;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.radio__span:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FF452E;
  border: 1px solid #FF452E;
  border-radius: 50%;
}

.radio__input:checked ~ .radio__span {
  background-color: #eef3f9;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.radio__input:checked ~ .radio__span:after {
  display: block;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
  min-height: 16px;
  color: black;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
}

.checkbox__span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #ff452e;
  cursor: pointer;
  border-radius: 0px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.checkbox__span:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FF452E;
  background-image: url(../img/check-svg.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 0px;
  border: none;
  width: 10px;
  height: 10px;
}

.checkbox__input:checked ~ .checkbox__span {
  background-color: #ff452e;
}

.checkbox__input:checked ~ .checkbox__span:after {
  display: block;
}

.checkbox--material {
  padding-left: 0;
  padding-right: 35px;
  font-weight: 700;
  min-height: 25px;
}

.checkbox--material .checkbox__span {
  width: 25px;
  height: 25px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #E7EBF0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #E7EBF0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 2.5px 2.5px 5px #A6ABBD;
          box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 2.5px 2.5px 5px #A6ABBD;
  border-radius: 3px;
  border: none;
  right: 0;
  left: auto;
}

.checkbox--material .checkbox__span::after {
  width: 15px;
  height: 15px;
}

.checkbox--material .checkbox__input:checked ~ .checkbox__span {
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FF641D;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FF641D;
  background-blend-mode: soft-light, normal;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px #C14B17;
          box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px #C14B17;
  border-radius: 3px;
}

.content {
  margin: 0 auto;
}

.content--small {
  max-width: 611px;
}

.content__item:not(:last-child) {
  margin-bottom: 60px;
}

.content-head {
  margin-bottom: 60px;
}

/*.title {
  font-size: 50px;
  line-height: 100%;
  font-weight: 900;
  text-align: center;
  color: #000;
}*/

.title--left {
  text-align: left;
}

.form-control {
  padding: 5px 11px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #000;
  width: 100%;
  height: 35px;
  border: 1px solid #ff452e;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.form-control::-webkit-input-placeholder {
  color: #6a6a6a;
}

.form-control::-moz-placeholder {
  color: #6a6a6a;
}

.form-control:-ms-input-placeholder {
  color: #6a6a6a;
}

.form-control::-ms-input-placeholder {
  color: #6a6a6a;
}

.form-control::placeholder {
  color: #6a6a6a;
}

.form-control:focus {
  -webkit-box-shadow: 0px 0px 2px 1px #ff452e;
          box-shadow: 0px 0px 2px 1px #ff452e;
}

.form__content {
  margin-bottom: 40px;
}

.form__item:not(:last-child) {
  margin-bottom: 35px;
}

.form__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 168%;
  margin-bottom: 12px;
  color: #000000;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.form__elem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.form__btn {
  background-color: #ff452e;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14.5px 30px;
  margin: 0 auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.form__btn:hover {
  background-color: #c32e1a;
}

.list-form__item:not(:last-child) {
  margin-bottom: 23px;
}

.list-form__item--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-form__item--row label {
  margin-right: 12px;
}

.list-form__input {
  width: 100%;
}

.selection {
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: -5px -5px 10px #FAFBFF, 5px 5px 10px #A6ABBD;
          box-shadow: -5px -5px 10px #FAFBFF, 5px 5px 10px #A6ABBD;
  border-radius: 10px;
  padding: 27px 35px;
}

.selection__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.selection__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 480px;
  margin: 0 -17px;
}

.selection__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 17px;
}

.selection__switch-text {
  color: #484D55;
  margin-left: 10px;
  font-size: 18px;
}

.selection__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.selection__total {
  color: #373737;
  font-size: 20px;
  margin-right: 13px;
  font-weight: 400;
}

.selection__wrap {
  max-width: 264px;
  width: 100%;
}

.selection__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #fd681f;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #fd681f;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: -5px -5px 10px #FAFBFF, 5px 5px 10px #A6ABBD;
          box-shadow: -5px -5px 10px #FAFBFF, 5px 5px 10px #A6ABBD;
  border-radius: 10px;
  color: #fff;
  min-height: 60px;
  padding: 10px 30px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.selection__btn:hover:after {
  opacity: 1;
}

.selection__btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 50.18%), #fd681f;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 50.18%), #fd681f;
  background-blend-mode: soft-light, normal;
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  border-radius: 10px;
}

.selection__switch.disabled .selection__switch-text {
  color: #414B5A;
  opacity: 0.4;
}

.card {
  padding: 3px;
  border: 3px solid;
  -o-border-image: -o-linear-gradient(top, #ff452e 0%, #ffa740 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#ff452e), to(#ffa740));
     border-image: linear-gradient(180deg, #ff452e 0%, #ffa740 100%);
  border-image-slice: 1;
  color: #fff;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.card.choice {
  -webkit-box-shadow: 0px 4px 13px rgba(86, 95, 104, 0.27);
          box-shadow: 0px 4px 13px rgba(86, 95, 104, 0.27);
  -o-border-image: none;
     border-image: none;
  border-image-slice: unset;
}

.card.choice .card__body:after {
  opacity: 1;
}

.card.choice .card__item-title,
.card.choice .card__title,
.card.choice .checkbox--material {
  color: #fff;
}

.card.choice .card__item-icon {
  -webkit-filter: grayscale(50%) brightness(6) opacity(0.5);
          filter: grayscale(50%) brightness(6) opacity(0.5);
}

.card.choice .card__item-desc p {
  color: #ffd9b7;
}

.card.choice .card__choice-link {
  border-color: #fff;
  color: #fff;
}

.card.choice .card__choice-link img {
  -webkit-filter: grayscale(50%) brightness(6) opacity(1);
          filter: grayscale(50%) brightness(6) opacity(1);
}

.card.choice .card__current-sum {
  color: #ffeed3;
}

.card__body {
  background-color: #fff;
  padding: 10px 45px 12px 37px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card__body:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(355.17deg, #FF462F 0.12%, #FFA740 63.49%);
  background: linear-gradient(94.83deg, #FF462F 0.12%, #FFA740 63.49%);
  opacity: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
}

.card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card__intro {
  max-width: 520px;
}

.card__title {
  color: #000;
  font-size: 16px;
  line-height: 168%;
  font-weight: 700;
  margin-bottom: 15px;
}

.card__intro-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card__intro-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.card__intro-rigth {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.card__item:not(:last-child) {
  margin-bottom: 15px;
}

.card__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card__item-icon {
  margin-right: 10px;
}

.card__item-desc {
  font-size: 14px;
}

.card__item-desc p {
  color: #656565;
}

.card__current-sum {
  font-size: 18px;
  font-weight: 700;
  color: #5c5c5c;
}

.card__item-title {
  font-weight: 700;
  line-height: 100%;
  color: #000;
  margin-bottom: 5px;
}

.card__choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card__choice-check {
  padding-top: 50px;
}

.card__choice-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid #FF452E;
  color: #FF452E;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 16px;
  margin-top: auto;
}

.card__choice-link img {
  display: block;
  margin-right: 7px;
}

.card-wrapper {
  position: relative;
}

/*.card-wrapper:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -o-linear-gradient(269.24deg, rgba(255, 255, 255, 0) 0.66%, #FFFFFF 99.34%);
  background: linear-gradient(180.76deg, rgba(255, 255, 255, 0) 0.66%, #FFFFFF 99.34%);
}*/

.more-btn {
  display: block;
  margin-top: 15px;
  color: #FF6D5B;
  font-size: 16px;
  line-height: 100%;
  text-decoration: underline;
  text-align: center;
  background-color: transparent;
  width: 100%;
  min-height: 20px;
}

/*.master__block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}*/

.master__block-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  position: relative;
  overflow: hidden;
  padding-bottom: 50.5%;
}

.master__block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.master__block-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  background: -o-linear-gradient(228.04deg, #F3F3F3 -18.99%, #FFFFFF 99.49%);
  background: linear-gradient(221.96deg, #F3F3F3 -18.99%, #FFFFFF 99.49%);
  /*padding: 40px 0px 20px 70px;*/
}

.master__block-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 146%;
  position: relative;
  max-width: 308px;
  padding-bottom: 11px;
  margin-bottom: 45px;
}

.master__block-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 86px;
  background-color: #000;
}

.master__block-item:not(:last-child) {
  margin-bottom: 11px;
}

.item-master {
  border: 2px solid;
  -o-border-image: -o-linear-gradient(top, #ff452e 0%, #ffa740 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#ff452e), to(#ffa740));
     border-image: linear-gradient(180deg, #ff452e 0%, #ffa740 100%);
  border-image-slice: 1;
  padding: 18px 20px;
}

.item-master__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-master__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.item-master__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.item-master__desc {
  color: #656565;
  font-size: 18px;
  border-left: 1px solid;
  -o-border-image: -o-linear-gradient(top, #ff452e 0%, #ffa740 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#ff452e), to(#ffa740));
     border-image: linear-gradient(180deg, #ff452e 0%, #ffa740 100%);
  border-image-slice: 1;
  padding-left: 21px;
  margin-left: 18px;
  font-weight: 300;
  line-height: 120%;
}

.item-master__title {
  color: #373737;
  font-weight: 600;
  margin-bottom: 5px;
}

.item-master__desc--style p {
  color: #5c5c5c;
  font-size: 22px;
  font-weight: 700;
}

.any-block {
  background: -o-linear-gradient(359.87deg, #3D3D3D 0.53%, #121212 99.89%);
  background: linear-gradient(90.13deg, #3D3D3D 0.53%, #121212 99.89%);
  padding: 70px 205px 70px 90px;
}

.any-block.any-block--second {
  padding: 0;
  background: none;
}

.any-block.any-block--second .any-block__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 70px 90px;
}

.any-block.any-block--second .any-block__body:nth-child(odd) {
  background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#ffffff));
  background: -o-linear-gradient(top, #f3f3f3 0%, #ffffff 100%);
  background: linear-gradient(180deg, #f3f3f3 0%, #ffffff 100%);
}

.any-block.any-block--second .any-block__body:nth-child(odd) .any-block__count {
  text-stroke: 1px black;
  -webkit-text-stroke: 1px black;
}

.any-block.any-block--second .any-block__body:nth-child(odd) .any-block__title {
  color: black;
}

.any-block.any-block--second .any-block__body:nth-child(odd) .any-block__item {
  color: black;
}

.any-block.any-block--second .any-block__body:nth-child(even) {
  background: -o-linear-gradient(89.57deg, #ff452e 0.3%, #f29c1f 99.57%);
  background: linear-gradient(0.43deg, #ff452e 0.3%, #f29c1f 99.57%);
}

.any-block.any-block--second .any-block__body:nth-child(even) .any-block__date {
  color: #e3e3e3;
}

.any-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.any-block__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
}

.any-block__head {
  position: relative;
  margin-bottom: 36px;
}

.any-block__count {
  color: transparent;
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  font-size: 80px;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 0;
}

.any-block__title {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  font-weight: 700;
}

.any-block__item {
  color: #fff;
  line-height: 178%;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 40px;
}

.any-block__date {
  font-size: 14px;
  color: #a5a5a5;
  font-weight: 600;
  line-height: 192%;
  margin-bottom: 16px;
}

.any-block__content-item:not(:last-child) {
  margin-bottom: 10px;
}

.skills-progress p {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  color: #a5a5a5;
}

.progress-skills__body {
  position: relative;
  height: 18px;
  width: 250px;
}

.progress-skills__active {
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.progress-skills__active:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(#1A1919), color-stop(32.37%, rgba(26, 25, 25, 0.42)), color-stop(66%, rgba(34, 34, 34, 0.05)));
  background: -o-linear-gradient(right, #1A1919 0%, rgba(26, 25, 25, 0.42) 32.37%, rgba(34, 34, 34, 0.05) 66%);
  background: linear-gradient(270deg, #1A1919 0%, rgba(26, 25, 25, 0.42) 32.37%, rgba(34, 34, 34, 0.05) 66%);
  border-radius: 15px;
}

.progress-skills__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress-skills__item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
}

.progress-skills__item:not(:first-child) {
  margin-left: 10px;
}

@media (max-width: 1200px) {
  .master__block-info {
    padding: 20px 0px 20px 30px;
  }

  .master__block-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .item-master {
    padding: 15px;
  }

  .any-block {
    padding: 50px 70px;
  }

  .any-block.any-block--second .any-block__body {
    padding: 50px 70px;
  }
}

@media (max-width: 992px) {
  .mb-50 {
    margin-bottom: 30px;
  }

  .popup__content {
    padding: 30px;
  }

  .popup__desc {
    margin-bottom: 20px;
  }

  .popup__form-item input {
    min-height: 65px;
  }

  .popup__form-btn {
    padding: 25px 15px;
    font-size: 14px;
  }

  .content__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .content-head {
    margin-bottom: 40px;
  }

  .title {
    font-size: 35px;
  }

  .selection__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .selection__intro {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .selection__end {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .selection__wrap {
    max-width: 100%;
  }

  .card__body {
    padding: 10px 15px;
  }

  .card__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .card__intro {
    max-width: 100%;
  }

  .card__choice {
    margin-top: 15px;
  }

  .card__choice-check {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .card__choice-link {
    width: 100%;
    padding: 12px 5px;
  }

  .master__block-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .master__block-image {
    padding-bottom: 60%;
  }

  .master__block-info {
    padding: 15px;
  }

  .master__block-title {
    max-width: 100%;
    padding-bottom: 0;
  }

  .master__block-title:after {
    display: none;
  }

  .any-block {
    padding: 30px;
  }

  .any-block.any-block--second .any-block__body {
    padding: 30px;
  }

  .any-block__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .any-block__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .any-block__head {
    margin-bottom: 15px;
  }

  .any-block__item {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .selection {
    padding: 15px;
  }

  .selection__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .selection__switch {
    margin-bottom: 10px;
  }

  .selection__btn {
    font-size: 14px;
    min-height: 45px;
  }

  .card__choice-link img {
    display: none;
  }

  .card-wrapper:after {
    background: -o-linear-gradient(269.24deg, rgba(255, 255, 255, 0.6) 0.66%, #fff 99.34%);
    background: linear-gradient(180.76deg, rgba(255, 255, 255, 0.6) 0.66%, #fff 99.34%);
  }

  .item-master__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .item-master__icon {
    margin-bottom: 10px;
  }

  .item-master__desc {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    font-size: 16px;
  }

  .any-block__count {
    display: none;
  }

  .any-block__date {
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  .popup__content {
    padding: 30px 15px;
  }

  .popup__title {
    font-size: 20px;
  }

  .list-form__item--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .list-form__item--row label {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .card__intro-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 15px;
  }

  .card__intro-rigth {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}