@font-face {
  font-family: "BOWLER";
  src: url("../fonts/BOWLER-Regular.woff2") format("woff2"), url("../fonts/BOWLER-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-color: #f2f5f8;
  --font-color: #000;
  --primary-color: #0075bf;
  --second-color: #d6e7f8;
  --white: #fff;
  --primary-font: "Roboto", sans-serif;
  --second-font: "BOWLER", sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Non-Standard, But More Styling-Capable Properties */
  /* Standardized Properties */
}
*::-webkit-scrollbar {
  cursor: pointer;
  width: 5px;
  background: #f5f5f5;
}
*::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--primary-color);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--primary-color) var(--bg-color);
    scrollbar-width: thin;
  }
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-size: 0.521vw;
}
@media screen and (max-width: 1439.98px) {
  body,
  html {
    font-size: 0.5435vw;
  }
}
@media screen and (max-width: 1169.98px) {
  body,
  html {
    font-size: 0.65vw;
  }
}
@media screen and (max-width: 991.98px) {
  body,
  html {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 767.98px) {
  body,
  html {
    font-size: 1.55vw;
  }
}
@media screen and (max-width: 539.98px) {
  body,
  html {
    font-size: 2.67vw;
  }
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

body {
  color: var(--font-color);
  line-height: 1;
  font-family: var(--primary-font);
  background: var(--bg-color);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

input,
button,
textarea {
  outline: none;
  font-family: var(--primary-font);
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

a {
  cursor: pointer;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

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

html.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991.98px) {
  .wrapper {
    overflow: hidden;
  }
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  margin: 0 auto;
  width: 100%;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
@media (max-width: 991.98px) {
  [class*=__container] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 6rem 1.6rem;
}
@media (max-width: 991.98px) {
  section {
    padding: 2.5rem 0.4rem;
  }
}

.arrow-btn {
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 1.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .arrow-btn:hover {
    background-color: #f2f5f8;
  }
}
.arrow-btn svg {
  width: 2.4rem;
  height: 2.4rem;
}

h1 {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 7rem;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 6rem;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h3 {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 160%;
  }
}

h4 {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 105%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 130%;
}

h6 {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  text-transform: uppercase;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 160%;
}
@media (max-width: 991.98px) {
  p {
    font-size: 1.6rem;
  }
}

.characteristic-list li {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 125%;
  color: #1a1a1f;
}
.characteristic-list li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.characteristic-list li .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.characteristic-list li .th {
  color: #7b7b7b;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.characteristic-list li .th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed #d4dbe8;
}
.characteristic-list li .th span {
  position: relative;
  top: 0.2rem;
  background: var(--white);
  z-index: 1;
  padding-right: 0.8rem;
}
.characteristic-list li .td {
  text-align: right;
  padding-left: 0.8rem;
}

.rs-btn {
  text-transform: none;
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 10;
  gap: 1rem;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  text-transform: uppercase;
  padding: 1.6rem 4.35rem;
  border-radius: 0.8rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.rs-btn._btn-gray-primary {
  background-color: #f2f5f8;
  color: #000;
}
@media (any-hover: hover) {
  .rs-btn._btn-gray-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
}
.rs-btn._btn-gray-second {
  background-color: #f2f5f8;
  color: #000;
}
@media (any-hover: hover) {
  .rs-btn._btn-gray-second:hover {
    background-color: var(--second-color);
  }
}
.rs-btn._btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}
@media (any-hover: hover) {
  .rs-btn._btn-primary:hover {
    background-color: #f2f5f8;
    color: #000;
  }
}
.rs-btn._btn-second {
  background-color: var(--second-color);
  color: #000;
}
@media (any-hover: hover) {
  .rs-btn._btn-second:hover {
    color: #fff;
    background-color: var(--primary-color);
  }
}
.rs-btn._btn-icon {
  padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 43.8rem;
}
.rs-btn._btn-icon .arrow-btn {
  color: #000;
}

.form {
  width: 100%;
}
.form__wrapper {
  position: relative;
}
@media (min-width: 1169.98px), (max-width: 991.98px) and (min-width: 767.98px) {
  .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form__row > * {
    margin: 0px !important;
  }
  .form__row .rs-btn {
    padding-top: 0px;
    padding-bottom: 0px;
    height: 100%;
  }
}
.form__line {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.form__agreement {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  margin-top: 10px;
}
.form__agreement a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (any-hover: hover) {
  .form__agreement a:hover {
    text-decoration: none;
  }
}
@media (max-width: 991.98px) {
  .form__button {
    width: 100%;
    margin-top: 10px;
  }
}
.form__button .rs-btn {
  width: 100%;
  white-space: nowrap;
}

.rs-input {
  outline: none;
  width: 100%;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  border-radius: 6px;
  padding: 15px 20px;
  background: #f4f7f8;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--font-color);
}
.rs-input::-webkit-input-placeholder {
  color: #6f6f6f;
}
.rs-input::-moz-placeholder {
  color: #6f6f6f;
}
.rs-input:-ms-input-placeholder {
  color: #6f6f6f;
}
.rs-input::-ms-input-placeholder {
  color: #6f6f6f;
}
.rs-input::placeholder {
  color: #6f6f6f;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-prev:active, .swiper-button-prev:focus,
.swiper-button-next:active,
.swiper-button-next:focus {
  outline: none !important;
}
.swiper-button-prev::-moz-focus-inner,
.swiper-button-next::-moz-focus-inner {
  border: 0 !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0px;
}

.swiper-pagination-bullet:active, .swiper-pagination-bullet:focus {
  outline: none !important;
}
.swiper-pagination-bullet::-moz-focus-inner {
  border: 0 !important;
}

.swiper-button-lock {
  display: none !important;
}

.swiper-pagination-lock {
  display: none !important;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.rs-breadcrumbs {
  position: relative;
  margin-bottom: 2.4rem;
}
.rs-breadcrumbs__navigation {
  position: relative;
  width: 100%;
}
.rs-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rs-breadcrumbs__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #000;
}
.rs-breadcrumbs__list li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #797979;
}
@media (any-hover: hover) {
  .rs-breadcrumbs__list li > a:hover {
    color: var(--primary-color);
  }
}
.rs-breadcrumbs__list li:not(:last-child)::after {
  content: "";
  border-radius: 50%;
  margin: 0 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--primary-color);
}

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
  gap: 1.6rem;
}
.pagging__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.4rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #fff;
  border-radius: 0.8rem;
}
.pagging__arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagging__arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}
.pagging__arrow svg *[fill] {
  fill: currentColor;
}
.pagging__arrow svg *[stroke] {
  stroke: currentColor;
}
@media (any-hover: hover) {
  .pagging__arrow:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
}
.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
.pagging__item, .pagging__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 991.98px) {
  .pagging__item, .pagging__more {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .pagging__item:hover, .pagging__more:hover {
    color: var(--primary-color);
  }
}
.pagging__item._active, .pagging__more._active {
  color: var(--primary-color);
}

.popup-show .popup::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 45px 16px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999999;
}
@media (min-width: 991.98px) {
  .lock .popup {
    padding-right: 21px;
  }
}
.popup::after {
  content: "";
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(86, 89, 115, 0.3);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: -1;
}

.popup_show {
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  width: 46px;
  height: 46px;
  background-color: #f2f4f9;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .popup__close {
    top: 13px;
    height: 13px;
  }
}
@media (max-width: 767.98px) {
  .popup__close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991.98px) {
  .popup__content {
    max-width: 538px;
    padding: 36px;
  }
}
@media (max-width: 767.98px) {
  .popup__content {
    padding: 25px;
    max-width: 343px;
  }
}
.lock .popup__content {
  visibility: visible;
}
.popup-user-agreement .popup__content {
  max-width: 800px;
}

.popup__text h3,
.popup__text p {
  text-align: center;
}
.popup__text .form {
  margin-top: 15px;
}
.popup__text .form__agreement {
  text-align: center;
  margin: 10px 0px;
}

.popup__body {
  margin-top: 20px;
}
.popup__body p,
.popup__body ul {
  text-align: left;
  margin: 10px 0px;
}
.popup__body > *:first-child {
  margin-top: 0px !important;
}
.popup__body > *:last-child {
  margin-bottom: 0px !important;
}