@import "../node_modules/swiper/swiper-bundle.css";
@import "../node_modules/select2/dist/css/select2.min.css";
.color-base {
  /*color: #123C6A; */
  color: red;
  
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* Buzz */
@keyframes hvr-buzz {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(0px) rotate(22deg);
  }
  50% {
    transform: translateX(0px) rotate(0deg);
  }
  75% {
    transform: translateX(0px) rotate(-22deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
.animate__fadeInUpCustom {
  -webkit-animation-name: animate__fadeInUpCustom;
  animation-name: animate__fadeInUpCustom;
}

@keyframes animate__fadeInUpCustom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes floating-arrow {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  65% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.animate__delay-100ms {
  animation-delay: 0.1s;
  animation-delay: calc(var(--animate-delay) * 0.1);
}

.animate__delay-200ms {
  animation-delay: 0.2s;
  animation-delay: calc(var(--animate-delay) * 0.2);
}

.animate__delay-300ms {
  animation-delay: 0.3s;
  animation-delay: calc(var(--animate-delay) * 0.3);
}

animate__delay-400ms {
  animation-delay: 0.4s;
  animation-delay: calc(var(--animate-delay) * 0.4);
}

.animate__delay-500ms {
  animation-delay: 0.5s;
  animation-delay: calc(var(--animate-delay) * 0.5);
}

.animate__delay-600ms {
  animation-delay: 0.6s;
  animation-delay: calc(var(--animate-delay) * 0.6);
}

.animate__delay-700ms {
  animation-delay: 0.7s;
  animation-delay: calc(var(--animate-delay) * 0.7);
}

.animate__delay-800ms {
  animation-delay: 0.8s;
  animation-delay: calc(var(--animate-delay) * 0.8);
}

.animate__delay-900ms {
  animation-delay: 0.9s;
  animation-delay: calc(var(--animate-delay) * 0.9);
}

.animate__delay-1100ms {
  animation-delay: 1.1s;
  animation-delay: calc(var(--animate-delay) * 1.1);
}

.animate__delay-1200ms {
  animation-delay: 1.2s;
  animation-delay: calc(var(--animate-delay) * 1.2);
}

.animate__delay-1300ms {
  animation-delay: 1.3s;
  animation-delay: calc(var(--animate-delay) * 1.3);
}

.animate__delay-1400ms {
  animation-delay: 1.4s;
  animation-delay: calc(var(--animate-delay) * 1.4);
}

.animate__delay-1500ms {
  animation-delay: 1.5s;
  animation-delay: calc(var(--animate-delay) * 1.5);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
  }
}
.scrollbar {
  margin: 15px 0;
  width: 100%;
  height: 100%;
}
.scrollbar .simplebar-content {
  padding-right: 10px !important;
  padding-left: 0px !important;
  display: flex;
  flex-direction: column;
}
.scrollbar .simplebar-placeholder {
  width: 100% !important;
}
.scrollbar .simplebar-scrollbar {
  width: 3px;
  right: 0px;
}
.scrollbar .simplebar-scrollbar:before {
  background-color: #F99603;
  border-radius: 50px;
}
.scrollbar .simplebar-track.simplebar-vertical {
  transition: 0.5s ease-in-out height;
  background-color: #B2C8DD;
  width: 3px;
  border-radius: 0px;
}
.scrollbar .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  opacity: 1;
  top: 0px;
  bottom: 0px;
}
.scrollbar .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  display: none;
}
.scrollbar--horizontal .simplebar-content {
  padding-right: 0px !important;
}
.scrollbar--horizontal .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  display: block;
  opacity: 1;
}
.scrollbar--horizontal .simplebar-track.simplebar-horizontal {
  transition: 0.5s ease-in-out height;
  background-color: #B2C8DD;
  height: 3px;
  border-radius: 0px;
}
.scrollbar--horizontal .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 3px;
  top: 0;
  left: 0;
}
.scrollbar--horizontal .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: 0px;
  right: 0px;
}

/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  max-width: 1470px;
}

:root {
  --bs-gutter-x: 15px;
}

/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 750px;
  }
}
@media (min-width: 990px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 970px;
  }
}
@media (min-width: 1250px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1230px;
  }
}
@media (min-width: 1350px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1310px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 990px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1250px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1350px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 990px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1250px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 989.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1249.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1349.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

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

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

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

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 990px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1250px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1350px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.fancybox-container button[disabled] {
  display: none;
}
.fancybox-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.fancybox-infobar {
  display: none !important;
}

.fancybox-button--zoom {
  display: none !important;
}

.fancybox-button--play {
  display: none !important;
}

.fancybox-bg {
  background: rgba(22, 22, 22, 0.85);
}

.fancybox-slide {
  padding: 0;
}
.fancybox-slide .animated-modal {
  overflow: hidden;
  transform: translateY(-80px);
  transition: transform 0.5s ease-in-out;
}
.fancybox-slide--current .animated-modal {
  transform: translateY(0);
  opacity: 1;
  transition-duration: 0.3s;
}

.fancy-modal {
  box-shadow: none;
  width: 100%;
  max-width: 900px;
  padding: 0 40px 0 0;
  background: transparent;
}
.fancy-modal video {
  width: 1200px;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 100px);
}
.fancy-modal .fancybox-close-small {
  display: none;
}
.fancy-modal__close {
  z-index: 20;
  transition: background 0.2s ease-in-out;
  width: 40px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  top: -40px;
  right: 0px;
}
.fancy-modal__close span, .fancy-modal__close:before, .fancy-modal__close:after {
  content: "";
  height: 2px;
  width: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  background-color: #fff;
  will-change: margin, transform;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out background-color;
}
.fancy-modal__close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.fancy-modal__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fancy-modal__close:hover span, .fancy-modal__close:hover:before, .fancy-modal__close:hover:after {
  background-color: #123C6A;
}
.fancy-modal__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  padding: 55px 20px;
}
.fancy-modal form {
  width: 100%;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.fancy-modal--video {
  overflow: unset !important;
  max-width: 1140px;
  height: auto;
  max-height: calc(100vh - 100px);
}
.fancy-modal--video .fancy-modal__wrap {
  padding: 0;
}
.fancy-modal--video-link {
  height: 675px !important;
}
.fancy-modal--mini-form {
  max-width: 710px;
}
.fancy-modal--mini-form form {
  max-width: 470px;
}
.fancy-modal--success {
  max-width: 710px;
}

.fancybox-image {
  background: #fff;
}

@media (max-width: 989px) {
  .fancy-modal {
    padding: 0;
  }
  .fancy-modal--video-link {
    height: 530px !important;
  }
}
@media (max-width: 767px) {
  .fancy-modal__wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 575px) {
  .fancy-modal--video-link {
    height: 300px !important;
  }
}
#datepicker {
  display: block;
  width: 260px;
}
#datepicker .ui-datepicker .ui-datepicker-calendar {
  min-width: 100%;
}
#datepicker .ui-datepicker th {
  font-weight: 600;
  font-size: 12px;
  font-family: "Montserrat";
}
#datepicker .ui-datepicker.ui-widget {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  padding: 13px 10px;
  border: 1px solid #BBBFC1 !important;
  border-radius: 8px;
  color: #0A0A0A;
}
#datepicker .ui-datepicker .ui-datepicker-header {
  padding: 0;
}
#datepicker .ui-datepicker .ui-widget-header {
  border: none;
  color: #0A0A0A;
  font-weight: 600;
  margin-bottom: 12px;
}
#datepicker .ui-datepicker .ui-datepicker-month {
  font-family: "Montserrat";
}
#datepicker .ui-datepicker .ui-datepicker-year {
  font-family: "Montserrat";
}
#datepicker .ui-datepicker .ui-datepicker-prev {
  left: 0;
}
#datepicker .ui-datepicker .ui-datepicker-prev, #datepicker .ui-datepicker .ui-datepicker-next {
  top: 0 !important;
  width: 28px;
  height: 28px;
  background: #ECECEC;
  border-radius: 50%;
  transition: 0.2s ease-in-out background;
  cursor: pointer;
}
#datepicker .ui-datepicker .ui-datepicker-prev span, #datepicker .ui-datepicker .ui-datepicker-next span {
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#datepicker .ui-datepicker .ui-datepicker-prev:hover, #datepicker .ui-datepicker .ui-datepicker-next:hover {
  background: #e5e5e5 !important;
}
#datepicker .ui-datepicker .ui-datepicker-prev {
  right: auto !important;
  left: 0 !important;
}
#datepicker .ui-datepicker .ui-datepicker-prev span {
  background-image: url(../../img/new/ico/left.svg) !important;
}
#datepicker .ui-datepicker .ui-datepicker-next {
  right: 0 !important;
  left: auto !important;
}
#datepicker .ui-datepicker .ui-datepicker-next span {
  background-image: url(../../img/new/ico/right.svg) !important;
}
#datepicker .ui-datepicker-week-end {
  color: #FF3B30;
}
#datepicker table {
  width: 100%;
  font-size: 12px;
  margin: 0;
  border: none;
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}
#datepicker thead {
  background-color: transparent;
  font-family: "Montserrat" !important;
  border-bottom: solid #F5F5F5 1px;
}
#datepicker thead tr {
  width: 100%;
}
#datepicker thead .ui-datepicker-week-end {
  background: transparent;
}
#datepicker tbody {
  border: none;
  font-family: "Montserrat" !important;
}
#datepicker tbody tr {
  width: 100%;
}
#datepicker tbody td .ui-state-active {
  background: #123C6A !important;
  color: #fff !important;
}
#datepicker tbody td:hover {
  background-color: transparent;
}
#datepicker tbody td:hover:not(.ui-state-disabled) {
  background: #123C6A !important;
}
#datepicker tbody .ui-datepicker-week-end {
  background: transparent;
  border: none;
  color: #FF3B30;
}
#datepicker tbody .ui-datepicker-week-end:hover a {
  color: #fff;
}
#datepicker tbody .ui-datepicker-week-end a {
  color: #FF3B30;
  padding: 0;
}
#datepicker th {
  padding: 0 !important;
  width: 34px;
  height: 34px;
}
#datepicker td {
  padding: 0 !important;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.2s ease-in-out background-color, 0.1s ease-in-out color;
  width: 34px;
  height: 34px;
}
#datepicker td a {
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out background-color, 0.1s ease-in-out color;
}

@media (max-width: 1249px) {
  #datepicker {
    position: absolute;
    display: none;
  }
  #datepicker .ui-datepicker.ui-widget {
    box-shadow: 0px 5px 7px 0px rgba(129, 129, 129, 0.3098039216);
  }
}
div#wpadminbar ~ span.select2-container, body.admin-bar > span.select2-container {
  padding-top: 32px !important;
}

@media screen and (max-width: 782px) {
  div#wpadminbar ~ span.select2-container, body.admin-bar > span.select2-container {
    padding-top: 46px !important;
  }
}
.select2-container {
  position: relative;
}
.select2-container--open .select2-selection {
  border-radius: 1px !important;
  border: 1px solid #CCCCCC !important;
}
.select2-container--open .select2-selection:after {
  transform: translateY(-50%) rotate(180deg) !important;
}
.select2-container--focus .select2-selection {
  border: 1px solid #CCCCCC !important;
}
.select2-container .select2-dropdown {
  border: none;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(98, 129, 151, 0.2);
  border-radius: 1px;
  width: 276px !important;
}
.select2-container .select2-dropdown .select2-results__options {
  max-height: 345px;
  padding: 10px 0;
}
.select2-container .select2-dropdown .select2-results__option {
  position: relative;
}
.select2-container .select2-dropdown .select2-results__option.select2-results__message:after {
  display: none;
}
.select2-container .select2-dropdown .select2-results__option--selectable {
  background: transparent;
  color: #000;
  padding: 8px 10px;
  line-height: 1.2;
}
.select2-container .select2-dropdown .select2-results__option--selectable:first-letter {
  text-transform: uppercase;
}
.select2-container .select2-dropdown .select2-results__option--selected {
  background: transparent;
  color: #4E6883;
  font-weight: 600;
}
.select2-container .select2-dropdown .select2-results__option--highlighted {
  color: #4E6883;
}
.select2-container .select2-dropdown ul {
  margin: 0 !important;
}
.select2-container .select2-dropdown ul li {
  margin: 0 !important;
}
.select2-container .select2-dropdown ul li:before {
  display: none !important;
}
.select2-container .select2-selection {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 8px 40px 8px 10px;
  border-radius: 1px;
  height: 36px;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out border;
  border: 1px solid #CCCCCC;
}
.select2-container .select2-selection:after {
  display: none;
  content: "";
  transition: 0.3s ease-in-out transform, 0.3s ease-in-out opacity;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='2' stroke-linecap='round'/%3E %3C/svg%3E ");
  width: 12px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.select2-container .select2-selection .select2-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 0;
  font-weight: 400;
  color: #000;
}
.select2-container .select2-selection .select2-selection__choice {
  display: inline;
  border: none;
  background: transparent;
  border-radius: 0;
  padding-left: 0px;
}
.select2-container .select2-selection .select2-selection__choice:last-of-type .select2-selection__choice__display:after {
  display: none;
}
.select2-container .select2-selection .select2-selection__choice__display {
  cursor: pointer;
  padding: 0;
  display: inline-block;
}
.select2-container .select2-selection .select2-selection__choice__display:after {
  content: ", ";
  display: inline;
  margin-right: 6px;
}
.select2-container .select2-selection .select2-selection__choice__display:first-letter {
  text-transform: uppercase;
}
.select2-container .select2-selection .select2-selection__choice__remove {
  display: none;
}
.select2-container .select2-selection .select2-search__field {
  margin: 0;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}
.select2-container .select2-selection .select2-search__field[placeholder=""] {
  display: none;
}
.select2-container .select2-selection ul {
  margin: 0 !important;
  padding: 0 !important;
}
.select2-container .select2-selection ul li {
  margin: 0 !important;
  padding: 0px !important;
}
.select2-container .select2-selection ul li:before {
  display: none !important;
}
.select2-container .select2-search--dropdown {
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
}
.select2-container .select2-search--dropdown .select2-search__field {
  padding: 8px 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #707070 transparent transparent transparent;
  border-width: 10px 7px 0 7px;
  margin-left: -12px;
  margin-top: -6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #707070 transparent;
  border-width: 0px 7px 10px 7px;
}

:root {
  scroll-behavior: auto !important;
}

html {
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  transition: opacity 0.15s ease-in-out;
}
body.active {
  opacity: 1;
}

.row {
  --bs-gutter-x: 30px;
}

button,
input,
select,
textarea {
  color: #000;
  font-family: "Montserrat";
  font-size: inherit;
  border: 0;
  border-radius: 0;
  outline: none;
  border-bottom: 1px solid #123C6A;
  width: 100%;
  padding: 15px 0;
  display: block;
}

button {
  border: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
  height: 93px;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

hr {
  margin: 15px 0;
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #B8B8B8;
}

blockquote {
  text-align: center;
  margin: 55px 0;
  padding: 30px 0 10px;
  border-top: #D3D3D3 solid 1px;
  border-bottom: #D3D3D3 solid 1px;
  position: relative;
  font-size: 16px;
}
blockquote:before {
  content: "";
  background: url(../../img/new/ico/blockquote.svg) center/contain no-repeat;
  width: 38px;
  height: 29px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
blockquote p {
  text-align: center;
}
blockquote p em {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  font-family: "Alegreya";
}
blockquote p strong {
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) {
  margin: 15px 0;
  font: inherit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 40px;
}
ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li {
  position: relative;
  padding: 30px 0;
}
ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li ol,
ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li ul {
  margin: 30px 0 0;
  padding-left: 25px;
  grid-template-columns: repeat(1, 1fr);
}
ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li:before {
  content: "";
  width: 48px;
  height: 1px;
  background: #968276;
  position: absolute;
  top: 0;
  left: 0;
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 15px 0;
  padding: 0;
  font: inherit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 40px;
}
ol > li {
  counter-increment: item;
  position: relative;
  padding: 35px 0 30px;
}
ol > li ol,
ol > li ul {
  margin: 15px 0 0;
  padding-left: 25px;
  grid-template-columns: repeat(1, 1fr);
}
ol > li:before {
  color: #123C6A;
  content: counters(item, ".") ". ";
  font-weight: 600;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
ol > li:last-of-type {
  margin-bottom: 0;
}

table:not(.ui-datepicker-calendar, div.personal-column__main table) {
  width: 100%;
  min-width: 400px;
  margin: 2px 0;
}
table:not(.ui-datepicker-calendar, div.personal-column__main table) tr {
  border: none !important;
}
table:not(.ui-datepicker-calendar, div.personal-column__main table) tr:nth-of-type(2n + 2) {
  background: #F8F8F8;
}
table:not(.ui-datepicker-calendar, div.personal-column__main table) tr td, table:not(.ui-datepicker-calendar, div.personal-column__main table) tr th {
  font-size: 14px;
  padding: 13px 9px;
  border: 1px solid #B9B9B9 !important;
}
table:not(.ui-datepicker-calendar, div.personal-column__main table) tr td strong, table:not(.ui-datepicker-calendar, div.personal-column__main table) tr th strong {
  color: black;
}

a {
  outline: none;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out text-decoration-color, 0.2s ease-in-out opacity;
  color: #123C6A;
  text-decoration-color: #0367D1;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  color: #007bff;
  text-decoration-color: transparent;
}

strong,
b {
  font-weight: 600;
}

@media (max-width: 767px) {
  blockquote {
    font-size: 14px;
    margin: 30px 0;
    padding: 20px 0 5px;
  }
  blockquote:before {
    width: 32px;
    height: 25px;
  }
  blockquote p em {
    font-size: 18px;
  }
  blockquote p strong {
    font-size: 14px;
  }
  ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) {
    margin: 15px 0;
    grid-template-columns: repeat(1, 1fr);
    display: flex;
    flex-direction: column;
  }
  ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li {
    margin: 0;
    padding: 20px 0;
  }
  ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li ol,
  ul:not(.no-markers, #wpadminbar ul, table ul, .page-numbers, .select2-selection__rendered, .select2-results__options) > li ul {
    margin: 20px 0 0;
    padding-left: 15px;
  }
  ol {
    margin: 15px 0;
    grid-template-columns: repeat(1, 1fr);
    display: flex;
    flex-direction: column;
  }
  ol > li {
    margin: 0;
    padding: 30px 0 10px;
  }
  ol > li ol,
  ol > li ul {
    margin: 20px 0 0;
    padding-left: 15px;
  }
  ol > li:before {
    font-size: 18px;
    top: 6px;
  }
}
input, textarea {
  background: transparent;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #575249;
  transition: opacity 0.3s ease;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #575249;
  transition: opacity 0.3s ease;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #575249;
  transition: opacity 0.3s ease;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #575249;
  transition: opacity 0.3s ease;
}
input.wpcf7-not-valid::-webkit-input-placeholder, textarea.wpcf7-not-valid::-webkit-input-placeholder {
  color: #ee2323;
}
input.wpcf7-not-valid::-moz-placeholder, textarea.wpcf7-not-valid::-moz-placeholder {
  color: #ee2323;
}
input.wpcf7-not-valid:-moz-placeholder, textarea.wpcf7-not-valid:-moz-placeholder {
  color: #ee2323;
}
input.wpcf7-not-valid:-ms-input-placeholder, textarea.wpcf7-not-valid:-ms-input-placeholder {
  color: #ee2323;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input[type=search], textarea[type=search] {
  box-sizing: border-box;
}
input[type=search]::-webkit-input-placeholder, textarea[type=search]::-webkit-input-placeholder {
  color: #fff;
  transition: opacity 0.3s ease;
}
input[type=search]::-moz-placeholder, textarea[type=search]::-moz-placeholder {
  color: #fff;
  transition: opacity 0.3s ease;
}
input[type=search]:-moz-placeholder, textarea[type=search]:-moz-placeholder {
  color: #fff;
  transition: opacity 0.3s ease;
}
input[type=search]:-ms-input-placeholder, textarea[type=search]:-ms-input-placeholder {
  color: #fff;
  transition: opacity 0.3s ease;
}

div.wpforms-container-full .wpforms-form button[type=submit] {
  border: 1px solid #BBBFC1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #123C6A;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  font-family: "IBM Plex Sans";
  height: 48px;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
  margin-left: 0;
  margin-right: 0;
}
div.wpforms-container-full .wpforms-form button[type=submit]:hover {
  background-color: #0367D1;
  color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
}

/* This stylesheet generated by Transfonter (https://transfonter.org) on October 3, 2017 10:05 PM */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Light.eot");
  src: local("Montserrat Light"), local("Montserrat-Light"), url("../fonts/Montserrat/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-MediumItalic.eot");
  src: local("Montserrat Medium Italic"), local("Montserrat-MediumItalic"), url("../fonts/Montserrat/Montserrat-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-MediumItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Thin.eot");
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url("../fonts/Montserrat/Montserrat-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Thin.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ExtraLightItalic.eot");
  src: local("Montserrat ExtraLight Italic"), local("Montserrat-ExtraLightItalic"), url("../fonts/Montserrat/Montserrat-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-ExtraLightItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-BoldItalic.eot");
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url("../fonts/Montserrat/Montserrat-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-BoldItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.eot");
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ExtraLight.eot");
  src: local("Montserrat ExtraLight"), local("Montserrat-ExtraLight"), url("../fonts/Montserrat/Montserrat-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-ExtraLight.woff") format("woff"), url("../fonts/Montserrat/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ExtraBoldItalic.eot");
  src: local("Montserrat ExtraBold Italic"), local("Montserrat-ExtraBoldItalic"), url("../fonts/Montserrat/Montserrat-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-ExtraBoldItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Italic.eot");
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url("../fonts/Montserrat/Montserrat-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Italic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.eot");
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-LightItalic.eot");
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url("../fonts/Montserrat/Montserrat-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-LightItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-BlackItalic.eot");
  src: local("Montserrat Black Italic"), local("Montserrat-BlackItalic"), url("../fonts/Montserrat/Montserrat-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-BlackItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBoldItalic.eot");
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url("../fonts/Montserrat/Montserrat-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-SemiBoldItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.eot");
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/Montserrat/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.eot");
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.eot");
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("../fonts/Montserrat/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Black.eot");
  src: local("Montserrat Black"), local("Montserrat-Black"), url("../fonts/Montserrat/Montserrat-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Black.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ThinItalic.eot");
  src: local("Montserrat Thin Italic"), local("Montserrat-ThinItalic"), url("../fonts/Montserrat/Montserrat-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-ThinItalic.woff") format("woff"), url("../fonts/Montserrat/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-Bold.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-ExtraBold.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-MediumItalic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-Black.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-Italic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-BlackItalic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-BoldItalic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-Medium.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-Regular.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya/Alegreya-SemiBold.woff2") format("woff2"), url("../fonts/Alegreya/Alegreya-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-ExtraLight.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-BoldItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Bold.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-ThinItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Medium.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Thin.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-SemiBold.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Light.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Italic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-Regular.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-LightItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans/IBMPlexSans-MediumItalic.woff2") format("woff2"), url("../fonts/IBMPlexSans/IBMPlexSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
body {
  color: #000;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  height: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  font-size: 100%;
  line-height: 1.33;
  margin: 35px 0 15px;
  font-weight: 600;
  display: block;
}

p {
  font: inherit;
  margin: 15px 0;
  font-weight: 400;
  text-align: justify;
}

h1 {
  font-size: 32px;
  margin: 15px 0;
  font-weight: 400;
  font-family: "Alegreya";
}

h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 43px 0 24px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

@media (max-width: 989px) {
  p {
    font-size: 14px;
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 16px;
    margin: 30px 0 20px;
  }
  h3 {
    font-size: 14px;
  }
}
.overflow-hide {
  overflow: hidden !important;
}

.overflow-unset {
  overflow: unset !important;
}

.w-0 {
  width: 0 !important;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.wrapper-content {
  flex: 1 0 auto;
}

.sticky {
  position: fixed;
  z-index: 101;
}

.stop {
  position: relative;
  z-index: 101;
}

.overflow-auto > *:first-child {
  margin-top: 0;
}

.point-e-none {
  pointer-events: none;
  text-decoration: none;
}

.list-links-4 {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 15px;
  width: 1000px;
  margin-bottom: 35px;
  overflow: hidden;
}

ul li.menu-nubex > a {
  color: #000;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid #faa21a;
  background-color: transparent;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
}
ul li.menu-nubex > a:hover {
  color: black;
  background-color: #faa21a;
}

@media (max-width: 1349px) {
  .list-links-4 {
    width: auto;
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 575px) {
  .list-links-4 {
    grid-template-columns: repeat(1, auto);
  }
}
.modal-open {
  overflow: hidden;
}

@-webkit-keyframes tape {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -400%;
  }
}
@keyframes tape {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -400%;
  }
}
.header {
  background: #13304F;
  padding: 14px 0;
}
.header .header__d-none {
  display: none;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  grid-gap: 15px;
}
.header__logo {
  width: 100%;
  min-width: 140px;
  max-width: 140px;
}
.header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px 35px;
}
.header__nav {
  display: flex;
  grid-gap: 0 44px;
  flex-wrap: wrap;
}
.header__nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.header__nav a:hover {
  opacity: 0.7;
}
.header__nav .current_page_item > a {
  opacity: 0.7;
}
.header__nav--full {
  grid-gap: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.header__nav--full li {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.header__nav--full > li {
  float: left;
}
.header__nav--full a {
  font-size: 16px;
}
.header__nav--full .sub-menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.header__nav--full .sub-menu a {
  font-weight: 400;
  text-transform: unset;
}
.header__soc {
  grid-gap: 10px 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.header__soc > li a {
  background: #4E6883;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out background-color;
}
.header__soc > li a:hover {
  background-color: #fff;
}
.header__btns {
  display: flex;
  align-items: center;
  grid-gap: 5px 15px;
}
.header__btn {
  width: 28px;
  height: 28px;
}
.header__btn-personal {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../img/new/ico/persona.svg) center no-repeat;
}
.header__btn-personal:hover {
  opacity: 0.7;
}
.header__visually-impaired {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out opacity;
  position: relative;
  z-index: 1;
}
.header__visually-impaired img {
  margin: 0;
  border-radius: 0;
}
.header__visually-impaired:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  opacity: 1;
  transition: 0.2s ease-in-out all;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='18' viewBox='0 0 34 18' fill='none'%3E %3Cpath d='M33.4879 9.05432C33.4808 9.07858 33.4695 9.1114 33.4517 9.15363C33.4084 9.2559 33.3381 9.38682 33.2353 9.54502C33.03 9.86113 32.7168 10.2535 32.2999 10.6964C31.4677 11.5807 30.2522 12.6349 28.7424 13.6472C25.7185 15.6745 21.5646 17.5 17 17.5C12.4437 17.5 8.29248 15.556 5.26335 13.4636C3.75192 12.4196 2.53247 11.3472 1.69558 10.4808C1.27641 10.0468 0.959442 9.67091 0.751117 9.38163C0.646456 9.2363 0.575513 9.1215 0.532964 9.03827C0.525351 9.02338 0.519256 9.01066 0.514399 9C0.519256 8.98934 0.525351 8.97662 0.532964 8.96173C0.575513 8.8785 0.646456 8.7637 0.751117 8.61837C0.959442 8.32909 1.27641 7.95322 1.69558 7.51924C2.53247 6.65279 3.75192 5.58041 5.26335 4.5364C8.29248 2.44405 12.4437 0.5 17 0.5C21.5509 0.5 25.7002 2.5236 28.7329 4.65984C30.2453 5.72522 31.4673 6.80978 32.3075 7.66427C32.7282 8.09206 33.0484 8.45736 33.2598 8.72946C33.3662 8.86646 33.439 8.9721 33.4826 9.04525C33.4844 9.04839 33.4862 9.05142 33.4879 9.05432ZM33.5156 9.10638C33.5159 9.10707 33.5162 9.10765 33.5164 9.10813C33.5186 9.11361 33.5178 9.11272 33.5156 9.10638Z' stroke='white'/%3E %3Ccircle cx='16.8912' cy='9' r='5.5' fill='white' fill-opacity='0.69'/%3E %3C/svg%3E");
}
.header__visually-impaired:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  transition: 0.2s ease-in-out all;
  opacity: 0;
  visibility: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='18' viewBox='0 0 34 18' fill='none'%3E %3Cpath d='M33.4879 9.05432C33.4808 9.07858 33.4695 9.1114 33.4517 9.15363C33.4084 9.2559 33.3381 9.38682 33.2353 9.54502C33.03 9.86113 32.7168 10.2535 32.2999 10.6964C31.4677 11.5807 30.2522 12.6349 28.7424 13.6472C25.7185 15.6745 21.5646 17.5 17 17.5C12.4437 17.5 8.29248 15.556 5.26335 13.4636C3.75192 12.4196 2.53247 11.3472 1.69558 10.4808C1.27641 10.0468 0.959442 9.67091 0.751117 9.38163C0.646456 9.2363 0.575513 9.1215 0.532964 9.03827C0.525351 9.02338 0.519256 9.01066 0.514399 9C0.519256 8.98934 0.525351 8.97662 0.532964 8.96173C0.575513 8.8785 0.646456 8.7637 0.751117 8.61837C0.959442 8.32909 1.27641 7.95322 1.69558 7.51924C2.53247 6.65279 3.75192 5.58041 5.26335 4.5364C8.29248 2.44405 12.4437 0.5 17 0.5C21.5509 0.5 25.7002 2.5236 28.7329 4.65984C30.2453 5.72522 31.4673 6.80978 32.3075 7.66427C32.7282 8.09206 33.0484 8.45736 33.2598 8.72946C33.3662 8.86646 33.439 8.9721 33.4826 9.04525C33.4844 9.04839 33.4862 9.05142 33.4879 9.05432ZM33.5156 9.10638C33.5159 9.10707 33.5162 9.10765 33.5164 9.10813C33.5186 9.11361 33.5178 9.11272 33.5156 9.10638Z' stroke='black'/%3E %3Ccircle cx='16.8912' cy='9' r='5.5' fill='black' /%3E %3C/svg%3E");
}
.header__visually-impaired:hover {
  opacity: 0.7;
}
.header__lng {
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.header__lng span {
  display: flex;
  align-items: center;
}
.header__lng:hover {
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 1249px) {
  .header__nav-wrap {
    grid-gap: 10px 15px;
  }
  .header__nav {
    grid-gap: 0 15px;
  }
  .header__nav--full {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
  }
  .header__soc {
    grid-gap: 10px 15px;
  }
  .header__btns {
    display: flex;
    align-items: center;
    grid-gap: 5px 10px;
  }
}
@media (max-width: 989px) {
  .header {
    padding: 8px 0;
  }
  .header__nav--full {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
  .header__nav-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__wrap {
    position: relative;
  }
  .header__nav--full a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .header__logo {
    min-width: 120px;
    max-width: 120px;
  }
  .header__nav--full {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
  .header__nav--full .menu-toggle-btn {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M19.8327 16.3333L13.9993 10.5L8.16602 16.3333' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
    transition: 0.2s ease-in-out opacity, 0.2s ease-in-out transform;
    cursor: pointer;
  }
  .header__nav--full .menu-toggle-btn:hover {
    opacity: 0.7;
  }
  .header__nav--full > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 0;
  }
  .header__nav--full li.current-menu-parent > .sub-menu, .header__nav--full li.current-menu-item > .sub-menu {
    display: flex;
  }
  .header__nav--full li span {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__nav--full li.active .menu-toggle-btn {
    transform: rotate(180deg);
  }
  .header__nav--full .sub-menu {
    display: none;
  }
}
.contacts__map {
  height: 1100px;
  width: 1100px;
}
.contacts [class*=copyrights-pane] {
  display: none !important;
}
.contacts [class*="-image "] {
  -webkit-animation-name: floating-arrow;
  animation-name: floating-arrow;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  position: absolute;
}
.contacts [class*=-ground-pane] {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

@media (max-width: 767px) {
  .contacts [class*="-image "] {
    width: 30px !important;
    height: 45px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    margin-left: 10.5px !important;
    margin-top: 18px !important;
  }
}
.footer {
  background: #13304F;
}
.footer ul li {
  margin: 0;
  padding: 0;
}
.footer__up {
  right: 4%;
  bottom: 0;
  transform: translateY(calc(-50% + 25px)) rotate(-90deg);
  position: fixed;
  z-index: 5;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 20px;
  background-color: #123C6A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='14' viewBox='0 0 9 14' fill='none'%3E %3Cpath d='M1.25708 0.928467L7.38565 7.05704L1.25708 13.1856' stroke='white' stroke-width='2'/%3E %3C/svg%3E");
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.footer__up.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(calc(-50% - 15px)) rotate(-90deg);
}
.footer__up:hover {
  background-color: #0367D1;
}
.footer__desc {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.footer__desc p {
  text-align: center;
}
.footer__desc a.button-white {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.footer__img {
  background: url(../../img/new/footer-decor.png) center/contain no-repeat;
  background-size: auto 210px;
  width: 100%;
  height: 330px;
}
.footer__info {
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  grid-gap: 32px;
}
.footer__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  grid-gap: 15px;
  border-bottom: 1px solid #B8B8B8;
  padding-bottom: 32px;
}
.footer__row:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.footer__title {
  color: #fff;
  font-size: 14px;
  max-width: 280px;
  width: 100%;
  font-family: "IBM Plex Sans";
}
.footer__copyright {
  color: #B8B8B8;
  font-size: 14px;
  width: 100%;
  font-family: "IBM Plex Sans";
}
.footer__nav {
  display: flex;
  grid-gap: 10px 44px;
  margin-right: auto;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.footer__nav li {
  margin: 0;
}
.footer__nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__add-menu {
  grid-gap: 18px 25px;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: baseline;
}
.footer__add-menu li {
  margin: 0;
}
.footer__add-menu a {
  color: #EEEBEB;
  font-weight: 400;
  font-size: 14px;
  font-family: "IBM Plex Sans";
  transition: 0.2s ease-in-out opacity, 0.2s ease-in-out text-decoration-color;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__add-menu a:hover {
  opacity: 0.7;
  text-decoration-color: transparent;
}
.footer__soc {
  grid-gap: 10px 18px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: 6px;
}
.footer__soc > li a {
  background: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out background-color;
}
.footer__soc > li a:hover {
  background-color: #4E6883;
}
.footer__soc-item--big {
  margin-right: 30px;
}
.footer .footer__nav-login-ico {
  width: 28px;
  height: 28px;
}
.footer .footer__nav-login-ico a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  background: url(../../img/new/ico/persona.svg) center no-repeat;
}

@media (max-width: 1349px) {
  .footer__title {
    max-width: 250px;
  }
  .footer__nav {
    grid-gap: 10px 40px;
  }
}
@media (max-width: 1249px) {
  .footer__add-menu {
    grid-gap: 18px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__up {
    right: 15px;
  }
}
@media (max-width: 989px) {
  .footer__img {
    background-size: auto 150px;
    height: 240px;
  }
  .footer__desc {
    margin-bottom: 35px;
  }
  .footer__title {
    max-width: 230px;
  }
  .footer__nav {
    grid-gap: 10px 15px;
  }
  .footer__soc-item--big {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .footer__img {
    background-size: auto 110px;
    height: 150px;
  }
  .footer__info {
    padding: 10px 0 40px;
  }
  .footer__desc a.button-white {
    margin-top: 15px;
  }
  .footer__row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .footer__row {
    grid-gap: 20px;
  }
  .footer__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__add-menu {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__desc {
    margin-bottom: 20px;
  }
}
.content-wrap__container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
  position: relative;
  align-items: flex-start;
}
.content-wrap__sidebar {
  width: 100%;
  max-width: 240px;
  padding-top: 47px;
  padding-right: 15px;
  position: sticky;
  display: flex;
  flex-direction: column;
  top: 0;
  border-right: 1px solid #DADADA;
  transform: translateX(1px);
}
.content-wrap__sidebar .menu-full__row, .content-wrap__sidebar h1 {
  display: none;
}
.content-wrap__main {
  width: 100%;
  position: relative;
  padding: 32px 0 25px 24px;
  border-left: 1px solid #DADADA;
}
.content-wrap__main.border-0 {
  padding-left: 0;
  padding-right: 0;
}
.content-wrap__content {
  width: 100%;
}
.content-wrap__content_color-title h1, .content-wrap__content_color-title h2, .content-wrap__content_color-title h3, .content-wrap__content_color-title h4, .content-wrap__content_color-title h5, .content-wrap__content_color-title em {
  color: #123C6A;
}
.content-wrap__content--news {
  max-width: 100%;
}
.content-wrap__content ul[style="list-style-type: disc;"] {
  list-style-type: none !important;
}
.content-wrap__head {
  display: flex;
  align-items: baseline;
  grid-gap: 30px;
  border-bottom: 1px solid #000000;
  padding: 0 0 17px;
  margin-bottom: 50px;
}
.content-wrap__head h1 {
  margin: 0;
  flex: 1;
}
.content-wrap__main-page-wrap {
  display: flex;
  grid-gap: 20px;
}
.content-wrap__main-page-news {
  width: 100%;
  flex: 1;
}
.content-wrap__main-page-announce {
  max-width: 245px;
  width: 100%;
  background: #F4F4F4;
  padding: 0 15px 35px;
  display: flex;
  flex-direction: column;
}
.content-wrap__main-page-announce .button-white {
  margin-top: auto;
}
.content-wrap__main-page-announce .big-title {
  border-top: none;
  border-color: #DEDEDE;
}
.content-wrap__main-page-news-wrap {
  display: flex;
  grid-gap: 20px;
}
.content-wrap__main-page-news-slider {
  width: 100%;
  flex: 1;
}
.content-wrap__main-page-news-list {
  max-width: 270px;
  width: 100%;
}
.content-wrap__main-page-sliders {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.content-wrap__search-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 32px 0;
  margin-bottom: 55px;
  margin-top: -13px;
}
.content-wrap .current-page-ancestor > a {
  color: #123C6A;
}
.content-wrap .b-doc {
  min-height: auto;
  background: none;
  padding-left: 37px;
  margin: 0 0 25px;
  position: relative;
}
.content-wrap .b-doc p {
  margin: 0;
}
.content-wrap .b-doc:before {
  content: "";
  background: url(../../img/new/ico/file.svg) center/contain no-repeat;
  width: 22px;
  height: 28px;
  position: absolute;
  left: 0;
  top: -7px;
}
.content-wrap--personal hr {
  margin: 15px 0;
}
.content-wrap__sidebar-burder {
  display: flex;
  margin-bottom: 15px;
  margin-top: -15px;
}

@media (max-width: 1249px) {
  .content-wrap__sidebar {
    max-width: 210px;
  }
  .content-wrap__main-page-wrap {
    flex-direction: column;
  }
  .content-wrap__main-page-announce {
    max-width: 100%;
  }
}
@media (max-width: 989px) {
  .content-wrap__sidebar {
    max-width: 100%;
    border-right: 0;
    transform: translateX(0);
    background: #13304F;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - 0px);
    padding: 0 0 26px;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    z-index: 202;
    display: none;
  }
  .content-wrap__sidebar .menu-full__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    padding: 8px 0;
  }
  .content-wrap__sidebar h1 {
    display: flex;
    margin-top: 32px;
  }
  .content-wrap__sidebar .menu-full__btn {
    margin-left: auto;
  }
  .content-wrap__main {
    border-left: none;
    padding-left: 0;
  }
  .content-wrap__head {
    grid-gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    align-items: center;
  }
  .content-wrap__head h1 {
    flex: auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .content-wrap {
    margin-bottom: 50px;
  }
  .content-wrap__sidebar h1 {
    margin-top: 24px;
  }
  .content-wrap__main {
    padding: 24px 0 0;
  }
  .content-wrap__main-page-news-wrap {
    flex-direction: column;
  }
  .content-wrap__main-page-news-list {
    max-width: 100%;
  }
  .content-wrap__main-page-wrap {
    grid-gap: 30px;
  }
  .content-wrap__main-page-announce {
    padding: 0 15px 20px;
  }
  .content-wrap__main-page-announce .big-title {
    border-color: #123C6A;
  }
  .content-wrap__main-page-sliders {
    grid-gap: 0px;
  }
  .content-wrap__search-wrap {
    grid-gap: 22px 0;
    margin-bottom: 30px;
  }
  .content-wrap__attr {
    width: 100%;
  }
  .content-wrap__sidebar-burder {
    margin-bottom: 11px;
    margin-top: -12px;
  }
}
.personal-column {
  display: flex;
  flex-direction: column;
  grid-gap: 80px 40px;
}
.personal-column__main {
  display: flex;
  flex-direction: column;
  grid-gap: 80px 0;
}
.personal-column__item {
  display: flex;
  grid-gap: 20px;
}
.personal-column__item br {
  display: none;
}
.personal-column__item > div {
  width: 100%;
}
.personal-column__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0 0;
  grid-gap: 13px;
}
.personal-column__info p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.personal-column__info .personal-column__min-title {
  font-weight: 500;
  margin-bottom: 7px;
}
.personal-column__img {
  width: 180px;
  height: 265px;
  position: relative;
}
.personal-column__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
}
.personal-column__img:hover + .personal-column__info .personal-column__name a {
  color: #0367D1;
}
.personal-column__name {
  text-transform: uppercase;
  margin: 0;
}
.personal-column__name a {
  text-decoration: none;
  color: #000;
}
.personal-column__name a:hover {
  color: #0367D1;
}
.personal-column--query_no_thumbnail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.personal-column--query_no_thumbnail .personal-column__item {
  border-bottom: 1px solid #B8B8B8;
  padding-bottom: 15px;
}
.personal-column--query_no_thumbnail .personal-column__img {
  display: none;
}
.personal-column--query_no_thumbnail .personal-column__info {
  padding-top: 0;
}

.content-academ table tr:nth-of-type(2n + 2) td {
  background: #F8F8F8 !important;
}
.content-academ table td {
  border-width: 2px;
  padding: 8px;
}
.content-academ table em {
  position: relative;
  float: left;
  margin: 5px 20px 5px 0;
}
.content-academ table em::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px rgb(255, 255, 255);
}
.content-academ table img {
  float: left;
  margin: 0 !important;
}

.personal-column-new {
  display: flex;
}
.personal-column-new img {
  float: none !important;
}
.personal-column-new__text {
  flex: 1;
}

@media (max-width: 767px) {
  .personal-column {
    grid-gap: 20px;
  }
  .personal-column__main {
    grid-gap: 20px 0;
  }
  .personal-column__info {
    padding: 0;
  }
  .personal-column__item {
    border-bottom: 1px solid #B8B8B8;
    padding-bottom: 15px;
  }
  .personal-column--query_no_thumbnail {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .personal-column__item {
    flex-direction: column;
  }
}
.news-list .text-muted.dateh.allignCenter {
  display: none !important;
}
.news-list__wrap {
  display: flex;
  justify-content: space-between;
  grid-gap: 30px;
}
.news-list__content {
  width: 100%;
}
.news-list__calendar {
  flex: 1;
  width: 260px;
  position: relative;
}
.news-list__date {
  font-family: "IBM Plex Sans";
  font-weight: 500;
  font-size: 18px;
  color: #707070;
  text-transform: uppercase;
  margin-bottom: 25px;
  margin-top: 25px;
  display: none;
}
.news-list__date:first-of-type {
  margin-top: 0px;
}
.news-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 20px;
}

@media (max-width: 1249px) {
  .news-list__wrap {
    flex-direction: column;
  }
  .news-list__calendar {
    order: -1;
    margin-left: auto;
  }
  .news-list__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .news-list__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 15px;
  }
}
@media (max-width: 575px) {
  .news-list__list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 15px;
  }
}
.menu-full {
  background: #13304F;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 - 0px);
  padding: 0 0 26px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  z-index: 202;
  display: none;
}
.menu-full__wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 47px;
}
.menu-full__row {
  display: flex;
  justify-content: space-between;
  grid-gap: 15px;
  align-items: center;
  height: calc(var(--heightHeader, 1vh) * 100 - 0px);
}
.menu-full__logo {
  width: 100%;
  min-width: 140px;
  max-width: 140px;
}
.menu-full__btn {
  width: 28px;
  height: 28px;
}
.menu-full .search-form__search-btn {
  display: none;
}
.menu-full .search-form__close-btn {
  display: none;
}
.menu-full .menu-full__d-none {
  display: none !important;
}
.menu-full__nav-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 47px;
}
.menu-full .menu-full__order-1 {
  order: 1;
}

@media (max-width: 575px) {
  .menu-full {
    padding-top: 8px;
  }
  .menu-full__wrap {
    grid-gap: 32px;
  }
  .menu-full__nav-wrap {
    grid-gap: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .menu-full__logo {
    min-width: 120px;
    max-width: 120px;
  }
  .menu-full__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .menu-full__btn {
    margin-left: auto;
  }
}
.contact-page {
  margin-bottom: 80px;
}
.contact-page__map {
  width: 100%;
  height: 400px;
  margin: 30px 0 20px;
}
.contact-page iframe {
  width: 100%;
  height: 100%;
}
.contact-page__row {
  padding: 30px 0;
  border-bottom: solid 1px #C1C1C1;
  align-items: baseline;
}
.contact-page__row > div {
  grid-gap: 20px 0;
}
.contact-page__row p {
  margin: 0;
  font-size: 20px;
  padding-left: 20px;
}
.contact-page__row a {
  color: #123C6A;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}
.contact-page__row a:hover {
  color: #0367D1;
}
.contact-page__row--decor a {
  text-decoration: underline;
}
.contact-page__row--decor a:hover {
  text-decoration-color: transparent;
}
.contact-page__row--soc a {
  text-decoration: underline;
  position: relative;
  padding-left: 35px;
}
.contact-page__row--soc a:hover {
  text-decoration-color: transparent;
}
.contact-page__row--soc a:hover i {
  background-color: #0367D1;
}
.contact-page__row--soc i {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 50%;
  background: #123C6A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out background-color;
}
.contact-page__add-info p {
  font-size: 16px;
  padding-left: 0px;
  text-align: left;
}
.contact-page__big-link {
  margin: 40px 0 0;
}
.contact-page__big-link a {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-page {
    margin-bottom: 60px;
  }
  .contact-page__map {
    height: 300px;
    margin: 20px 0 10px;
  }
  .contact-page__row {
    padding: 20px 0;
    grid-gap: 15px 0;
  }
  .contact-page__row p {
    font-size: 18px;
    padding-left: 0px;
  }
  .contact-page__row a {
    font-size: 18px;
  }
  .contact-page__row > div {
    grid-gap: 15px 0;
  }
  .contact-page__row .align-items-end {
    align-items: flex-start;
  }
  .contact-page__add-info p {
    font-size: 14px;
  }
  .contact-page__big-link {
    margin: 20px 0 0;
  }
  .contact-page__big-link a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .contact-page__map {
    height: 250px;
  }
}
.documents-list__item {
  border-bottom: 1px solid #C9C9C9;
  padding: 32px 0;
}
.documents-list__head {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease-in-out color;
  grid-gap: 15px;
}
.documents-list__head i {
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out background;
  border-radius: 50%;
  background: transparent;
}
.documents-list__head i svg {
  display: block;
}
.documents-list__head i svg circle {
  transition: 0s ease-in-out all;
}
.documents-list__head i svg path {
  transition: 0.2s ease-in-out all;
  z-index: -111;
  position: relative;
}
.documents-list__head:not(.collapsed) i {
  transform: rotate(180deg);
  background: #123C6A;
}
.documents-list__head:not(.collapsed) i svg circle[stroke="#B8B8B8"] {
  stroke: #123C6A;
}
.documents-list__head:not(.collapsed) i svg path[stroke="#B8B8B8"] {
  stroke: #fff;
}
.documents-list__head:hover {
  color: #0367D1;
}
.documents-list__body {
  padding-top: 32px;
}
.documents-list__body p {
  margin: 0 0 25px;
  text-align: left;
}
.documents-list__body p:last-of-type {
  margin-bottom: 0;
}
.documents-list__body p a {
  position: relative;
  padding-left: 37px;
  display: block;
}
.documents-list__body p a:before {
  content: "";
  background: url(../../img/new/ico/file.svg) center/contain no-repeat;
  width: 22px;
  height: 28px;
  position: absolute;
  left: 0;
  top: -2px;
}
.documents-list__date {
  color: #8D8D8D;
  font-size: 12px;
  font-weight: 400;
  padding-left: 37px;
  margin-top: 9px;
  display: block;
}

@media (max-width: 767px) {
  .documents-list__head {
    font-size: 16px;
  }
  .documents-list__item {
    padding: 20px 0;
  }
}
.centers-list__img {
  margin-bottom: 15px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.centers-list .row {
  margin-bottom: 20px;
}
.centers-list .col-md-6 {
  margin-bottom: 20px;
}
.centers-list .col-md-6 > p:hover + p > a {
  color: #0367D1 !important;
  text-decoration-color: transparent;
}
.centers-list .col-md-6 a, .centers-list .col-md-6 p {
  text-align: left;
}
.centers-list .col-md-6 a br, .centers-list .col-md-6 p br {
  display: none;
}

.media-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 34px 20px;
}
.media-list__item > a:hover {
  color: #0367D1;
}
.media-list__item > a:hover ~ a {
  color: #0367D1;
}
.media-list__info {
  margin-top: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
.media-list__img {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
  height: 155px;
  border-radius: 4px;
  overflow: hidden;
}
.media-list__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

@media (max-width: 1249px) {
  .media-list__img {
    height: 127px;
  }
}
@media (max-width: 767px) {
  .media-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-list__img {
    height: 140px;
    margin-bottom: 0px;
  }
}
@media (max-width: 575px) {
  .media-list__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .media-list__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.obrazovatel-centr__main-title {
  text-transform: none;
}
.obrazovatel-centr__cat-list {
  display: flex;
  flex-direction: column;
  grid-gap: 15px 0;
}
.obrazovatel-centr__cat-list h3 {
  margin: 0;
  text-transform: uppercase;
}
.obrazovatel-centr__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px 20px;
}
.obrazovatel-centr__item {
  border-radius: 8px;
  border: 1px solid #B8B8B8;
  overflow: hidden;
}
.obrazovatel-centr__img img {
  width: 100%;
}
.obrazovatel-centr__img:hover ~ .obrazovatel-centr__info a {
  color: #0367D1;
}
.obrazovatel-centr__info {
  text-align: center;
  padding: 10px 15px 25px;
}
.obrazovatel-centr__row-text {
  color: #123C6A;
  font-family: "IBM Plex Sans";
}
.obrazovatel-centr__row-text strong {
  font-size: 28px;
  font-weight: 600;
}
.obrazovatel-centr__link {
  margin-top: 15px;
}
.obrazovatel-centr__link a {
  text-decoration: none;
  color: #000;
}
.obrazovatel-centr__link a:hover {
  color: #0367D1;
}

@media (max-width: 1249px) {
  .obrazovatel-centr__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .obrazovatel-centr__link {
    margin-top: 10px;
  }
  .obrazovatel-centr__row-text strong {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .obrazovatel-centr__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.events-list {
  margin-top: 40px;
  grid-gap: 20px;
  display: flex;
  flex-direction: column;
  max-height: 800px;
  width: 100%;
  background: #fff;
  overflow-y: auto;
}
.events-list__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #adadad;
}

.events-list-mini {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  margin-top: 15px;
}

.main-banner {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  color: #242424;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
  background-size: clamp(1600px, 100%, 100%) auto;
}
.main-banner:before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: calc(100% + 225px) 100%;
  background-size: auto 497px;
  background-image: url("../../img/new/logo-1.png");
  opacity: 0.8;
}
.main-banner__logos {
  grid-gap: 24px;
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  z-index: 1;
  position: relative;
}
.main-banner__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 42px;
  background: rgba(188, 168, 168, 0.3411764706);
  padding: 10px;
}
.main-banner__logo img {
  height: 100%;
  object-fit: contain;
}
.main-banner a.main-banner__logo {
  transition: 0.2s ease-in-out opacity;
}
.main-banner a.main-banner__logo:hover {
  opacity: 0.7;
}
.main-banner__info {
  max-width: 830px;
  z-index: 1;
  position: relative;
}
.main-banner h1 {
  font-size: 68px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 40px;
}
.main-banner__desc {
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 90px;
}
.main-banner__desc p, .main-banner__desc li {
  font-weight: 300;
  font-size: inherit;
}
.main-banner__btn {
  max-width: 344px;
}
.main-banner__btn .button {
  text-transform: uppercase;
  background: #968276;
  font-weight: 800;
  font-size: 16px;
}
.main-banner__btn .button:hover {
  background: #b69e90;
}

.v-ceremonial .main-banner:before {
  background-image: url("../../img/new/logo-2.png");
}
.v-ceremonial .main-banner .main-banner__btn .button {
  background: #F99603;
  color: #fff;
}
.v-ceremonial .main-banner .main-banner__btn .button:hover {
  background: #333333;
  color: #fff;
}

@media (max-width: 1920px) {
  .main-banner:before {
    background-position: calc(100% + 444px) 100%;
  }
}
@media (max-width: 1349px) {
  .main-banner h1 {
    font-size: 64px;
  }
  .main-banner:before {
    background-position: calc(100% + 370px) 100%;
    background-size: auto 430px;
  }
  .main-banner__logos {
    margin-bottom: 70px;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1249px) {
  .main-banner {
    padding: 40px 0 20px;
  }
  .main-banner:before {
    background-position: calc(100% + 310px) 100%;
    background-size: auto 360px;
    bottom: 50px;
  }
  .main-banner__info {
    max-width: 630px;
  }
  .main-banner__logos {
    margin-bottom: 50px;
    grid-gap: 15px;
  }
  .main-banner__logo {
    height: 50px;
  }
  .main-banner h1 {
    font-size: 54px;
    margin: 0 0 30px;
  }
  .main-banner__desc {
    font-size: 21px;
    margin-bottom: 60px;
  }
  .main-banner__btn {
    max-width: 330px;
  }
  .main-banner__btn .button {
    font-size: 18px;
  }
}
@media (max-width: 989px) {
  .main-banner {
    padding: 20px 0;
  }
  .main-banner:before {
    background-size: auto 290px;
    background-position: calc(100% + 255px) 100%;
  }
  .main-banner__logos {
    margin-bottom: 40px;
    grid-gap: 10px 15px;
    grid-template-columns: repeat(5, 1fr);
  }
  .main-banner__info {
    max-width: 600px;
  }
  .main-banner h1 {
    font-size: 48px;
    margin: 0 0 20px;
  }
  .main-banner__desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .main-banner__btn {
    max-width: 300px;
  }
  .main-banner__btn .button {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main-banner__logos {
    margin-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
  .main-banner:before {
    background-size: auto 230px;
    background-position: calc(100% + 160px) 100%;
    opacity: 0.4;
    display: none;
  }
  .main-banner h1 {
    font-size: 42px;
  }
  .main-banner__btn {
    max-width: 250px;
  }
  .main-banner__btn .button {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .main-banner__logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-banner__logo {
    border-radius: 25px;
  }
  .main-banner:before {
    background-size: auto 210px;
    background-position: calc(100% + 160px) 100%;
    opacity: 0.3;
  }
  .main-banner h1 {
    font-size: 34px;
  }
}
.about-event-block {
  padding: 60px 0 90px;
  position: relative;
}
.about-event-block .main-inner-title {
  margin: 0 0 5px;
}
.about-event-block .main-inner-title h2 {
  margin: 0;
}
.about-event-block__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-event-block__data {
  max-width: 500px;
  width: 100%;
  flex: 1;
}
.about-event-block__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 43px;
  max-width: 340px;
}
.about-event-block__list > li {
  border-bottom: 1px solid #D1E1F0;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  grid-gap: 38px;
  padding: 40px 0;
}
.about-event-block__list > li strong {
  font-weight: 500;
}
.about-event-block__list > li:last-of-type {
  border-bottom: none;
}
.about-event-block__list i {
  display: block;
  width: 28px;
}
.about-event-block__text {
  width: 100%;
  max-width: 710px;
}
.about-event-block__text h1, .about-event-block__text h2, .about-event-block__text h3, .about-event-block__text h4, .about-event-block__text h5 {
  margin-top: 0;
  text-transform: none;
  color: #333333;
  font-weight: 700;
  font-family: "Alegreya";
}
.about-event-block__text h2 {
  font-size: 32px;
}
.about-event-block__text h3 {
  font-size: 18px;
}
.about-event-block__text ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px 25px;
}
.about-event-block__text ul i {
  color: #0F304F;
  font-size: 54px;
  margin: 0 0 30px;
  font-style: normal;
}
.about-event-block__text ul p {
  margin: 0;
  text-align: left;
  font-size: 15px;
}
.about-event-block__text-title {
  margin-top: 8px;
  margin-bottom: 44px;
}
.about-event-block__text-title h2 {
  margin: 0;
}
.about-event-block__btn {
  max-width: 340px;
}
.about-event-block__btn .button {
  text-transform: uppercase;
  background: #0F304F;
  font-weight: 800;
  font-size: 16px;
}
.about-event-block__btn .button:hover {
  background: #968276;
}

.v-ceremonial .about-event-block .about-event-block__list i svg path {
  fill: #373737;
}
.v-ceremonial .about-event-block .about-event-block__btn .button {
  background: #F99603;
  color: #fff;
}
.v-ceremonial .about-event-block .about-event-block__btn .button:hover {
  background: #333333;
  color: #fff;
}

@media (max-width: 1249px) {
  .about-event-block__text {
    max-width: 550px;
  }
  .about-event-block__text ul {
    grid-gap: 25px 15px;
  }
  .about-event-block__text ul i {
    font-size: 46px;
  }
  .about-event-block__text ul p {
    font-size: 14px;
  }
  .about-event-block__text h2 {
    font-size: 26px;
  }
  .about-event-block__text-title {
    margin-bottom: 35px;
  }
  .about-event-block__data {
    max-width: 330px;
  }
  .about-event-block__list {
    margin-bottom: 30px;
  }
  .about-event-block__list > li {
    font-size: 18px;
    padding: 30px 0;
    grid-gap: 25px;
  }
  .about-event-block__btn {
    max-width: 330px;
  }
  .about-event-block__btn .button {
    font-size: 18px;
  }
}
@media (max-width: 989px) {
  .about-event-block {
    padding: 70px 0;
  }
  .about-event-block__wrap {
    flex-direction: column;
    grid-gap: 60px;
  }
  .about-event-block__data {
    max-width: 100%;
  }
  .about-event-block__text {
    max-width: 100%;
  }
  .about-event-block__text-title {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .about-event-block__list {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .about-event-block__list > li {
    padding: 18px 0;
    grid-gap: 20px;
  }
  .about-event-block__list i svg {
    height: auto;
    width: 20px;
  }
  .about-event-block__btn {
    max-width: 300px;
  }
  .about-event-block__btn .button {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-event-block {
    padding: 45px 0;
  }
  .about-event-block .main-inner-title {
    margin: 0 0 25px;
  }
  .about-event-block__list > li {
    font-size: 16px;
    padding: 15px 0;
    grid-gap: 10px;
  }
  .about-event-block__list i svg {
    width: 18px;
  }
  .about-event-block__text-title {
    margin-bottom: 20px;
  }
  .about-event-block__text h2 {
    font-size: 21px;
  }
  .about-event-block__text h3 {
    font-size: 16px;
  }
  .about-event-block__text ul {
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-event-block__text ul i {
    font-size: 38px;
  }
  .about-event-block__btn {
    max-width: 250px;
  }
  .about-event-block__btn .button {
    font-size: 14px;
  }
}
@media (max-width: 399px) {
  .about-event-block__text-title {
    margin-bottom: 10px;
  }
  .about-event-block__text ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.event-architecture {
  background: #0F304F;
  padding: 80px 0;
  overflow: hidden;
}
.event-architecture .main-inner-title h2 {
  color: #fff;
  margin: 0 0 30px;
}
.event-architecture__desc p {
  color: #fff;
  font-size: 18px;
  /* margin: 0 0 45px;  */
}
.event-architecture .scrollable {
  max-height: 700px;
  cursor: grab;
}
.event-architecture .scrollable.scrollbar.scrollbar--horizontal:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #0f304f;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 15;
}
.event-architecture .scrollable .simplebar-scrollbar:before {
  background-color: #968276;
}
.event-architecture .scrollable .simplebar-mask {
  z-index: 10;
}
.event-architecture .scrollable .simplebar-wrapper {
  margin: 23px !important;
}
.event-architecture .scrollable .simplebar-track.simplebar-vertical {
  right: -13px !important;
  width: 23px;
  border-left: 10px solid #0F304F;
  border-right: 10px solid #0F304F;
  z-index: 10;
}
.event-architecture .scrollable .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  right: -10px;
  width: 23px;
  border-left: 10px solid #0F304F;
  border-right: 10px solid #0F304F;
}
.event-architecture .scrollable .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: -2px;
  bottom: -2px;
}
.event-architecture .scrollable .simplebar-track.simplebar-horizontal {
  bottom: -13px !important;
  bottom: -13px !important;
  height: 23px;
  border-top: 10px solid #0F304F;
  border-bottom: 10px solid #0F304F;
  z-index: 10;
}
.event-architecture .scrollable .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: auto;
  bottom: -10px !important;
  height: 23px;
  border-top: 10px solid #0F304F;
  border-bottom: 10px solid #0F304F;
}
.event-architecture .scrollable .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: -2px;
  right: -2px;
}
.event-architecture .scrollable table {
  min-width: 100% !important;
  width: max-content;
  border: none;
  margin: 0 !important;
  table-layout: fixed;
}
.event-architecture .scrollable thead, .event-architecture .scrollable tbody {
  border: none;
}
.event-architecture .scrollable tr {
  background: transparent !important;
}
.event-architecture .scrollable tr:first-of-type th:first-of-type {
  background: #0F304F;
  font-size: 24px;
  border: none !important;
}
.event-architecture .scrollable tr:first-of-type th:first-of-type:after {
  content: "";
  border: 1px solid #fff !important;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 0;
  top: 0;
}
.event-architecture .scrollable tr:first-of-type th:first-of-type:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.event-architecture .scrollable tr:last-of-type td {
  padding: 35px 30px 45px 45px;
}
.event-architecture .scrollable tr:last-of-type td:after {
  border-bottom: none !important;
}
.event-architecture .scrollable th, .event-architecture .scrollable td {
  width: 445px;
  min-width: 445px;
  grid-gap: 10px;
  border: none !important;
  background: #fff;
  padding: 35px 30px 45px 45px;
  font-weight: 500;
  font-size: 16px;
  align-items: center;
  position: relative;
}
.event-architecture .scrollable th:after, .event-architecture .scrollable td:after {
  content: "";
  border-bottom: 10px solid #0f304f !important;
  border-right: 10px solid #0f304f !important;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
  left: 0;
  position: sticky;
  width: 390px;
  min-width: 390px;
  border: none !important;
}
.event-architecture .scrollable th:first-of-type:after, .event-architecture .scrollable td:first-of-type:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.event-architecture .scrollable th:last-of-type:after, .event-architecture .scrollable td:last-of-type:after {
  border-right: none !important;
}
.event-architecture .scrollable th {
  position: sticky;
  text-align: left;
  top: 0;
  color: #fff;
  background: #9B877C;
  font-size: 36px;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  padding: 45px 30px 55px 45px;
}
.event-architecture .scrollable th:first-of-type {
  z-index: 3;
}
.event-architecture .scrollable th:nth-of-type(odd) {
  background: #A6A6A6;
}
.event-architecture .scrollable td:first-of-type {
  font-weight: 700;
  font-size: 18px;
  z-index: 1;
}
.event-architecture .scrollable.remove-simplebar-vertical .simplebar-track.simplebar-vertical {
  display: none;
}
.event-architecture .scrollable.remove-simplebar-vertical.scrollbar--horizontal:after {
  display: none;
}

.v-ceremonial .event-architecture {
  background: #F99603;
}
.v-ceremonial .event-architecture .scrollable .simplebar-scrollbar:before {
  background-color: #333333;
}
.v-ceremonial .event-architecture .scrollable.scrollbar.scrollbar--horizontal:after {
  background: #F99603;
}
.v-ceremonial .event-architecture .scrollable .simplebar-track.simplebar-vertical {
  border-left-color: #F99603;
  border-right-color: #F99603;
}
.v-ceremonial .event-architecture .scrollable .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  border-left-color: #F99603;
  border-right-color: #F99603;
}
.v-ceremonial .event-architecture .scrollable .simplebar-track.simplebar-horizontal {
  border-top-color: #F99603;
  border-bottom-color: #F99603;
}
.v-ceremonial .event-architecture .scrollable .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  border-top-color: #F99603;
  border-bottom-color: #F99603;
}
.v-ceremonial .event-architecture .scrollable th {
  background: #545454;
}
.v-ceremonial .event-architecture .scrollable th:nth-of-type(odd) {
  background: #737373;
}
.v-ceremonial .event-architecture .scrollable tr:first-of-type th:first-of-type {
  background: #F99603;
}
.v-ceremonial .event-architecture .scrollable th:after, .v-ceremonial .event-architecture .scrollable td:after {
  border-bottom-color: #F99603 !important;
  border-right-color: #F99603 !important;
}

@media (max-width: 1349px) {
  .event-architecture .scrollable th, .event-architecture .scrollable td {
    padding: 40px 25px 50px 35px;
    width: 415px;
    min-width: 415px;
  }
  .event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
    width: 370px;
    min-width: 370px;
  }
  .event-architecture .scrollable tr:first-of-type th:first-of-type {
    font-size: 21px;
  }
  .event-architecture .scrollable tr:last-of-type td {
    padding: 35px 25px 45px 35px;
  }
  .event-architecture .scrollable td:first-of-type {
    font-size: 16px;
  }
  .event-architecture .scrollable th {
    font-size: 32px;
    font-size: 21px;
  }
}
@media (max-width: 1249px) {
  .event-architecture {
    padding: 60px 0;
  }
  .event-architecture .scrollable th, .event-architecture .scrollable td {
    padding: 25px 15px 35px 15px;
    width: 320px;
    min-width: 320px;
    font-size: 14px;
  }
  .event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
    width: 300px;
    min-width: 300px;
  }
  .event-architecture .scrollable tr:last-of-type td {
    padding: 25px 15px 35px 15px;
  }
  .event-architecture .scrollable th {
    font-size: 26px;
    font-size: 21px;
  }
}
@media (max-width: 989px) {
  .event-architecture {
    padding: 40px 0;
  }
  .event-architecture .main-inner-title h2 {
    margin: 0 0 15px;
  }
  .event-architecture__desc p {
    font-size: 16px;
    margin: 0 0 35px;
  }
  .event-architecture .scrollable th, .event-architecture .scrollable td {
    padding: 20px 10px 25px 10px;
    width: 320px;
    min-width: 320px;
    font-size: 14px;
  }
  .event-architecture .scrollable th:after, .event-architecture .scrollable td:after {
    border-width: 5px !important;
  }
  .event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
    width: 170px;
    min-width: 170px;
  }
  .event-architecture .scrollable tr:first-of-type th:first-of-type {
    font-size: 18px;
  }
  .event-architecture .scrollable tr:first-of-type th:first-of-type:after {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
  .event-architecture .scrollable tr:last-of-type td {
    padding: 20px 10px 35px 10px;
  }
  .event-architecture .scrollable td:first-of-type {
    font-size: 14px;
  }
  .event-architecture .scrollable th {
    font-size: 22px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .event-architecture {
    padding: 40px 0;
  }
  .event-architecture .main-inner-title h2 {
    margin: 0 0 10px;
  }
  .event-architecture__desc p {
    font-size: 14px;
    margin: 0 0 25px;
  }
  .event-architecture .scrollable th, .event-architecture .scrollable td {
    padding: 10px 10px 15px 10px;
    width: 220px;
    min-width: 220px;
    font-size: 12px;
  }
  .event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
    width: 170px;
    min-width: 170px;
  }
  .event-architecture .scrollable tr:first-of-type th:first-of-type {
    font-size: 14px;
  }
  .event-architecture .scrollable tr:last-of-type td {
    padding: 10px 10px 20px 10px;
  }
  .event-architecture .scrollable td:first-of-type {
    font-size: 12px;
  }
  .event-architecture .scrollable th {
    font-size: 16px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .event-architecture .scrollable th:first-of-type, .event-architecture .scrollable td:first-of-type {
    position: relative;
  }
  .event-architecture .scrollable th {
    position: relative;
  }
}
.speakers {
  padding: 90px 0;
  overflow: hidden;
}
.speakers .main-inner-title h2 {
  margin: 0 0 45px;
}
.speakers__slider {
  position: relative;
}
.speakers__slider:after {
  height: 100%;
  width: 2px;
  background: #fff;
  right: 0;
  top: 0;
  content: "";
  position: absolute;
  z-index: 1;
}
.speakers .swiper-wrapper {
  display: flex;
  margin-left: -2px;
}
.speakers .swiper-slide {
  height: auto;
  border-left: 2px solid #D1E1F0;
}
.speakers__slide {
  box-sizing: border-box;
  text-decoration: none;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 5px 10px;
}
.speakers__slide:hover {
  color: #0F304F;
}
.speakers__slide:hover .speakers__photo:before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.speakers__photo {
  width: 268px;
  height: 268px;
  padding: 35px;
  border: 2px solid rgba(150, 130, 118, 0.5294117647);
  border-radius: 50%;
  position: relative;
  margin-bottom: 32px;
}
.speakers__photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.speakers__photo img:not(.speaker_placeholder) {
  object-position: 50% calc(50% + 45px);
}
.speakers__photo:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(150, 130, 118, 0.5294117647);
  border-radius: 50%;
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  transition: 0.2s ease-in-out all;
  z-index: -1;
}
.speakers__name {
  font-weight: 700;
  margin-bottom: 15px;
}
.speakers__spec {
  font-weight: 500;
}

.v-ceremonial .speakers__photo {
  border: 2px solid #F99603;
}
.v-ceremonial .speakers__photo:before {
  background: #F99603;
}
.v-ceremonial .speakers .slider-btn--prev, .v-ceremonial .speakers .slider-btn--next {
  border: 1px solid #A5A5A5;
}
.v-ceremonial .speakers .slider-btn--prev:after, .v-ceremonial .speakers .slider-btn--prev:before, .v-ceremonial .speakers .slider-btn--next:after, .v-ceremonial .speakers .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1.55469 2L9.55469 10L1.55469 18' stroke='%23A5A5A5' stroke-width='4'/%3E %3C/svg%3E ");
}
.v-ceremonial .speakers .slider-btn--prev:before, .v-ceremonial .speakers .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1.55469 2L9.55469 10L1.55469 18' stroke='%23fff' stroke-width='4'/%3E %3C/svg%3E ");
}
.v-ceremonial .speakers .slider-btn--prev:hover, .v-ceremonial .speakers .slider-btn--next:hover {
  background: #333333;
  border-color: #333333;
}
.v-ceremonial .speakers .swiper-slide {
  border-left-color: rgba(165, 165, 165, 0.35);
}

@media (max-width: 1249px) {
  .speakers {
    padding: 80px 0 60px;
  }
  .speakers .main-inner-title h2 {
    margin: 0 0 60px;
  }
  .speakers__photo {
    width: 250px;
    height: 250px;
    padding: 30px;
    margin-bottom: 25px;
  }
  .speakers__photo:before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  .speakers__name {
    margin-bottom: 10px;
  }
}
@media (max-width: 989px) {
  .speakers {
    padding: 50px 0;
  }
  .speakers .main-inner-title h2 {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .speakers {
    padding: 40px 0;
  }
  .speakers .main-inner-title h2 {
    margin: 0 0 40px;
  }
  .speakers__slide:hover .speakers__photo:before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  .speakers__photo {
    width: 200px;
    height: 200px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .speakers__photo:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .speakers__photo img:not(.speaker_placeholder) {
    object-position: 50% calc(50% + 35px);
  }
  .speakers__name {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .speakers .swiper-slide {
    border: none;
  }
  .speakers__slider:after {
    display: none;
  }
}
.page-special-page .header {
  display: none;
}
.page-special-page .footer {
  display: none;
}
.page-special-page__footer {
  background: #9B877C;
  height: 200px;
}

.v-ceremonial .page-special-page__footer {
  background: #F99603;
}

@media (max-width: 1249px) {
  .page-special-page__footer {
    height: 100px;
  }
}
.news-slider {
  background: #9B877C;
  padding: 90px 0;
}
.news-slider .main-inner-title h2 {
  color: #fff;
  margin: 0 0 90px;
}
.news-slider__slider {
  position: relative;
}
.news-slider .swiper-wrapper {
  display: flex;
}
.news-slider .swiper-slide {
  box-sizing: border-box;
  height: auto;
}
.news-slider .slider-btn--prev, .news-slider .slider-btn--next {
  border-color: #fff;
}
.news-slider .slider-btn--prev:after, .news-slider .slider-btn--prev:before, .news-slider .slider-btn--next:after, .news-slider .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M2 2L10 10L2 18' stroke='white' stroke-width='4'/%3E %3C/svg%3E ");
}
.news-slider .slider-btn--prev:hover, .news-slider .slider-btn--next:hover {
  background-color: #333333;
  border-color: #333333;
}
.news-slider__slide {
  border: 1px solid #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 44px 15px 90px;
  height: 100%;
}
.news-slider__slide:hover .news-slider__name {
  color: #fff;
  text-decoration-color: transparent;
}
.news-slider__item {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  width: 100%;
  max-width: 535px;
}
.news-slider__img {
  width: 100%;
  height: 270px;
}
.news-slider__img img {
  margin: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.news-slider__name {
  font-weight: 500;
  font-size: 24px;
  text-decoration: underline;
  transition: 0.2s ease-in-out text-decoration-color;
  color: #fff;
}

.v-ceremonial .news-slider {
  background: #F99603;
}

@media (max-width: 1249px) {
  .news-slider {
    padding: 80px 0 60px;
  }
  .news-slider .main-inner-title h2 {
    margin: 0 0 60px;
  }
  .news-slider__slide {
    padding: 20px 20px 60px;
  }
  .news-slider__name {
    font-size: 21px;
  }
}
@media (max-width: 989px) {
  .news-slider {
    padding: 50px 0;
  }
  .news-slider .main-inner-title h2 {
    margin: 0 0 40px;
  }
  .news-slider__img {
    height: 210px;
  }
  .news-slider__name {
    font-size: 18px;
  }
  .news-slider__slide {
    padding: 15px 15px 60px;
  }
  .news-slider__item {
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .news-slider {
    padding: 40px 0;
  }
  .news-slider .main-inner-title h2 {
    margin: 0 0 40px;
  }
}
@media (max-width: 399px) {
  .news-slider__img {
    height: 170px;
  }
}
.media-slider {
  background: #fff;
  padding: 90px 0 45px;
}
.media-slider .main-inner-title h2 {
  color: #333333;
  margin: 0 0 30px;
}
.media-slider__slider {
  position: relative;
}
.media-slider .swiper-slide {
  box-sizing: border-box;
}
.media-slider .slider-btn--prev, .media-slider .slider-btn--next {
  border-color: #333333;
}
.media-slider .slider-btn--prev:after, .media-slider .slider-btn--prev:before, .media-slider .slider-btn--next:after, .media-slider .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M2 2L10 10L2 18' stroke='%23333333' stroke-width='4'/%3E %3C/svg%3E ");
}
.media-slider .slider-btn--prev:before, .media-slider .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M2 2L10 10L2 18' stroke='%23fff' stroke-width='4'/%3E %3C/svg%3E ");
}
.media-slider .slider-btn--prev:hover, .media-slider .slider-btn--next:hover {
  background-color: #333333;
  border-color: #333333;
}
.media-slider__slide--video {
  position: relative;
}
.media-slider__slide--video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out background-color;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1411764706);
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='9' viewBox='0 0 7 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M6.99609 4.58826L0.823645 8.79016L0.823646 0.386364L6.99609 4.58826Z' fill='black'/%3E %3C/svg%3E ");
}
.media-slider__slide--video:hover:after {
  transform: translate(-50%, -50%) scale(1.15);
}
.media-slider__img {
  width: 100%;
  height: 270px;
}
.media-slider__img img {
  margin: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.v-ceremonial .media-slider .slider-btn--prev, .v-ceremonial .media-slider .slider-btn--next {
  border-color: #A5A5A5;
}
.v-ceremonial .media-slider .slider-btn--prev:after, .v-ceremonial .media-slider .slider-btn--prev:before, .v-ceremonial .media-slider .slider-btn--next:after, .v-ceremonial .media-slider .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M2 2L10 10L2 18' stroke='%23A5A5A5' stroke-width='4'/%3E %3C/svg%3E ");
}
.v-ceremonial .media-slider .slider-btn--prev:before, .v-ceremonial .media-slider .slider-btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M2 2L10 10L2 18' stroke='%23fff' stroke-width='4'/%3E %3C/svg%3E ");
}

@media (max-width: 1249px) {
  .media-slider {
    padding: 80px 0 30px;
  }
}
@media (max-width: 989px) {
  .media-slider {
    padding: 50px 0 20px;
  }
  .media-slider__img {
    height: 210px;
  }
  .media-slider__name {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .media-slider {
    padding: 40px 0 20px;
  }
  .media-slider__img {
    height: 180px;
  }
}
@media (max-width: 399px) {
  .media-slider__img {
    height: 170px;
  }
}
.partners {
  background: #fff;
  padding: 45px 0;
}
.partners .main-inner-title h2 {
  color: #333333;
  margin: 0 0 30px;
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 23px;
}
.partners__item {
  width: 100%;
  box-shadow: 0px 12px 20.9px 0px rgba(100, 138, 173, 0.0784313725);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 20px;
}
.partners__item img {
  margin: 0;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.partners a.partners__item {
  transition: 0.2s ease-in-out box-shadow;
}
.partners a.partners__item:hover {
  box-shadow: 0px 12px 20.9px 0px rgba(100, 138, 173, 0.25);
}

@media (max-width: 1249px) {
  .partners {
    padding: 80px 0 30px;
  }
  .partners__item {
    height: 120px;
    padding: 15px;
  }
}
@media (max-width: 989px) {
  .partners {
    padding: 50px 0 20px;
  }
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .partners {
    padding: 40px 0 20px;
  }
  .partners__list {
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .partners__item {
    height: 100px;
    padding: 10px;
  }
}
@media (max-width: 399px) {
  .partners__item {
    height: 85px;
  }
}
.contacts-page {
  background: #fff;
  padding: 45px 0 90px;
  position: relative;
}
.contacts-page:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: calc(100% + 200px) 100%;
  background-image: url(../../img/new/logo-1.png);
  opacity: 0.8;
}
.contacts-page .main-inner-title h2 {
  color: #333333;
  margin: 0 0 70px;
}
.contacts-page__list {
  display: flex;
  flex-direction: column;
  grid-gap: 53px;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
.contacts-page__list a {
  display: flex;
  grid-gap: 30px;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.contacts-page__list a:hover {
  color: #9B877C;
}
.contacts-page__list i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #9B877C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-page__list span {
  flex: 1;
}

.v-ceremonial .contacts-page:before {
  background-image: url(../../img/new/logo-3.png);
}
.v-ceremonial .contacts-page__list i {
  background-color: #F99603;
}
.v-ceremonial .contacts-page__list a:hover {
  color: #F99603;
}

@media (max-width: 1249px) {
  .contacts-page {
    padding: 40px 0 80px;
  }
  .contacts-page:before {
    background-size: auto 360px;
  }
  .contacts-page .main-inner-title h2 {
    margin: 0 0 60px;
  }
  .contacts-page__list {
    grid-gap: 30px;
  }
  .contacts-page__list a {
    grid-gap: 20px;
    font-size: 18px;
  }
  .contacts-page__list i {
    width: 60px;
    height: 60px;
  }
  .contacts-page__list i img {
    transform: scale(0.8);
  }
}
@media (max-width: 989px) {
  .contacts-page {
    padding: 30px 0 50px;
  }
  .contacts-page:before {
    background-size: auto 290px;
  }
  .contacts-page .main-inner-title h2 {
    margin: 0 0 50px;
  }
}
@media (max-width: 767px) {
  .contacts-page {
    padding: 20px 0;
  }
  .contacts-page:before {
    background-size: auto 230px;
    background-position: calc(100% + 160px) 100%;
  }
  .contacts-page .main-inner-title h2 {
    margin: 0 0 30px;
  }
  .contacts-page__list {
    grid-gap: 20px;
  }
}
@media (max-width: 575px) {
  .contacts-page:before {
    background-size: auto 210px;
    background-position: calc(100% + 160px) 100%;
    opacity: 0.3;
  }
}
.courses-reg-wrap .content-wrap__sidebar {
  width: 240px;
}
.courses-reg-wrap .content-wrap__main {
  width: calc(100% - 240px);
}

.courses-reg__wrap {
  display: flex;
  grid-gap: 64px;
  width: 100%;
  justify-content: space-between;
}
.courses-reg__form {
  width: calc(100% - 340px - 64px);
}
.courses-reg__aside {
  width: 340px;
  max-width: 340px;
  min-width: 340px;
}
.courses-reg__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0;
}
.courses-reg__nav a {
  border: 1px solid #CCCCCC;
  background: transparent;
  font-weight: 400;
  color: #123C6A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 5px;
  text-transform: uppercase;
  font-family: "IBM Plex Sans";
  transition: 0.2s ease-in-out all;
}
.courses-reg__nav a:hover {
  background: #0367D1;
  color: #fff;
}
.courses-reg__nav a:nth-of-type(1) {
  border-radius: 10px 0 0px 0px;
}
.courses-reg__nav a:nth-of-type(2) {
  border-radius: 0 0px 0px 0px;
}
.courses-reg__nav a:nth-of-type(3) {
  border-radius: 0 10px 0px 0px;
}
.courses-reg__nav a.active {
  background: #123C6A;
  border: 1px solid #123C6A;
  color: #FFFFFF;
  font-weight: 700;
  pointer-events: none;
}
.courses-reg__form-desc {
  margin: 50px 0 20px;
}
.courses-reg__form-desc p {
  margin: 0;
}
.courses-reg__img {
  width: 100%;
  margin-bottom: 12px;
}
.courses-reg__img img {
  object-position: center;
  object-fit: contain;
  margin: 0;
}
.courses-reg__title {
  font-size: 24px;
  color: #000;
  font-family: "Alegreya";
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.courses-reg__price {
  color: #4E6883;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 0.7;
}
.courses-reg__desc {
  text-align: left;
  color: #707070;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 38px;
}
.courses-reg__desc p {
  text-align: left;
  margin: 0;
}
.courses-reg__files {
  display: flex;
  flex-direction: column;
  grid-gap: 17px;
  text-align: left;
  line-height: 1.5;
}
.courses-reg__files a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
  font-size: 14px;
  font-weight: 400;
}
.courses-reg__files a:hover {
  color: #4E6883;
}
.courses-reg__files i {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M19 12V19H5V12H3V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V12H19ZM13 12.67L15.59 10.09L17 11.5L12 16.5L7 11.5L8.41 10.09L11 12.67V3H13V12.67Z' fill='%234E6883'/%3E %3C/svg%3E ");
  width: 24px;
  height: 24px;
  margin-right: 14px;
}
.courses-reg__files span {
  display: flex;
  flex: 1;
}

@media (max-width: 1249px) {
  .courses-reg-wrap .content-wrap__sidebar {
    width: 210px;
  }
  .courses-reg-wrap .content-wrap__main {
    width: calc(100% - 210px);
  }
  .courses-reg__wrap {
    grid-gap: 24px;
  }
  .courses-reg__form {
    width: calc(100% - 300px - 24px);
  }
  .courses-reg__aside {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
  }
  .courses-reg .courses-reg__title {
    font-size: 21px;
  }
  .courses-reg__price {
    font-size: 26px;
  }
}
@media (max-width: 989px) {
  .courses-reg-wrap .content-wrap__sidebar {
    width: 100%;
  }
  .courses-reg-wrap .content-wrap__main {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .courses-reg__wrap {
    flex-direction: column;
    grid-gap: 40px;
  }
  .courses-reg__form {
    width: 100%;
  }
  .courses-reg__aside {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    order: -1;
  }
  .courses-reg__price {
    margin-bottom: 20px;
  }
  .courses-reg__desc {
    margin-bottom: 20px;
  }
  .courses-reg__form-desc {
    margin: 15px 0 30px;
  }
}
.nav {
  width: 100%;
}
.nav__menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.nav__menu li {
  position: relative;
}
.nav__menu li a {
  text-decoration: none;
  display: block;
  color: #000000;
}
.nav__item-parent > ul, .nav .menu-item-has-children > ul {
  position: absolute;
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out opacity, 0.2s ease-in-out visibility;
  top: 100%;
  left: -15px;
  z-index: 2;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 15px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}
.nav__item-parent > ul > li, .nav .menu-item-has-children > ul > li {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.nav__item-parent > ul > li > a, .nav .menu-item-has-children > ul > li > a {
  font-family: "Montserrat";
}
.nav__item-parent > ul > li:last-of-type, .nav .menu-item-has-children > ul > li:last-of-type {
  margin-bottom: 0;
}
.nav__item-parent > ul ul, .nav .menu-item-has-children > ul ul {
  top: -15px;
  left: 100%;
}
.nav__item-parent > a, .nav .menu-item-has-children > a {
  padding-right: 28px;
}
.nav__item-parent > a:hover:before, .nav .menu-item-has-children > a:hover:before {
  opacity: 0;
}
.nav__item-parent > a:hover:after, .nav .menu-item-has-children > a:hover:after {
  opacity: 1;
}
.nav__item-parent > a:before, .nav__item-parent > a:after, .nav .menu-item-has-children > a:before, .nav .menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 20px;
  height: 21px;
  transition: 0.2s ease-in-out opacity, 0.4s ease-in-out transform;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5582 13.2604L10 12.6818L9.44176 13.2604C9.75007 13.5799 10.2499 13.5799 10.5582 13.2604ZM10 11.5247L6.34772 7.73964C6.03941 7.42012 5.53954 7.42012 5.23123 7.73964C4.92292 8.05916 4.92292 8.5772 5.23123 8.89672L9.44176 13.2604L10 12.6818L10.5582 13.2604L14.7688 8.89672C15.0771 8.5772 15.0771 8.05916 14.7688 7.73964C14.4605 7.42012 13.9606 7.42012 13.6523 7.73964L10 11.5247Z' fill='%23222222'/%3E %3C/svg%3E ");
}
.nav__item-parent > a:after, .nav .menu-item-has-children > a:after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5582 13.2604L10 12.6818L9.44176 13.2604C9.75007 13.5799 10.2499 13.5799 10.5582 13.2604ZM10 11.5247L6.34772 7.73964C6.03941 7.42012 5.53954 7.42012 5.23123 7.73964C4.92292 8.05916 4.92292 8.5772 5.23123 8.89672L9.44176 13.2604L10 12.6818L10.5582 13.2604L14.7688 8.89672C15.0771 8.5772 15.0771 8.05916 14.7688 7.73964C14.4605 7.42012 13.9606 7.42012 13.6523 7.73964L10 11.5247Z' fill='%23869AAC'/%3E %3C/svg%3E ");
}
.nav__item-parent:hover > ul, .nav .menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.nav__item-parent:hover > a:before, .nav__item-parent:hover > a:after, .nav .menu-item-has-children:hover > a:before, .nav .menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}

@media (max-width: 989px) {
  .nav__menu li a {
    font-size: 14px;
  }
  .nav__item-parent > a, .nav .menu-item-has-children > a {
    padding-right: 24px;
  }
  .nav__item-parent > a:before, .nav__item-parent > a:after, .nav .menu-item-has-children > a:before, .nav .menu-item-has-children > a:after {
    width: 17px;
    height: 18px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .nav {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - var(--heightHeader, 1vh) * 100);
    top: calc(var(--heightHeader, 1vh) * 100);
    position: absolute !important;
    left: 0;
    z-index: 100;
    flex-direction: column;
    padding: 15px 15px 35px;
    background: #EFEFEF;
    margin-top: 0;
    width: 100%;
    align-items: flex-start;
    flex-wrap: nowrap;
    transition: 0.2s ease-in-out opacity, 0.2s ease-in-out visibility, 0.3s ease-in-out transform;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25px);
    overflow: auto;
    justify-content: flex-start;
    display: flex;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  .nav__menu {
    flex-direction: column;
    height: auto;
    margin-bottom: 25px;
  }
  .nav__menu li {
    margin-bottom: 27px;
  }
  .nav__menu li:last-of-type {
    margin-bottom: 0;
  }
  .nav__menu li a {
    font-size: 18px;
  }
  .nav__item-parent > ul, .nav .menu-item-has-children > ul {
    opacity: 1;
    visibility: unset !important;
    transform: translateY(0px);
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-top: 20px;
  }
  .nav__item-parent > ul > li, .nav .menu-item-has-children > ul > li {
    margin-bottom: 20px;
  }
  .nav__item-parent > ul > li > a, .nav .menu-item-has-children > ul > li > a {
    font-size: 14px;
  }
  .nav__item-parent > a:before, .nav__item-parent > a:after, .nav .menu-item-has-children > a:before, .nav .menu-item-has-children > a:after {
    display: none;
  }
}
@media (max-width: 575px) {
  .nav {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - 40px);
    top: 40px;
    padding: 9px 15px 35px;
  }
}
.files {
  margin: 20px 0 90px;
}
.files__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}
.files li {
  width: 32.5%;
  margin-bottom: 10px;
}
.files__info {
  padding-right: 50px;
  margin-bottom: auto;
}
.files__item {
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
}
.files__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  height: 100%;
}
.files__item a:after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='41' viewBox='0 0 40 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Crect y='0.5' width='40' height='40' rx='20' fill='%23EDF2F6'/%3E %3Cpath d='M29 23.5V27.5C29 28.0304 28.7893 28.5391 28.4142 28.9142C28.0391 29.2893 27.5304 29.5 27 29.5H13C12.4696 29.5 11.9609 29.2893 11.5858 28.9142C11.2107 28.5391 11 28.0304 11 27.5V23.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpath d='M15 18.5L20 23.5L25 18.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpath d='M20 23.5V11.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.files__item a:hover .files__title {
  color: #5f7ce4;
}
.files__item--hidden {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}
.files__item i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='49' viewBox='0 0 38 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M37.4926 12.2828L25.8767 0.514063C25.5528 0.185938 25.1156 0 24.6568 0H1.72727C0.771875 0 0 0.782031 0 1.75V47.25C0 48.218 0.771875 49 1.72727 49H36.2727C37.2281 49 38 48.218 38 47.25V13.5242C38 13.0594 37.8165 12.6109 37.4926 12.2828Z' fill='url(%23paint0_linear_0_1)'/%3E %3Cpath d='M24 4V10.5C24 12.7091 25.7909 14.5 28 14.5H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E %3Cdefs%3E %3ClinearGradient id='paint0_linear_0_1' x1='14' y1='9.5' x2='41' y2='37.5' gradientUnits='userSpaceOnUse'%3E %3Cstop stop-color='%23ADC030'/%3E %3Cstop offset='1' stop-color='%2353A023'/%3E %3C/linearGradient%3E %3C/defs%3E %3C/svg%3E ");
  min-width: 38px;
  width: 38px;
  height: 50px;
  margin-right: 15px;
  display: inline-block;
  margin-bottom: auto;
}
.files__item--doc i, .files__item--docx i {
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='49' viewBox='0 0 38 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M37.4926 12.2828L25.8767 0.514063C25.5528 0.185938 25.1156 0 24.6568 0H1.72727C0.771875 0 0 0.782031 0 1.75V47.25C0 48.218 0.771875 49 1.72727 49H36.2727C37.2281 49 38 48.218 38 47.25V13.5242C38 13.0594 37.8165 12.6109 37.4926 12.2828Z' fill='url(%23paint0_linear_213_26)'/%3E %3Cpath d='M7.89844 32.2471C7.89844 31.0941 8.15592 30.1758 8.6709 29.4922C9.19043 28.8086 9.89909 28.4668 10.7969 28.4668C11.5169 28.4668 12.1117 28.7357 12.5811 29.2734V25.5H14.5635V36H12.7793L12.6836 35.2139C12.1914 35.8291 11.5579 36.1367 10.7832 36.1367C9.91276 36.1367 9.21322 35.7949 8.68457 35.1113C8.16048 34.4232 7.89844 33.4684 7.89844 32.2471ZM9.87402 32.3906C9.87402 33.0833 9.99479 33.6143 10.2363 33.9834C10.4779 34.3525 10.8288 34.5371 11.2891 34.5371C11.8997 34.5371 12.3304 34.2796 12.5811 33.7646V30.8457C12.335 30.3307 11.9089 30.0732 11.3027 30.0732C10.3503 30.0732 9.87402 30.8457 9.87402 32.3906ZM15.7871 32.2334C15.7871 31.4997 15.9284 30.8457 16.2109 30.2715C16.4935 29.6973 16.8991 29.2529 17.4277 28.9385C17.9609 28.624 18.5785 28.4668 19.2803 28.4668C20.2783 28.4668 21.0918 28.7721 21.7207 29.3828C22.3542 29.9935 22.7074 30.8229 22.7803 31.8711L22.7939 32.377C22.7939 33.5117 22.4772 34.4232 21.8438 35.1113C21.2103 35.7949 20.3604 36.1367 19.2939 36.1367C18.2275 36.1367 17.3753 35.7949 16.7373 35.1113C16.1038 34.4277 15.7871 33.498 15.7871 32.3223V32.2334ZM17.7627 32.377C17.7627 33.0788 17.8949 33.6165 18.1592 33.9902C18.4235 34.3594 18.8018 34.5439 19.2939 34.5439C19.7725 34.5439 20.1462 34.3617 20.415 33.9971C20.6839 33.6279 20.8184 33.04 20.8184 32.2334C20.8184 31.5452 20.6839 31.012 20.415 30.6338C20.1462 30.2555 19.7679 30.0664 19.2803 30.0664C18.7972 30.0664 18.4235 30.2555 18.1592 30.6338C17.8949 31.0075 17.7627 31.5885 17.7627 32.377ZM27.0869 34.5439C27.4515 34.5439 27.7477 34.4437 27.9756 34.2432C28.2035 34.0426 28.3219 33.776 28.3311 33.4434H30.1836C30.179 33.9447 30.0423 34.4049 29.7734 34.8242C29.5046 35.2389 29.1354 35.5625 28.666 35.7949C28.2012 36.0228 27.6862 36.1367 27.1211 36.1367C26.0638 36.1367 25.2298 35.8018 24.6191 35.1318C24.0085 34.4574 23.7031 33.5277 23.7031 32.3428V32.2129C23.7031 31.0736 24.0062 30.1644 24.6123 29.4854C25.2184 28.8063 26.0501 28.4668 27.1074 28.4668C28.0326 28.4668 28.7731 28.7311 29.3291 29.2598C29.8896 29.7839 30.1745 30.4834 30.1836 31.3584H28.3311C28.3219 30.9756 28.2035 30.6657 27.9756 30.4287C27.7477 30.1872 27.4469 30.0664 27.0732 30.0664C26.613 30.0664 26.2643 30.235 26.0273 30.5723C25.7949 30.9049 25.6787 31.4473 25.6787 32.1992V32.4043C25.6787 33.1654 25.7949 33.7122 26.0273 34.0449C26.2598 34.3776 26.613 34.5439 27.0869 34.5439Z' fill='white'/%3E %3Cpath d='M24 4V10.5C24 12.7091 25.7909 14.5 28 14.5H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E %3Cdefs%3E %3ClinearGradient id='paint0_linear_213_26' x1='1.56436' y1='23.9034' x2='36.7525' y2='23.9034' gradientUnits='userSpaceOnUse'%3E %3Cstop stop-color='%238541AF'/%3E %3Cstop offset='1' stop-color='%234829A0'/%3E %3C/linearGradient%3E %3C/defs%3E %3C/svg%3E ");
}
.files__item--pdf i {
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='49' viewBox='0 0 38 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M37.4926 12.2828L25.8767 0.514063C25.5528 0.185938 25.1156 0 24.6568 0H1.72727C0.771875 0 0 0.782031 0 1.75V47.25C0 48.218 0.771875 49 1.72727 49H36.2727C37.2281 49 38 48.218 38 47.25V13.5242C38 13.0594 37.8165 12.6109 37.4926 12.2828Z' fill='%23DD3634'/%3E %3Cpath d='M37.4926 12.2828L25.8767 0.514063C25.5528 0.185938 25.1156 0 24.6568 0H1.72727C0.771875 0 0 0.782031 0 1.75V47.25C0 48.218 0.771875 49 1.72727 49H36.2727C37.2281 49 38 48.218 38 47.25V13.5242C38 13.0594 37.8165 12.6109 37.4926 12.2828Z' fill='url(%23paint0_linear_213_1510)'/%3E %3Cpath d='M24 4V10.5C24 12.7091 25.7909 14.5 28 14.5H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E %3Cpath d='M16.0195 32.3701C16.0195 33.5094 15.7598 34.4232 15.2402 35.1113C14.7253 35.7949 14.028 36.1367 13.1484 36.1367C12.401 36.1367 11.7972 35.877 11.3369 35.3574V38.8438H9.36133V28.6035H11.1934L11.2617 29.3281C11.7402 28.7539 12.3646 28.4668 13.1348 28.4668C14.0462 28.4668 14.7549 28.804 15.2607 29.4785C15.7666 30.153 16.0195 31.0827 16.0195 32.2676V32.3701ZM14.0439 32.2266C14.0439 31.5384 13.9209 31.0075 13.6748 30.6338C13.4333 30.2601 13.0801 30.0732 12.6152 30.0732C11.9954 30.0732 11.5693 30.3102 11.3369 30.7842V33.8125C11.5785 34.3001 12.0091 34.5439 12.6289 34.5439C13.5723 34.5439 14.0439 33.7715 14.0439 32.2266ZM16.9424 32.2471C16.9424 31.0941 17.1999 30.1758 17.7148 29.4922C18.2344 28.8086 18.943 28.4668 19.8408 28.4668C20.5609 28.4668 21.1556 28.7357 21.625 29.2734V25.5H23.6074V36H21.8232L21.7275 35.2139C21.2354 35.8291 20.6019 36.1367 19.8271 36.1367C18.9567 36.1367 18.2572 35.7949 17.7285 35.1113C17.2044 34.4232 16.9424 33.4684 16.9424 32.2471ZM18.918 32.3906C18.918 33.0833 19.0387 33.6143 19.2803 33.9834C19.5218 34.3525 19.8727 34.5371 20.333 34.5371C20.9437 34.5371 21.3743 34.2796 21.625 33.7646V30.8457C21.3789 30.3307 20.9528 30.0732 20.3467 30.0732C19.3942 30.0732 18.918 30.8457 18.918 32.3906ZM25.6787 36");
}
.files__item--xls i, .files__item--xml i, .files__item--xlsx i {
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='49' viewBox='0 0 38 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M37.4926 12.2828L25.8767 0.514063C25.5528 0.185938 25.1156 0 24.6568 0H1.72727C0.771875 0 0 0.782031 0 1.75V47.25C0 48.218 0.771875 49 1.72727 49H36.2727C37.2281 49 38 48.218 38 47.25V13.5242C38 13.0594 37.8165 12.6109 37.4926 12.2828Z' fill='url(%23paint0_linear_75_7375)'/%3E %3Cpath d='M13.5518 30.8115L14.7959 28.6035H16.9082L14.8027 32.2266L16.9971 36H14.8779L13.5586 33.6758L12.2461 36H10.1201L12.3145 32.2266L10.2158 28.6035H12.335L13.5518 30.8115ZM19.9434 36H17.9609V25.5H19.9434V36ZM25.583 33.9561C25.583 33.7145 25.4622 33.5254 25.2207 33.3887C24.9837 33.2474 24.6009 33.1221 24.0723 33.0127C22.3132 32.6436 21.4336 31.8962 21.4336 30.7705C21.4336 30.1143 21.7048 29.5674 22.2471 29.1299C22.7939 28.6878 23.5072 28.4668 24.3867 28.4668C25.3255 28.4668 26.0752 28.6878 26.6357 29.1299C27.2008 29.5719 27.4834 30.1462 27.4834 30.8525H25.5078C25.5078 30.57 25.4167 30.3376 25.2344 30.1553C25.0521 29.9684 24.7673 29.875 24.3799 29.875C24.0472 29.875 23.7897 29.9502 23.6074 30.1006C23.4251 30.251 23.334 30.4424 23.334 30.6748C23.334 30.8936 23.4365 31.0713 23.6416 31.208C23.8512 31.3402 24.2021 31.4564 24.6943 31.5566C25.1865 31.6523 25.6012 31.7617 25.9385 31.8848C26.9821 32.2676 27.5039 32.9307 27.5039 33.874C27.5039 34.5485 27.2145 35.0954 26.6357 35.5146C26.057 35.9294 25.3096 36.1367 24.3936 36.1367C23.7738 36.1367 23.2223 36.0273 22.7393 35.8086C22.2607 35.5853 21.8848 35.2822 21.6113 34.8994C21.3379 34.512 21.2012 34.0951 21.2012 33.6484H23.0742C23.0924 33.9993 23.2223 34.2682 23.4639 34.4551C23.7054 34.6419 24.029 34.7354 24.4346 34.7354C24.8128 34.7354 25.0977 34.6647 25.2891 34.5234C25.485 34.3776 25.583 34.1885 25.583 33.9561Z' fill='white'/%3E %3Cpath d='M24 4V10.5C24 12.7091 25.7909 14.5 28 14.5H34' stroke='white' stroke-width='2' stroke-linecap='round'/%3E %3Cdefs%3E %3ClinearGradient id='paint0_linear_75_7375' x1='14' y1='9.5' x2='41' y2='37.5' gradientUnits='userSpaceOnUs");
}
.files__title {
  color: #000000;
  transition: 0.2s ease-in-out color;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: 3px;
}
.files__size {
  font-size: 14px;
  font-style: italic;
  color: #123C6A;
}

@media (max-width: 989px) {
  .files {
    margin: 80px 0;
  }
  .files__list {
    margin: 40px 0;
  }
  .files li {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .files {
    margin: 40px 0;
  }
  .files__list {
    margin: 30px 0;
  }
  .files li {
    width: 100%;
  }
}
.checkbox-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.checkbox-list li {
  position: relative;
  margin-bottom: 10px;
}
.checkbox-list li:last-of-type {
  margin-bottom: 0;
}
.checkbox-list label {
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  transition: 0.2s ease-in-out color;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 1;
}
.checkbox-list i {
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  border: 2px solid #123C6A;
  transition: 0.2s ease-in-out all;
  border-radius: 50%;
  margin-right: 18px;
  background: transparent;
  position: relative;
  transform: translateY(-2px);
}
.checkbox-list i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) scale(0);
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
  background: #123C6A;
}
.checkbox-list input[type=checkbox],
.checkbox-list input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.checkbox-list input[type=checkbox]:checked + label i:before,
.checkbox-list input[type=radio]:checked + label i:before {
  transform: translate(-50%, -50%) scale(1);
}

.form-check {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
.form-check label {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  transition: 0.2s ease-in-out color;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 1;
}
.form-check .wpcf7-list-item {
  margin: 0;
  position: relative;
}
.form-check .wpcf7-list-item-label {
  position: relative;
  padding-left: 22px;
  display: block;
  font-size: 14px;
  color: #707070;
  font-weight: 400;
  cursor: pointer;
  transition: 0.2s ease-in-out color;
  line-height: 1.5;
}
.form-check .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: all ease-in-out 0.3s;
  background: transparent;
  border: 1px solid #707070;
  border-radius: 1px;
}
.form-check .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) scale(0);
  transition: all ease-in-out 0.1s;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M6.87147 0.790221C6.95606 0.701146 7.00211 0.583332 6.99993 0.461599C6.99774 0.339866 6.94748 0.223719 6.85973 0.137627C6.77199 0.0515359 6.65361 0.00222104 6.52955 7.32059e-05C6.40548 -0.00207463 6.2854 0.0431122 6.19462 0.126113L2.38256 3.86642L0.80538 2.31892C0.714596 2.23592 0.594522 2.19073 0.470453 2.19288C0.346385 2.19503 0.22801 2.24434 0.140267 2.33044C0.0525239 2.41653 0.00226365 2.53267 7.46112e-05 2.65441C-0.00211443 2.77614 0.0439386 2.89395 0.128532 2.98303L2.04414 4.86258C2.13393 4.95057 2.25565 5 2.38256 5C2.50947 5 2.63119 4.95057 2.72099 4.86258L6.87147 0.790221Z' fill='%23707070'/%3E %3C/svg%3E ");
}
.form-check .wpcf7-list-item-label:hover {
  color: #4E6883;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) scale(0);
}
.form-check input[type=checkbox]:checked + .wpcf7-list-item-label:after,
.form-check input[type=radio]:checked + .wpcf7-list-item-label:after {
  transform: translateY(-50%) scale(1);
}

.burger {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out opacity;
  z-index: 102;
}
.burger:hover {
  opacity: 0.7;
}
.burger span, .burger span:before, .burger span:after {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 2px;
  background: #ffffff;
  position: relative;
  top: 0px;
  transition: all 0.3s ease-in-out;
}
.burger span:after {
  position: absolute;
  content: "";
  top: auto;
  bottom: 6px;
}
.burger span:before {
  position: absolute;
  content: "";
  top: 6px;
}
.burger.active span {
  transform: rotate(45deg);
}
.burger.active span:before {
  transform: translate(0px, -6px) rotate(-90deg);
}
.burger.active span:after {
  transform: translate(0px, 6px) rotate(-90deg);
}
.burger.active span, .burger.active span:before, .burger.active span:after {
  background: #fff;
}
.burger.active:hover span, .burger.active:hover span:before, .burger.active:hover span:after {
  background: #fff;
}
.burger i {
  font-style: normal;
  display: inline-flex;
  text-decoration: none;
  color: #707070;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}
.burger--sidebar {
  width: 130px;
  height: 28px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.burger--sidebar .burger {
  width: auto;
}
.burger--sidebar span, .burger--sidebar span:before, .burger--sidebar span:after {
  background: #000;
}
.burger--sidebar span.active span, .burger--sidebar span.active span:before, .burger--sidebar span.active span:after, .burger--sidebar span:before.active span, .burger--sidebar span:before.active span:before, .burger--sidebar span:before.active span:after, .burger--sidebar span:after.active span, .burger--sidebar span:after.active span:before, .burger--sidebar span:after.active span:after {
  background: #000;
}
.burger--sidebar span.active:hover span, .burger--sidebar span.active:hover span:before, .burger--sidebar span.active:hover span:after, .burger--sidebar span:before.active:hover span, .burger--sidebar span:before.active:hover span:before, .burger--sidebar span:before.active:hover span:after, .burger--sidebar span:after.active:hover span, .burger--sidebar span:after.active:hover span:before, .burger--sidebar span:after.active:hover span:after {
  background: #000;
}

.wpcf7 {
  width: 100%;
}
.wpcf7 form {
  text-align: left;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.wpcf7 form button:not(.button), .wpcf7 form input:not([type=submit]), .wpcf7 form select, .wpcf7 form textarea {
  border-radius: 1px;
  outline: none;
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 8px 10px;
  display: block;
  font-weight: 400;
}
.wpcf7 form input:not([type=submit]) {
  height: 36px;
}
.wpcf7 form .wpcf7-form-control-wrap, .wpcf7 form .woocommerce-input-wrapper {
  display: block;
  text-align: left;
  width: auto;
  position: static;
}
.wpcf7 form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #ee2323;
  font-size: 12px;
  font-weight: normal;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  font-size: 14px !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  border: none !important;
  line-height: 1.14;
  max-width: 100%;
  background: #123C6A;
  color: #fff;
  position: static;
}
.wpcf7 form .wpcf7 .ajax-loader {
  display: none !important;
}
.wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
  color: #fff;
}
.wpcf7 form .wpcf7-form__col-2 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  position: relative;
}
.wpcf7 form .wpcf7-form__col-3 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.wpcf7 form .wpcf7-form__btn-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wpcf7 form button {
  width: 100%;
}
.wpcf7 form button:after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s ease-in-out opacity, 0.1s ease-in-out visibility;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='uil-ring-alt'%3E%3Crect x='0' y='0' width='100' height='100' fill='none' class='bk'%3E%3C/rect%3E%3Ccircle cx='50' cy='50' r='40' stroke='transparent' fill='none' stroke-width='10' stroke-linecap='round'%3E%3C/circle%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23fff' fill='none' stroke-width='10' stroke-linecap='round'%3E%3Canimate attributeName='stroke-dashoffset' dur='2s' repeatCount='indefinite' from='0' to='502'%3E%3C/animate%3E%3Canimate attributeName='stroke-dasharray' dur='2s' repeatCount='indefinite' values='150.6 100.4;1 250;150.6 100.4'%3E%3C/animate%3E%3C/circle%3E%3C/svg%3E");
}
.wpcf7 form button.loading {
  color: transparent !important;
  pointer-events: none;
  cursor: default;
  background: #123C6A !important;
}
.wpcf7 form button.loading:after {
  opacity: 1;
  visibility: visible;
}
.wpcf7 form .form-personal-data {
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.14;
  color: red;
  text-align: left;
}
.wpcf7 form .form-personal-data a {
  color: inherit;
}
.wpcf7 form label, .wpcf7 form .form-row {
  display: block;
  position: relative;
  cursor: text;
  margin: 0;
}
.wpcf7 form label > .label, .wpcf7 form label > label, .wpcf7 form .form-row > .label, .wpcf7 form .form-row > label {
  text-align: left;
  display: block;
  color: inherit;
  font-weight: 500;
  padding: 0;
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.3;
  white-space: normal;
  border-radius: 0;
}
.wpcf7 form label.label--file, .wpcf7 form .form-row.label--file {
  cursor: pointer;
  margin-top: auto;
}
.wpcf7 form label.label--file > .label, .wpcf7 form label.label--file > label, .wpcf7 form .form-row.label--file > .label, .wpcf7 form .form-row.label--file > label {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-right: 37px;
  transition: 0.2s ease-in-out color;
}
.wpcf7 form label.label--file > .label:after, .wpcf7 form label.label--file > label:after, .wpcf7 form .form-row.label--file > .label:after, .wpcf7 form .form-row.label--file > label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M21.4403 11.0509L12.2503 20.2409C11.1244 21.3667 9.59747 21.9992 8.00529 21.9992C6.41311 21.9992 4.88613 21.3667 3.76029 20.2409C2.63445 19.1151 2.00195 17.5881 2.00195 15.9959C2.00195 14.4037 2.63445 12.8767 3.76029 11.7509L12.9503 2.5609C13.7009 1.81033 14.7188 1.38867 15.7803 1.38867C16.8417 1.38867 17.8597 1.81033 18.6103 2.5609C19.3609 3.31146 19.7825 4.32944 19.7825 5.3909C19.7825 6.45235 19.3609 7.47033 18.6103 8.2209L9.41029 17.4109C9.03501 17.7862 8.52602 17.997 7.99529 17.997C7.46456 17.997 6.95557 17.7862 6.58029 17.4109C6.20501 17.0356 5.99418 16.5266 5.99418 15.9959C5.99418 15.4652 6.20501 14.9562 6.58029 14.5809L15.0703 6.1009' stroke='%234E6883' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
  width: 24px;
  height: 24px;
}
.wpcf7 form label.label--file:hover > .label, .wpcf7 form label.label--file:hover > label, .wpcf7 form .form-row.label--file:hover > .label, .wpcf7 form .form-row.label--file:hover > label {
  color: #4E6883;
}
.wpcf7 form .codedropz-upload-handler {
  border: none;
  border-radius: 0px;
  margin-bottom: 0;
}
.wpcf7 form .codedropz-upload-container {
  padding: 0;
}
.wpcf7 form .codedropz-upload-inner {
  display: flex;
}
.wpcf7 form .codedropz-upload-inner > div:first-of-type {
  display: none;
}
.wpcf7 form .codedropz-upload-inner > span {
  display: none;
}
.wpcf7 form .dnd-upload-counter {
  display: none;
}
.wpcf7 form div.codedropz-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-bottom 0.2s ease-in-out;
  position: relative;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-variant: small-caps;
  letter-spacing: 1px;
  border-bottom: 2px solid #123C6A;
  padding: 0;
  display: none;
}
.wpcf7 form div.codedropz-btn-wrap .cd-upload-btn {
  display: inline-block;
  border-bottom: none;
  transition: 0.2s ease-in-out color;
}
.wpcf7 form div.codedropz-btn-wrap:before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M21.4403 11.0509L12.2503 20.2409C11.1244 21.3667 9.59747 21.9992 8.00529 21.9992C6.41311 21.9992 4.88613 21.3667 3.76029 20.2409C2.63445 19.1151 2.00195 17.5881 2.00195 15.9959C2.00195 14.4037 2.63445 12.8767 3.76029 11.7509L12.9503 2.5609C13.7009 1.81033 14.7188 1.38867 15.7803 1.38867C16.8417 1.38867 17.8597 1.81033 18.6103 2.5609C19.3609 3.31146 19.7825 4.32944 19.7825 5.3909C19.7825 6.45235 19.3609 7.47033 18.6103 8.2209L9.41029 17.4109C9.03501 17.7862 8.52602 17.997 7.99529 17.997C7.46456 17.997 6.95557 17.7862 6.58029 17.4109C6.20501 17.0356 5.99418 16.5266 5.99418 15.9959C5.99418 15.4652 6.20501 14.9562 6.58029 14.5809L15.0703 6.1009' stroke='%23ED873F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.wpcf7 form div.codedropz-btn-wrap:hover {
  border-bottom-color: transparent;
}
.wpcf7 form div.codedropz-btn-wrap:hover .cd-upload-btn {
  color: #123C6A;
}
.wpcf7 form .dnd-upload-status .dnd-upload-image {
  display: none;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details {
  padding-left: 0;
  width: 100%;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .name {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 12px;
  max-width: calc(100% - 30px);
  width: 100%;
  padding: 10px 5px 8px;
  align-items: baseline;
  line-height: 1.2;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .name em {
  font-style: normal;
  color: #4E6883;
  font-weight: 600;
  font-size: 12px;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .name span {
  max-width: 200px;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .remove-file {
  z-index: 1;
  top: 0;
  right: 0;
  transition: 0.2s ease-in-out opacity;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .remove-file span:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../img/new/ico/remove-file.svg");
  width: 28px;
  height: 29px;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .remove-file span.deleting {
  font-size: 0 !important;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .remove-file:hover {
  opacity: 0.8;
}
.wpcf7 form .dnd-upload-status {
  margin-top: 10px;
  padding: 0;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  border-radius: 0px;
  background: #fafafa;
  height: auto;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details .dnd-progress-bar > span {
  background: #f1f1f1;
  color: transparent;
}
.wpcf7 form .dnd-upload-status .dnd-upload-details span.has-error {
  position: relative;
  font-size: 12px;
  display: block;
  padding: 7px 12px;
}
.wpcf7 form .codedropz-upload-wrapper span.has-error-msg {
  margin-top: 5px;
  color: #ee2323;
  font-size: 12px;
  font-weight: normal;
  display: block;
  font-style: normal;
  padding: 0;
}
.wpcf7 form .file-limitation {
  color: #4E6883;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.wpcf7 input, .wpcf7 textarea {
  background: transparent;
}
.wpcf7 input::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
  color: #707070;
  transition: opacity 0.3s ease;
}
.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #707070;
  transition: opacity 0.3s ease;
}
.wpcf7 input:-moz-placeholder, .wpcf7 textarea:-moz-placeholder {
  color: #707070;
  transition: opacity 0.3s ease;
}
.wpcf7 input:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: #707070;
  transition: opacity 0.3s ease;
}
.wpcf7 input:focus::-webkit-input-placeholder, .wpcf7 textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7 input:focus::-moz-placeholder, .wpcf7 textarea:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7 input:focus:-moz-placeholder, .wpcf7 textarea:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7 input:focus:-ms-input-placeholder, .wpcf7 textarea:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover,
.wpcf7 input:-webkit-autofill:focus,
.wpcf7 input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
}
.wpcf7 .button--border {
  border-radius: 4px;
  font-family: "IBM Plex Sans";
  border: 1px solid #CCCCCC;
  text-transform: uppercase;
  font-weight: 400;
  background: #123C6A;
  color: #fff;
}
.wpcf7 .button--border[disabled], .wpcf7 .button--border.disabled {
  color: #123C6A;
  background: transparent;
  pointer-events: none;
}
.wpcf7 .button--border:hover {
  background: #0367D1;
  color: #fff;
}
.wpcf7 input.button--border[disabled], .wpcf7 input.button--border.disabled {
  pointer-events: auto;
}

@media (max-width: 1249px) {
  .wpcf7 form .wpcf7-form__col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wpcf7 form .wpcf7-form__col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .wpcf7 form .form-personal-data {
    font-size: 14px;
  }
  .wpcf7 form .wpcf7-response-output {
    padding: 8px 15px !important;
  }
  .wpcf7 form .wpcf7-form__btn-wrap {
    margin-top: 10px;
  }
}
.button {
  padding: 13px 15px;
  background: #123C6A;
  border-radius: 50px;
  height: 65px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  transition: 0.2s ease-in-out background-color, 0.2s ease-in-out border, 0.2s ease-in-out color;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  position: relative;
}
.button:hover {
  background-color: #0367D1;
  color: #fff;
}
.button--border {
  height: 48px;
  background: #ffffff;
  border: 1px solid #123C6A;
  color: #575249;
  line-height: 1;
}
.button--border:hover {
  background-color: #123C6A;
  color: #fff;
  border-color: #123C6A;
}

.button-white {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  font-family: "IBM Plex Sans";
  height: 36px;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
}
.button-white:hover {
  background-color: #0367D1;
  color: #fff;
}

.button-border {
  border: 1px solid #BBBFC1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #123C6A;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  font-family: "IBM Plex Sans";
  height: 48px;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  height: 40px;
}
.button-border:hover {
  background-color: #0367D1;
  color: #fff;
}

@media (max-width: 989px) {
  .button {
    font-size: 16px;
    height: 55px;
  }
  .button--border {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .button {
    font-size: 14px;
    height: 52px;
  }
  .button--border {
    height: 40px;
  }
  .button-white {
    height: 48px;
    font-size: 15px;
  }
}
.button-arrow {
  padding: 0 80px 0 45px;
  height: 51px;
  max-width: 300px;
  background: #ffffff;
  border-radius: 44px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  position: relative;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out box-shadow, 0.2s ease-in-out color;
}
.button-arrow:after, .button-arrow:before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 11 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.125 1.75L8.875 8.5L2.125 15.25' stroke='%231EA6E3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 11px;
  height: 17px;
  display: inline-block;
  margin-left: 17px;
  transition: 0.2s ease-in-out opacity;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}
.button-arrow:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 11 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.125 1.75L8.875 8.5L2.125 15.25' stroke='%230688C2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0;
}
.button-arrow:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0);
  color: #0367D1;
}
.button-arrow:hover:before {
  opacity: 0;
}
.button-arrow:hover:after {
  opacity: 1;
}

.slider-btn {
  display: flex;
  justify-content: space-between;
}
.slider-btn--prev, .slider-btn--next {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  width: 78px;
  height: 78px;
  background-color: transparent;
  transition: 0.2s ease-in-out all;
  border-radius: 50%;
  border: 1px solid #968276;
}
.slider-btn--prev:after, .slider-btn--prev:before, .slider-btn--next:after, .slider-btn--next:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out opacity;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1.55469 2L9.55469 10L1.55469 18' stroke='%23968276' stroke-width='4'/%3E %3C/svg%3E ");
}
.slider-btn--prev:before, .slider-btn--next:before {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='20' viewBox='0 0 13 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1.55469 2L9.55469 10L1.55469 18' stroke='%23fff' stroke-width='4'/%3E %3C/svg%3E ");
}
.slider-btn--prev.swiper-button-disabled, .slider-btn--next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.slider-btn--prev:hover, .slider-btn--next:hover {
  background-color: #968276;
  border-color: #968276;
}
.slider-btn--prev:hover:after, .slider-btn--next:hover:after {
  opacity: 0;
}
.slider-btn--prev:hover:before, .slider-btn--next:hover:before {
  opacity: 1;
}
.slider-btn--prev.swiper-button-lock, .slider-btn--next.swiper-button-lock {
  display: none;
}
.slider-btn--prev:after, .slider-btn--prev:before {
  transform: scaleX(-1);
  left: -1px;
}
.slider-btn--next:after, .slider-btn--next:before {
  left: 1px;
}
.slider-btn--absolute-bottom .slider-btn--prev, .slider-btn--absolute-bottom .slider-btn--next {
  position: absolute;
  top: 50%;
  z-index: 2;
}
.slider-btn--absolute-bottom .slider-btn--prev {
  transform: translate(-100%, -50%);
  left: -15px;
  right: auto;
}
.slider-btn--absolute-bottom .slider-btn--next {
  transform: translate(100%, -50%);
  right: -15px;
  left: auto;
}
.slider-btn--absolute-bottom .swiper-pagination {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
.slider-btn--absolute-bottom .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 5px;
  background: rgba(124, 103, 103, 0.33);
  margin-right: 13px;
  transition: 0.2s ease-in-out background, 0.2s ease-in-out opacity;
  cursor: pointer;
}
.slider-btn--absolute-bottom .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.slider-btn--absolute-bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #123C6A;
  pointer-events: none;
}
.slider-btn--absolute-bottom .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.7;
}
.slider-btn--absolute .slider-btn--prev, .slider-btn--absolute .slider-btn--next {
  position: absolute;
  top: 50%;
  z-index: 2;
}
.slider-btn--absolute .slider-btn--prev {
  transform: translate(-100%, -50%);
  left: -15px;
  right: auto;
}
.slider-btn--absolute .slider-btn--next {
  transform: translate(100%, -50%);
  right: -15px;
  left: auto;
}
.slider-btn--absolute .swiper-pagination {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
.slider-btn--absolute .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 5px;
  background: rgba(124, 103, 103, 0.33);
  margin-right: 13px;
  transition: 0.2s ease-in-out background, 0.2s ease-in-out opacity;
  cursor: pointer;
}
.slider-btn--absolute .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.slider-btn--absolute .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #123C6A;
  pointer-events: none;
}
.slider-btn--absolute .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.7;
}
.slider-btn--static {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: static;
  margin: 28px 0 0;
  transform: none;
}
.slider-btn .destroy {
  cursor: pointer;
  pointer-events: none;
}

@media (max-width: 1499px) {
  .slider-btn--prev, .slider-btn--next {
    width: 65px;
    height: 65px;
  }
  .slider-btn--absolute-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
  }
  .slider-btn--absolute-bottom .slider-btn--next, .slider-btn--absolute-bottom .slider-btn--prev {
    transform: translate(0%);
    position: static;
    margin: 0;
  }
}
@media (max-width: 1249px) {
  .slider-btn--prev, .slider-btn--next {
    width: 48px;
    height: 48px;
  }
  .slider-btn--prev:after, .slider-btn--prev:before, .slider-btn--next:after, .slider-btn--next:before {
    background-size: 11px;
  }
}
@media (max-width: 767px) {
  .slider-btn--static {
    margin: 22px 0 0;
  }
  .slider-btn--absolute-bottom {
    margin-top: 10px;
  }
  .slider-btn--absolute {
    margin-top: 10px;
  }
}
.pagination {
  margin-top: 40px;
  margin-bottom: 10px;
  border-radius: 0px;
  display: block;
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  grid-gap: 5px;
}
.pagination li {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  transition: 0.2s ease-in-out color;
  border-radius: 3px;
  width: 38px;
  height: 38px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: #000;
  position: relative;
}
.pagination a:hover,
.pagination span:hover {
  color: #0367D1;
}
.pagination a.active, .pagination a.current,
.pagination span.active,
.pagination span.current {
  background: #123C6A;
  color: #fff;
  opacity: 1;
  pointer-events: none;
}
.pagination a.pagination__next,
.pagination span.pagination__next {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 22px;
  transition: 0.2s ease-in-out opacity;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L11 11L2 20' stroke='%23222222' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pagination a.pagination__next:after,
.pagination span.pagination__next:after {
  transition: 0.2s ease-in-out opacity;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L11 11L2 20' stroke='%231EA6E3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pagination a.pagination__next:hover:after,
.pagination span.pagination__next:hover:after {
  opacity: 1;
}
.pagination a.pagination__prev,
.pagination span.pagination__prev {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19.8569L2 10.8569L11 1.85693' stroke='%23222222' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pagination a.pagination__prev:after,
.pagination span.pagination__prev:after {
  transition: 0.2s ease-in-out opacity;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19.8569L2 10.8569L11 1.85693' stroke='%231EA6E3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pagination a.pagination__prev:hover:after,
.pagination span.pagination__prev:hover:after {
  opacity: 1;
}

@media (max-width: 767px) {
  .pagination a,
  .pagination span {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.breadcrumbs {
  font-size: 14px;
  font-weight: 400;
  color: #575249;
  margin: 30px 0 67px;
}
.breadcrumbs a {
  transition: 0.2s ease-in-out all;
  display: inline-block;
  font-weight: 500;
  color: #123C6A;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #0367D1;
}
.breadcrumbs i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M5 0L6.35045 3.64955L10 5L6.35045 6.35045L5 10L3.64955 6.35045L0 5L3.64955 3.64955L5 0Z' fill='%23B9A57E'/%3E %3C/svg%3E");
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 13px;
}

@media (max-width: 989px) {
  .breadcrumbs {
    margin: 25px 0 50px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin: 20px 0 40px;
    font-size: 12px;
  }
  .breadcrumbs i {
    margin: 0 6px;
  }
}
.main-inner-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  text-transform: none;
  font-family: "Alegreya";
  margin: 0;
}

@media (max-width: 1249px) {
  .main-inner-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 989px) {
  .main-inner-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .main-inner-title h2 {
    font-size: 28px;
  }
}
.gallery:not(.gallery-slider) {
  margin: 20px 0 !important;
  display: grid;
  grid-gap: 15px;
}
.gallery:not(.gallery-slider) br {
  display: none;
}
.gallery:not(.gallery-slider) img {
  border: none !important;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.gallery:not(.gallery-slider) .gallery-item {
  display: inline-block;
  text-align: center;
  width: 100% !important;
  margin: 0 !important;
}
.gallery:not(.gallery-slider) .gallery-item a {
  position: relative;
  display: block;
}
.gallery:not(.gallery-slider) .gallery-item a:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  transition: 0.2s ease-in-out opacity;
  background: #123C6A;
}
.gallery:not(.gallery-slider) .gallery-item a:hover:after {
  opacity: 0.2;
}
.gallery:not(.gallery-slider).gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery:not(.gallery-slider).gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery:not(.gallery-slider) .gallery-caption {
  display: block;
}

@media (max-width: 1249px) {
  .gallery:not(.gallery-slider).gallery-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery:not(.gallery-slider).gallery-columns-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-form {
  position: relative;
  width: 100%;
}
.search-form__search-btn {
  width: 28px;
  height: 28px;
  display: block;
  background: url(../../img/new/ico/search.svg) center no-repeat;
}
.search-form__search-btn:hover {
  opacity: 0.7;
}
.search-form__form {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #1C3467;
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: width 0.3s ease-in-out, opacity 0.25s ease-in-out;
  display: flex;
  align-items: center;
}
.search-form__form.is-active {
  opacity: 1;
  width: 1030px;
  pointer-events: all;
}
.search-form__form input[type=text], .search-form__form input[type=search] {
  width: 100%;
  height: 54px;
  border: 0;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  margin: 0;
  padding: 0 45px 0 50px;
  background: #fff;
  background: #13304F;
  border-bottom: 1px solid #FFFFFF;
  color: #fff;
}
.search-form__submit-btn {
  margin: 0;
  width: 28px;
  height: 28px;
  max-width: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  z-index: 1;
  background: url(../../img/new/ico/search.svg) center no-repeat;
  transition: 0.2s ease-in-out opacity;
}
.search-form__submit-btn:after {
  display: none;
}
.search-form__submit-btn:hover {
  opacity: 0.7;
}
.search-form__close-btn {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background: url(../../img/new/ico/close-white.svg) center/contain no-repeat;
  transition: 0.2s ease-in-out opacity;
}
.search-form__close-btn:hover {
  opacity: 0.7;
}
.search-form--full {
  max-width: 890px;
}
.search-form--full .search-form__form {
  opacity: 1;
  width: 100%;
  position: static;
  transform: translateY(0%);
  pointer-events: auto;
}
.search-form--full .search-form__form.is-active {
  width: 100%;
}
.search-form--full .search-form__submit-btn {
  left: auto;
  right: 15px;
}
.search-form--full input[type=text], .search-form--full input[type=search] {
  padding: 0 45px 0 0 !important;
  height: 40px !important;
}

@media (max-width: 1349px) {
  .search-form__form.is-active {
    width: 955px;
  }
}
@media (max-width: 1249px) {
  .search-form__form {
    right: -5px;
  }
  .search-form__form input[type=text], .search-form__form input[type=search] {
    padding: 0 35px 0 35px;
  }
  .search-form__form.is-active {
    width: 720px;
  }
  .search-form__submit-btn {
    left: 5px;
  }
  .search-form__close-btn {
    right: 5px;
  }
}
@media (max-width: 989px) {
  .search-form__form.is-active {
    width: 495px;
  }
}
@media (max-width: 767px) {
  .search-form {
    position: static;
  }
  .search-form__form {
    right: 70px;
  }
  .search-form__form.is-active {
    width: calc(100% - 70px);
  }
  .search-form__form input[type=text], .search-form__form input[type=search] {
    font-size: 14px;
  }
  .search-form--full {
    display: grid;
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 575px) {
  .search-form--full .search-form__submit-btn {
    right: 0;
  }
  .search-form--full input[type=text], .search-form--full input[type=search] {
    padding: 0 30px 0 0 !important;
  }
}
.main-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 27px;
}
.main-sidebar > li > a, .main-sidebar > li > span > a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: block;
}
.main-sidebar > li > a:hover, .main-sidebar > li > span > a:hover {
  color: #123C6A;
}
.main-sidebar > li > span {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding-right: 32px;
}
.main-sidebar > li.active .menu-toggle-btn {
  transform: rotate(180deg);
}
.main-sidebar > li.current-menu-parent > a, .main-sidebar > li.current-menu-parent > span > a, .main-sidebar > li.current-menu-item > a, .main-sidebar > li.current-menu-item > span > a {
  color: #123C6A;
}
.main-sidebar > li.current-menu-parent > .sub-menu, .main-sidebar > li.current-menu-item > .sub-menu {
  display: flex;
}
.main-sidebar .menu-toggle-btn-wrap {
  display: flex;
  justify-content: space-between;
}
.main-sidebar .menu-toggle-btn {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M7 10L12 15L17 10' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
  width: 24px;
  min-width: 24px;
  height: 24px;
  transform: rotate(0deg);
  top: 0;
  right: 0;
  position: absolute;
  cursor: pointer;
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out opacity, 0.2s ease-in-out color;
  display: inline-flex;
  z-index: 1;
}
.main-sidebar .menu-toggle-btn:hover {
  opacity: 0.6;
}
.main-sidebar .sub-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding-top: 8px;
  padding-left: 32px;
  grid-gap: 9px;
  display: none;
}
.main-sidebar .sub-menu li a {
  text-decoration: none;
  transition: 0.2s ease-in-out color;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  display: block;
  font-family: "IBM Plex Sans";
}
.main-sidebar .sub-menu li a:hover {
  color: #123C6A;
}
.main-sidebar .sub-menu li.current-menu-item > a {
  color: #123C6A;
}

@media (max-width: 989px) {
  .main-sidebar {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 750px;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
  .main-sidebar > li > a, .main-sidebar > li > span > a {
    font-size: 14px;
  }
  .main-sidebar > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 0;
    float: left;
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
  }
  .main-sidebar > li span {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-sidebar > li a {
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.2s ease-in-out color, 0.2s ease-in-out text-decoration-color, 0.2s ease-in-out opacity !important;
  }
  .main-sidebar > li a:hover {
    opacity: 0.7;
  }
  .main-sidebar > li .menu-toggle-btn {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M19.8327 16.3333L13.9993 10.5L8.16602 16.3333' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
    transition: 0.2s ease-in-out opacity, 0.2s ease-in-out transform;
    cursor: pointer;
  }
  .main-sidebar > li .menu-toggle-btn:hover {
    opacity: 0.7;
  }
  .main-sidebar > li .sub-menu {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    display: none;
  }
  .main-sidebar > li .sub-menu a {
    font-weight: 400;
    text-transform: unset;
    font-size: 14px;
    color: #fff;
    font-family: "Montserrat";
  }
  .main-sidebar > li .sub-menu li.current-menu-item > a {
    color: #fff;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .main-sidebar {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .main-sidebar {
    max-width: 100%;
  }
}
.soc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 32px;
}
.soc-list > li a {
  text-decoration: none;
  color: #707070;
  font-family: "IBM Plex Sans";
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.soc-list > li a:hover {
  opacity: 0.75;
}
.soc-list > li span {
  margin-right: 8px;
  display: inline-block;
  flex: 1;
}
.soc-list__ico {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.soc-list__ico_vk {
  background-image: url(../../img/new/soc/vk-gray.svg);
}
.soc-list__ico_print {
  background-image: url(../../img/new/ico/print.svg);
}
.soc-list--item > li a {
  font-size: 16px;
}
.soc-list--item .soc-list__ico {
  width: 24px;
  height: 24px;
}

@media (max-width: 989px) {
  .soc-list {
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .soc-list {
    grid-gap: 15px;
  }
}
@media (max-width: 575px) {
  .soc-list--item > li a {
    font-size: 14px;
  }
  .soc-list--item .soc-list__ico {
    width: 20px;
    height: 20px;
  }
}
.big-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin: 0 0 24px;
}
.big-title > h1, .big-title > h2 {
  margin: 0;
  padding: 12px 0;
}
.big-title a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  font-family: "IBM Plex Sans";
  text-transform: uppercase;
  color: #123C6A;
}
.big-title a:hover {
  color: #0367D1;
}

@media (max-width: 767px) {
  .big-title {
    justify-content: center;
    border-color: #123C6A;
    margin: 0 0 20px;
  }
  .big-title a {
    display: none;
  }
}
.list-news {
  margin-top: 45px;
}
.list-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.list-news__item {
  display: flex;
  flex-direction: column;
}
.list-news__link {
  text-decoration: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.list-news__link:hover .list-news__title {
  color: #123C6A;
}
.list-news div.list-news__link {
  pointer-events: auto;
}
.list-news div.list-news__link:hover .list-news__title {
  color: #000;
}
.list-news__img {
  margin-bottom: 18px;
  width: 100%;
  height: 190px;
  position: relative;
}
.list-news__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.list-news__caption {
  color: #707070;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.list-news__title, .list-news__title a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
  transition: 0.2s ease-in-out color;
}
.list-news__title:hover, .list-news__title a:hover {
  color: #123C6A;
}
.list-news__title .list-news__link, .list-news__title a .list-news__link {
  display: none !important;
}
.list-news__date {
  color: #707070;
  font-size: 12px;
  font-weight: 400;
  margin-top: auto;
}
.list-news--4 .list-news__list {
  grid-template-columns: repeat(4, 1fr);
}
.list-news--media .list-news__img {
  position: relative;
}
.list-news--media .list-news__img:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out background-color;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1411764706);
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='9' viewBox='0 0 7 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M6.99609 4.58826L0.823645 8.79016L0.823646 0.386364L6.99609 4.58826Z' fill='black'/%3E %3C/svg%3E ");
}
.list-news--media .list-news__link:hover .list-news__img:after {
  transform: translate(-50%, -50%) scale(1.15);
}

@media (max-width: 1249px) {
  .list-news--4 .list-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .list-news--4 .list-news__item:nth-of-type(4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .list-news {
    margin-top: 40px;
  }
  .list-news__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }
  .list-news__item:nth-of-type(3) {
    display: none;
  }
  .list-news--4 .list-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .list-news--4 .list-news__item:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 539px) {
  .list-news__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .list-news__item {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .list-news--4 .list-news__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.personal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 20px;
}
.personal-list__img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
.personal-list__img img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}
.personal-list__link {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
}
.personal-list__info {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}
.personal-list__name {
  font-size: 18px;
  color: #123C6A;
  font-weight: 600;
  transition: 0.2s ease-in-out color;
  text-decoration: none;
}
.personal-list__name:hover {
  color: #0367D1;
}
.personal-list__specialization {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.personal-list__specialization p {
  margin: 0;
}
.personal-list_main {
  grid-column-start: 1;
  grid-column-end: 4;
}
.personal-list_main .personal-list__img {
  margin: 0;
}
.personal-list_main .personal-list__link {
  flex-direction: row;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: center;
}
.personal-list_main .personal-list__info {
  grid-gap: 10px;
}
.personal-list_main .personal-list__name {
  font-size: 24px;
  font-weight: 600;
  color: #123C6A;
  text-decoration: none;
}
.personal-list_main .personal-list__name:hover {
  color: #0367D1;
}
.personal-list_main .personal-list__specialization {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 767px) {
  .personal-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .personal-list_main {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .personal-list_main .personal-list__link {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .personal-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .personal-list__item {
    text-align: center;
  }
  .personal-list_main {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .personal-list_main .personal-list__link {
    grid-template-columns: repeat(1, 1fr);
  }
  .personal-list__img img {
    object-fit: contain;
  }
}
.main-carousel__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  grid-gap: 12px;
}
.main-carousel__link:hover .main-carousel__title {
  color: #123C6A;
}
.main-carousel__img {
  width: 100%;
  height: 310px;
  height: 470px;
  position: relative;
}
.main-carousel__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.main-carousel__title {
  color: #000000;
  font-size: 30px;
  font-family: "Alegreya";
  font-weight: 500;
  transition: 0.2s ease-in-out color;
}
.main-carousel__date {
  color: #707070;
  font-family: "IBM Plex Sans";
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 1249px) {
  .main-carousel__title {
    font-size: 24px;
  }
  .main-carousel__img {
    height: 285px;
  }
}
@media (max-width: 767px) {
  .main-carousel__img {
    height: 240px;
  }
  .main-carousel__link {
    grid-gap: 8px;
  }
  .main-carousel__title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .main-carousel__img {
    height: 220px;
  }
}
.main-news-list {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.main-news-list__item {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.main-news-list__title {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.main-news-list__title:hover {
  color: #123C6A;
}
.main-news-list__date {
  color: #707070;
  font-size: 14px;
  font-family: "IBM Plex Sans";
}

@media (max-width: 1249px) {
  .main-news-list__title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .main-news-list {
    grid-gap: 0;
    margin-bottom: 20px;
  }
  .main-news-list__item {
    border-bottom: 1px solid #E5E5E5;
    padding: 14px 0;
  }
  .main-news-list__item:first-of-type {
    border-top: 1px solid #E5E5E5;
  }
}
.main-announce-list {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  margin-bottom: 24px;
}
.main-announce-list__item {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.main-announce-list__link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.main-announce-list__link:hover {
  color: #0367D1;
}
.main-announce-list__date {
  color: #968276;
  font-weight: 600;
  font-family: "IBM Plex Sans";
  font-size: 14px;
}

@media (max-width: 767px) {
  .main-announce-list {
    grid-gap: 16px;
  }
  .main-announce-list__link {
    font-size: 14px;
  }
}
.search-form-page {
  border: 1px solid #8D8D8D;
  position: relative;
}
.search-form-page__btn {
  width: 28px;
  height: 28px;
  max-width: none;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  z-index: 1;
  transition: 0.2s ease-in-out opacity;
  background: url(../../img/new/ico/search-gray.svg) center no-repeat;
}
.search-form-page__btn input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}
.search-form-page__btn:hover {
  opacity: 0.8;
}
.search-form-page__input {
  width: 100%;
  height: 54px;
  border: 0;
  transition: all 0.2s ease-in-out;
  padding: 0 15px 0 50px;
}
.search-form-page__input input {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 500;
}

.sort-alphabetical__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 8px;
  padding: 9px 0;
}
.sort-alphabetical__list a {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.sort-alphabetical__list a:hover {
  color: #0367D1;
}
.sort-alphabetical__all-btn {
  margin-left: auto;
}
.sort-alphabetical__all-btn a {
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-weight: 600;
  color: #123C6A;
  text-transform: uppercase;
}

@media (max-width: 1249px) {
  .sort-alphabetical__list {
    grid-gap: 6px;
  }
  .sort-alphabetical__list a {
    font-size: 18px;
  }
  .sort-alphabetical__all-btn a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sort-alphabetical__all-btn {
    margin-left: 5px;
  }
}
@media (max-width: 575px) {
  .sort-alphabetical__list a {
    font-size: 16px;
  }
  .sort-alphabetical__all-btn a {
    font-size: 14px;
  }
}
.personal-list-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
  margin-bottom: 100px;
  margin-top: 40px;
}
.personal-list-mini__item {
  border-bottom: 1px solid #B8B8B8;
  padding-bottom: 32px;
}
.personal-list-mini__link {
  text-decoration: none;
}
.personal-list-mini__link:hover .personal-list-mini__name {
  color: #0367D1;
  text-decoration-color: transparent;
}
.personal-list-mini__info {
  display: flex;
  flex-direction: column;
  grid-gap: 7px 0;
}
.personal-list-mini__name {
  color: #123C6A;
  text-decoration: underline;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out text-decoration-color;
}
.personal-list-mini__specialization {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.personal-list-mini__specialization p {
  margin: 0;
}

@media (max-width: 1249px) {
  .personal-list-mini {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .personal-list-mini {
    margin-bottom: 60px;
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-item-row {
  border-bottom: 1px solid #B8B8B8;
  padding: 24px 0;
  display: flex;
  grid-gap: 24px;
}
.news-item-row__img {
  width: 283px;
  height: 160px;
  position: relative;
  display: flex;
}
.news-item-row__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.news-item-row__img:hover ~ .news-item__info .news-item__title {
  color: #0367D1;
}
.news-item-row__img:hover ~ .news-item__info .news-item__btn:after {
  right: -5px;
}
.news-item-row__info {
  flex: 1;
  flex-direction: column;
  display: flex;
  grid-gap: 13px;
}
.news-item-row__add {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.news-item-row__date {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  font-family: "IBM Plex Sans";
}
.news-item-row__link {
  display: flex;
  flex-direction: column;
  grid-gap: 13px;
  text-decoration: none;
  align-items: flex-start;
}
.news-item-row__link:hover .news-item__title {
  color: #0367D1;
}
.news-item-row__link:hover .news-item__btn:after {
  right: -5px;
}
.news-item-row__title {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  transition: 0.2s ease-in-out color;
}
.news-item-row__btn {
  color: #627D99;
  font-family: "IBM Plex Sans";
  font-weight: 500;
  font-size: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 25px;
}
.news-item-row__btn:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M11.5525 14.7699L10.3439 13.5614L15.1267 8.76995H0L0 7.05566L15.1267 7.05566L10.3353 2.27281L11.5525 1.05566L18.4096 7.91281L11.5525 14.7699Z' fill='%23627D99'/%3E %3C/svg%3E ");
  width: 19px;
  height: 17px;
  right: 0;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  transition: 0.2s ease-in-out right;
}
.news-item {
  display: flex;
  flex-direction: column;
}
.news-item__img {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
  height: 190px;
}
.news-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.news-item__img:hover ~ .news-item__info .news-item__title {
  color: #0367D1;
}
.news-item__img:hover ~ .news-item__info .news-item__btn:after {
  right: -5px;
}
.news-item__info {
  flex: 1;
  flex-direction: column;
  display: flex;
  grid-gap: 10px;
}
.news-item__add {
  margin-top: auto;
}
.news-item__date {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  font-family: "IBM Plex Sans";
}
.news-item__link {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  text-decoration: none;
  align-items: flex-start;
}
.news-item__link:hover .news-item__title {
  color: #0367D1;
}
.news-item__link:hover .news-item__btn:after {
  right: -5px;
}
.news-item__title {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s ease-in-out color;
}

@media (max-width: 1349px) {
  .news-item-row__img {
    width: 260px;
    height: 145px;
  }
  .news-item__img {
    height: 145px;
  }
}
@media (max-width: 1249px) {
  .news-item__img {
    margin-bottom: 10px;
  }
  .news-item__info {
    grid-gap: 5px;
  }
  .news-item__title {
    font-size: 14px;
  }
  .news-item__date {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .news-item-row {
    grid-gap: 15px;
    flex-direction: column;
  }
  .news-item-row__title {
    font-size: 18px;
  }
  .news-item-row__btn {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .news-item-row__add {
    grid-gap: 5px;
  }
  .news-item-row__date {
    font-size: 14px;
  }
  .news-item {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .news-item__img {
    height: 190px;
  }
}
.more-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

#load-post.more-btn {
  padding: 0px;
  background: none;
  border: 1px solid #BBBFC1;
  border-radius: 4px;
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #242731;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background, 0.2s ease-in-out border-color;
}
#load-post.more-btn span {
  background-color: transparent;
  padding: 0;
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
}
#load-post.more-btn svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 4px;
}
#load-post.more-btn svg path {
  transition: 0.2s ease-in-out stroke;
}
#load-post.more-btn:hover {
  border-color: #0367D1;
  background: #0367D1;
  color: #fff;
}
#load-post.more-btn:hover svg path[stroke=black] {
  stroke: #fff;
}

.categories-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 20px 50px;
  margin-bottom: 35px;
  margin-top: -20px;
}
.categories-list--full {
  display: flex;
  flex-wrap: wrap;
}
.categories-list--months {
  grid-template-columns: repeat(12, auto);
  grid-gap: 5px 8px;
  margin: 0 0 30px;
}
.categories-list--months a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #242731;
  border: 1px solid #BBBFC1;
  border-radius: 4px;
  padding: 8px;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color, 0.2s ease-in-out border-color;
  width: 100%;
  display: block;
}
.categories-list--months a:hover, .categories-list--months a.active {
  color: #fff;
  background-color: #0367D1;
  border-color: #0367D1;
}
.categories-list--year {
  grid-template-columns: repeat(5, auto);
  grid-gap: 5px 8px;
  margin: 0 0 30px;
}
.categories-list--year a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #242731;
  border: 1px solid #BBBFC1;
  border-radius: 4px;
  padding: 8px;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color, 0.2s ease-in-out border-color;
  width: 100%;
  display: block;
}
.categories-list--year a:hover, .categories-list--year a.active {
  color: #fff;
  background-color: #0367D1;
  border-color: #0367D1;
}

@media (max-width: 1249px) {
  .categories-list {
    grid-gap: 20px;
  }
  .categories-list--months {
    grid-gap: 5px 10px;
    grid-template-columns: repeat(6, auto);
  }
}
@media (max-width: 767px) {
  .categories-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin-top: -10px;
    margin-bottom: 25px;
  }
  .categories-list--months {
    margin: 0 0 30px;
    grid-gap: 5px 10px;
    grid-template-columns: repeat(4, auto);
  }
}
@media (max-width: 575px) {
  .categories-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .categories-list--months {
    grid-gap: 5px 10px;
    grid-template-columns: repeat(3, auto);
  }
}
.block-img__item {
  margin: 0 0 25px 0;
}
.block-img__item a {
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
  height: 270px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 8px;
}
.block-img__item a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 33, 55, 0.3019607843);
  transition: 0.2s ease-in-out background;
}
.block-img__item a:hover:after {
  background: rgba(4, 55, 93, 0.5);
}
.block-img__item a span {
  position: relative;
  z-index: 1;
}

@media (max-width: 1249px) {
  .block-img__item a {
    height: 245px;
    font-size: 14px;
  }
}