@charset "UTF-8";
:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans/OpenSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: light;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: semibold;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: bold;
}
@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
}
@media (min-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
}
@media (min-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
}
@media (min-width: 1200px) {
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
}
@media (min-width: 1400px) {
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
}
.navbar-main {
  background-color: rgb(255, 255, 255);
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-main .navbar-text {
    font-size: 1rem !important;
  }
}
.navbar-main .nav-link {
  padding: 1rem;
  white-space: nowrap;
  color: #0462B1 !important;
}
@media (min-width: 992px) and (max-width: 1600px) {
  .navbar-main .nav-link {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 991px) {
  .navbar-main .nav-link {
    text-align: center;
  }
}
.navbar-main .nav-link:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1 !important;
}
@media (max-width: 374px) {
  .navbar-main .nav-link {
    font-size: smaller;
  }
}
.navbar-main .nav-link.active {
  font-weight: 600;
}
.navbar-main .nav-link:not(.active) {
  opacity: 0.8;
}
.navbar-main .nav-link-enter {
  font-size: 1.7rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .navbar-main .nav-link-enter {
    font-size: 1rem;
    padding: 1rem;
  }
}

header {
  border-bottom: 1px solid #dee2e6;
  background-image: url(../img/bg-header.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .header-main h1 {
    font-size: 1.25rem;
  }
}
@media (max-width: 374px) {
  .header-main h1 {
    font-size: 1.1rem;
  }
}

footer {
  background-color: #333333;
}
footer .nav-link {
  color: #A9B0C3;
}
footer .nav-link:hover {
  color: #fff;
}
@media (max-width: 767px) {
  footer .nav-link {
    font-size: 0.9rem;
  }
}
footer p {
  text-transform: uppercase;
  color: #f8f9fa;
}

.btn-up {
  /* фиксированное позиционирование */
  position: fixed;
  /* цвет фона */
  /* расстояние от правого края окна браузера */
  right: 20px;
  /* расстояние от нижнего края окна браузера */
  bottom: 20px;
  /* скругление верхнего левого угла */
  /* скругление верхнего правого угла */
  /* вид курсора */
  cursor: pointer;
  /* отображение элемента как flex */
  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;
  /* ширина элемента */
  /* высота элемента */
  border-radius: 50%;
  width: 40px;
  background-color: #343A40;
  height: 40px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
  border: 2px solid #fff;
  outline: 0 !important;
}

.btn-up::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.btn-up_hide {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    opacity: 1;
  }
}
html,
body {
  height: 100%;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-family: "Montserrat", sans-serif;
}

.fw-light {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.fw-normal {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.fw-semibold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.fw-semibold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  height: 100% !important;
}
.wrapper header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.wrapper main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.wrapper footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media (min-width: 1921px) {
  .container-main {
    max-width: 1920px;
  }
}

a,
a.btn-link {
  color: #0462B1;
  text-decoration: none;
}
a:hover,
a.btn-link:hover {
  opacity: 0.8;
}

a.btn-primary {
  color: #fff;
}

.pagination {
  --bs-pagination-active-bg: #0462B1;
}

.btn-primary {
  --bs-btn-bg: #0462B1;
  --bs-btn-border-color: #0462B1;
  --bs-btn-hover-bg: #0462B1;
  --bs-btn-disabled-bg: #0462B1;
  --bs-btn-disabled-border-color: #0462B1;
}

.btn-outline-primary {
  --bs-btn-color: #0462B1;
  --bs-btn-border-color: #0462B1;
  --bs-btn-hover-bg: #0462B1;
  --bs-btn-hover-border-color: #0462B1;
  --bs-btn-active-bg: #0462B1;
  --bs-btn-active-border-color: #0462B1;
  --bs-btn-disabled-color: #0462B1;
}

.btn-orange {
  --bs-btn-color: #212529 !important;
  --bs-btn-bg: #fd9843;
  --bs-btn-border-color: #fd9843;
  --bs-btn-hover-color: #212529;
  --bs-btn-hover-bg: #fd7e14;
  --bs-btn-hover-border-color: #fd7e14;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #212529;
  --bs-btn-active-bg: #fd7e14;
  --bs-btn-active-border-color: #fd7e14;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: #fd9843;
  --bs-btn-disabled-border-color: #fd9843;
}

.btn-xs {
  padding: 0.125rem 0.35rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}

.bg-orange {
  background-color: #fd9843;
}

.text-orange {
  color: #fd9843;
}

.border-orange {
  border-color: #fd9843;
}

.text-primary {
  color: #0462B1 !important;
}

.form-check-label.text-primary:hover {
  opacity: 0.8;
}

.form-switch .form-check-input:checked {
  background-color: #0462B1 !important;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0462B1;
}

.input-group.disabled .btn {
  display: none;
}
.input-group.disabled .form-control,
.input-group.disabled .form-select {
  background-color: #e9ecef;
  opacity: 1;
  pointer-events: none;
}

.bg-primary {
  background-color: #005F93;
}

.text-small {
  font-size: small;
}

.text-medium {
  font-size: medium;
}

.filter-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.filter-grayscale:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.card-main {
  height: 100%;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.card-main img {
  -webkit-filter: grayscale(75%);
  filter: grayscale(75%);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 0;
}
.card-main .card-img-top {
  -webkit-filter: none;
  filter: none;
  height: 120px !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-main:hover {
  cursor: pointer;
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}
.card-main:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.card-main .card-img-overlay {
  padding-left: 0;
}
.card-main .card-img-overlay .card-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .card-main .card-img-overlay .card-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 991px) {
  .card-main .card-img-overlay .btn-lg {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
}
.card-main .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.card-main.active img {
  -webkit-filter: none;
  filter: none;
}

.title-line {
  margin: 1rem 0;
  color: #0462B1 !important;
  border: 0;
  border-top: 3px solid;
  opacity: 1;
  width: 100px;
}

.text-justify {
  text-align: justify;
}

@media (max-width: 991px) {
  section p, section ul {
    font-size: 1rem !important;
  }
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}