@charset "UTF-8";

@font-face {
  font-family: "Calibri";
  src: local("Calibri Light"),
  local("Calibri-Light"),
  url("../fonts/Calibri-Light.woff2") format("woff2"),
  url("../fonts/Calibri-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: local("Calibri Light Italic"),
       local("Calibri-LIghtItalic"),
       url("../fonts/Calibri-LightItalic.woff2") format("woff2"),
       url("../fonts/Calibri-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: local("Calibri"),
       url("../fonts/Calibri.woff2") format("woff2"),
       url("../fonts/Calibri.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: local("Calibri Italic"),
       local("Calibri-Italic"),
       url("../fonts/Calibri-Italic.woff2") format("woff2"),
       url("../fonts/Calibri-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: local("Calibri Bold"),
       local("Calibri-Bold"),
       url("../fonts/Calibri-Bold.woff2") format("woff2"),
       url("../fonts/Calibri-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: local("Calibri Bold Italic"),
       local("Calibri-BoldItalic"),
       url("../fonts/Calibri-BoldItalic.woff2") format("woff2"),
       url("../fonts/Calibri-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root,
[data-theme="main"] {
  --color-primary: #224e6b;
  --color-secondary: #ef6b23;
}

[data-theme="alternative"] {
  --color-secondary: #ba0c2f;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: "Calibri", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
a:visited {
  color: #008bbf;
  transition: color 0.15s ease-in-out;
}

a:hover,
a:visited:hover {
  color: #000000;
}

.container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-header {
  position: relative;
  background-color: #ffffff;
  transition: box-shadow 0.15s ease-in-out;
}

.page-header::before {
  content: 'riverbp';
  display: block;
  position: absolute;
  bottom: -15px;
  left: 20px;
  padding: 0.2em 0.7em;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  background-color: var(--color-primary);
  border: 2px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.17);
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.page-header_fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.page-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page__content {
  flex-grow: 1;
}

.btn {
  display: inline-block;
  padding: 0.4em 1em;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000 !important;
  background-color: #ffffff;
  border: 2px solid var(--color-secondary);
  border-radius: 25px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn:hover {
  color: #ffffff !important;
  background-color: var(--color-secondary);
}

.btn_orange {
  color: #ffffff !important;
  background-color: #ef6b23;
  border-radius: 25px;
}

.btn_orange:hover {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn_blue {
  color: #ffffff !important;
  background-color: #00adef;
  border-color: #00adef;
}

.btn_blue:hover {
  color: #ffffff !important;
  background-color: #00adef;
}

.btn_download {
  width: 40px;
  height: 40px;
  padding: 0;
  text-indent: -9999px;
  background-size: 24px 24px;
  background-image: url(../img/download.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.btn_subscribe {
  background-color: var(--color-secondary);
}

@media (min-width: 576px) {
  .btn_download {
    width: auto;
    height: auto;
    padding: 0.4em 1em 0.4em 30px;
    text-indent: 0;
    background-size: 17px 17px;
    background-position: 10% center;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 80%;
  }
}

@media (min-width: 1250px) {
  body {
    font-size: 18px;
  }

  .page-header__container {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container {
    max-width: 1366px;
  }
}

@media (min-width: 1600px) {
  .page-header_fixed::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-header,
  .page-header::before,
  .btn {
    transition: none;
  }
}

.logo {
  flex-shrink: 0;
  display: inline-block;
  padding: 9px 36px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--color-primary);
  border: 3px solid #ffffff;
  border-radius: 48px;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.25);
}

.logo_sm {
  padding: 3px 14px;
  font-size: 22px;
  border-width: 1px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .logo_sm {
    padding: 5px 21px;
    font-size: 18px;
    border-radius: 15px;
    border-width: 2px;
  }
}

@media (min-width: 1250px) {
  .logo_sm {
    display: none;
  }
}

.header-search {
  font-size: 22px;
}

.header-search__container {
  position: relative;
  display: flex;
  height: 30px;
  cursor: pointer;
}

.header-search__input {
  position: absolute;
  top: 0;
  right: 36px;
  bottom: 0;
  width: 150px;
  background: white;
  border: 1px solid #999999;
  border-right: none;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 7px 12px;
  padding-right: 0;
  font-family: inherit;
  font-size: 12px;
  color: var(--color-primary);
  transition: border-color 0.15s ease-in-out, transform 0.15s linear;
  transform: scaleX(0);
  transform-origin: 100% 50%;
}

.header-search__input:focus {
  outline: none;
}

.header-search__input:focus,
.header-search__input:focus + .header-search__button {
  border-color: var(--color-secondary);
}

.header-search__input::placeholder {
  color: var(--color-primary);
}

.header-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  font-size: 1em;
  color: var(--color-secondary);
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.header-search__button:hover {
  color: var(--color-primary);
}

.header-search__container_active .header-search__input {
  transform: scaleX(1);
}

.header-search__container_active .header-search__button {
  border: 1px solid #999999;
  border-left: none;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

@media (min-width: 550px) {
  .header-search {
    display: block;
    width: 270px;
  }

  .header-search__container {
    width: 100%;
  }

  .header-search__input {
    position: static;
    width: auto;
    transform: scaleX(1);
  }

  .header-search__button {
    display: flex;
    align-items: center;
    width: auto;
    padding-right: 10px;
    padding-left: 10px;
    border: 1px solid #999999;
    border-left: none;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

@media (min-width: 1250px) {
  .header-search {
    order: 10;
    flex: 170px 0 1;
  }

  .header-search__input {
    font-size: 16px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
  }

  .header-search__button {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-search__input,
  .header-search__button {
    transition: none;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 240px;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  opacity: 0.5;
}

.hero__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 48px;
}

.hero__info {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  color: #ffffff;
}

.hero__title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 80%;
}

.hero__text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-style: italic;
  line-height: 15px;
}

.hero__socials {
  font-size: 32px;
  color: #ffffff;
}

.hero__socials .socials {
  justify-content: flex-end;
}

@media (min-widtH: 576px) {
  .hero__menu {
    display: flex;
  }
}

@media (min-width: 768px) {
  .hero {
    height: 500px;
  }

  .hero__info {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero__title {
    font-size: 42px;
    line-height: 85%;
  }

  .hero__text {
    font-size: 20px;
    line-height: 19px;
  }
}

@media (min-width: 1250px) {
  .hero {
    height: 700px;
  }

  .hero__container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .hero__title {
    font-size: 60px;
    line-height: normal;
  }

  .hero__text {
    font-size: 24px;
    line-height: 1.5;
  }
}

.page-header__socials,
.hero__socials {
  display: none;
}

.page-footer {
  padding-top: 45px;
  padding-bottom: 45px;
  color: #ffffff;
  background-color: #066C97;
}

.page-footer a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}

.page-footer a:hover {
  color: var(--color-secondary);
}

.btn_subscribe {
  font-size: 18px;
  padding: 0.7em 1.5em;
}

.page-footer .contact_item a {
  text-decoration: none;
}

.page-footer .container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  text-align: center;
}

.footer-map {
  margin-bottom: 21px;
}

.page-footer .btn_subscribe {
  margin-bottom: 10px;
}

.page-footer .contact_item {
  margin-top: 35px;
}

.page-footer .copy {
  margin-top: 64px;
}

.page-footer .madeby {
  margin-top: 24px;
}

.page-footer .madeby a {
  text-decoration: none;
  color: var(--color-secondary);
}

.page-footer .madeby a:hover {
  text-decoration: underline;
}

.page-footer .contact_item {
  padding-top: 65px;
  background-position-x: center;
  background-position-y: top;
  background-repeat: no-repeat;
}

.page-footer .contact_item:nth-of-type(2) {
  background-image: url(../img/contacts/phone_f.png);
}

.page-footer .contact_item:nth-of-type(3) {
  background-image: url(../img/contacts/map_f.png);
}

.page-footer .contact_item:nth-of-type(4) {
  background-image: url(../img/contacts/mail_f.png);
}

.page-footer .copy,
.page-footer .madeby {
  color: #a1cdea;
}

@media (min-width: 768px) {
  .page-header__socials {
    display: block;
    color: #999999;
    font-size: 25px;
  }

  .page-footer .container {
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(4, max-content);
    font-size: 16px;
  }

  .page-footer .container .footer-map {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-footer .container .subscribe-btn {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
    text-align: right;
  }

  .page-footer .contact_item:nth-of-type(2) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .page-footer .contact_item:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .page-footer .contact_item:nth-of-type(4) {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .page-footer .container .copy {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
  }

  .page-footer .container .madeby {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 4;
    grid-row-end: 5;
  }
}

@media (min-width: 992px) {
  .page-footer .container {
    font-size: 18px;
  }

  .page-footer .container .copy {
    grid-column-end: 3;
    text-align: left;
  }

  .page-footer .container .madeby {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
    margin-top: 64px;
    text-align: right;
  }
}

@media (min-width: 1072px) {
  .page-footer .container .subscribe-btn {
    grid-column-end: 3;
    text-align: center;
  }
}

@media (min-width: 1250px) {
  .page-header__socials {
    display: none;
  }

  .hero__socials {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-footer a,
  a,
  a:visited {
    transition: none;
  }
}

.inner-hero {
  position: relative;
}

.inner-hero__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
}

.inner-hero .container {
  padding-right: 15px;
  padding-left: 15px;

}

.inner-hero .hero__socials {
  font-size: 20px;
}

.inner-hero__info {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.inner-hero__title {
  font-size: 24px;
  line-height: 85%;
}

.inner-hero__text {
  font-size: 12px;
  font-style: italic;
  line-height: 15px;
}

@media (min-width: 576px) {
  .inner-hero__content {
    display: block;
  }

  .inner-hero__title {
    font-size: 32px;
  }

  .inner-hero__text {
    font-size: 16px;
  }

  .inner-hero .hero__menu {
    margin-top: 32px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .inner-hero__title {
    font-size: 40px;
  }

  .inner-hero__text {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (min-width: 1250px) {
  .inner-hero__title {
    line-height: 1.5;
  }
}

.page-layout__header {
  display: flex;
  background-color: #f2f2f2;
}

.page-layout__title.view-not-page-title{
  display: none;
}

.page-layout__title {
  align-self: center;
  margin-top: 0;
  margin-bottom: 0;
  //padding-right: 15px;
  //padding-left: 15px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0b304d;
}

[data-theme="alternative"] .page-layout__title {
  color: var(--color-primary);
}

.page-layout__content {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page-layout__content .page-layout__title {
  //display: none;
}

.page-layout__info {
  flex-grow: 10;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .page-layout__info {
    padding-right: 0;
    padding-left: 0;
  }
}

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

.page-layout__header_fixed {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 9998;
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.17);
}

@media (min-width: 992px) {
  .page-layout__header {
    display: none;
  }

  .page-layout__content .container {
    display: flex;
  }

  .page-layout__content .container .section-menu {
    flex: 250px 1 1;
  }

  .page-layout__content .page-layout__title {
    display: block;
    margin-bottom: 21px;
    padding-left: 0;
    font-size: 32px;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.video-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
