/*
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
*/

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

a {
    color: #FF3541;
    display: inline-block;
}

.section-title {
  margin-bottom: 64px;
}

section {
  padding: 50px 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 101;
  display: none;
}

.checkbox {
  display: inline-block;
  position: relative;
  padding: 0px 0 0px 0;
  margin-bottom: 24px;
}

.checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox input:checked ~ .checkbox__text:after {
  opacity: 1;
}

.checkbox input:checked ~ .checkbox__text:before {
  background: #FF3541;
}

.checkbox__text {
  font-size: 18px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  display: block;
  position: relative;
  padding: 0 0 0 60px;
  cursor: pointer;
}

.checkbox__text a {
  text-decoration: underline;
  color: #096DD9;
}

.checkbox__text a:hover {
  text-decoration: none;
}

.checkbox__text:before,
.checkbox__text:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
}

.checkbox__text:before {
  border: 1px solid #DCDCDC;
  border-radius: 7px;
}

.checkbox__text:after {
  content: '';
  background-image: url('../img/check.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px;
  left: 1px;
  opacity: 0;
}

.checkbox a {
  color: #FF3541;
  text-decoration: underline;
}

.checkbox a:hover {
  text-decoration: none;
}

.radio {
  padding: 8px 15px 8px 0;
  display: inline-block;
  position: relative;
}

.radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio input:checked + .radio__text:after {
  opacity: 1;
}

.radio__text {
  position: relative;
  padding: 0 0 0 40px;
  cursor: pointer;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #2F1C1C;
}

.radio__text:before,
.radio__text:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  top: 50%;
  margin-top: -12px;
  left: 0;
  border-radius: 50%;
}

.radio__text:before {
  border: 2px solid #DCDCDC;
  border-radius: 50%;
}

.radio__text:after {
  background-color: #fff;
  opacity: 0;
  border: 7px solid #FF3541;
}

.red {
  color: #FF3541;
}

h1 {
  font-size: 40px;
  line-height: 1.175;
  font-weight: 700;
  color: #2F1C1C;
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #2F1C1C;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2F1C1C;
  line-height: 1.2;
}

.text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
}

p {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
}

.sign-btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #2F1C1C;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sign-btn:hover {
  color: #FF3541;
}

.sign-btn:hover svg {
  fill: #FF3541;
}

.sign-btn svg {
  width: 22px;
  height: 22px;
  fill: #2F1C1C;
  margin-left: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 52px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 39px;
  max-width: 100%;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--register {
  color: #FF3541;
  padding: 0px 32px;
  border: 2px solid #FF3541;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--register:hover {
  background-color: #FF3541;
  color: #fff;
}

.btn--red {
  color: #fff;
  padding: 0px 32px;
  background: -webkit-linear-gradient(356.15deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  background: linear-gradient(93.85deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
}

.btn--red:hover {
  background: -webkit-linear-gradient(356.15deg, #FF004D 0%, #FF3D3D 100%);
  background: linear-gradient(93.85deg, #FF004D 0%, #FF3D3D 100%);
}

.btn--black {
  color: #fff;
  padding: 0px 58px;
  background-color: #2F1C1C;
}

.btn--black:hover {
  background-color: #FF3541;
}

.btn--white {
  padding: 0px 96px;
  color: #2F1C1C;
  background-color: #fff;
}

.btn--white:hover {
  background-color: #FF3541;
  color: #fff;
}

.btn--outline {
  padding: 0 82px;
  color: #2F1C1C;
  border: 2px solid #2F1C1C;
  background-color: #fff;
}

.btn--outline:hover {
  background-color: #FF3541;
  color: #fff;
  border-color: #FF3541;
}

.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 36px;
  max-width: 540px;
}

.social__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 36px;
  width: 50%;
}

.social li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.social a {
  display: inline-block;
  width: 36px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.form-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  max-width: 1070px;
}

.form-main .formgroup {
  position: relative;
  margin-bottom: 32px;
}

.form-main .formgroup.w-100 {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}

.form-main .formgroup.w-50 {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
}

.form-main .formgroup.w-25 {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
}

.form-main .formgroup.w-12-5 {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(12.5% - 30px);
}

.form-main .label {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #2F1C1C;
  margin-bottom: 16px;
}

.form-main__checkboxes {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
  margin-bottom: 48px;
}

.form-main__btn {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}

.form-main__btn .btn:disabled {
  background: #eee;
  color: #000;
}

.btn:disabled {
  background: #eee;
  color: #000;
}

.form-main__btn .btn:not(:disabled) {
  cursor: pointer;
}

.btn:not(:disabled) {
  cursor: pointer;
}

.form-main__radio {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17px 60px;
  margin-bottom: 48px;
}

.form-main input,
.form-main textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #CFD7E7;
  border-radius: 5px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 400;
  color: #0F2756;
}

.form-main input.error,
.form-main textarea.error {
  border-color: #FF4A4A;
}

.form-main input:focus,
.form-main textarea:focus {
  border-color: #4A84FA;
}

.form-main .form-select {
  width: 100%;
  height: 52px;
  font-size: 16px;
  line-height: 50px;
  border: 1px solid #CFD7E7;
}

.form-main .form-select:focus {
  border-color: #4A84FA;
}

.form-main .form-select .list {
  width: 100%;
  margin-top: 1px;
  border: 1px solid #CFD7E7;
  border-radius: 0 0 5px 5px;
}

.form-main .form-select .option.focus {
  color: #4A84FA;
  font-weight: 400;
  background-color: transparent !important;
}

.form-main input[type=number] input::-webkit-outer-spin-button,
.form-main input[type=number] input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.form-main label.error {
  width: 100%;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 12px;
  color: #FF4A4A;
  text-align: right;
  font-weight: 400;
  line-height: 1.3;
}

.cookies {
  background-color: #2F1C1C;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 1290px;
  max-width: 96%;
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
}

.cookies.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.cookies__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.cookies__close img {
  width: 12px;
}

.cookies__discr {
  max-width: 820px;
  margin-right: 30px;
}

.cookies__title {
  color: #fff;
  margin-bottom: 16px;
}

.cookies__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  color: #fff;
}

.cookies__text a {
  color: #FF3541;
  text-decoration: none;
}

.cookies__text a:hover {
  text-decoration: underline;
}

.cookies__btn {
  margin-left: auto;
}

.cookies__btn .btn {
  cursor: pointer;
}

.sitemap__item {
  padding: 50px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.sitemap ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sitemap li {
  margin-right: 15px;
  margin-bottom: 15px;
}

.sitemap li a {
  color: #2F1C1C;
}

.header {
  background-color: #fff;
  padding: 50px 0;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.header__logo {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
}

.header__nav li:not(:last-child) {
  margin-right: 16px;
}

.header__nav a {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #2F1C1C;
  text-decoration: none;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.header__nav a.active {
  color: #FF3541;
  text-shadow: 0px 0px 1px #FF3541;
}

.header__nav a:hover {
  color: #FF3541;
  text-shadow: 0px 0px 1px #FF3541;
}

.header__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  margin-left: 24px;
}

.header .menu-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -400px;
  height: 100vh;
  width: 375px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  z-index: 110;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 13px 15px;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.07);
  height: 72px;
  position: relative;
  z-index: 2;
}

.mobile-menu__close {
  width: 30px;
  height: 30px;
  margin-left: auto;
}

.mobile-menu__close svg {
  width: 100%;
  height: 100%;
  fill: #0F2756;
}

.mobile-menu__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow-y: scroll;
  padding: 0px 15px 85px 15px;
  background-color: #fff;
}

.mobile-menu__nav {
  padding: 48px 0 48px 0;
  margin-bottom: auto;
}

.mobile-menu__nav li:not(:last-child) {
  margin-bottom: 24px;
}

.mobile-menu__nav a {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  color: #0F2756;
}

.mobile-menu .btn--register {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.mobile-menu .sign-btn {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.telegram-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -28px;
}

.telegram {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 28px;
}

.telegram:hover .telegram__nickname {
  color: #9B9B9B;
}

.telegram:hover .telegram__nickname img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.telegram:not(:last-child) {
  margin-right: 90px;
}

.telegram__nickname {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #2F1C1C;
  line-height: 1.2;
  margin-bottom: 3px;
  -webkit-transition: inherit;
  transition: inherit;
}

.telegram__nickname img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 16px;
}

.telegram__name {
  font-size: 18px;
  font-weight: 400;
  color: #2F1C1C;
  line-height: 1.2;
  margin-left: 66px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cooperation-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-left: -50px;
}

.cooperation-list__item {
  padding: 0 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 290px;
}

.cooperation-list__item:not(:last-child) {
  border-right: 1px solid #CFD7E7;
}

.cooperation-list__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #2F1C1C;
  margin-bottom: 24px;
}

.cooperation-list__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #FF3541;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  margin-top: auto;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.cooperation-list__link:before {
  content: '';
  display: inline-block;
  width: calc(100% - 64px);
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 13px;
  background-color: #FB6B1A;
  opacity: 0;
}

.cooperation-list__link:hover {
  background: -webkit-linear-gradient(93.85deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

.cooperation-list__link:hover:before {
  opacity: 1;
}

.cooperation-list__link img {
  margin-right: 16px;
}

.footer {
  margin-top: auto;
  padding-top: 50px;
}

.footer__inner {
  padding: 50px 0;
  background: #F9F9F9;
}

.footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 40px;
}

.footer__l {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}

.footer__m {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 250px;
}

.footer__r {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: 400px;
}

.footer__r p {
  font-size: 16px;
}

.footer__logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 20px;
}

.footer__logos a:not(:last-child) {
  margin-right: 25px;
}

.footer__logos a img {
  display: block;
}

.footer__links {
  margin-bottom: 50px;
}

.footer__links li {
  margin-bottom: 2px;
}

.footer__links li:not(:last-child) {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  color: #FF3541;
  text-decoration: underline;
}

.footer__links a:hover {
  text-decoration: none;
}

.footer__copy {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  color: #2F1C1C;
}

.footer__social-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #2F1C1C;
  margin-bottom: 20px;
}

.footer__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.footer__social-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__social-item:hover {
  opacity: 0.8;
}

.footer__social-icon {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.footer__social-icon img,
.footer__social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__social-icon svg {
  display: block;
}

.footer__social-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.footer__social-name {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #FF3541;
  margin-bottom: 4px;
}

.footer__social-desc {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  color: #2F1C1C;
}

.footer__operator {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #2F1C1C;
}

.footer__operator img {
  margin-right: 16px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.main__img {
  margin-left: auto;
  margin-bottom: 20px;
  width: 50%;
}

.main__img img,
.webmaster__img img,
.advertizer__img img
{
  max-height: 45vh;
}

.main__title {
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  line-height: 1.175;
  color: #2F1C1C;
  margin-bottom: 24px;
}

.main__text {
  max-width: 520px;
  margin-bottom: 48px;
}

.main__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 16px 18px;
  margin-bottom: 48px;
}

.cover {
  width: 630px;
  max-width: 100%;
}

.cover__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2F1C1C;
  margin-bottom: 24px;
}

.cover__list {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px 45px;
}

.icon-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
}

.icon-list li img {
  width: 48px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: block;
  margin-right: 32px;
}

.webmaster {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: flex-start;
}

.webmaster__descr {
  padding-top: 80px;
  width: 630px;
  max-width: 100%;
}

.webmaster__text {
  width: 410px;
  max-width: 100%;
  margin-bottom: 48px;
}

.webmaster__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 18px;
}

.webmaster__img {
  margin-left: auto;
  width: 50%;
}

.our-clients {
  overflow: hidden;
  position: relative;
  padding: 30px;
  background-color: #F9F9F9;
  border-radius: 20px;
}

.our-clients .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.our-clients .swiper-slide {
  width: auto;
}

.our-clients .swiper-slide img {
  height: 60px;
  max-width: 160px;
}

.our-clients .swiper-button-prev,
.our-clients .swiper-button-next {
  width: 34px;
  height: 34px;
  background: #2F1C1C;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.our-clients .swiper-button-prev:hover,
.our-clients .swiper-button-next:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.our-clients .swiper-button-prev:after,
.our-clients .swiper-button-next:after {
  display: none;
}

.our-clients .swiper-button-prev {
  background-image: url('../img/slide-prev.svg');
  left: 30px;
}

.our-clients .swiper-button-next {
  background-image: url('../img/slide-next.svg');
  right: 30px;
}

.tab .tab-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.tab .tab-head__item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 20px 50px;
  cursor: pointer;
  border-radius: 20px 20px 0px 0px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #2F1C1C;
}

.tab .tab-head__item.active {
  color: #FF3541;
  background: #F9F9F9;
  position: relative;
}

.tab .tab-head__item.active:before,
.tab .tab-head__item.active:after {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.tab .tab-head__item.active:before {
  right: 100%;
  background-image: url('../img/t-left.png');
}

.tab .tab-head__item.active:after {
  left: 100%;
  background-image: url('../img/t-right.png');
}

.tab .tab-body {
  background: #F9F9F9;
}

.tab .tab-body__item {
  display: none;
  margin-left: auto;
  margin-right: auto;
  padding: 36px 0 48px 0;
}

.tab .tab-body__item.active {
  display: block;
}

.tab-body__btn {
  margin-top: 48px;
  text-align: center;
}

.tab-list {
  -webkit-columns: 2;
  columns: 2;
}

.tab-list li {
  font-size: 16px;
  font-weight: 400;
  color: #2F1C1C;
  line-height: 1.2;
  margin: 0 100px 30px;
  position: relative;
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}

.tab-list li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FF3541;
  border-radius: 50%;
  position: absolute;
  left: -24px;
  top: 7px;
}

.tab-list span {
  display: block;
  margin: 20px 0;
}

.slide-tab {
  background-color: #F9F9F9;
  display: none;
}

.slide-tab__head {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #2F1C1C;
  padding: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 1px solid #E9E9E9;
}

.slide-tab__head svg {
  width: 16px;
  height: 16px;
  stroke: #2F1C1C;
  fill: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  margin-left: auto;
}

.slide-tab__head.active {
  color: #FF3541;
}

.slide-tab__head.active svg {
  stroke: #FF3541;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.slide-tab__body {
  display: none;
  padding: 0 20px;
}

.possibility__title {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.possibility__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
  margin-bottom: 48px;
}

.possibility__img {
  text-align: center;
  margin-bottom: 36px;
}

.possibility__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  text-align: center;
}

.possibility__note {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  padding: 48px;
  border: 2px dashed #FF3541;
  border-radius: 20px;
  margin-bottom: 48px;
}

.possibility .possibility__btn {
  text-align: center;
}

.need {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.need__title {
  margin-bottom: 48px;
}

.need__list {
  margin-bottom: 48px;
}

.need__list li:not(:last-child) {
  margin-bottom: 16px;
}

.need__discr {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
}

.need__img {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
  text-align: center;
}

.need__img img {
  width: 100%;
}

.advertizer__descr {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(44.16666666666667% - 30px);
}

.advertizer__title {
  margin-right: -200px;
}

.advertizer__text {
  width: 410px;
  max-width: 100%;
  margin-bottom: 48px;
}

.advertizer__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 18px;
  margin-bottom: 48px;
}

.advertizer__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #2F1C1C;
  margin-bottom: 48px;
}

.advertizer__img {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(55.833333333333336% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  z-index: -1;
  width: 50%;
}

.choose-us {
  background: -webkit-linear-gradient(356.15deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  background: linear-gradient(93.85deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  border: 1px solid #FF3541;
  border-radius: 30px;
  padding: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.choose-us.in {
  background: #fff;
}

.choose-us.in .choose-us__title {
  color: #FF3541;
}

.choose-us.in .choose-us__text {
  color: #FF3541;
}

.choose-us__discr {
  max-width: 704px;
  margin-right: 30px;
}

.choose-us__title {
  color: #FFFFFF;
  margin-bottom: 16px;
  -webkit-transition: inherit;
  transition: inherit;
}

.choose-us__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}

.choose-us__btn {
  margin-left: auto;
}

.choose-us .btn {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #FF3541;
  white-space: nowrap;
  max-width: 100%;
}

.choose-us .btn:hover {
  color: #fff;
}

.advantage {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.advantage__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
}

.advantage__icon {
  text-align: center;
  margin-bottom: 36px;
}

.advantage__title {
  text-align: center;
  min-height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  text-align: center;
}

.make {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.make__title {
  margin-bottom: 0;
  max-width: 520px;
  margin-right: 140px;
}

.make__list {
  counter-reset: make-list;
}

.make__list li {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.make__list li:not(:last-child) {
  margin-bottom: 28px;
}

.make__list li:not(:last-child):after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url('../img/list-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 177px;
  top: calc(100% + 7px);
}

.make__list li:before {
  counter-increment: make-list;
  content: counters(make-list, ".");
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #FF3541;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F9F9F9;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 32px;
}

.form-page__title {
  margin-bottom: 48px;
}

.page404 {
  padding: 140px 0 170px 0;
}

.page404__inner {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.page404__error {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #D2D2D2;
  text-align: center;
  margin-bottom: 2px;
}

.page404__title {
  font-style: italic;
  font-weight: 700;
  font-size: 158px;
  text-align: center;
  background: -webkit-linear-gradient(93.85deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.page404__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #2F1C1C;
  text-align: center;
  margin-bottom: 16px;
}

.page404__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  text-align: center;
  margin-bottom: 48px;
}

.page404__btn {
  text-align: center;
}

.page-thanks {
  padding: 140px 0 170px 0;
}

.page404__inner {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.page-thanks__error {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #D2D2D2;
  text-align: center;
  margin-bottom: 2px;
}

.page-thanks__title {
  font-style: italic;
  font-weight: 700;
  font-size: 158px;
  text-align: center;
  background: -webkit-linear-gradient(93.85deg, #FF3D3D 0%, #FF004D 100%, #FF004D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.page-thanks__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #2F1C1C;
  text-align: center;
  margin-bottom: 16px;
}

.page-thanks__text {
  font-size: 18px;
  line-height: 1.17;
  font-weight: 400;
  color: #2F1C1C;
  text-align: center;
  margin-bottom: 48px;
}

.page-thanks__btn {
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .tab-list li {
    margin: 0 25px 25px;
  }

  .make__title {
    margin-right: 50px;
  }

  .page404 {
    padding: 50px 0 50px 0;
  }

  .page-thanks {
    padding: 50px 0 50px 0;
  }
}

@media screen and (max-width: 991px) {
  .header__nav {
    display: none;
  }

  .header__btns {
    margin-left: auto;
  }

  .header .menu-btn {
    display: block;
    margin-left: 32px;
  }

  .cooperation-list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0px;
  }

  .cooperation-list__item {
    width: 100%;
    padding: 20px 0px;
  }

  .cooperation-list__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #CFD7E7;
  }

  .main {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main__discr {
    max-width: 630px;
    margin: 0 auto 50px;
  }

  .main__img {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .possibility__item {
    width: calc(50% - 30px);
  }

  .advertizer__descr {
    width: calc(100% - 30px);
  }

  .advertizer__descr {
    margin-bottom: 48px;
  }

  .advertizer__title {
    margin-right: 0;
  }

  .advertizer__img {
    width: calc(100% - 30px);
  }

  .advertizer__img {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .advertizer__img img {
    width: auto;
  }

  .advantage {
    margin-bottom: -64px;
  }

  .advantage__item {
    width: calc(50% - 30px);
  }

  .advantage__item {
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 769px) {
  .cookies {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cookies__discr {
    margin-right: 0;
  }

  .cookies__text {
    margin-bottom: 30px;
  }

  .cookies__btn {
    margin-right: auto;
  }

  .footer__row {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__l {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer__m {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer__r {
    width: 100%;
    margin-left: 0;
    max-width: 100%;
  }

  .main__discr {
    max-width: 100%;
  }

  .webmaster {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .webmaster__descr {
    padding-top: 0;
    margin-bottom: 164px;
  }

  .webmaster__img {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .our-clients .swiper-button-prev,
  .our-clients .swiper-button-next {
    display: none;
  }

  .tab {
    display: none;
  }

  .tab-body__btn {
    margin-top: -16px;
    padding-bottom: 48px;
  }

  .tab-list {
    -webkit-columns: 1;
    columns: 1;
    padding: 48px 0;
  }

  .tab-list li {
    margin-right: 0;
  }

  .tab-list li:before {
    width: 6px;
    height: 6px;
  }

  .slide-tab {
    display: block;
  }

  .need__discr {
    width: calc(100% - 30px);
  }

  .need__discr {
    margin-bottom: 32px;
  }

  .need__img {
    width: calc(100% - 30px);
  }

  .need__img img {
    width: auto;
  }

  .choose-us {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 100px;
  }

  .choose-us__discr {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .choose-us__btn {
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
  }

  .make {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .make__title {
    margin-right: 0;
    margin-bottom: 48px;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .checkbox__text {
    font-size: 15px;
  }

  .radio__text {
    font-size: 18px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .text {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    width: 280px;
  }

  .social {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .social__row {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .social li {
    width: 25%;
  }

  .form-main .formgroup.w-50 {
    width: calc(100% - 30px);
  }

  .form-main .formgroup.w-25 {
    width: calc(100% - 30px);
  }

  .form-main .formgroup.w-12-5 {
    width: calc(50% - 30px);
  }

  .form-main .label {
    font-size: 18px;
  }

  .form-main__btn .btn {
    width: 100%;
  }

  .cookies {
    padding: 20px;
  }

  .cookies__text {
    font-size: 15px;
  }

  .cookies__btn .btn {
    width: 260px;
  }

  .header {
    padding: 15px 0 50px 0;
  }

  .header__btns {
    display: none;
  }

  .header .menu-btn {
    margin-left: auto;
  }

  .mobile-menu {
    width: 320px;
  }

  .telegram:not(:last-child) {
    margin-right: 20px;
  }

  .telegram__nickname {
    font-size: 18px;
  }

  .telegram__name {
    font-size: 15px;
    margin-left: 66px;
  }

  .footer__logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .footer__logos a:not(:last-child) {
    margin-right: 0;
  }

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

  .footer__operator {
    font-size: 15px;
  }

  .main__title {
    font-size: 32px;
  }

  .main__btns .btn {
    width: 100%;
  }

  .main__btns {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cover__list {
    grid-template-columns: 1fr;
  }

  .icon-list li {
    font-size: 15px;
  }

  .webmaster__btns {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .webmaster__btns .btn {
    width: 100%;
  }

  .our-clients {
    padding: 20px;
  }

  .tab-list li {
    font-size: 15px;
  }

  .possibility__item {
    width: calc(100% - 30px);
  }

  .possibility__text {
    font-size: 15px;
  }

  .possibility__note {
    font-size: 15px;
  }

  .possibility__note {
    padding: 20px;
  }

  .possibility .possibility__btn .btn {
    width: 100%;
  }

  .need .btn {
    width: 100%;
  }

  .advertizer__text {
    margin-bottom: 32px;
  }

  .advertizer__btns {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .advertizer__btns .btn {
    width: 100%;
  }

  .choose-us {
    padding: 20px;
  }

  .choose-us__text {
    font-size: 15px;
  }

  .choose-us__btn {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .choose-us .btn {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }

  .choose-us .btn {
    width: 100%;
  }

  .advantage__item {
    width: calc(100% - 30px);
  }

  .advantage__icon {
    margin-bottom: 32px;
  }

  .advantage__text {
    font-size: 15px;
  }

  .make__list {
    width: 100%;
  }

  .make__list li {
    font-size: 15px;
  }

  .make__list li:not(:last-child):after {
    left: 50%;
    margin-left: -4px;
  }

  .page404__error {
    font-size: 16px;
  }

  .page404__title {
    font-size: 128px;
  }

  .page404__subtitle {
    font-size: 22px;
  }

  .page404__text {
    font-size: 15px;
  }

  .page404__btn .btn {
    width: 100%;
  }

  .page-thanks__error {
    font-size: 16px;
  }

  .page-thanks__title {
    font-size: 128px;
  }

  .page-thanks__subtitle {
    font-size: 22px;
  }

  .page-thanks__text {
    font-size: 15px;
  }

  .page-thanks__btn .btn {
    width: 100%;
  }
}
strong.error {
  color: #FF4A4A;
  font-size: 12px;
  margin-top: 5px;
}
strong.valid {
  color: #31a500;
  font-size: 12px;
  margin-top: 5px;
}
input.valid {
  border-color: #31a500;
}
input.error {
  border-color: #FF4A4A;
}

.label span {
  color: #FF3541;
  padding-left: 5px;
}

.checkbox strong {
  display: block;
  margin-bottom: 10px;
}