html,
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #454d57;
  font-family: "Rubik", sans-serif;
}

div {
  box-sizing: border-box;
}

p {
  margin: 0 0 16px 0;
  font-size: 1rem;
  line-height: 1.625rem;
}
p:last-child {
  margin-bottom: 0;
}

img {
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
ul li a {
  color: #454d57;
  text-decoration: none;
}

input {
  box-sizing: border-box;
}

.content-holder {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  background: #f9fbff;
}

.block {
  display: block;
}

.orange {
  color: #ff8c00;
}

.blue {
  color: #0074ff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  overflow: hidden;
  transition: ease-in-out 0.3s;
  border-radius: 25px;
  background: #0074ff;
  color: #fff !important;
  font-size: 16px;
  text-decoration: none !important;
  text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:focus {
  background: #d54b07;
  text-decoration: none;
}

.bx-controls-direction .bx-prev,
.bx-controls-direction .bx-next {
  background-image: url("./images/slider-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.bx-controls-direction .bx-prev {
  transform: rotate(180deg);
}

.page-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
}
@media (min-width: 576px) {
  .page-pagination {
    justify-content: start;
  }
}
.page-pagination a {
  color: #0074ff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  justify-content: center;
  font-weight: 500;
  transition: ease-in-out 0.1s;
  text-decoration: none;
  line-height: 1;
}
@media (min-width: 576px) {
  .page-pagination a {
    padding: 4px;
  }
}
.page-pagination a:hover, .page-pagination a:focus {
  color: #1283ac;
  background: #f3f3f3;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #d9d9d9;
}
.page-pagination a:first-child {
  margin-left: 0;
  width: auto;
}
.page-pagination a:last-child {
  width: auto;
}
.page-pagination a.active {
  font-weight: 600;
  color: #fff;
  background: #0074ff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #0074ff;
}
.page-pagination a.active:hover {
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #0074ff;
}

.rich-text-content h1 {
  margin: 30px 0;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
}
.rich-text-content p {
  margin-bottom: 16px;
}
.rich-text-content p:last-of-type {
  margin-bottom: 0;
}
.rich-text-content ul,
.rich-text-content ol {
  margin: 1rem 0;
  padding-left: 1.75rem;
}
.rich-text-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.rich-text-content ul {
  list-style-type: disc;
}
.rich-text-content ul li {
  list-style: disc;
}
.rich-text-content ul li ul li {
  list-style: circle;
}
.rich-text-content ul li::marker {
  color: var(--rt-accent);
  font-size: 1rem;
}
.rich-text-content ol {
  list-style: decimal;
}
.rich-text-content ol li::marker {
  font-weight: 600;
  color: var(--rt-accent);
}
.rich-text-content ul ul,
.rich-text-content ol ul {
  list-style-type: circle;
  margin-top: 0.5rem;
}
.rich-text-content ol ol,
.rich-text-content ul ol {
  list-style: lower-alpha;
  margin-top: 0.5rem;
}
.rich-text-content ul ul ul {
  list-style: square;
}
.rich-text-content ol ol ol {
  list-style: lower-roman;
}

html,
body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}

.header {
  width: calc(100% + 16px);
  margin-left: -16px;
  padding: 0 8px;
  overflow: hidden;
  background: #ecf1f8;
}
.header__holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 8px;
}
@media (max-width: 991px) {
  .header__holder {
    padding: 8px;
  }
}
@media (max-width: 575px) {
  .header__holder {
    padding-right: 0;
    padding-left: 0;
  }
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media (max-width: 575px) {
  .header__logo {
    gap: 16px;
  }
}
.header__logo a {
  display: block;
}
.header__logo a.secondary-logo img {
  filter: grayscale(1);
  transform: scale(1.1);
}
.header__logo a.secondary-logo:hover img {
  filter: grayscale(0);
  transform: scale(1.2);
}
.header__logo img {
  max-width: 130px;
  transition: ease-in-out 0.3s;
}
@media (max-width: 1199px) {
  .header__logo img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    max-width: 80px;
  }
}
.header__nav {
  display: flex;
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
}
.header__nav ul li {
  margin-right: 4px;
}
@media (max-width: 991px) {
  .header__nav ul li {
    border-radius: 50px;
    color: #fff;
  }
}
.header__nav ul li a {
  display: inline-block;
  padding: 14px;
  transition: ease-in-out 0.3s;
  border-radius: 24px;
  font-size: 18px;
  text-align: center;
}
.header__nav ul li a:hover, .header__nav ul li a:focus {
  color: #0074ff;
  box-shadow: inset 0px 0px 1px 1px #0074ff;
}
@media (max-width: 1199px) {
  .header__nav ul li a {
    font-size: 14px;
  }
}
.header__nav ul li.active a {
  color: #0074ff;
  box-shadow: inset 0px 0px 1px 1px #0074ff;
}
.header__nav ul li.download-app {
  margin-right: 0;
}
.header__nav ul li.download-app a {
  width: 110px;
  margin-right: 0;
  margin-left: 14px;
  background: #ff8c00;
  color: #fff;
}
@media (max-width: 991px) {
  .header__nav ul li.download-app a {
    width: 82px;
  }
}
.header__nav ul li.download-app--desktop a:hover, .header__nav ul li.download-app--desktop a:focus, .header__nav ul li.download-app--mobile a:hover, .header__nav ul li.download-app--mobile a:focus {
  background: #d54b07;
  box-shadow: none;
}
@media (max-width: 991px) {
  .header__desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff8c00;
  }
}
.header__mob-nav {
  display: none;
}
@media (max-width: 991px) {
  .header__mob-nav {
    display: flex;
  }
}
.header__mob-nav ul.mobile-nav {
  display: flex;
  align-items: center;
}
.header__mob-nav ul.mobile-nav li.download-app a {
  margin-left: 0;
  padding: 8px 24px;
}
@media (max-width: 575px) {
  .header__mob-nav ul.mobile-nav li.download-app a {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 991px) {
  .header__mob-nav ul.mobile-nav li.download-app {
    padding: 8px 12px;
  }
}
@media (max-width: 575px) {
  .header__mob-nav ul.mobile-nav li.download-app {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.header__mob-nav ul.mobile-nav li.mobile-nav-icon {
  margin-right: 0;
  border: none !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .header__mob-nav ul.mobile-nav li.mobile-nav-icon {
    padding-right: 0;
    padding-left: 0;
  }
}
.header__mob-nav ul.mobile-nav li.mobile-nav-icon a:hover, .header__mob-nav ul.mobile-nav li.mobile-nav-icon a:focus {
  box-shadow: none;
}
.header__mob-nav ul.mobile-nav li.mobile-nav-icon img {
  width: 24px;
}
.header__mob-nav__holder {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 8px 16px 8px 8px;
  overflow-y: auto;
  background: #0074ff;
}
.header__mob-nav__holder .header__mobile-logo {
  display: flex;
  flex: 1 0 70%;
  flex-direction: row;
  align-items: center;
  height: 50px;
  gap: 16px;
}
.header__mob-nav__holder .header__mobile-logo img {
  max-width: 100px;
}
.header__mob-nav__holder .header__mobile-close {
  display: flex;
  flex: 1 0 30%;
  justify-content: flex-end;
}
.header__mob-nav__holder .header__mobile-close img {
  max-width: 20px;
  height: 20px;
  margin: 16px 12px 0 0;
}
.header__mob-nav__holder ul {
  flex: 1 0 100%;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.header__mob-nav__holder ul li {
  margin-bottom: 32px;
}
.header__mob-nav__holder ul li.active a {
  padding-right: 40px;
  padding-left: 40px;
  border-radius: 50px;
  color: #fff;
  box-shadow: inset 0px 0px 1px 2px #fff;
}
.header__mob-nav__holder ul li.download-app {
  margin-right: 0;
}
.header__mob-nav__holder ul li.download-app a {
  margin-left: 0;
  background: #fff;
  color: #0074ff;
  font-size: 18px;
}
.header__mob-nav__holder ul li.download-app a:hover, .header__mob-nav__holder ul li.download-app a:focus {
  color: #ff8c00;
}
.header__mob-nav__holder ul li a {
  color: #fff;
  font-size: 24px;
}
.header__mob-nav__holder ul li a:hover, .header__mob-nav__holder ul li a:focus {
  padding-right: 40px;
  padding-left: 40px;
  border-radius: 50px;
  color: #fff;
  box-shadow: inset 0px 0px 1px 2px #fff;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 48px 0;
  }
}
.footer__seo {
  max-width: 1080px;
  padding-bottom: 100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__seo {
    padding-bottom: 48px;
  }
}
.footer__title {
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 22px;
    line-height: 30px;
  }
  .footer__title span {
    display: block;
  }
}
.footer__members {
  display: flex;
  margin-bottom: 40px;
}
.footer__members a:hover img, .footer__members a:focus img {
  transform: scale(0.9);
}
.footer__members img {
  width: 100%;
  max-width: 50px;
  margin: 0 8px;
  transition: ease-in-out 0.3s;
}
@media (max-width: 767px) {
  .footer__members img {
    max-width: 34px;
  }
}
.footer__follow img {
  max-width: 40px;
}
@media (max-width: 767px) {
  .footer__follow img {
    max-width: 30px;
  }
}
.footer__email {
  margin-bottom: 40px;
}
.footer__email a {
  text-decoration: none;
}
.footer__email a img {
  max-width: 160px;
}
.footer__copyright {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
.footer__copyright span {
  display: block;
}