* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

html {
  position: relative;
  min-width: 100%;
  padding: env(safe-area-inset);
  scroll-behavior: smooth;
  height: 100%; }
  html.menuIsOpened {
    overflow: hidden;
    max-height: 100vh;
    touch-action: none; }
    html.menuIsOpened body {
      overflow: hidden;
      padding-top: 84px;
      height: 100vh;
      touch-action: none; }
      @supports (position: sticky) {
        html.menuIsOpened body {
          padding-top: 0px; } }
    html.menuIsOpened header {
      position: fixed;
      left: 0px;
      top: 0px;
      width: 100%; }
      @supports (position: sticky) {
        html.menuIsOpened header {
          position: -webkit-sticky;
          position: -moz-sticky;
          position: -o-sticky;
          position: -ms-sticky;
          position: sticky; } }

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  padding: 0px;
  margin: 0px auto;
  line-height: 1;
  color: #1F1F1F;
  min-width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overflow-x: hidden;
  overflow: overlay; }
  body.menuIsOpened {
    overflow: hidden; }
  body .bodyWrap {
    position: relative; }
  body > * {
    flex-shrink: 0; }

.container {
  width: 1254px;
  padding: 0px 15px;
  margin: 0px auto; }

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px; }

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em; }

select,
input,
textarea {
  width: 100%;
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  font-family: "Open Sans";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

button {
  padding: 0px;
  font-family: "Open Sans";
  background-color: transparent;
  border: none;
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
  cursor: pointer; }
  button:disabled {
    cursor: default; }

.siteLogo {
  width: 124px;
  position: relative;
  z-index: 1; }
  .siteLogo > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .siteLogo img {
    display: block;
    width: 100%; }
  @media (max-width: 767px) {
    .siteLogo {
      width: 103px; } }

.siteLink {
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  color: #ED1D24;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .siteLink:hover {
    color: #1F1F1F; }
  .siteLink.sm {
    font-size: 16px;
    line-height: 130%;
    color: #ED1D24;
    font-weight: normal; }
    .siteLink.sm:hover {
      color: #1F1F1F; }

.headerLinks {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .headerLinks > li {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: #1F1F1F;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer; }
    .headerLinks > li > a {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 7;
      overflow: hidden;
      text-indent: 200%;
      white-space: nowrap; }
    .headerLinks > li:hover {
      color: #ED1D24; }
    .headerLinks > li + li {
      margin-left: 30px; }

.simpleLink {
  display: table;
  font-size: 14px;
  line-height: 130%;
  color: #1F1F1F;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: #ED1D24;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
  -webkit-transition: color 0.3s, text-decoration-color 0.3s;
  -moz-transition: color 0.3s, text-decoration-color 0.3s;
  -o-transition: color 0.3s, text-decoration-color 0.3s;
  transition: color 0.3s, text-decoration-color 0.3s; }
  .simpleLink:hover {
    color: #ED1D24; }
  .simpleLink.inverted {
    font-size: 12px;
    line-height: 120%;
    color: white;
    letter-spacing: 0.05em;
    text-decoration-color: #666666; }
    .simpleLink.inverted:hover {
      text-decoration-color: white; }

.textLink {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-decoration-color: #B8B8B8;
  text-underline-offset: 0.3em;
  -webkit-transition: text-decoration-color 0.3s;
  -moz-transition: text-decoration-color 0.3s;
  -o-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s; }
  .textLink:hover {
    text-decoration-color: transparent; }

.linksList li a {
  display: inline-block;
  font-size: 14px;
  line-height: 170%;
  color: #1F1F1F;
  text-decoration: underline;
  text-decoration-color: #B8B8B8;
  text-underline-offset: 0.35em;
  -webkit-transition: text-decoration-color 0.3s;
  -moz-transition: text-decoration-color 0.3s;
  -o-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s; }
  .linksList li a:hover {
    text-decoration-color: transparent; }
.linksList li + li {
  margin-top: 13px; }
.linksList li.active a {
  font-weight: bold;
  text-decoration-color: transparent; }

.siteTabs .tabContent, .cabinetNavigation .tabContent,
.processTabs .tabContent,
.defaultTabs .tabContent {
  position: relative;
  display: none;
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1; }
  .siteTabs .tabContent.active, .cabinetNavigation .tabContent.active,
  .processTabs .tabContent.active,
  .defaultTabs .tabContent.active {
    display: block; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.siteTabs .tabsList, .cabinetNavigation .tabsList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -20px;
  margin-right: -20px; }
  .siteTabs .tabsList .inner, .cabinetNavigation .tabsList .inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    @media (max-width: 1253px) {
      .siteTabs .tabsList .inner, .cabinetNavigation .tabsList .inner {
        margin-left: calc((100vw - 708px) / -2);
        margin-right: calc((100vw - 708px) / -2);
        padding-left: calc((100vw - 708px) / 2);
        padding-right: calc((100vw - 738px) / 2);
        overflow-x: scroll;
        scrollbar-width: none; }
        .siteTabs .tabsList .inner::-webkit-scrollbar, .cabinetNavigation .tabsList .inner::-webkit-scrollbar {
          display: none; } }
    @media (max-width: 767px) {
      .siteTabs .tabsList .inner, .cabinetNavigation .tabsList .inner {
        margin-left: calc((100vw - 430px) / -2);
        margin-right: calc((100vw - 430px) / -2);
        padding-left: calc((100vw - 430px) / 2);
        padding-right: calc((100vw - 430px) / 2); } }
    @media (max-width: 479px) {
      .siteTabs .tabsList .inner, .cabinetNavigation .tabsList .inner {
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px; } }
  .siteTabs .tabsList .tab, .cabinetNavigation .tabsList .tab {
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 5px solid transparent;
    -webkit-transition: border-bottom 0.3s;
    -moz-transition: border-bottom 0.3s;
    -o-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s; }
    .siteTabs .tabsList .tab a, .cabinetNavigation .tabsList .tab a {
      display: block;
      padding-bottom: 12px;
      font-size: 16px;
      line-height: 22px;
      color: #1F1F1F;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-style: dashed;
      text-decoration-color: inherit;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.3em;
      -webkit-transition: color 0.3s, text-decoration-color 0.3s;
      -moz-transition: color 0.3s, text-decoration-color 0.3s;
      -o-transition: color 0.3s, text-decoration-color 0.3s;
      transition: color 0.3s, text-decoration-color 0.3s; }
      .siteTabs .tabsList .tab a:hover, .cabinetNavigation .tabsList .tab a:hover {
        text-decoration-color: transparent; }
    .siteTabs .tabsList .tab.active, .cabinetNavigation .tabsList .tab.active {
      border-bottom: 5px solid #ED1D24; }
      .siteTabs .tabsList .tab.active a, .cabinetNavigation .tabsList .tab.active a {
        text-decoration-color: transparent; }
    .siteTabs .tabsList .tab + .tab, .cabinetNavigation .tabsList .tab + .tab {
      margin-left: 30px; }
      @media (max-width: 1253px) {
        .siteTabs .tabsList .tab + .tab, .cabinetNavigation .tabsList .tab + .tab {
          margin-left: 20px; } }
.siteTabs .tabContent, .cabinetNavigation .tabContent {
  padding-top: 60px; }
  @media (max-width: 1253px) {
    .siteTabs .tabContent, .cabinetNavigation .tabContent {
      padding-top: 50px; } }
  @media (max-width: 1253px) {
    .siteTabs .tabContent, .cabinetNavigation .tabContent {
      padding-top: 40px; } }

.cabinetNavigation .tabsList .tab a {
  text-decoration: none; }
.cabinetNavigation .tabsList .tab:not(.active) a:hover {
  color: #ED1D24; }
.cabinetNavigation .tabsList .tab + .tab {
  margin-left: 10px; }
.cabinetNavigation .tabContent {
  display: block;
  padding-top: 50px;
  position: relative; }
  @media (max-width: 1253px) {
    .cabinetNavigation .tabContent {
      padding-top: 40px; } }
  @media (max-width: 767px) {
    .cabinetNavigation .tabContent {
      padding-top: 35px; } }
  .cabinetNavigation .tabContent .searchWrapper.togglePanel {
    position: absolute;
    padding-bottom: 0;
    top: 44px;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 1; }
    @media (max-width: 1253px) {
      .cabinetNavigation .tabContent .searchWrapper.togglePanel {
        position: relative;
        top: auto;
        left: auto;
        padding-bottom: 20px;
        display: table;
        width: 320px;
        margin-left: auto; } }
    @media (max-width: 767px) {
      .cabinetNavigation .tabContent .searchWrapper.togglePanel {
        width: 100%; }
        .cabinetNavigation .tabContent .searchWrapper.togglePanel .field .simpleInput {
          max-width: 100%; } }

.searchList {
  counter-reset: item; }
  .searchList li {
    position: relative;
    padding-left: 42px; }
    @media (max-width: 767px) {
      .searchList li {
        padding-left: 32px; } }
    .searchList li::before {
      counter-increment: item;
      content: counters(item,".") ". ";
      display: block;
      position: absolute;
      left: 0px;
      top: 0px;
      font-size: 20px;
      line-height: 140%;
      color: #212121; }
    .searchList li + li {
      margin-top: 40px; }
      @media (max-width: 767px) {
        .searchList li + li {
          margin-top: 25px; } }
  .searchList .title a {
    display: inline-block;
    color: #ED1D24;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25em;
    -webkit-transition: color 0.3s, text-decoration-color 0.3s;
    -moz-transition: color 0.3s, text-decoration-color 0.3s;
    -o-transition: color 0.3s, text-decoration-color 0.3s;
    transition: color 0.3s, text-decoration-color 0.3s; }
    .searchList .title a:hover {
      text-decoration-color: #ED1D24; }
  .searchList .title + .info {
    margin-top: 8px; }

.loader {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: 2px solid #C4C4C4;
  border-left: 2px solid #C4C4C4;
  border-bottom: 2px solid #C4C4C4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -o-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite; }
  .loader.color {
    border-top-color: #ED1D24;
    border-left-color: #ED1D24;
    border-bottom-color: #ED1D24; }

@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
.cartBtn {
  position: relative; }
  .cartBtn .num {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    padding: 0px 3px;
    font-size: 10px;
    line-height: 13px;
    color: white;
    font-weight: 700;
    background-color: #ED1D24;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px; }

.paginationBlock {
  display: flex;
  align-items: center; }
  .paginationBlock .prevPageLink {
    margin-right: 20px; }
    @media (max-width: 767px) {
      .paginationBlock .prevPageLink {
        margin-right: 11px; } }
  .paginationBlock .nextPageLink {
    margin-left: 20px; }
    @media (max-width: 767px) {
      .paginationBlock .nextPageLink {
        margin-left: 11px; } }

.pagination {
  display: flex; }
  .pagination li a {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    color: #1F1F1F;
    text-align: center;
    background-color: transparent;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s; }
    .pagination li a:hover {
      color: white;
      background-color: #272727; }
  .pagination li.active a {
    color: white;
    background-color: #272727; }
  .pagination li + li {
    margin-left: 8px; }
    .pagination li + li.more {
      margin-left: 0px; }
  .pagination li.more + li {
    margin-left: 0px; }

.nextPageLink {
  position: relative;
  padding-right: 32px;
  display: inline-block;
  min-height: 19px;
  font-size: 14px;
  line-height: 140%;
  color: #1F1F1F;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .nextPageLink::before {
    content: '\e914';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 0px;
    font-family: "icomoon";
    font-size: 22px; }
  .nextPageLink:hover {
    color: #ED1D24; }
  @media (max-width: 767px) {
    .nextPageLink {
      font-size: 0px;
      line-height: 19px; } }

.prevPageLink {
  position: relative;
  padding-left: 32px;
  display: inline-block;
  min-height: 19px;
  font-size: 14px;
  line-height: 140%;
  color: #1F1F1F;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .prevPageLink::before {
    content: '\e914';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 0px;
    font-family: "icomoon";
    font-size: 22px;
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1); }
  .prevPageLink:hover {
    color: #ED1D24; }
  @media (max-width: 767px) {
    .prevPageLink {
      font-size: 0px;
      line-height: 19px; } }

.returnBackLink {
  display: inline-block;
  font-size: 32px;
  color: #1F1F1F;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  z-index: 1; }
  .returnBackLink > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .returnBackLink:hover {
    color: #ED1D24; }

.showMoreBlock .hiddenBlock {
  display: none; }
.showMoreBlock .showMoreControl {
  margin-top: 30px; }
  @media (max-width: 767px) {
    .showMoreBlock .showMoreControl {
      margin-top: 20px; } }
  .showMoreBlock .showMoreControl.hidden {
    display: none; }

.showMoreControl {
  display: inline-block;
  font-size: 14px;
  line-height: 140%;
  color: #ED1D24;
  cursor: pointer; }

[class*="icon-format"] {
  position: relative; }
  [class*="icon-format"] .path2 {
    position: absolute;
    left: 0px;
    top: 0px; }
    [class*="icon-format"] .path2::before {
      margin: 0px; }

.fancybox-container .fancybox-bg {
  background-color: rgba(39, 39, 39, 0.9); }
.fancybox-container .fancybox-button {
  top: 20px;
  right: 40px;
  background: transparent; }
  .fancybox-container .fancybox-button [class*="icon"] {
    font-size: 22px;
    color: white;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .fancybox-container .fancybox-button:hover [class*="icon"] {
    color: #ED1D24; }

.baseLink {
  display: inline-block;
  font-size: 14px;
  line-height: 130%;
  color: #ED1D24;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .baseLink:hover {
    color: #1F1F1F; }

.externalLink {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  font-weight: 400;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .externalLink [class*="icon"] {
    display: inline-block;
    margin-left: 2px;
    font-size: 12px;
    line-height: 1;
    color: #D9D9D9;
    vertical-align: middle; }
  .externalLink:hover {
    color: #ED1D24; }

.swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.defaultLink {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  text-decoration: underline;
  text-decoration-color: #B8B8B8;
  -webkit-transition: text-decoration-color 0.3s;
  -moz-transition: text-decoration-color 0.3s;
  -o-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s; }
  .defaultLink:hover {
    text-decoration-color: transparent; }

.cookiesBlock {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 20px;
  max-width: 1015px;
  width: calc(100% - 30px);
  padding: 30px 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  background-color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2); }
  @media (max-width: 1253px) {
    .cookiesBlock {
      padding: 30px;
      width: calc(100% - 60px); } }
  @media (max-width: 767px) {
    .cookiesBlock {
      padding: 20px;
      width: calc(100% - 50px);
      display: block; } }
  .cookiesBlock .info {
    max-width: 695px;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F; }
    @media (max-width: 767px) {
      .cookiesBlock .info {
        max-width: 100%;
        font-size: 12px; } }
    .cookiesBlock .info a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: #1F1F1F;
      text-underline-offset: unset;
      -webkit-transition: text-decoration-color 0.3s;
      -moz-transition: text-decoration-color 0.3s;
      -o-transition: text-decoration-color 0.3s;
      transition: text-decoration-color 0.3s; }
      .cookiesBlock .info a:hover {
        text-decoration-color: transparent; }
  .cookiesBlock .button {
    margin-left: 73px; }
    @media (max-width: 1253px) {
      .cookiesBlock .button {
        margin-left: 30px; } }
    @media (max-width: 767px) {
      .cookiesBlock .button {
        display: table;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px; } }
    .cookiesBlock .button [class*="btn"] {
      padding: 10px 12px !important; }

[class*="btnBorder"] {
  display: inline-block;
  height: 40px;
  padding-left: 13px;
  padding-right: 13px;
  font-size: 14px;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s; }
  [class*="btnBorder"][class*="Type1"] {
    color: white;
    border: 1px solid white; }
    [class*="btnBorder"][class*="Type1"]:hover {
      color: #1F1F1F;
      background-color: white; }
  [class*="btnBorder"][class*="Type2"] {
    min-width: 192px;
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 50px;
    height: auto;
    font-size: 16px;
    line-height: 22px;
    color: #1F1F1F;
    border: 2px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: color 0.3s, border-color 0.3s;
    -moz-transition: color 0.3s, border-color 0.3s;
    -o-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s; }
    [class*="btnBorder"][class*="Type2"].lg {
      min-height: 56px;
      line-height: 28px; }
      @media (max-width: 1253px) {
        [class*="btnBorder"][class*="Type2"].lg {
          min-height: 50px;
          line-height: 28px; } }
    [class*="btnBorder"][class*="Type2"].sd {
      min-height: 44px;
      padding-top: 10px;
      padding-bottom: 10px;
      border-width: 1px;
      font-weight: 600;
      min-width: 143px; }
    [class*="btnBorder"][class*="Type2"].sm {
      min-width: auto;
      padding: 1px 11px 2px;
      min-height: 23px;
      font-size: 13px;
      line-height: 140%;
      color: #1F1F1F;
      font-weight: 600;
      border-width: 1px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      border-radius: 6px; }
    [class*="btnBorder"][class*="Type2"]:hover {
      color: #ED1D24;
      border-color: #ED1D24; }
  [class*="btnBorder"][class*="Type3"] {
    padding-left: 27px !important;
    padding-top: 5px;
    padding-right: 27px !important;
    padding-bottom: 5px;
    height: 36px;
    font-size: 16px;
    line-height: 22px;
    color: #1F1F1F;
    border: 2px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: color 0.3s, border-color 0.3s;
    -moz-transition: color 0.3s, border-color 0.3s;
    -o-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s; }
    [class*="btnBorder"][class*="Type3"]:hover {
      color: #ED1D24;
      border-color: #ED1D24; }
  [class*="btnBorder"]:disabled, [class*="btnBorder"].disabled {
    pointer-events: none;
    opacity: 0.5; }
  [class*="btnBorder"].fill {
    width: 100%; }

.btnIcon {
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: #1F1F1F;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .btnIcon .in {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center; }
  .btnIcon [class*="icon"] {
    margin-right: 10px;
    font-size: 24px; }
  .btnIcon .text {
    padding-top: 6px;
    line-height: 20px; }
  .btnIcon:hover {
    color: #ED1D24; }
  .btnIcon.type2 {
    color: #ED1D24; }
    .btnIcon.type2 [class*="icon"] {
      font-size: 29px; }
    .btnIcon.type2:hover {
      color: #1F1F1F; }
  .btnIcon:disabled, .btnIcon.disabled {
    pointer-events: none;
    opacity: 0.5; }

.btnFill {
  display: inline-block;
  padding: 11px 40px;
  font-size: 16px;
  line-height: 22px;
  color: white;
  font-weight: 600;
  text-align: center;
  background-color: #ED1D24;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  @media (max-width: 1253px) {
    .btnFill {
      padding-left: 26px;
      padding-right: 26px; } }
  .btnFill:hover {
    background-color: #CA080E; }
  .btnFill:disabled, .btnFill.disabled {
    pointer-events: none;
    opacity: 0.5; }
  .btnFill.lg {
    padding: 14px 50px; }
  .btnFill.sm {
    padding: 7px 30px; }
  .btnFill.biggest {
    padding: 17px 50px; }
  .btnFill.center {
    display: table;
    margin-left: auto;
    margin-right: auto; }

.selectButton {
  display: table;
  padding: 0px 11px;
  height: 23px;
  font-size: 13px;
  line-height: 21px;
  color: #1F1F1F;
  font-weight: 600;
  border: 1px solid #1F1F1F;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: color 0.3s, border 0.3s;
  -moz-transition: color 0.3s, border 0.3s;
  -o-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s; }
  .selectButton:hover {
    color: #ED1D24;
    border: 1px solid #ED1D24; }
  .selectButton:disabled, .selectButton.disabled {
    pointer-events: none;
    opacity: 0.5; }

.btnAdd {
  display: inline-block;
  padding: 7px 15px;
  font-size: 14px;
  line-height: 20px;
  color: #1F1F1F;
  font-weight: 600;
  border: 1px solid #B8B8B8;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  border-radius: 36px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .btnAdd .in {
    display: flex;
    align-items: center; }
  .btnAdd [class*="icon"] {
    display: block;
    margin-right: 10px;
    font-size: 20px;
    line-height: 1; }
  .btnAdd:hover {
    color: #ED1D24;
    border-color: #ED1D24; }

.searchField {
  position: relative; }
  .searchField input {
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 24px;
    font-size: 26px;
    line-height: 130%;
    color: #272727;
    font-weight: 600;
    border-bottom: 1px solid #1F1F1F;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px; }
    @media (max-width: 767px) {
      .searchField input {
        font-size: 18px; } }
    @media (max-width: 374px) {
      .searchField input {
        font-size: 16px; } }
    .searchField input::placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .searchField input:-ms-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .searchField input::-ms-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .searchField input::-webkit-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .searchField input:-moz-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .searchField input::-moz-placeholder {
      color: #B8B8B8;
      opacity: 1; }
  .searchField .clearInput {
    display: none;
    position: absolute;
    top: 13px;
    right: 0px; }

.simpleInput {
  position: relative; }
  .simpleInput input,
  .simpleInput textarea {
    -webkit-transition: border 0.3s;
    -moz-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s; }
    .simpleInput input:focus, .simpleInput input:hover,
    .simpleInput textarea:focus,
    .simpleInput textarea:hover {
      border: 1px solid #1F1F1F; }
    .simpleInput input.error,
    .simpleInput textarea.error {
      border: 1px solid #ED1D24; }
      .simpleInput input.error + .errorMessage,
      .simpleInput textarea.error + .errorMessage {
        display: block; }
    .simpleInput input::placeholder,
    .simpleInput textarea::placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
    .simpleInput input:-ms-input-placeholder,
    .simpleInput textarea:-ms-input-placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
    .simpleInput input::-ms-input-placeholder,
    .simpleInput textarea::-ms-input-placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
    .simpleInput input::-webkit-input-placeholder,
    .simpleInput textarea::-webkit-input-placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
    .simpleInput input:-moz-placeholder,
    .simpleInput textarea:-moz-placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
    .simpleInput input::-moz-placeholder,
    .simpleInput textarea::-moz-placeholder {
      font-size: 18px;
      color: #B8B8B8;
      opacity: 1; }
  .simpleInput input {
    height: 56px;
    padding: 15px 34px 14px 19px;
    font-size: 16px;
    line-height: 22px;
    color: #272727;
    font-weight: 600;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px; }
    @media (max-width: 767px) {
      .simpleInput input {
        height: 50px;
        padding-top: 13px;
        padding-bottom: 13px; } }
  .simpleInput.center input {
    padding: 15px 19px 14px 19px;
    text-align: center; }
  .simpleInput.sm input {
    height: 44px;
    padding-top: 9px;
    padding-bottom: 10px; }
  .simpleInput .icon {
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 15px;
    display: block;
    font-size: 12px;
    color: #898989; }
  .simpleInput .searchButton {
    top: 0px;
    right: 0px;
    margin: 0px; }
    @media (min-width: 768px) {
      .simpleInput .searchButton {
        pointer-events: none; } }
    @media (max-width: 767px) {
      .simpleInput .searchButton {
        color: #1F1F1F; } }
  .simpleInput textarea {
    height: 100px;
    padding: 15px 19px 14px;
    font-size: 16px;
    line-height: 22px;
    color: #272727;
    font-weight: 600;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: #B8B8B8 white; }
    .simpleInput textarea::-webkit-scrollbar {
      width: 6px; }
    .simpleInput textarea::-webkit-scrollbar-track {
      background: white; }
    .simpleInput textarea::-webkit-scrollbar-thumb {
      background-color: #B8B8B8;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      border-radius: 6px; }
  .simpleInput .clearInput {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 15px; }
  .simpleInput .correctInput {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 15px; }
    .simpleInput .correctInput.active {
      display: block; }
  .simpleInput .errorMessage {
    display: none;
    margin-top: 5px; }

.searchButton {
  width: 44px;
  height: 44px;
  top: 0px;
  right: 0px;
  line-height: 44px;
  text-align: center; }

.defaultInput {
  position: relative;
  padding-top: 10px;
  display: flex;
  align-items: flex-start; }
  .defaultInput .inWrap {
    position: relative;
    width: 385px;
    flex-shrink: 0;
    flex-grow: 1; }
    @media (max-width: 1253px) {
      .defaultInput .inWrap {
        width: 316px; } }
    .defaultInput .inWrap + .fieldMessage {
      margin-left: 20px; }
  .defaultInput label {
    display: inline-block;
    position: absolute;
    left: 12px;
    top: 0px;
    padding: 0px 8px;
    font-size: 14px;
    line-height: 19px;
    color: #666666;
    font-weight: 600;
    background-color: white;
    z-index: 1; }
  .defaultInput input,
  .defaultInput textarea {
    display: block;
    -webkit-transition: border 0.3s;
    -moz-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s; }
    .defaultInput input::placeholder,
    .defaultInput textarea::placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input:-ms-input-placeholder,
    .defaultInput textarea:-ms-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input::-ms-input-placeholder,
    .defaultInput textarea::-ms-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input::-webkit-input-placeholder,
    .defaultInput textarea::-webkit-input-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input:-moz-placeholder,
    .defaultInput textarea:-moz-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input::-moz-placeholder,
    .defaultInput textarea::-moz-placeholder {
      color: #B8B8B8;
      opacity: 1; }
    .defaultInput input:focus, .defaultInput input:hover,
    .defaultInput textarea:focus,
    .defaultInput textarea:hover {
      border: 1px solid #1F1F1F; }
    .defaultInput input.error,
    .defaultInput textarea.error {
      border: 1px solid #ED1D24; }
      .defaultInput input.error + .errorMessage,
      .defaultInput textarea.error + .errorMessage {
        display: block; }
  .defaultInput input {
    height: 56px;
    padding: 15px 38px 14px 19px;
    font-size: 18px;
    line-height: 25px;
    color: #1F1F1F;
    font-weight: normal;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px; }
  .defaultInput textarea {
    height: 200px;
    padding: 15px 19px 14px 19px;
    font-size: 18px;
    line-height: 25px;
    color: #1F1F1F;
    font-weight: normal;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: #B8B8B8 white; }
    .defaultInput textarea::-webkit-scrollbar {
      width: 6px; }
    .defaultInput textarea::-webkit-scrollbar-track {
      background: white; }
    .defaultInput textarea::-webkit-scrollbar-thumb {
      background-color: #B8B8B8;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      border-radius: 6px; }
  .defaultInput .errorMessage {
    display: none;
    margin-top: 5px; }
  .defaultInput .clearInput {
    display: none;
    position: absolute;
    top: 22px;
    right: 14px; }
  .defaultInput .loaderInput {
    display: none;
    position: absolute;
    font-size: 30px;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    right: 7px;
    color: #ED1D24;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
  .defaultInput .doneInput {
    display: none;
    position: absolute;
    font-size: 12px;
    top: 50%;
    margin-top: -6px;
    right: 12px;
    color: #60CA3B; }
  .defaultInput.load .loaderInput {
    display: block; }
  .defaultInput.load .clearInput {
    display: none !important; }
  .defaultInput.done .doneInput {
    display: block; }
  .defaultInput.done .clearInput {
    display: none !important; }
  .defaultInput .fieldMessage {
    display: flex;
    height: 56px;
    align-items: center;
    max-width: 400px;
    flex-grow: 1; }
  .defaultInput .fieldData {
    margin-left: 30px;
    margin-top: 5px;
    flex-grow: 1; }
  @media (max-width: 767px) {
    .defaultInput {
      display: block; }
      .defaultInput .inWrap {
        width: 100%; }
        .defaultInput .inWrap + .fieldData {
          margin-left: 0px;
          margin-top: 25px; }
        .defaultInput .inWrap + .fieldMessage {
          margin-left: 0px;
          margin-top: 5px; }
      .defaultInput .fieldMessage {
        height: auto; } }
  .defaultInput .selectric-wrapper {
    width: 100%;
    cursor: default; }
  .defaultInput .selectric-hover .selectric,
  .defaultInput .selectric-focus .selectric {
    border: 1px solid #1F1F1F; }
  .defaultInput .selectric-open + label {
    z-index: 10000; }
  .defaultInput .selectric-open .selectric .field {
    width: 100%; }
    .defaultInput .selectric-open .selectric .field .closeBtn {
      display: none; }
  .defaultInput .selectric-open .selectric .button {
    -moz-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1); }
  .defaultInput .selectric-below .selectric-items {
    top: 100%; }
  .defaultInput .selectric-above .selectric-items {
    bottom: 100%; }
  .defaultInput .selectric {
    height: 56px;
    font-size: 18px;
    line-height: 25px;
    color: #1F1F1F;
    font-weight: normal;
    background-color: transparent;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: border 0.3s;
    -moz-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
    cursor: pointer; }
    .defaultInput .selectric .label {
      margin: 0px;
      height: 54px;
      padding: 15px 38px 14px 19px;
      font-size: 18px;
      line-height: 25px;
      color: #1F1F1F;
      font-weight: normal; }
      .defaultInput .selectric .label .placeholder {
        color: #B8B8B8;
        opacity: 1; }
    .defaultInput .selectric .button {
      display: block;
      width: auto;
      height: auto;
      top: 19px;
      right: 19px;
      font-size: 17px;
      line-height: 1;
      color: #1F1F1F;
      background: transparent;
      -webkit-transition: transform 0.3s;
      -moz-transition: transform 0.3s;
      -o-transition: transform 0.3s;
      transition: transform 0.3s;
      -moz-transform-origin: center center;
      -ms-transform-origin: center center;
      -webkit-transform-origin: center center;
      -o-transform-origin: center center;
      transform-origin: center center; }
      .defaultInput .selectric .button::after {
        display: none; }
  .defaultInput .selectric-items {
    padding: 19px;
    background-color: white;
    border: 0px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .defaultInput .selectric-items .placeholder {
      display: none; }
    .defaultInput .selectric-items li {
      padding: 0px;
      font-size: 18px;
      line-height: 25px;
      color: #1F1F1F;
      font-weight: normal;
      background: transparent;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .defaultInput .selectric-items li:hover {
        color: #ED1D24; }
      .defaultInput .selectric-items li:not(:last-child) {
        margin-bottom: 15px; }
      .defaultInput .selectric-items li.selected, .defaultInput .selectric-items li.highlighted {
        background: transparent;
        color: #ED1D24; }

.numberField .inWrap {
  width: 175px;
  flex-grow: 0; }
@media (max-width: 1253px) {
  .numberField .defaultInput {
    flex-wrap: wrap; }
  .numberField .fieldData {
    width: 100%;
    margin-left: 0px;
    margin-top: 25px !important; } }
@media (max-width: 767px) {
  .numberField .inWrap {
    width: 100%; } }

.errorMessage {
  display: block;
  font-size: 14px;
  line-height: 140%;
  color: #ED1D24; }

.fieldMessage {
  font-size: 14px;
  line-height: 140%;
  color: #666666; }
  .fieldMessage a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #EDEDED;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s; }
    .fieldMessage a:hover {
      text-decoration-color: transparent; }

.fieldData {
  display: flex; }
  .fieldData li + li {
    margin-left: 30px; }
    @media (max-width: 1253px) {
      .fieldData li + li {
        margin-left: 26px; } }
  .fieldData .param {
    display: block;
    font-size: 14px;
    line-height: 140%;
    color: #666666; }
  .fieldData .data {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    line-height: 140%;
    color: #1F1F1F; }
  @media (max-width: 767px) {
    .fieldData {
      display: block; }
      .fieldData li + li {
        margin-left: 0px;
        margin-top: 15px; } }

.clearInput {
  display: inline-block;
  font-size: 13px;
  color: #898989;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer; }
  .clearInput:hover {
    color: #ED1D24; }

.correctInput {
  display: inline-block;
  font-size: 12px;
  color: #60CA3B; }

.termButtons {
  display: flex; }
  .termButtons li + li {
    margin-left: 15px; }

.termBtn {
  position: relative; }
  .termBtn input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0; }
    .termBtn input:checked + .btn {
      color: white;
      background-color: #1F1F1F; }
  .termBtn .btn {
    display: block;
    width: 35px;
    padding-top: 2px;
    padding-bottom: 3px;
    font-size: 20px;
    line-height: 140%;
    color: #1F1F1F;
    text-align: center;
    background-color: transparent;
    border: 1px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
    cursor: pointer; }
    .termBtn .btn:hover {
      color: white;
      background-color: #1F1F1F; }
  .termBtn .discount {
    display: block;
    padding: 0px 4px;
    position: absolute;
    top: -10px;
    right: -29px;
    font-size: 12px;
    line-height: 17px;
    color: #1F1F1F;
    font-weight: 600;
    background-color: #FFC166;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px; }

.counterBlock {
  display: flex;
  align-items: center; }
  .counterBlock input {
    display: block;
    flex-shrink: 0;
    width: 70px;
    padding-left: 10px;
    padding-top: 9px;
    padding-right: 10px;
    padding-bottom: 10px;
    font-size: 22px;
    line-height: 140%;
    color: #1F1F1F;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield; }
    .counterBlock input::-webkit-outer-spin-button, .counterBlock input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      margin: 0; }
    @media (max-width: 767px) {
      .counterBlock input {
        width: 50px;
        padding-left: 0px;
        padding-right: 0px; } }
  .counterBlock .counterControl {
    display: block;
    margin-top: 2px;
    font-size: 24px;
    color: #1F1F1F;
    -webkit-transition: color 0.3s, opacity 0.3s;
    -moz-transition: color 0.3s, opacity 0.3s;
    -o-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s;
    opacity: 1; }
    .counterBlock .counterControl.disabled {
      opacity: 0.2;
      pointer-events: none; }
    .counterBlock .counterControl:hover {
      color: #ED1D24; }

.typeButtons .wrap {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; }
.typeButtons .typeButton {
  margin: 10px;
  flex-shrink: 0; }

.typeButton {
  position: relative; }
  .typeButton label {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer; }
  .typeButton input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0; }
    .typeButton input:checked + .in {
      background-color: #272727;
      border: 1px solid #272727; }
      .typeButton input:checked + .in .title {
        color: white; }
      .typeButton input:checked + .in .pay {
        color: #B8B8B8; }
        .typeButton input:checked + .in .pay [class*="btn"] {
          color: #898989; }
  .typeButton .in {
    padding: 19px 29px 20px;
    text-align: center;
    background-color: transparent;
    border: 1px dashed #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background-color 0.3s, border 0.3s;
    -moz-transition: background-color 0.3s, border 0.3s;
    -o-transition: background-color 0.3s, border 0.3s;
    transition: background-color 0.3s, border 0.3s; }
  .typeButton .title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #1F1F1F;
    font-weight: 600;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .typeButton .pay {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 140%;
    color: #666666;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .typeButton .pay [class*="icon"] {
      margin-right: 7px;
      font-size: 16px;
      color: #B8B8B8; }
  .typeButton:hover .in {
    background-color: #272727;
    border: 1px solid #272727; }
  .typeButton:hover .title {
    color: white; }
  .typeButton:hover .pay {
    color: #B8B8B8; }
    .typeButton:hover .pay [class*="btn"] {
      color: #898989; }

.radioList {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .radioList li + li {
    margin-top: 15px; }

.radioButton {
  position: relative;
  display: flex;
  min-height: 25px;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  cursor: pointer; }
  .radioButton input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0; }
    .radioButton input:checked + .btn {
      background-color: #ED1D24;
      border: 1px solid #ED1D24; }
      .radioButton input:checked + .btn::after {
        opacity: 1; }
  .radioButton .btn {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    align-self: flex-start;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid #1F1F1F;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s, border 0.3s;
    -moz-transition: background-color 0.3s, border 0.3s;
    -o-transition: background-color 0.3s, border 0.3s;
    transition: background-color 0.3s, border 0.3s;
    cursor: pointer; }
    .radioButton .btn::after {
      content: '\e910';
      position: absolute;
      display: block;
      left: 0px;
      top: 0px;
      width: 25px;
      height: 25px;
      font-family: "icomoon";
      font-size: 25px;
      line-height: 24px;
      color: white;
      text-align: center;
      opacity: 0;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
    .radioButton .btn + .label {
      margin-left: 15px; }
  .radioButton .label {
    padding-top: 1px; }
  .radioButton:hover .btn {
    border: 1px solid #ED1D24; }

.checkList {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .checkList li + li {
    margin-top: 15px; }

.checkButton {
  position: relative;
  display: flex;
  min-height: 25px;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  cursor: pointer; }
  .checkButton input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0; }
    .checkButton input:checked + .btn {
      background-color: #ED1D24;
      border: 1px solid #ED1D24; }
      .checkButton input:checked + .btn::after {
        opacity: 1; }
  .checkButton .btn {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background-color 0.3s, border 0.3s;
    -moz-transition: background-color 0.3s, border 0.3s;
    -o-transition: background-color 0.3s, border 0.3s;
    transition: background-color 0.3s, border 0.3s; }
    .checkButton .btn::after {
      content: '\e910';
      position: absolute;
      display: block;
      left: 0px;
      top: 0px;
      width: 25px;
      height: 25px;
      font-family: "icomoon";
      font-size: 25px;
      line-height: 24px;
      color: white;
      text-align: center;
      opacity: 0;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
    .checkButton .btn + .label {
      margin-left: 15px; }
  .checkButton .label {
    padding-top: 1px; }
  @media (min-width: 1024px) {
    .checkButton:hover .btn {
      border: 1px solid #ED1D24; } }

.selectWrapper {
  display: flex; }

.selectric-buttonsSelect {
  display: flex;
  width: auto;
  cursor: default; }
  .selectric-buttonsSelect .selectric {
    display: flex;
    border: none;
    background: transparent;
    cursor: pointer; }
    .selectric-buttonsSelect .selectric:hover .label {
      color: #ED1D24; }
    .selectric-buttonsSelect .selectric:hover .button {
      color: #ED1D24;
      border: 1px solid #ED1D24;
      opacity: 1; }
  .selectric-buttonsSelect .label {
    margin: 0px;
    padding: 0px;
    height: 23px;
    font-size: 14px;
    line-height: 23px;
    color: #666666;
    font-weight: 600;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .selectric-buttonsSelect.selectric-hover .button {
    color: #1F1F1F; }
    .selectric-buttonsSelect.selectric-hover .button:hover {
      color: #ED1D24; }
  .selectric-buttonsSelect.selectric-open .button {
    color: #ED1D24;
    border: 1px solid #ED1D24; }
    .selectric-buttonsSelect.selectric-open .button [class*="icon"] {
      -moz-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
      -webkit-transform: scale(-1, -1);
      -o-transform: scale(-1, -1);
      transform: scale(-1, -1); }
  .selectric-buttonsSelect.selectric-open .label {
    color: #ED1D24; }
  .selectric-buttonsSelect .button {
    position: relative;
    margin-left: 10px;
    width: 24px;
    height: 23px;
    font-size: 10px;
    line-height: 21px;
    color: #1F1F1F;
    text-align: center;
    background: transparent;
    opacity: 1;
    border: 1px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: color 0.3s, background-color 0.3s, border 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s, border 0.3s;
    -o-transition: color 0.3s, background-color 0.3s, border 0.3s;
    transition: color 0.3s, background-color 0.3s, border 0.3s;
    cursor: pointer; }
    .selectric-buttonsSelect .button [class*="icon"] {
      display: block;
      line-height: 21px;
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
      -webkit-transition: transform 0.3s;
      -moz-transition: transform 0.3s;
      -o-transition: transform 0.3s;
      transition: transform 0.3s;
      -moz-transform-origin: center;
      -ms-transform-origin: center;
      -webkit-transform-origin: center;
      -o-transform-origin: center;
      transform-origin: center; }
    .selectric-buttonsSelect .button:hover {
      color: #ED1D24;
      border: 1px solid #ED1D24;
      opacity: 1; }
    .selectric-buttonsSelect .button::after {
      display: none; }
  .selectric-buttonsSelect .selectButton {
    position: relative;
    z-index: 12; }
  .selectric-buttonsSelect.selectric-below .selectric-items {
    top: calc(100% + 5px); }
  .selectric-buttonsSelect.selectric-above .selectric-items {
    bottom: calc(100% + 5px); }
  .selectric-buttonsSelect .selectric-items {
    left: auto;
    right: 0px;
    width: auto !important;
    padding: 25px 19px;
    background-color: white;
    border: 1px solid #EDEDED;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15); }
    .selectric-buttonsSelect .selectric-items li {
      padding: 0px;
      font-size: 16px;
      line-height: 140%;
      color: #1F1F1F;
      white-space: nowrap;
      background: transparent;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .selectric-buttonsSelect .selectric-items li:not(:last-child) {
        margin-bottom: 15px; }
      .selectric-buttonsSelect .selectric-items li:hover {
        color: #ED1D24; }
      .selectric-buttonsSelect .selectric-items li.selected, .selectric-buttonsSelect .selectric-items li.highlighted {
        color: #ED1D24; }
    .selectric-buttonsSelect .selectric-items .placeholder {
      display: none; }

form .submitMessage {
  display: none;
  padding-left: 20px;
  font-size: 14px;
  line-height: 140%;
  color: #ED1D24;
  max-width: 345px; }
form .submitWrapper {
  display: flex;
  align-items: center;
  margin-right: -20px;
  flex-wrap: wrap;
  margin-top: 30px; }
  form .submitWrapper [class*="btn"] {
    display: block;
    min-width: 167px; }
    form .submitWrapper [class*="btn"] + [class*="btn"] {
      margin-left: 20px; }
    @media (max-width: 479px) {
      form .submitWrapper [class*="btn"] + [class*="btn"] {
        margin-left: 0px;
        margin-top: 20px; } }
  form .submitWrapper.center {
    padding-right: 20px; }
    form .submitWrapper.center [class*="btn"] {
      margin-right: auto;
      margin-left: auto; }
form.checkedError .submitWrapper .submitMessage {
  display: block;
  margin-top: 20px; }

.fieldsLineResult {
  display: flex;
  align-items: flex-end; }
  .fieldsLineResult .field {
    padding-right: 35px;
    min-width: 245px; }
  .fieldsLineResult .submitWrapper {
    margin-top: 0;
    min-width: 188px; }
    .fieldsLineResult .submitWrapper [class*="btn"] {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
      margin-right: 0; }

.priceSelectWrapper {
  min-width: 200px; }
  .priceSelectWrapper .selectric {
    height: 39px;
    padding-left: 15px;
    padding-right: 47px;
    background-color: white;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px; }
  .priceSelectWrapper .label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    height: 37px;
    font-size: 14px;
    line-height: 37px;
    color: #1F1F1F;
    font-weight: 600; }
  .priceSelectWrapper .disc {
    display: block;
    margin-left: 10px;
    padding: 2px 7px;
    font-size: 14px;
    line-height: 130%;
    color: #1F1F1F;
    font-weight: 600;
    background-color: #FFC166;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px; }
  .priceSelectWrapper .button {
    display: block;
    right: 14px;
    width: auto;
    background: transparent;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s; }
    .priceSelectWrapper .button::after {
      display: none; }
    .priceSelectWrapper .button [class*="icon"] {
      display: block;
      font-size: 17px;
      line-height: 39px;
      color: #1F1F1F; }
  .priceSelectWrapper .selectric-items {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 0px;
    background-color: white;
    border: 1px solid #B8B8B8;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    z-index: 1; }
    .priceSelectWrapper .selectric-items li {
      padding: 0px 15px;
      display: flex;
      align-items: center;
      font-size: 14px;
      line-height: 37px;
      color: #1F1F1F;
      font-weight: 600;
      background-color: transparent;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .priceSelectWrapper .selectric-items li.selected, .priceSelectWrapper .selectric-items li:hover {
        color: #ED1D24; }
      .priceSelectWrapper .selectric-items li.placeholder {
        display: none; }
  .priceSelectWrapper .selectric-open .button {
    -moz-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1); }

.b24-form .b24-form-header-padding {
  padding: 0px; }
.b24-form .b24-form-content {
  padding: 0px; }

.b24-form-content form > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 25px; }
  @media (max-width: 767px) {
    .b24-form-content form > div:first-child {
      display: flex;
      flex-direction: column;
      gap: 0px; } }
.b24-form-content .b24-form-field:not(.b24-form-field-checkbox) {
  margin-bottom: 0px; }
  @media (max-width: 767px) {
    .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) + .b24-form-field {
      margin-top: 25px; } }
  .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container {
    margin-bottom: 0px;
    padding-top: 10px; }
    .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control {
      position: relative;
      display: block;
      height: 56px;
      padding: 15px 38px 14px 19px;
      font-family: "Open Sans";
      font-size: 18px;
      line-height: 25px;
      color: #1F1F1F;
      font-weight: normal;
      letter-spacing: 0em;
      background-color: transparent !important;
      border-left: 1px solid #B8B8B8 !important;
      border-top: 1px solid #B8B8B8 !important;
      border-right: 1px solid #B8B8B8 !important;
      border-bottom: 1px solid #B8B8B8 !important;
      -webkit-border-radius: 6px !important;
      -moz-border-radius: 6px !important;
      -ms-border-radius: 6px !important;
      border-radius: 6px !important;
      -webkit-transition: border 0.3s;
      -moz-transition: border 0.3s;
      -o-transition: border 0.3s;
      transition: border 0.3s; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control::placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:-ms-input-placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control::-ms-input-placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control::-webkit-input-placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:-moz-placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control::-moz-placeholder {
        color: #B8B8B8;
        opacity: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:focus, .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:hover {
        border-left: 1px solid #1F1F1F !important;
        border-top: 1px solid #1F1F1F !important;
        border-right: 1px solid #1F1F1F !important;
        border-bottom: 1px solid #1F1F1F !important; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #00000000 inset;
        transition: background-color 5000s ease-in-out 0s; }
        .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control:-webkit-autofill:focus {
          background-color: transparent !important; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control.b24-form-control-not-empty {
        background-color: transparent !important; }
    .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control-label {
      display: inline-block;
      position: absolute;
      width: auto;
      left: 12px !important;
      top: 0px !important;
      right: auto;
      padding: 0px 8px;
      font-family: "Open Sans";
      font-size: 14px;
      line-height: 19px;
      color: #666666;
      font-weight: 600;
      letter-spacing: 0em;
      background-color: white;
      opacity: 1;
      -moz-transform: translateY(0px) !important;
      -ms-transform: translateY(0px) !important;
      -webkit-transform: translateY(0px) !important;
      -o-transform: translateY(0px) !important;
      transform: translateY(0px) !important;
      z-index: 1; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control-label .b24-form-control-required {
        color: #ED1D24; }
    .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control-alert-message {
      left: 0px;
      top: calc(100% + 5px);
      max-width: 100%;
      padding: 0px;
      font-size: 14px;
      line-height: 140%;
      color: #ED1D24;
      background-color: transparent; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control-alert-message::before, .b24-form-content .b24-form-field:not(.b24-form-field-checkbox) .b24-form-control-container .b24-form-control-alert-message::after {
        display: none; }
  .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-control-alert .b24-form-control-container .b24-form-control {
    border-left: 1px solid #ED1D24 !important;
    border-top: 1px solid #ED1D24 !important;
    border-right: 1px solid #ED1D24 !important;
    border-bottom: 1px solid #ED1D24 !important; }
  .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text {
    grid-column: 1 / 3; }
    .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text .b24-form-control-container .b24-form-control {
      height: 81px;
      padding: 15px 19px 14px 19px;
      resize: none;
      scrollbar-width: thin;
      scrollbar-color: #B8B8B8 white; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text .b24-form-control-container .b24-form-control::-webkit-scrollbar {
        width: 6px; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text .b24-form-control-container .b24-form-control::-webkit-scrollbar-track {
        background: white; }
      .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text .b24-form-control-container .b24-form-control::-webkit-scrollbar-thumb {
        background-color: #B8B8B8;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px; }
.b24-form-content .b24-form-field-checkbox {
  padding: 5px 0px;
  grid-column: 1 / 3; }
  .b24-form-content .b24-form-field-checkbox .b24-form-control-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .b24-form-content .b24-form-field-checkbox .b24-form-control-container .b24-form-control-alert-message {
      left: 0px;
      top: calc(100% + 5px);
      max-width: 100%;
      padding: 0px;
      font-size: 14px;
      line-height: 140%;
      color: #ED1D24;
      background-color: transparent; }
      .b24-form-content .b24-form-field-checkbox .b24-form-control-container .b24-form-control-alert-message::before, .b24-form-content .b24-form-field-checkbox .b24-form-control-container .b24-form-control-alert-message::after {
        display: none; }
  .b24-form-content .b24-form-field-checkbox .b24-form-control-label {
    display: block;
    font-size: 16px;
    line-height: 140%;
    color: #1F1F1F;
    font-weight: 600;
    opacity: 1; }
    .b24-form-content .b24-form-field-checkbox .b24-form-control-label + * {
      margin-top: 20px !important; }
  .b24-form-content .b24-form-field-checkbox .b24-form-control {
    position: relative;
    display: flex;
    padding: 0px;
    min-height: 25px;
    background-color: transparent;
    border: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    border-radius: none; }
    .b24-form-content .b24-form-field-checkbox .b24-form-control .b24-form-control-desc {
      padding-left: 40px;
      align-self: center; }
      .b24-form-content .b24-form-field-checkbox .b24-form-control .b24-form-control-desc::after {
        left: 0px;
        top: 1px; }
    .b24-form-content .b24-form-field-checkbox .b24-form-control.b24-form-control-checked {
      background-color: transparent; }
      .b24-form-content .b24-form-field-checkbox .b24-form-control.b24-form-control-checked .b24-form-control-desc::before {
        background-color: #ED1D24;
        border: 1px solid #ED1D24; }
      .b24-form-content .b24-form-field-checkbox .b24-form-control.b24-form-control-checked .b24-form-control-desc::after {
        opacity: 1; }
    .b24-form-content .b24-form-field-checkbox .b24-form-control + .b24-form-control {
      margin-top: 15px; }
  .b24-form-content .b24-form-field-checkbox input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0; }
  .b24-form-content .b24-form-field-checkbox.b24-form-control-alert {
    background-color: transparent; }
.b24-form-content .b24-form-field-agreement {
  position: relative;
  margin-top: 25px; }
  .b24-form-content .b24-form-field-agreement > div {
    position: relative;
    display: flex;
    min-height: 25px; }
  .b24-form-content .b24-form-field-agreement .b24-form-control-container {
    padding-top: 0px !important;
    padding-left: 40px; }
    .b24-form-content .b24-form-field-agreement .b24-form-control-container .b24-form-control-desc {
      opacity: 1; }
    .b24-form-content .b24-form-field-agreement .b24-form-control-container .b24-form-field-agreement-link {
      font-size: 14px;
      line-height: 140%;
      color: #1F1F1F; }
  .b24-form-content .b24-form-field-agreement .b24-form-control-required {
    color: #ED1D24; }
  .b24-form-content .b24-form-field-agreement input {
    position: absolute;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .b24-form-content .b24-form-field-agreement input:checked + .b24-form-control-desc::before {
      border-color: #ED1D24;
      background-color: #ED1D24; }
    .b24-form-content .b24-form-field-agreement input:checked + .b24-form-control-desc::after {
      opacity: 1; }
    .b24-form-content .b24-form-field-agreement input:checked ~ .b24-form-control-alert-message {
      display: none !important; }
  .b24-form-content .b24-form-field-agreement .b24-form-control-alert-message {
    display: block !important; }
  .b24-form-content .b24-form-field-agreement.b24-form-control-alert .b24-form-control-alert-message {
    display: block !important; }
.b24-form-content .b24-form-control-desc {
  cursor: pointer; }
  .b24-form-content .b24-form-control-desc::before {
    content: '';
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 1px solid #1F1F1F;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background-color 0.3s, border 0.3s;
    -moz-transition: background-color 0.3s, border 0.3s;
    -o-transition: background-color 0.3s, border 0.3s;
    transition: background-color 0.3s, border 0.3s; }
  .b24-form-content .b24-form-control-desc::after {
    content: '\e910';
    position: absolute;
    display: block;
    left: 1px;
    top: 1px;
    width: 25px;
    height: 25px;
    font-family: "icomoon";
    font-size: 25px;
    line-height: 24px;
    color: white;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
.b24-form-content .b24-form-btn-container {
  margin: 40px 0px 0px; }
  @media (max-width: 1253px) {
    .b24-form-content .b24-form-btn-container {
      justify-content: center; } }
.b24-form-content .b24-form-btn-block {
  padding: 0px;
  flex: unset; }
.b24-form-content .b24-form-btn {
  display: inline-block;
  padding: 11px 30px;
  min-height: auto;
  font-size: 16px;
  line-height: 22px;
  color: white;
  font-weight: 600;
  text-align: center;
  background-color: #ED1D24;
  border: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  @media (max-width: 1253px) {
    .b24-form-content .b24-form-btn {
      padding-left: 26px;
      padding-right: 26px; } }
  .b24-form-content .b24-form-btn:hover {
    background-color: #CA080E; }
  .b24-form-content .b24-form-btn:disabled, .b24-form-content .b24-form-btn.disabled {
    pointer-events: none;
    opacity: 0.5; }

.feedbackFormSection .b24-form-content .b24-form-field .b24-form-control-container .b24-form-control-label {
  background-color: #F8F8F8; }

.feedbackFormSection.simple .b24-form-content .b24-form-field .b24-form-control-container .b24-form-control-label {
  background-color: white; }

.showPassword .inWrap {
  position: relative; }
.showPassword input[type="password"] ~ .control.show {
  opacity: 1;
  visibility: visible; }
.showPassword input[type="password"] ~ .control.hide {
  opacity: 0;
  visibility: hidden; }
.showPassword input[type="text"] ~ .control.show {
  opacity: 0;
  visibility: hidden; }
.showPassword input[type="text"] ~ .control.hide {
  opacity: 1;
  visibility: visible; }
.showPassword .control {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 16px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer; }
.showPassword .done {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
.showPassword.success .control {
  opacity: 0 !important;
  visibility: hidden !important; }
.showPassword.success .done {
  opacity: 1;
  visibility: visible; }

.formResult {
  width: 100%;
  display: flex;
  align-items: center; }
  @media (max-width: 767px) {
    .formResult {
      display: block; } }
  .formResult .formButton {
    flex-shrink: 0; }
  .formResult .resultMessage {
    display: block;
    margin-left: 20px;
    max-width: 257px;
    width: 100%;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F; }
    @media (max-width: 767px) {
      .formResult .resultMessage {
        margin-left: 0px;
        margin-top: 8px; } }

.formButton {
  position: relative;
  display: inline-block;
  min-width: 168px;
  padding: 11px 40px;
  font-size: 16px;
  line-height: 22px;
  color: white;
  font-weight: 600;
  text-align: center;
  background-color: #ED1D24;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  @media (max-width: 1253px) {
    .formButton {
      padding-left: 26px;
      padding-right: 26px; } }
  .formButton:hover {
    background-color: #CA080E; }
  .formButton:disabled, .formButton.disabled {
    pointer-events: none;
    opacity: 0.5; }
  .formButton .load {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
  .formButton .checkmark {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .formButton .error {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .formButton.wait {
    color: transparent; }
    .formButton.wait .load {
      opacity: 1;
      visibility: visible; }
  .formButton.success {
    color: transparent;
    background-color: #60CA3B; }
    .formButton.success .load {
      opacity: 0;
      visibility: hidden; }
    .formButton.success .checkmark {
      opacity: 1;
      visibility: visible;
      stroke-width: 2;
      stroke: #fff;
      stroke-miterlimit: 10; }
    .formButton.success .checkmark_path {
      transform-origin: 50% 50%;
      stroke-dasharray: 48;
      stroke-dashoffset: 48;
      animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }
  .formButton.error {
    color: transparent;
    background-color: #CA080E; }
    .formButton.error .load,
    .formButton.error .checkmark {
      opacity: 0;
      visibility: hidden; }
    .formButton.error .error {
      opacity: 1;
      visibility: visible; }

@keyframes stroke {
  100% {
    stroke-dashoffset: 0; } }
.feedbackFormSection.plain .b24-form-content .b24-form-field .b24-form-control-container .b24-form-control-label {
  background-color: white; }
.feedbackFormSection .b24-form-control-checkbox,
.feedbackFormSection .b24-form-control-radio,
.feedbackFormSection .b24-form-control-product {
  padding: 0px;
  background-color: transparent;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px; }
  .feedbackFormSection .b24-form-control-checkbox .b24-form-control,
  .feedbackFormSection .b24-form-control-radio .b24-form-control,
  .feedbackFormSection .b24-form-control-product .b24-form-control {
    margin: 0px; }

.selectric-countSelect.selectric-open .selectric .button {
  -moz-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  -o-transform: scale(-1, -1);
  transform: scale(-1, -1); }
.selectric-countSelect .selectric {
  min-width: 121px;
  height: 42px;
  padding-left: 8px;
  padding-right: 28px;
  background-color: white;
  border: 1px solid #EDEDED;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }
  .selectric-countSelect .selectric .label {
    height: 40px;
    margin: 0px;
    font-size: 30px;
    line-height: 40px;
    color: #1F1F1F;
    text-align: left; }
  .selectric-countSelect .selectric .button {
    margin: 0px;
    width: 30px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s; }
    .selectric-countSelect .selectric .button::after {
      display: none; }
    .selectric-countSelect .selectric .button [class*="icon"] {
      font-size: 24px;
      color: #ED1D24; }
.selectric-countSelect .selectric-items {
  margin-top: 5px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: white;
  border: 1px solid #EDEDED;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  .selectric-countSelect .selectric-items li {
    padding: 7px 8px;
    font-size: 16px;
    line-height: 22px;
    color: #1F1F1F;
    background-color: transparent;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    text-align: left; }
    .selectric-countSelect .selectric-items li + li {
      border-top: 1px solid #EDEDED; }
    .selectric-countSelect .selectric-items li.selected {
      color: #ED1D24;
      background-color: transparent; }
    .selectric-countSelect .selectric-items li.highlighted {
      background-color: transparent; }
    .selectric-countSelect .selectric-items li:hover {
      color: #ED1D24; }

.header {
  position: relative;
  padding-top: 25px;
  min-height: 84px;
  background-color: white;
  z-index: 7; }
  .header .wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header .leftSide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; }
  .header .rightSide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    align-items: center; }
  .header .menuWrapper {
    margin-left: 35px;
    margin-right: auto; }
  .header .linksWrapper {
    margin-left: 72px; }

.siteOverlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(39, 39, 39, 0.9);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 300ms, opacity 300ms;
  -moz-transition: visibility 300ms, opacity 300ms;
  -o-transition: visibility 300ms, opacity 300ms;
  transition: visibility 300ms, opacity 300ms;
  z-index: 7; }
  .siteOverlay.visible {
    visibility: visible;
    opacity: 1; }

.siteMenu .back {
  position: absolute;
  visibility: hidden;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
  z-index: -1; }
.siteMenu.visible .back {
  visibility: visible; }

.siteMenuList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .siteMenuList .siteMenuItem {
    padding: 6px 15px 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    border-radius: 34px;
    cursor: pointer; }
    .siteMenuList .siteMenuItem .siteMenuLink {
      display: block;
      padding-bottom: 3px;
      font-size: 16px;
      line-height: 22px;
      color: #1F1F1F;
      font-weight: 600;
      border-bottom: 3px solid transparent;
      -webkit-transition: color 0.3s, border-bottom 0.3s;
      -moz-transition: color 0.3s, border-bottom 0.3s;
      -o-transition: color 0.3s, border-bottom 0.3s;
      transition: color 0.3s, border-bottom 0.3s; }
    .siteMenuList .siteMenuItem > [class*="icon"] {
      display: block;
      margin-left: 7px;
      margin-top: 7px;
      font-size: 10px;
      color: #1F1F1F;
      -webkit-transition: color 0.3s, transform 0.3s;
      -moz-transition: color 0.3s, transform 0.3s;
      -o-transition: color 0.3s, transform 0.3s;
      transition: color 0.3s, transform 0.3s; }
    .siteMenuList .siteMenuItem:hover .siteMenuLink {
      color: #ED1D24;
      border-bottom: 3px solid #ED1D24; }
    .siteMenuList .siteMenuItem:hover > [class*="icon"] {
      color: #ED1D24;
      -moz-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
      -webkit-transform: scale(-1, -1);
      -o-transform: scale(-1, -1);
      transform: scale(-1, -1); }
  .siteMenuList > li.active .siteMenuItem .siteMenuLink {
    border-bottom: 3px solid #ED1D24; }
  .siteMenuList > li.opened .siteMenuItem .siteMenuLink {
    color: #ED1D24;
    border-bottom: 3px solid #ED1D24; }
  .siteMenuList > li.opened .siteMenuItem > [class*="icon"] {
    color: #ED1D24;
    -moz-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1); }

.dropdownMenu {
  display: none;
  position: absolute;
  left: 0px;
  top: calc(100% - 25px);
  padding-top: 23px;
  width: 100%;
  z-index: 5; }

.dropdownMenuWrapper {
  padding-top: 30px;
  padding-bottom: 80px;
  background-color: white; }
  .dropdownMenuWrapper .dropdownMenuTitle + .dropdownMenuContent {
    margin-top: 30px; }
  .dropdownMenuWrapper .dropdownMenuCap + .dropdownMenuList {
    margin-top: 25px; }
    .dropdownMenuWrapper .dropdownMenuCap + .dropdownMenuList li {
      padding-left: 20px; }

.dropdownMenuBlock {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: -23px; }
  .dropdownMenuBlock .dropdownMenuItem {
    min-width: 375px;
    margin: 23px; }

.dropdownMenuList li a {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  text-decoration: underline;
  text-decoration-color: #B8B8B8;
  text-underline-offset: 0.3em;
  -webkit-transition: text-decoration-color 0.3s, color 0.3s;
  -moz-transition: text-decoration-color 0.3s, color 0.3s;
  -o-transition: text-decoration-color 0.3s, color 0.3s;
  transition: text-decoration-color 0.3s, color 0.3s; }
  .dropdownMenuList li a:hover {
    text-decoration-color: transparent;
    color: #ED1D24; }
.dropdownMenuList li + li {
  margin-top: 20px; }
@media (min-width: 1254px) {
  .dropdownMenuList.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 280px));
    row-gap: 20px;
    column-gap: 35px; }
    .dropdownMenuList.grid li + li {
      margin-top: 0px; } }

.dropdownMenuColumns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .dropdownMenuColumns .col + .col {
    margin-left: 40px; }

.openMobileMenu {
  display: none; }

.mobileContacts {
  display: none; }

.closeDropdownMenu {
  display: none; }

.openDropdown {
  position: relative;
  cursor: default !important; }
  .openDropdown.active {
    color: #ED1D24; }
  .openDropdown .control {
    cursor: pointer; }
  .openDropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 0px;
    width: 266px;
    padding: 40px 40px 40px 0px;
    background: white;
    border: 1px solid #EDEDED;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 6px; }
    .openDropdown .dropdown li {
      position: relative;
      padding-left: 40px;
      font-size: 16px;
      line-height: 22px;
      color: #1F1F1F; }
      .openDropdown .dropdown li + li {
        margin-top: 15px; }
      .openDropdown .dropdown li:last-child {
        margin-top: 35px;
        font-size: 14px;
        line-height: 20px; }
      .openDropdown .dropdown li.active::before {
        content: '';
        display: block;
        position: absolute;
        left: 0px;
        top: 50%;
        margin-top: -17px;
        width: 6px;
        height: 30px;
        background-color: #ED1D24; }
    .openDropdown .dropdown a {
      display: inline-block;
      color: inherit;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .openDropdown .dropdown a:hover {
        color: #ED1D24; }

h1,
.firstCap {
  display: block;
  font-size: 60px;
  line-height: 130%;
  color: #1F1F1F;
  font-weight: 700; }
  @media (max-width: 1253px) {
    h1,
    .firstCap {
      font-size: 50px; } }
  @media (max-width: 767px) {
    h1,
    .firstCap {
      font-size: 32px; } }
  h1.invert,
  .firstCap.invert {
    color: white; }

h2,
.secCap {
  display: block;
  font-size: 38px;
  line-height: 140%;
  color: #1F1F1F;
  font-weight: 600; }
  @media (max-width: 1253px) {
    h2,
    .secCap {
      font-size: 34px;
      line-height: 130%; } }
  @media (max-width: 767px) {
    h2,
    .secCap {
      font-size: 28px; } }
  h2.invert,
  .secCap.invert {
    color: white; }

h3,
.thirdCap {
  display: block;
  font-size: 26px;
  line-height: 130%;
  color: #1F1F1F;
  font-weight: 600; }
  @media (max-width: 767px) {
    h3,
    .thirdCap {
      font-size: 24px; } }
  h3.invert,
  .thirdCap.invert {
    color: white; }
  h3.sm,
  .thirdCap.sm {
    font-size: 22px; }

h4,
.fourthCap {
  display: block;
  font-size: 20px;
  line-height: 140%;
  color: #1F1F1F;
  font-weight: 600; }
  @media (max-width: 767px) {
    h4,
    .fourthCap {
      font-size: 18px; } }
  h4.invert,
  .fourthCap.invert {
    color: white; }

[class*="Cap"] a {
  color: #ED1D24;
  text-decoration: underline;
  text-decoration-color: #ED1D24;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  -webkit-transition: text-decoration-color 0.3s;
  -moz-transition: text-decoration-color 0.3s;
  -o-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s; }
  [class*="Cap"] a:hover {
    text-decoration-color: transparent; }
  @media (max-width: 1253px) {
    [class*="Cap"] a {
      text-underline-offset: 5px; } }

.capLink {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #B8B8B8;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  -webkit-transition: color 0.3s, text-decoration-color 0.3s;
  -moz-transition: color 0.3s, text-decoration-color 0.3s;
  -o-transition: color 0.3s, text-decoration-color 0.3s;
  transition: color 0.3s, text-decoration-color 0.3s; }
  .capLink:hover {
    color: #ED1D24;
    text-decoration-color: #ED1D24; }

.textBlock {
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F; }
  .textBlock p + p {
    margin-top: 8px; }
  .textBlock a:not(.textLink, .link, .backLink) {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #B8B8B8;
    text-underline-offset: 3px;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s; }
    .textBlock a:not(.textLink, .link, .backLink):hover {
      text-decoration-color: transparent; }
  .textBlock .link {
    color: #ED1D24;
    text-decoration: underline;
    text-decoration-color: transparent;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s; }
    .textBlock .link:hover {
      text-decoration-color: #ED1D24; }
  .textBlock .textLink {
    color: #ED1D24;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .textBlock .textLink:hover {
      color: #1F1F1F; }
    .textBlock .textLink.underlined {
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: #ED1D24;
      text-underline-offset: 0.25em; }
      .textBlock .textLink.underlined:hover {
        color: #ED1D24;
        text-decoration-color: transparent; }
  .textBlock.sm {
    font-size: 14px; }
  .textBlock.invert {
    color: white; }

.noteText {
  font-size: 12px;
  line-height: 140%;
  color: #898989; }

.infoText {
  font-size: 14px;
  line-height: 140%;
  color: #666666; }

.simpleList {
  padding-left: 10px; }
  .simpleList li {
    position: relative;
    padding-left: 27px;
    font-size: 16px;
    line-height: 140%;
    color: #1F1F1F; }
    .simpleList li::before {
      content: '';
      display: block;
      position: absolute;
      left: 0px;
      top: 8px;
      width: 7px;
      height: 7px;
      background-color: #ED1D24;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }
    .simpleList li + li {
      margin-top: 20px; }

.footer {
  margin-top: auto;
  padding-top: 112px;
  padding-bottom: 50px;
  background-color: #272727; }
  .footer .footerContacts {
    margin-top: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .footer .footerCopyright {
    margin-top: 100px; }

.footerMenu {
  -webkit-columns: 260px auto;
  -moz-columns: 260px auto;
  columns: 260px auto;
  -webkit-column-gap: 55px;
  -moz-column-gap: 55px;
  column-gap: 55px; }

.footerMenuItem {
  break-inside: avoid; }
  .footerMenuItem .title {
    display: inline-block;
    font-size: 26px;
    line-height: 130%;
    color: white;
    font-weight: 600; }
    .footerMenuItem .title + .footerMenuList {
      margin-top: 25px; }
  .footerMenuItem a.title {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .footerMenuItem a.title:hover {
      color: #ED1D24; }
  .footerMenuItem + .footerMenuItem {
    margin-top: 27px; }
  .footerMenuItem:nth-child(2) {
    margin-top: 40px; }
  .footerMenuItem:nth-child(4) {
    padding-bottom: 50%; }

.footerMenuList li a {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
  color: white;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .footerMenuList li a:hover {
    color: #ED1D24; }
.footerMenuList li + li {
  margin-top: 10px; }

.footerContacts {
  padding-top: 30px; }
  .footerContacts .locationWrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .footerContacts .footerContactsWrapper {
    margin-top: 51px; }
  .footerContacts .phone {
    display: inline-block;
    font-size: 44px;
    line-height: 130%;
    color: white;
    font-weight: bold;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .footerContacts .phone:hover {
      color: #ED1D24; }
  .footerContacts .address {
    margin-top: 26px;
    font-size: 18px;
    line-height: 130%;
    color: white; }
  .footerContacts .buttonsWrapper {
    margin-top: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; }
    .footerContacts .buttonsWrapper [class*="btn"] {
      margin-left: 20px; }

.footerContactsWrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between; }
  .footerContactsWrapper .rightSide {
    padding-top: 13px; }

.locationDropdown {
  position: relative; }
  .locationDropdown .head {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    z-index: 2; }
    .locationDropdown .head [class*="icon"] {
      display: block;
      font-size: 24px;
      color: white;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
    .locationDropdown .head .title {
      position: relative;
      margin-left: 15px;
      padding-right: 17px;
      display: inline-block;
      font-size: 14px;
      line-height: 21px;
      color: white;
      font-weight: 600;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .locationDropdown .head .title::before {
        content: '\e901';
        display: block;
        position: absolute;
        top: 50%;
        right: 0px;
        margin-top: -4px;
        font-family: "icomoon";
        font-size: 9px;
        line-height: 9px;
        color: white;
        -webkit-transition: color 0.3s, transform 0.3s;
        -moz-transition: color 0.3s, transform 0.3s;
        -o-transition: color 0.3s, transform 0.3s;
        transition: color 0.3s, transform 0.3s; }
    .locationDropdown .head.active [class*="icon"] {
      color: #ED1D24; }
    .locationDropdown .head.active .title {
      color: #ED1D24; }
      .locationDropdown .head.active .title::before {
        color: #ED1D24;
        -moz-transform: scale(-1, -1);
        -ms-transform: scale(-1, -1);
        -webkit-transform: scale(-1, -1);
        -o-transform: scale(-1, -1);
        transform: scale(-1, -1); }
    .locationDropdown .head:hover [class*="icon"] {
      color: #ED1D24; }
    .locationDropdown .head:hover .title {
      color: #ED1D24; }
      .locationDropdown .head:hover .title::before {
        color: #ED1D24; }
  .locationDropdown .list {
    display: none;
    position: absolute;
    left: 0px;
    top: 100%;
    min-width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
    z-index: 1; }
    .locationDropdown .list::before {
      content: '';
      display: block;
      position: absolute;
      width: calc(100% + 30px);
      height: calc(100% + 39px);
      left: -15px;
      bottom: 0px;
      background-color: #272727;
      border: 1px solid #666666;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      border-radius: 6px;
      z-index: -1; }
    .locationDropdown .list li {
      padding-left: 39px; }
      .locationDropdown .list li a {
        display: inline-block;
        font-size: 14px;
        line-height: 21px;
        color: white;
        font-weight: 600;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .locationDropdown .list li a:hover {
          color: #ED1D24; }
      .locationDropdown .list li + li {
        margin-top: 15px; }

.footSocList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end; }
  .footSocList li {
    position: relative;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
    .footSocList li > a {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 7;
      overflow: hidden;
      text-indent: 200%;
      white-space: nowrap; }
    .footSocList li:hover {
      opacity: 0.8; }
    .footSocList li img {
      display: block; }
    .footSocList li + li {
      margin-left: 28px; }

.footerCopyright {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between; }

.copyright {
  font-size: 14px;
  line-height: 140%;
  color: #939398; }
  .copyright a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: inherit;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s; }
    .copyright a:hover {
      text-decoration-color: transparent; }
  .copyright p {
    margin-top: 15px; }

.payments {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  .payments li img {
    opacity: 0.4; }
  .payments li + li {
    margin-left: 30px; }

.bodyModal {
  position: relative;
  overflow: hidden; }
  @media (max-width: 1253px) {
    .bodyModal {
      max-height: 100%; } }
  .bodyModal body {
    position: relative;
    overflow: hidden; }
    @media (max-width: 1253px) {
      .bodyModal body {
        max-height: 100%; } }

.modalsScroll {
  overflow-x: hidden;
  position: fixed;
  z-index: -1;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: none; }
  .modalsScroll.open {
    z-index: 55;
    display: block; }

.modals {
  min-height: 100vh;
  width: 100vw; }
  @media (max-width: 1253px) {
    .modals.table {
      display: flex;
      overflow-y: auto;
      height: auto;
      min-height: 100%; }
      .modals.table > .tCell {
        padding: 0px;
        overflow: hidden;
        display: flex;
        min-height: 100%; } }

.overlayModal {
  z-index: -1;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 39, 39, 0.9);
  cursor: pointer;
  display: none; }

.blockMod {
  margin: 50px auto;
  position: relative;
  background-color: white;
  align-self: center; }
  .blockMod > .closeModal {
    position: absolute;
    top: 30px;
    right: 52px;
    display: block;
    font-size: 22px;
    color: #1F1F1F;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer; }
    @media (max-width: 1253px) {
      .blockMod > .closeModal {
        top: 30px;
        right: 30px; } }
    @media (max-width: 767px) {
      .blockMod > .closeModal {
        right: 25px; } }
    .blockMod > .closeModal:hover {
      color: #ED1D24; }
  @media (max-width: 1253px) {
    .blockMod {
      margin: 0px auto;
      align-self: unset; }
      .blockMod .inner {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; } }

.searchModal {
  width: 100%;
  min-height: 497px;
  padding-top: 218px;
  padding-bottom: 42px;
  max-height: 100vh;
  margin-top: 0px;
  margin-bottom: auto;
  overflow-y: scroll;
  align-self: flex-start; }
  @media (min-width: 1254px) {
    .searchModal {
      scrollbar-width: thin;
      scrollbar-color: rgba(39, 39, 39, 0.5) white; }
      .searchModal::-webkit-scrollbar {
        width: 6px; }
      .searchModal::-webkit-scrollbar-track {
        background: white; }
      .searchModal::-webkit-scrollbar-thumb {
        background-color: rgba(39, 39, 39, 0.5);
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px; } }
  @media (max-width: 1253px) {
    .searchModal {
      padding-top: 98px;
      padding-bottom: 40px;
      min-height: 100vh; } }
  @media (max-width: 767px) {
    .searchModal {
      padding-top: 88px; } }
  .searchModal .inner {
    max-width: 835px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 1253px) {
      .searchModal .inner {
        max-width: 768px;
        padding-left: 30px;
        padding-right: 30px; } }
    @media (max-width: 767px) {
      .searchModal .inner {
        max-width: 480px;
        padding-left: 25px;
        padding-right: 25px; } }
  .searchModal .searchResults {
    margin-top: 60px; }
    @media (max-width: 1253px) {
      .searchModal .searchResults {
        margin-top: 55px; } }
    @media (max-width: 767px) {
      .searchModal .searchResults {
        margin-top: 40px; } }
  .searchModal .loaderWrapper {
    margin-top: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center; }

.supportModal {
  margin: 50px auto;
  width: 595px;
  padding: 70px 70px 50px;
  background-color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px; }
  .supportModal.requisitsModal {
    width: 945px; }
  @media (min-width: 1254px) {
    .supportModal {
      scrollbar-width: thin;
      scrollbar-color: transparent transparent; }
      .supportModal::-webkit-scrollbar {
        width: 6px; }
      .supportModal::-webkit-scrollbar-track {
        background: white; }
      .supportModal::-webkit-scrollbar-thumb {
        background-color: transparent;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px; }
      .supportModal:hover {
        scrollbar-color: rgba(39, 39, 39, 0.5) white; }
        .supportModal:hover::-webkit-scrollbar-thumb {
          background-color: rgba(39, 39, 39, 0.5); } }
  @media (max-width: 1253px) {
    .supportModal {
      margin: 0px;
      width: 100vw;
      min-width: 100%;
      padding-left: 25px;
      padding-top: 90px;
      padding-right: 25px;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      border-radius: 0px; }
      .supportModal.requisitsModal {
        width: 100vw;
        min-width: 100%; }
      .supportModal .inner {
        max-width: 628px;
        margin-left: auto;
        margin-right: auto; }
      .supportModal .supportForm {
        max-width: 464px;
        margin-left: auto;
        margin-right: auto;
        width: 100%; } }
  @media (max-width: 767px) {
    .supportModal {
      padding-top: 70px;
      padding-bottom: 58px; } }
  .supportModal .closeModal {
    top: 25px;
    right: 25px; }
  .supportModal .downForgotLine {
    margin-top: 20px; }
    .supportModal .downForgotLine .siteLink {
      font-size: 14px;
      line-height: 140%; }
  .supportModal .formChapter {
    margin-top: 30px; }
    .supportModal .formChapter .title {
      margin-bottom: 25px; }
  .supportModal .defaultInput .inWrap {
    width: 100%; }
  .supportModal .defaultInput input {
    padding-right: 19px; }
  .supportModal .title .infoText {
    margin-top: 5px; }
  .supportModal .fieldsLineResult .field {
    width: 245px; }
  @media (max-width: 479px) {
    .supportModal .fieldsLineResult {
      display: block; }
      .supportModal .fieldsLineResult .field {
        width: 100%;
        padding-right: 0; }
      .supportModal .fieldsLineResult .submitWrapper {
        margin-right: 0; } }
  .supportModal .formReadyMessage {
    max-width: 454px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 140%;
    color: #1F1F1F; }
    .supportModal .formReadyMessage .submitWrapper {
      margin-top: 50px; }
    .supportModal .formReadyMessage [class*="btn"] {
      min-width: 150px; }

.authModal {
  margin: 50px auto;
  width: 595px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden; }
  @media (max-width: 1253px) {
    .authModal {
      margin: 0px auto; } }
  @media (min-width: 1254px) {
    .authModal {
      scrollbar-width: thin;
      scrollbar-color: transparent transparent; }
      .authModal::-webkit-scrollbar {
        width: 6px; }
      .authModal::-webkit-scrollbar-track {
        background: white; }
      .authModal::-webkit-scrollbar-thumb {
        background-color: transparent;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px; }
      .authModal:hover {
        scrollbar-color: rgba(39, 39, 39, 0.5) white; }
        .authModal:hover::-webkit-scrollbar-thumb {
          background-color: rgba(39, 39, 39, 0.5); } }
  @media (max-width: 1253px) {
    .authModal {
      margin: 0px;
      width: 100vw;
      min-width: 100%;
      max-width: unset;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      border-radius: 0px; } }
  .authModal .wrapper {
    padding: 70px 25px 50px; }
  .authModal .inner {
    position: relative;
    max-width: 455px;
    margin-left: auto;
    margin-right: auto; }
  .authModal .titleBlock + .formBlock {
    margin-top: 40px; }
  .authModal .formField + .formField {
    margin-top: 25px; }
  .authModal .link {
    margin-top: 15px; }
    .authModal .link a {
      display: inline-block;
      font-size: 14px;
      line-height: 140%;
      color: #ED1D24;
      font-weight: 600;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .authModal .link a:hover {
        color: #1F1F1F; }
  .authModal .button {
    margin-top: 40px; }
  .authModal .closeModal {
    position: absolute;
    top: 25px;
    right: 25px;
    display: block;
    font-size: 22px;
    color: #1F1F1F;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer; }
    @media (max-width: 1253px) {
      .authModal .closeModal {
        top: 30px;
        right: 30px; } }
    @media (max-width: 767px) {
      .authModal .closeModal {
        right: 25px; } }
    .authModal .closeModal:hover {
      color: #ED1D24; }
  .authModal .footLine {
    margin-top: 30px;
    padding: 25px 25px;
    background-color: #F8F8F8; }
  .authModal .regBlock {
    display: flex;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F;
    font-weight: 600; }
    .authModal .regBlock > * + * {
      margin-left: 15px; }
    .authModal .regBlock button {
      display: inline-block;
      font-size: 14px;
      line-height: 140%;
      color: #ED1D24;
      font-weight: 600;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .authModal .regBlock button:hover {
        color: #1F1F1F; }
  .authModal .agreement {
    margin-top: 25px;
    justify-content: flex-start; }
  .authModal .backLink {
    position: absolute;
    left: -45px;
    bottom: calc(100% + 23px);
    padding-left: 48px; }
    @media (max-width: 767px) {
      .authModal .backLink {
        left: 0px; } }

.loginModal .wrapper {
  padding: 70px 25px 0px; }
@media (max-width: 1253px) {
  .loginModal .modalInner {
    height: 100%;
    display: flex;
    flex-direction: column; }
  .loginModal .wrapper {
    margin-bottom: auto; } }

.b24-window .b24-window-panel {
  max-width: 595px;
  padding-left: 15px;
  padding-right: 15px; }
  .b24-window .b24-window-panel .b24-window-scrollable {
    padding-bottom: 0px; }
  .b24-window .b24-window-panel .b24-window-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 22px;
    height: 22px;
    background-color: transparent;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    opacity: 1; }
    .b24-window .b24-window-panel .b24-window-close::before {
      content: '\e90c';
      display: block;
      position: absolute;
      left: 0px;
      right: 0px;
      top: 0px;
      bottom: 0px;
      width: 22px;
      height: 22px;
      font-family: "icomoon";
      font-size: 22px;
      color: #1F1F1F;
      -moz-transform: translate(0%) rotate(0deg);
      -ms-transform: translate(0%) rotate(0deg);
      -webkit-transform: translate(0%) rotate(0deg);
      -o-transform: translate(0%) rotate(0deg);
      transform: translate(0%) rotate(0deg); }
    .b24-window .b24-window-panel .b24-window-close::after {
      display: none; }
  .b24-window .b24-window-panel .b24-form-wrapper {
    max-width: 465px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-top: 65px;
    padding-bottom: 88px; }
  .b24-window .b24-window-panel .b24-form-header {
    padding: 0px;
    border-bottom: none;
    text-align: left; }
  .b24-window .b24-window-panel .b24-form-header-title {
    margin: 0px;
    font-family: "Open Sans";
    font-size: 26px;
    line-height: 34px;
    color: black;
    font-weight: 600;
    letter-spacing: 0em; }
  .b24-window .b24-window-panel .b24-form-header-description {
    margin: 5px 0px 0px 0px;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    letter-spacing: 0em;
    opacity: 1; }
  .b24-window .b24-window-panel .b24-form-btn {
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 600; }
  .b24-window .b24-window-panel .b24-form-content {
    margin-top: 40px; }
    .b24-window .b24-window-panel .b24-form-content form > div:first-child {
      display: block; }
    .b24-window .b24-window-panel .b24-form-content .b24-form-field textarea {
      height: 150px; }
    .b24-window .b24-window-panel .b24-form-content .b24-form-field + .b24-form-field {
      margin-top: 25px; }
    .b24-window .b24-window-panel .b24-form-content .b24-form-field:not(.b24-form-field-checkbox).b24-form-field-text .b24-form-control-container .b24-form-control {
      height: 150px; }
.b24-window .b24-form-wrapper.b24-form-border-bottom {
  border-bottom: none; }

@media (max-width: 594px) {
  .b24-window .b24-window-panel {
    max-width: 100%; }
    .b24-window .b24-window-panel .b24-form-wrapper {
      max-width: 465px;
      padding-left: 15px;
      padding-top: 48px;
      padding-right: 15px;
      padding-bottom: 48px; } }
.siteSection {
  padding-top: 110px;
  padding-bottom: 160px; }
  .siteSection .titleContainer.center {
    text-align: center; }
  .siteSection .titleContainer + .contentContainer {
    margin-top: 80px; }

.backSection {
  padding-top: 130px;
  padding-bottom: 160px;
  background-color: #F8F8F8; }
  .backSection .titleContainer + .contentContainer {
    margin-top: 90px; }

.innerPageWrapper {
  padding-top: 90px;
  padding-bottom: 160px;
  margin-bottom: auto;
  overflow: hidden; }

.textBlock:after {
  content: " ";
  display: block;
  clear: both; }
.textBlock > *:not(.backLink) {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto; }

h1 {
  margin-top: 80px;
  margin-bottom: 80px; }
  h1:first-child {
    margin-top: 0px; }
  h1:last-child {
    margin-bottom: 0px; }

.firstCap {
  margin-top: 60px;
  margin-bottom: 60px;
  line-height: 130%; }
  .firstCap span {
    color: #ED1D24; }
  .firstCap:first-child {
    margin-top: 0px; }
  .firstCap:last-child {
    margin-bottom: 0px; }

h2 {
  margin-top: 60px;
  margin-bottom: 50px; }
  h2:first-child {
    margin-top: 0px; }
  h2:last-child {
    margin-bottom: 0px; }

h3 {
  margin-top: 40px;
  margin-bottom: 30px; }
  h3:first-child {
    margin-top: 0px; }
  h3:last-child {
    margin-bottom: 0px; }

h4 {
  margin: 35px 0px 25px; }
  h4:first-child {
    margin-top: 0px; }
  h4:last-child {
    margin-bottom: 0px; }

.imageBlock {
  margin: 60px 0px 40px; }
  .imageBlock img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px; }
  .imageBlock figcaption {
    margin-top: 20px;
    font-size: 14px;
    line-height: 140%;
    color: #898989;
    font-weight: 400;
    font-style: italic;
    text-align: center; }
    .imageBlock figcaption p {
      line-height: inherit; }
  .imageBlock:first-child {
    margin-top: 0px; }
  .imageBlock:last-child {
    margin-bottom: 0px; }

.intro {
  margin: 50px 0px 70px; }
  .intro p {
    line-height: 140%; }
  .intro > * {
    margin: 10px 0px; }
    .intro > *:first-child {
      margin-top: 0px; }
    .intro > *:last-child {
      margin-bottom: 0px; }
  .intro:first-child {
    margin-top: 0px; }
  .intro:last-child {
    margin-bottom: 0px; }

p {
  margin: 16px 0px;
  line-height: 160%; }
  p:first-child {
    margin-top: 0px; }
  p:last-child {
    margin-bottom: 0px; }

.info {
  position: relative;
  margin-top: 97px;
  margin-bottom: 90px;
  padding-left: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex; }
  .info::before, .info::after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    height: 1px;
    background-color: #1F1F1F; }
  .info::before {
    top: 0px;
    width: calc(100% - 210px); }
  .info::after {
    bottom: 0px;
    width: calc(100% - 420px); }
  .info:first-child {
    margin-top: 0px; }
  .info:last-child {
    margin-bottom: 0px; }
  .info .content {
    max-width: 420px;
    flex-shrink: 0; }
  .info .title + .text {
    margin-top: 25px; }
  .info .text {
    font-size: 16px;
    line-height: 160%;
    color: #1F1F1F;
    font-weight: 300;
    font-style: italic; }
  .info .image {
    position: absolute;
    top: -18px;
    right: -105px;
    width: 595px;
    flex-shrink: 0;
    z-index: 1; }
    .info .image img {
      display: block;
      width: 100%;
      height: auto; }

.main {
  margin: 60px 0px;
  padding: 60px 70px;
  font-size: 20px;
  line-height: 150%;
  color: white;
  font-weight: 300;
  background-color: #1F1F1F;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px; }
  .main p {
    margin: 10px 0px;
    line-height: 150%; }
    .main p:first-child {
      margin-top: 0px; }
    .main p:last-child {
      margin-bottom: 0px; }
  .main:first-child {
    margin-top: 0px; }
  .main:last-child {
    margin-bottom: 0px; }

.blockquoteBlock {
  margin: 80px 0px; }
  .blockquoteBlock:first-child {
    margin-top: 0px; }
  .blockquoteBlock:last-child {
    margin-bottom: 0px; }

.note {
  width: 385px;
  margin-left: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 30px;
  border-left: 4px solid #ED1D24;
  font-size: 14px;
  line-height: 140%;
  color: inherit;
  font-weight: 600; }
  .note p {
    margin: 0px;
    line-height: 140%; }
  .note .sign {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 140%;
    color: #898989;
    font-weight: 400;
    font-style: italic; }

.right {
  float: right; }

.important {
  position: relative;
  margin: 60px 0px;
  padding: 60px 70px;
  background-color: #F8F8F8;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden; }
  .important p {
    line-height: 130%; }
  .important::before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 6px;
    height: 100%;
    background-color: #ED1D24; }
  .important:first-child {
    margin-top: 0px; }
  .important:last-child {
    margin-bottom: 0px; }

.blockquoteBlock {
  position: relative;
  padding-top: 40px;
  padding-bottom: 50px;
  text-align: center; }
  .blockquoteBlock .blockquote {
    margin: 0px;
    font-size: 30px;
    line-height: 160%;
    color: #1F1F1F;
    font-style: italic; }
  .blockquoteBlock .image {
    display: block;
    margin-left: auto;
    margin-top: 25px;
    margin-right: auto;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; }
  .blockquoteBlock .author {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 140%;
    color: #666666; }
    .blockquoteBlock .author + p {
      margin-top: 3px;
      margin-bottom: 0px;
      font-size: 14px;
      line-height: 140%;
      color: #666666; }
  .blockquoteBlock::before, .blockquoteBlock::after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    width: 120px;
    height: 2px;
    background-color: #ED1D24; }
  .blockquoteBlock::before {
    top: 0px; }
  .blockquoteBlock::after {
    bottom: 0px; }

.projectFormSection {
  padding-top: 110px;
  padding-bottom: 160px;
  background-color: #F8F8F8; }
  .projectFormSection .titleContainer + .contentContainer {
    margin-top: 80px; }
  .projectFormSection .formWrap {
    max-width: 805px;
    margin-left: auto;
    margin-right: auto; }
  .projectFormSection .fieldGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
    row-gap: 25px; }
  .projectFormSection .formField label {
    background-color: #F8F8F8; }
  .projectFormSection .agreement {
    margin-top: 25px; }
  .projectFormSection .button {
    margin-top: 40px;
    display: flex;
    justify-content: center; }

.projectsSection {
  padding-top: 162px;
  padding-bottom: 80px;
  overflow: hidden; }
  .projectsSection .titleContainer {
    max-width: 600px; }
  .projectsSection .contentContainer {
    margin-top: 50px; }
  .projectsSection .simpleLink {
    margin-top: 107px;
    margin-left: auto; }
  .projectsSection.simple {
    padding-top: 130px;
    padding-bottom: 160px; }
    .projectsSection.simple .titleContainer {
      max-width: 100%; }
    .projectsSection.simple .contentContainer {
      margin-top: 30px; }

.projectsSlider {
  overflow: visible; }
  .projectsSlider .swiper-slide {
    width: 490px;
    height: auto; }
  .projectsSlider .navigation {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end; }
    .projectsSlider .navigation .prev,
    .projectsSlider .navigation .next {
      font-size: 32px;
      color: #1F1F1F;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      cursor: pointer; }
      .projectsSlider .navigation .prev:hover,
      .projectsSlider .navigation .next:hover {
        color: #ED1D24; }
      .projectsSlider .navigation .prev.swiper-button-disabled,
      .projectsSlider .navigation .next.swiper-button-disabled {
        opacity: 0.2;
        pointer-events: none; }
    .projectsSlider .navigation .next {
      margin-left: 50px; }

.projectCard {
  position: relative;
  max-width: 490px;
  height: 100%;
  padding: 80px 80px 83px;
  background-color: #F8F8F8;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px; }
  .projectCard .logo {
    height: 58px; }
    .projectCard .logo img {
      display: block;
      height: 100%;
      width: auto; }
    .projectCard .logo + .title {
      margin-top: 32px; }
  .projectCard .title + .content {
    margin-top: 20px; }
  .projectCard .content {
    font-size: 16px;
    line-height: 140%;
    color: #666666; }
    .projectCard .content p + p {
      margin-top: 8px; }
  .projectCard [class*="icon"] {
    position: absolute;
    display: block;
    right: 30px;
    bottom: 30px;
    color: #B8B8B8; }

.agreement {
  display: flex;
  justify-content: center; }
  .agreement .checkButton .btn {
    border-color: #898989; }
  .agreement .label {
    padding-top: 2px;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F; }
    .agreement .label a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: #B8B8B8;
      text-underline-offset: 3px;
      -webkit-transition: text-decoration-color 0.3s;
      -moz-transition: text-decoration-color 0.3s;
      -o-transition: text-decoration-color 0.3s;
      transition: text-decoration-color 0.3s; }
      .agreement .label a:hover {
        text-decoration-color: transparent; }

.numberList {
  counter-reset: item; }
  .numberList li {
    position: relative;
    padding-left: 39px;
    font-size: 16px;
    line-height: 140%;
    color: #1F1F1F; }
    .numberList li::before {
      position: absolute;
      display: block;
      counter-increment: item;
      content: counters(item,".") " ";
      left: 0px;
      top: -1px;
      width: 24px;
      height: 24px;
      font-size: 16px;
      line-height: 20px;
      color: #ED1D24;
      font-weight: 600;
      text-align: center;
      border: 2px solid #1F1F1F;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }
    .numberList li + li {
      margin-top: 20px; }

.markerList li {
  position: relative;
  padding-left: 42px;
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F; }
  .markerList li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 29px;
    height: 24px;
    background-image: url(../img/marker@2x.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat; }
  .markerList li + li {
    margin-top: 20px; }
.markerList.pros li::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/plus.svg); }
.markerList.cons li::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/minus.svg); }

.markerList,
.numberList {
  margin-top: 25px;
  margin-bottom: 35px;
  padding-left: 70px;
  max-width: 700px; }
  .markerList li + li,
  .numberList li + li {
    margin-top: 16px; }
  .markerList:first-child,
  .numberList:first-child {
    margin-top: 0px; }
  .markerList:last-child,
  .numberList:last-child {
    margin-bottom: 0px; }

.withBackLink {
  position: relative; }
  .withBackLink .backLink {
    position: absolute;
    left: 0px;
    bottom: calc(100% + 30px); }

.backLink {
  position: relative;
  display: inline-block;
  padding-left: 37px;
  font-size: 16px;
  line-height: 22px;
  color: #ED1D24;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }
  .backLink::before {
    content: '\e933';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: "icomoon";
    font-size: 21px;
    font-weight: normal;
    color: inherit; }
  .backLink:hover {
    color: #1F1F1F; }

.tariffTable {
  margin-top: 40px;
  margin-bottom: 60px;
  padding-left: 35px;
  display: flex;
  justify-content: center; }
  .tariffTable:first-child {
    margin-top: 0px; }
  .tariffTable:last-child {
    margin-bottom: 0px; }
  .tariffTable .row {
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px; }
    .tariffTable .row + .row {
      border-top: 1px solid #EDEDED; }
  .tariffTable .paramsCol {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 280px;
    font-size: 14px;
    line-height: 19px;
    color: #1F1F1F;
    background-color: white;
    flex-shrink: 0;
    z-index: 2; }
    .tariffTable .paramsCol::before {
      content: '';
      display: block;
      position: absolute;
      top: 0px;
      right: 0px;
      width: 50vw;
      height: 100%;
      background-color: white;
      z-index: -1; }
    .tariffTable .paramsCol .row {
      display: flex;
      align-items: center; }
    .tariffTable .paramsCol.sm {
      width: 175px; }
    .tariffTable .paramsCol + .tariffsSlider {
      padding-left: 36px;
      margin-left: 0px; }
  .tariffTable .tariffsSlider {
    margin-right: 0px; }
  .tariffTable .tooltipControl {
    position: relative;
    top: 5px; }

.tariffsSlider {
  overflow: visible; }
  .tariffsSlider .swiper-slide {
    width: 280px; }
    @media (min-width: 1254px) {
      .tariffsSlider .swiper-slide {
        margin-right: 35px; } }

.tariffCard {
  width: 280px; }
  .tariffCard .name {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 117px;
    padding: 20px;
    text-align: center;
    background-color: #F8F8F8; }
  .tariffCard .info {
    height: 180px;
    margin-top: 4px;
    padding-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    background-color: #F8F8F8; }
  .tariffCard .oldPrice {
    display: block;
    min-height: 22px;
    font-size: 16px;
    line-height: 140%;
    color: #898989;
    font-weight: 600;
    text-decoration: line-through; }
    .tariffCard .oldPrice + .price {
      margin-top: 7px; }
  .tariffCard .price {
    display: flex;
    justify-content: center;
    align-items: flex-start; }
    .tariffCard .price .current {
      display: block;
      font-size: 20px;
      line-height: 140%;
      color: #1F1F1F;
      font-weight: 600; }
      .tariffCard .price .current .num {
        font-size: 30px;
        font-weight: 400; }
    .tariffCard .price .discount {
      margin-left: 9px;
      margin-top: 1px; }
  .tariffCard .discount {
    display: block;
    padding: 2px 8px 2px;
    font-size: 16px;
    line-height: 130%;
    color: #1F1F1F;
    font-weight: 600;
    background-color: #FFC166;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px; }
  .tariffCard .button {
    margin-top: 28px; }
  .tariffCard .param {
    display: none; }
  .tariffCard .dataWrapper {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F;
    background-color: #F8F8F8; }
    .tariffCard .dataWrapper .row {
      display: flex;
      justify-content: center;
      align-items: center; }
    .tariffCard .dataWrapper .num {
      font-size: 24px; }
  .tariffCard .hidden .row {
    border-top: 1px solid #EDEDED; }
  .tariffCard .hiddenControl {
    display: none; }

.tariffCard.type4 .name {
  display: block;
  margin-bottom: auto;
  height: 106px;
  white-space: nowrap; }
  .tariffCard.type4 .name .mark {
    color: #ED1D24; }
.tariffCard.type4 .subtitle {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600; }
.tariffCard.type4 .dataWrapper {
  margin-top: 4px; }
.tariffCard.type4 .data {
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  text-align: center; }
  .tariffCard.type4 .data .num {
    font-size: 30px;
    line-height: 140%;
    font-weight: normal; }
.tariffCard .status {
  display: table;
  margin: 9px 0px;
  padding: 2px 8px 2px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  background-color: #BBE7FF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }
.tariffCard .noteWrapper {
  position: relative;
  padding-left: 35px;
  padding-top: 63px;
  padding-right: 35px; }
  .tariffCard .noteWrapper::before {
    content: '*';
    display: block;
    position: absolute;
    left: 34px;
    top: 17px;
    font-size: 60px;
    color: #ED1D24;
    z-index: -1; }

.tariffTable.type .paramsCol {
  width: 175px; }
  .tariffTable.type .paramsCol .row {
    padding-top: 12px;
    padding-bottom: 12px; }
.tariffTable.type .row {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 64px; }
.tariffTable.type .data {
  margin: 0px -2px; }
.tariffTable.type .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
.tariffTable.type .status {
  margin: 0px; }

.tooltipControl {
  font-size: 20px;
  line-height: 12px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer; }
  .tooltipControl.active, .tooltipControl:hover {
    color: #ED1D24; }

.tooltipContent {
  display: none;
  padding: 9px 19px;
  font-size: 14px;
  line-height: 140%;
  color: #1F1F1F;
  border: 1px solid #ED1D24;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px; }

.tooltipster-base .tooltipContent {
  display: block; }

.tooltipster-sidetip .tooltipster-box {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important; }
.tooltipster-sidetip .tooltipster-arrow {
  display: none !important; }

.columnsBlock {
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px; }
  .columnsBlock:first-child {
    margin-top: 0px; }
  .columnsBlock:last-child {
    margin-bottom: 0px; }
  .columnsBlock .title + .list {
    margin-top: 25px; }
  .columnsBlock .pros .title {
    padding-left: 112px; }
  .columnsBlock .pros [class*="Cap"] {
    color: #60CA3B; }
  .columnsBlock .cons .title {
    padding-left: 112px; }
  .columnsBlock .cons [class*="Cap"] {
    color: #ED1D24; }

.faqBlock {
  display: flex;
  justify-content: space-between; }
  .faqBlock .image {
    display: block;
    width: 356px;
    height: 395px;
    object-fit: cover;
    object-position: left top;
    flex-shrink: 0; }
  .faqBlock .wrapper {
    width: 805px;
    margin-left: auto;
    flex-shrink: 0; }

.faqItem {
  padding-bottom: 2px;
  border-bottom: 1px solid #1F1F1F; }
  .faqItem:first-child {
    border-top: 1px solid #1F1F1F; }
  .faqItem .head {
    padding-left: 20px;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; }
    .faqItem .head .control {
      margin-left: 30px;
      flex-shrink: 0; }
    .faqItem .head:hover .title {
      color: #ED1D24; }
  .faqItem.active .control::after {
    opacity: 0; }
  .faqItem .title {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .faqItem .control {
    position: relative;
    display: block;
    width: 20px;
    height: 20px; }
    .faqItem .control::before, .faqItem .control::after {
      content: '';
      display: block;
      position: absolute;
      left: 0px;
      top: 0px;
      right: 0px;
      bottom: 0px;
      margin: auto;
      background-color: #ED1D24;
      opacity: 1;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
    .faqItem .control::before {
      height: 2px; }
    .faqItem .control::after {
      width: 2px; }
  .faqItem .content {
    display: none; }
    .faqItem .content .in {
      padding-left: 20px;
      padding-bottom: 38px;
      max-width: 680px; }

.articlesGrid {
  display: grid;
  grid-template-columns: repeat(2, 525px);
  gap: 105px; }

.newsCard {
  position: relative;
  z-index: 1; }
  .newsCard > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .newsCard .date {
    display: block;
    font-size: 14px;
    line-height: 140%;
    color: #1F1F1F; }
    .newsCard .date + .title {
      margin-top: 5px; }
  .newsCard .title {
    text-decoration: underline;
    text-decoration-color: #B8B8B8;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.5em;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s; }
    .newsCard .title + .content {
      margin-top: 32px; }
  .newsCard .content p {
    line-height: 160%; }
  .newsCard:hover .title {
    text-decoration-color: transparent; }
  .newsCard.lg {
    max-width: 700px;
    padding-bottom: 30px; }
    .newsCard.lg .title {
      text-underline-offset: 0.6em; }
      .newsCard.lg .title + .content {
        margin-top: 40px; }

.desktopGallery {
  margin-top: 60px;
  margin-bottom: 40px;
  overflow: visible; }
  .desktopGallery:first-child {
    margin-top: 0px; }
  .desktopGallery:last-child {
    margin-bottom: 0px; }
  .desktopGallery img {
    display: block;
    width: 100%;
    height: 605px;
    object-fit: cover;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px; }
  .desktopGallery .swiper-pagination {
    position: static;
    margin-top: 30px;
    padding-left: 20px;
    display: flex;
    justify-content: center; }
    .desktopGallery .swiper-pagination .swiper-pagination-bullet {
      position: relative;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 17px;
      margin: 0px;
      width: auto;
      height: auto;
      flex-shrink: 0;
      font-family: "Open Sans";
      font-size: 16px;
      line-height: 22px;
      color: #1F1F1F;
      font-weight: 600;
      letter-spacing: 0em;
      text-decoration: underline;
      text-decoration-style: dashed;
      text-decoration-color: inherit;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.4em;
      background-color: transparent;
      opacity: 1;
      -webkit-transition: text-decoration-color 0.3s;
      -moz-transition: text-decoration-color 0.3s;
      -o-transition: text-decoration-color 0.3s;
      transition: text-decoration-color 0.3s;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      border-radius: 0px; }
      .desktopGallery .swiper-pagination .swiper-pagination-bullet::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 5px;
        left: 0px;
        bottom: 0px;
        background-color: #ED1D24;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      .desktopGallery .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-left: 30px; }
    .desktopGallery .swiper-pagination .swiper-pagination-bullet-active {
      text-decoration-color: transparent; }
      .desktopGallery .swiper-pagination .swiper-pagination-bullet-active::before {
        opacity: 1; }

.mobileGallery {
  margin-top: 60px;
  margin-bottom: 40px;
  overflow: visible; }
  .mobileGallery:first-child {
    margin-top: 0px; }
  .mobileGallery:last-child {
    margin-bottom: 0px; }
  .mobileGallery .image {
    margin: 0px auto;
    width: 395px;
    height: 720px;
    padding: 6px;
    border: 2px solid #272727;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px; }
    .mobileGallery .image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 2px solid black;
      -webkit-border-radius: 40px;
      -moz-border-radius: 40px;
      -ms-border-radius: 40px;
      border-radius: 40px; }
  .mobileGallery .swiper-pagination {
    position: static;
    margin-top: 30px;
    padding-left: 20px;
    display: flex;
    justify-content: center; }
    .mobileGallery .swiper-pagination .swiper-pagination-bullet {
      position: relative;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 17px;
      margin: 0px;
      width: auto;
      height: auto;
      flex-shrink: 0;
      font-family: "Open Sans";
      font-size: 16px;
      line-height: 22px;
      color: #1F1F1F;
      font-weight: 600;
      letter-spacing: 0em;
      text-decoration: underline;
      text-decoration-style: dashed;
      text-decoration-color: inherit;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.4em;
      background-color: transparent;
      opacity: 1;
      -webkit-transition: text-decoration-color 0.3s;
      -moz-transition: text-decoration-color 0.3s;
      -o-transition: text-decoration-color 0.3s;
      transition: text-decoration-color 0.3s;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      border-radius: 0px; }
      .mobileGallery .swiper-pagination .swiper-pagination-bullet::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 5px;
        left: 0px;
        bottom: 0px;
        background-color: #ED1D24;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      .mobileGallery .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-left: 30px; }
    .mobileGallery .swiper-pagination .swiper-pagination-bullet-active {
      text-decoration-color: transparent; }
      .mobileGallery .swiper-pagination .swiper-pagination-bullet-active::before {
        opacity: 1; }

@media (min-width: 1254px) {
  .mobileMenu {
    display: block !important; } }
@media (max-width: 1253px) {
  .siteSection {
    padding-top: 100px;
    padding-bottom: 100px; }
    .siteSection .titleContainer + .contentContainer {
      margin-top: 80px; }

  .backSection {
    padding-top: 100px;
    padding-bottom: 100px; }
    .backSection .titleContainer + .contentContainer {
      margin-top: 80px; }

  .container {
    width: 768px;
    padding-left: 30px;
    padding-right: 30px; }

  .header .linksWrapper {
    margin-left: 107px; }
  .header .menuWrapper {
    margin-left: 0px; }
  .header .openMobileMenu {
    margin-left: 15px;
    margin-right: -15px; }
  .header .contactWrapper {
    margin-left: auto; }

  .openMobileMenu {
    display: block;
    width: 54px;
    padding: 6px 15px 5px;
    font-size: 24px;
    color: #1F1F1F;
    text-align: center;
    background-color: transparent;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    border-radius: 34px;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
    cursor: pointer; }
    .openMobileMenu.active {
      color: #ED1D24; }

  .mobileMenu {
    display: none;
    position: fixed;
    left: 0px;
    top: 84px;
    width: 100%;
    height: calc(100% - 84px);
    background-color: white;
    overflow-y: scroll;
    z-index: 7; }
    .mobileMenu .inner {
      position: relative;
      max-width: 768px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 30px;
      padding-top: 30px;
      padding-right: 30px;
      padding-bottom: 82px; }

  .siteMenuList {
    display: block;
    width: 236px; }
    .siteMenuList .siteMenuItem {
      padding: 0px;
      width: 100%;
      justify-content: space-between;
      align-items: center; }
      .siteMenuList .siteMenuItem .siteMenuLink {
        padding-bottom: 0px;
        font-size: 26px;
        line-height: 44px;
        font-weight: 400;
        border-bottom: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      .siteMenuList .siteMenuItem > [class*="icon"] {
        margin: 0px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -moz-transform-origin: 60% 50%;
        -ms-transform-origin: 60% 50%;
        -webkit-transform-origin: 60% 50%;
        -o-transform-origin: 60% 50%;
        transform-origin: 60% 50%; }
      .siteMenuList .siteMenuItem:hover {
        background-color: transparent; }
        .siteMenuList .siteMenuItem:hover .siteMenuLink {
          color: #1F1F1F;
          border-bottom: none; }
        .siteMenuList .siteMenuItem:hover > [class*="icon"] {
          color: #1F1F1F;
          -moz-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
          -webkit-transform: rotate(-90deg);
          -o-transform: rotate(-90deg);
          transform: rotate(-90deg); }
    .siteMenuList > li {
      -webkit-transition: margin-top 0.3s;
      -moz-transition: margin-top 0.3s;
      -o-transition: margin-top 0.3s;
      transition: margin-top 0.3s; }
      .siteMenuList > li.active .siteMenuItem .siteMenuLink {
        border-bottom: none; }
      .siteMenuList > li.mobileActive .siteMenuItem .siteMenuLink {
        font-size: 34px;
        font-weight: 600;
        color: #ED1D24;
        border-bottom: none; } }
      @media (max-width: 1253px) and (max-width: 767px) {
        .siteMenuList > li.mobileActive .siteMenuItem .siteMenuLink {
          font-size: 26px;
          font-weight: 400;
          color: #1F1F1F; } }
@media (max-width: 1253px) {
      .siteMenuList > li.mobileActive .siteMenuItem > [class*="icon"] {
        color: #ED1D24;
        -moz-transform-origin: 80% 70%;
        -ms-transform-origin: 80% 70%;
        -webkit-transform-origin: 80% 70%;
        -o-transform-origin: 80% 70%;
        transform-origin: 80% 70%; } }
      @media (max-width: 1253px) and (max-width: 767px) {
        .siteMenuList > li.mobileActive .siteMenuItem > [class*="icon"] {
          color: #1F1F1F;
          -moz-transform-origin: 60% 50%;
          -ms-transform-origin: 60% 50%;
          -webkit-transform-origin: 60% 50%;
          -o-transform-origin: 60% 50%;
          transform-origin: 60% 50%; } }
@media (max-width: 1253px) {
      .siteMenuList > li.mobileActive + li {
        margin-top: 36px; }
      .siteMenuList > li + li {
        margin-top: 40px; }
        .siteMenuList > li + li.mobileActive {
          margin-top: 36px; }

  .dropdownMenu {
    display: none;
    width: 392px;
    height: 100%;
    top: 0px;
    left: auto;
    right: 30px;
    padding: 0px;
    background-color: white; }
    .dropdownMenu .dropdownMenuTitle {
      display: none; }
    .dropdownMenu .container {
      width: 100%;
      max-width: 100%;
      padding: 0px; }

  .dropdownMenuWrapper {
    padding: 42px 0px 82px; }
    .dropdownMenuWrapper .dropdownMenuTitle + .dropdownMenuContent {
      margin-top: 0px; }

  .dropdownMenuBlock {
    display: block;
    margin: 0px; }
    .dropdownMenuBlock .dropdownMenuItem {
      margin: 0px;
      min-width: 100%; }
      .dropdownMenuBlock .dropdownMenuItem + .dropdownMenuItem {
        margin-top: 45px; }

  .dropdownMenuColumns {
    display: block; }
    .dropdownMenuColumns .col + .col {
      margin-left: 0px;
      margin-top: 20px; }

  .innerPageWrapper {
    padding-top: 56px;
    padding-bottom: 100px; }

  .withBackLink .backLink {
    bottom: calc(100% + 16px); }

  h1 {
    margin-top: 70px;
    margin-bottom: 70px; }

  .firstCap {
    margin-top: 50px;
    margin-bottom: 50px; }

  h2 {
    margin-top: 50px;
    margin-bottom: 40px; }

  h3 {
    margin-top: 40px;
    margin-bottom: 35px; }

  .imageBlock {
    margin-top: 50px;
    margin-bottom: 35px; }

  .intro {
    margin-top: 40px;
    margin-bottom: 60px; }

  .info {
    margin-top: 69px;
    margin-bottom: 80px;
    padding-left: 50px;
    padding-bottom: 30px; }
    .info::before, .info::after {
      width: 100%; }
    .info .image {
      right: -375px; }

  .markerList,
  .numberList {
    padding-left: 50px; }

  .main {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 60px 50px; }

  .blockquoteBlock {
    margin-top: 50px;
    margin-bottom: 50px; }
    .blockquoteBlock br {
      display: none; }

  .right {
    float: none; }

  .note {
    margin-left: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 536px;
    width: 100%; }
    .note p {
      font-size: 16px;
      line-height: 140%; }

  .important {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 60px 50px; }

  .projectFormSection {
    padding-top: 100px;
    padding-bottom: 100px; }
    .projectFormSection .titleContainer + .contentContainer {
      margin-top: 60px; }

  .projectsSection {
    padding-top: 100px;
    padding-bottom: 40px; }
    .projectsSection .contentContainer {
      margin-top: 80px; }
    .projectsSection .simpleLink {
      margin-top: 80px;
      margin-right: auto; }
    .projectsSection.simple {
      padding-top: 100px;
      padding-bottom: 100px; }
      .projectsSection.simple .contentContainer {
        margin-top: 90px; }

  .projectsSlider .navigation {
    display: none; }
  .projectsSlider .swiper-slide {
    width: 586px; }

  .projectCard {
    max-width: 100%; }

  .withBackLink .backLink {
    bottom: calc(100% + 16px); }

  .footer {
    padding-top: 97px; }
    .footer .footerContacts {
      margin-top: 62px; }
    .footer .footerCopyright {
      margin-top: 92px; }

  .footerMenuItem + .footerMenuItem {
    margin-top: 50px; }
  .footerMenuItem:nth-child(2) {
    margin-top: 40px; }
  .footerMenuItem:nth-child(3) {
    margin-top: 25px; }
  .footerMenuItem:nth-child(4) {
    padding-bottom: 0%; }

  .footerContacts .footerContactsWrapper {
    margin-top: 60px; }
  .footerContacts .phone {
    font-size: 37px; }
  .footerContacts .address {
    margin-top: 35px;
    font-size: 16px; }

  .footerContactsWrapper .rightSide {
    padding-top: 11px; }

  .footSocList li + li {
    margin-left: 30px; }

  .footerCopyright {
    display: block; }
    .footerCopyright .payments {
      margin-top: 42px; }

  .tariffTable {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 0px; }
    .tariffTable .paramsCol {
      width: 244px;
      padding-right: 25px;
      flex-shrink: 0; }
      .tariffTable .paramsCol.sm {
        width: 244px; }
      .tariffTable .paramsCol + .tariffsSlider {
        padding-left: 0px;
        width: 464px; }
    .tariffTable .tariffsSlider {
      flex-shrink: 0; }

  .tariffsSlider {
    width: 100%; }

  .tariffTable.type .paramsCol {
    width: 244px; }
  .tariffTable.type .row {
    padding-top: 19px;
    padding-bottom: 19px; }

  .columnsBlock {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px; }
    .columnsBlock .item + .item {
      margin-top: 25px; }
    .columnsBlock .pros .title,
    .columnsBlock .cons .title {
      padding-left: 92px; }

  .faqBlock .image {
    display: none; }
  .faqBlock .wrapper {
    width: 100%; }

  .newsCard {
    max-width: 100%; }
    .newsCard.lg {
      max-width: 100%;
      padding-bottom: 0px; }
    .newsCard .title + .content {
      margin-top: 20px; }

  .articlesGrid {
    display: block; }
    .articlesGrid .item + .item {
      margin-top: 40px; }

  .desktopGallery {
    margin-top: 50px;
    margin-bottom: 35px; }
    .desktopGallery .swiper-slide {
      height: auto; }
      .desktopGallery .swiper-slide img {
        height: 100%; }
    .desktopGallery .swiper-pagination-wrap {
      display: flex;
      margin-left: calc((100vw - 708px) / -2);
      margin-right: calc((100vw - 708px) / -2);
      padding-left: calc((100vw - 708px) / 2);
      padding-right: calc((100vw - 738px) / 2);
      overflow-x: scroll;
      scrollbar-width: none; }
      .desktopGallery .swiper-pagination-wrap::-webkit-scrollbar {
        display: none; }
    .desktopGallery .swiper-pagination {
      margin-top: 25px;
      padding-left: 5px;
      justify-content: flex-start; }

  .mobileGallery {
    margin-top: 50px;
    margin-bottom: 35px; }
    .mobileGallery .swiper-pagination-wrap {
      display: flex;
      margin-left: calc((100vw - 708px) / -2);
      margin-right: calc((100vw - 708px) / -2);
      padding-left: calc((100vw - 708px) / 2);
      padding-right: calc((100vw - 738px) / 2);
      overflow-x: scroll;
      scrollbar-width: none; }
      .mobileGallery .swiper-pagination-wrap::-webkit-scrollbar {
        display: none; }
    .mobileGallery .swiper-pagination {
      margin-top: 25px;
      padding-left: 5px;
      justify-content: flex-start; } }
@media (min-width: 768px) {
  .footerMenuList {
    display: block !important; } }
@media (max-width: 767px) {
  .container {
    max-width: 480px;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px; }

  .siteSection {
    padding-top: 70px;
    padding-bottom: 70px; }
    .siteSection .titleContainer + .contentContainer {
      margin-top: 60px; }

  .backSection {
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden; }
    .backSection .titleContainer + .contentContainer {
      margin-top: 60px; }

  .header .contactWrapper {
    display: none; }
  .header .linksWrapper {
    margin-left: 0px; }
  .header .openMobileMenu {
    margin-left: 20px; }
  .header .rightSide {
    width: auto; }

  .mobileMenu .inner {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    width: 100%;
    height: 100%;
    padding-top: 28px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px; }
  .mobileMenu nav {
    margin-bottom: auto; }

  .siteMenuList {
    width: 100%; }
    .siteMenuList > li + li {
      margin-top: 30px !important; }

  .mobileContacts {
    display: block;
    margin-top: 54px;
    padding-bottom: 50px;
    text-align: center; }

  .closeDropdownMenu {
    display: block;
    width: 32px;
    margin-bottom: 30px;
    font-size: 32px;
    cursor: pointer; }

  .dropdownMenu {
    display: block !important;
    position: fixed;
    left: 100%;
    top: 84px;
    right: auto;
    width: 100%;
    height: calc(100vh - 84px);
    background-color: white;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
    overflow-y: scroll;
    z-index: 7; } }
  @media (max-width: 767px) and (min-width: 768px) {
    .dropdownMenu {
      left: auto; } }
@media (max-width: 767px) {
    .dropdownMenu.active {
      left: 0px; }
    .dropdownMenu .dropdownMenuTitle {
      display: block; }
    .dropdownMenu .container {
      height: 100%;
      display: flex;
      flex-direction: column; }
    .dropdownMenu .dropdownMenuContent {
      margin-bottom: auto; }

  .dropdownMenuWrapper {
    max-width: 480px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 25px 0px; }
    .dropdownMenuWrapper .dropdownMenuTitle + .dropdownMenuContent {
      margin-top: 25px; }

  .innerPageWrapper {
    padding-top: 26px;
    padding-bottom: 70px; }

  .withBackLink {
    padding-top: 13px; }
    .withBackLink .backLink {
      bottom: calc(100% - 3px); }

  h1 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .firstCap {
    margin-top: 50px;
    margin-bottom: 50px; }

  h2 {
    margin-top: 50px;
    margin-bottom: 35px; }

  h3 {
    margin-top: 35px;
    margin-bottom: 30px; }

  h4 {
    margin-top: 25px;
    margin-bottom: 20px; }

  .imageBlock {
    margin-top: 50px;
    margin-bottom: 30px; }
    .imageBlock figcaption {
      margin-top: 10px; }

  .intro {
    margin-top: 30px;
    margin-bottom: 50px; }
    .intro p {
      margin: 8px 0px; }

  .info {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center; }
    .info::before, .info::after {
      width: 100%; }
    .info .title + .text {
      margin-top: 20px; }
    .info .image {
      position: static;
      margin-top: 30px;
      width: 453px; }

  .markerList,
  .numberList {
    margin-bottom: 30px;
    padding-left: 20px; }

  .main {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 40px 20px; }
    .main p {
      margin: 8px 0px;
      font-size: 18px;
      line-height: 140%; }

  .blockquoteBlock {
    padding-top: 30px;
    padding-bottom: 40px; }
    .blockquoteBlock .blockquote {
      font-size: 20px; }

  .right {
    float: none; }

  .note {
    margin-left: 0px;
    padding-left: 16px; }
    .note p {
      font-size: 16px;
      line-height: 140%; }

  .important {
    padding: 40px 30px; }
    .important p {
      font-size: 18px;
      line-height: 140%; }

  .projectFormSection {
    padding-top: 70px;
    padding-bottom: 70px; }
    .projectFormSection .titleContainer + .contentContainer {
      margin-top: 40px; }

  .projectFormSection .fieldGrid {
    display: block; }
    .projectFormSection .fieldGrid .formField + .formField {
      margin-top: 25px; }

  .projectsSection {
    padding-top: 80px;
    padding-bottom: 35px; }
    .projectsSection .contentContainer {
      margin-top: 70px; }
    .projectsSection .simpleLink {
      margin-top: 50px; }

  .projectsSlider .swiper-slide {
    width: 325px; } }
  @media (max-width: 767px) and (max-width: 374px) {
    .projectsSlider .swiper-slide {
      width: 270px; } }

@media (max-width: 767px) {
  .projectCard {
    padding: 50px 20px; }
    .projectCard [class*="icon"] {
      right: 20px;
      bottom: 20px; }

  .projectsSection.simple {
    padding-top: 70px;
    padding-bottom: 70px; }
    .projectsSection.simple .contentContainer {
      margin-top: 30px; }

  .footer {
    padding-top: 68px;
    padding-bottom: 40px; }
    .footer .footerContacts {
      margin-top: 60px; }
    .footer .footerCopyright {
      margin-top: 60px; }

  .footerMenu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column; }

  .footerMenuItem .title {
    position: relative;
    font-size: 24px; }
    .footerMenuItem .title + .footerMenuList {
      margin-top: 20px; }
  .footerMenuItem span.title {
    padding-right: 22px; }
    .footerMenuItem span.title::before {
      content: '\e901';
      display: block;
      position: absolute;
      font-family: "icomoon";
      font-size: 10px;
      font-weight: normal;
      top: 2px;
      right: 0px;
      color: white;
      -webkit-transition: transform 0.3s;
      -moz-transition: transform 0.3s;
      -o-transition: transform 0.3s;
      transition: transform 0.3s; }
    .footerMenuItem span.title.active::before {
      -moz-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
      -webkit-transform: scale(-1, -1);
      -o-transform: scale(-1, -1);
      transform: scale(-1, -1); }
  .footerMenuItem + .footerMenuItem {
    margin-top: 30px !important; }
  .footerMenuItem:nth-child(2) {
    order: 1; }
  .footerMenuItem:nth-child(3) {
    order: 2; }

  .footerMenuList {
    display: none; }

  .footerContacts .footerContactsWrapper {
    margin-top: 50px; }
  .footerContacts .phone {
    font-size: 30px;
    white-space: nowrap; }
  .footerContacts .address {
    margin-top: 20px;
    font-size: 14px; }

  .footerContactsWrapper {
    display: block; }
    .footerContactsWrapper .rightSide {
      margin-top: 50px;
      padding-top: 0px; }

  .footSocList {
    justify-content: flex-start; }

  .footerCopyright .payments {
    margin-top: 15px; }

  .payments {
    margin-left: -10px;
    margin-top: -17px;
    margin-right: -32%;
    margin-bottom: -17px;
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -webkit-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    flex-wrap: wrap; }
    .payments li {
      padding: 17px 15px; }
      .payments li img {
        display: block;
        width: 100%; }
      .payments li + li {
        margin-left: 0px; }

  .tariffTable {
    margin-top: 40px;
    margin-bottom: 40px; }
    .tariffTable .paramsCol {
      display: none; }

  .tariffsSlider {
    width: 100% !important; }
    .tariffsSlider .swiper-wrapper {
      align-items: flex-start; }
    .tariffsSlider .swiper-slide {
      max-width: 325px;
      width: 100%; }

  .tariffSlide {
    max-width: 325px;
    width: 100%;
    height: 100%; }

  .tariffCard {
    max-width: 325px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; }
    .tariffCard .name {
      height: 71px;
      padding: 15px; }
    .tariffCard .info {
      height: 163px;
      padding-left: 15px;
      padding-right: 15px; }
    .tariffCard .hidden {
      display: none; }
    .tariffCard .hiddenControl {
      padding-top: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 67px;
      border-top: 1px solid #EDEDED; }
      .tariffCard .hiddenControl [class*="icon"] {
        font-size: 17px;
        display: block;
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s; }
      .tariffCard .hiddenControl.active [class*="icon"] {
        -moz-transform: scale(-1, -1);
        -ms-transform: scale(-1, -1);
        -webkit-transform: scale(-1, -1);
        -o-transform: scale(-1, -1);
        transform: scale(-1, -1); }
    .tariffCard .dataWrapper {
      padding-left: 15px;
      padding-right: 15px;
      flex-grow: 1; }
      .tariffCard .dataWrapper .row {
        height: auto !important;
        display: flex;
        justify-content: space-between;
        align-items: center; }
    .tariffCard .param {
      display: block;
      margin-right: 20px;
      max-width: 194px; }

  .tariffCard.type4 .name {
    padding: 20px;
    height: 103px; }
  .tariffCard.type4 .param {
    max-width: unset; }
  .tariffCard.type4 .dataWrapper {
    padding-bottom: 10px; }
    .tariffCard.type4 .dataWrapper .row {
      height: auto !important;
      min-height: unset;
      padding-top: 12px;
      padding-bottom: 13px;
      flex-direction: column;
      justify-content: flex-start;
      text-align: center; }
    .tariffCard.type4 .dataWrapper .data {
      margin-top: 7px; }
    .tariffCard.type4 .dataWrapper .price {
      margin-top: -7px; }
  .tariffCard .status {
    margin: 0px 0px 10px; }
  .tariffCard .noteWrapper {
    padding-left: 15px;
    padding-top: 58px;
    padding-right: 15px; }
    .tariffCard .noteWrapper::before {
      left: 14px;
      top: 12px; }

  .columnsBlock {
    margin-top: 40px;
    margin-bottom: 40px; }
    .columnsBlock .pros .title,
    .columnsBlock .cons .title {
      padding-left: 62px; }

  .faqItem .head {
    padding: 15px 0px; }
    .faqItem .head .control {
      margin-left: 15px; }
  .faqItem .content .in {
    padding-left: 0px;
    padding-top: 5px;
    padding-right: 35px;
    padding-bottom: 25px; } }
  @media (max-width: 767px) and (max-width: 374px) {
    .faqItem .content .in {
      padding-right: 0px; } }

@media (max-width: 767px) {
  .newsCard .title + .content {
    margin-top: 22px; }

  .desktopGallery {
    margin-bottom: 30px; }
    .desktopGallery .swiper-pagination-wrap {
      margin-left: calc((100vw - 430px) / -2);
      margin-right: calc((100vw - 430px) / -2);
      padding-left: calc((100vw - 430px) / 2);
      padding-right: calc((100vw - 430px) / 2); } }
    @media (max-width: 767px) and (max-width: 479px) {
      .desktopGallery .swiper-pagination-wrap {
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px; } }
@media (max-width: 767px) {
    .desktopGallery .swiper-pagination {
      margin-top: 20px;
      padding-left: 0px; }
      .desktopGallery .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-left: 20px; }

  .mobileGallery .image {
    max-width: 280px;
    width: 100%;
    height: 510px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px; }
    .mobileGallery .image img {
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      border-radius: 30px; }
  .mobileGallery .swiper-pagination-wrap {
    margin-left: calc((100vw - 430px) / -2);
    margin-right: calc((100vw - 430px) / -2);
    padding-left: calc((100vw - 430px) / 2);
    padding-right: calc((100vw - 430px) / 2); } }
  @media (max-width: 767px) and (max-width: 479px) {
    .mobileGallery .swiper-pagination-wrap {
      margin-left: -25px;
      margin-right: -25px;
      padding-left: 25px;
      padding-right: 25px; } }
@media (max-width: 767px) {
  .mobileGallery .swiper-pagination {
    margin-top: 20px;
    padding-left: 0px; }
    .mobileGallery .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
      margin-left: 20px; } }
@media (max-width: 374px) {
  .headerLinks li + li {
    margin-left: 15px; }

  .header .openMobileMenu {
    margin-left: 10px; }

  .openMobileMenu {
    width: 44px;
    padding: 6px 10px 6px;
    font-size: 22px; }

  .dataCard .itemLine .itemAction {
    width: 100%; }

  .searchWrapper .button {
    min-width: 0px;
    width: calc(100% - 44px - 10px); }
    .searchWrapper .button [class*="btn"] {
      min-width: 0px; }
  .searchWrapper [class*="btn"] {
    padding-left: 25px;
    padding-right: 25px; }
  .searchWrapper.complex .field input {
    padding-right: 21px;
    padding-left: 21px; }
  .searchWrapper.complex.active .field input {
    padding-right: 15px;
    padding-left: 15px; }
  .searchWrapper.active .button {
    width: 44px; }
  .searchWrapper.active .field {
    width: 184px; }
  .searchWrapper.active .closeMobileInput {
    margin-left: 10px; } }

/*# sourceMappingURL=case.css.map */
