.img-fluid {
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.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%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
 .btn:focus {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
 .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
 .btn:active:focus {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.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;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}
.card {
  --bs-card-spacer-y: 0;
  --bs-card-spacer-x: 0;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 0;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: none;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-text:last-child {
  margin-bottom: 0;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.align-middle {
  vertical-align: middle !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */
@media (min-width: 768px) {

  .d-md-flex {
    display: flex !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }
}
@media (min-width: 992px) {

  .d-lg-flex {
    display: flex !important;
  }
}
a,
a img {
  transition: all 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  a,
a img {
    transition: none;
  }
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  a.hover:hover {
    opacity: 0.75;
  }
}
@media (min-width: 768px) {
  a.hover-img:hover img {
    opacity: 0.75;
  }
}

.hr-gray {
  margin-top: 28px;
  margin-bottom: 32px;
  border-top-color: #b4b4b4;
}

sup {
  font-size: 62%;
}

.c-text--md {
  margin-top: 20px;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  .c-text--md {
    font-size: 0.875rem;
  }
}

.c-lead {
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .c-lead {
    font-size: 1.125rem;
  }
}

.c-link-circle {
  position: relative;
  padding-right: 40px;
  font-size: 1.25rem;
  color: #b8193f;
}
.c-link-circle:hover {
  text-decoration: none;
  color: #333;
}
.c-link-circle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin-top: auto;
  margin-bottom: auto;
  background: url("/assets/smarton/images/icon-arrow-red.svg") no-repeat 50% 50%;
  border: 2px solid #b8193f;
  border-radius: 50%;
  content: "";
}

.c-list-aside--sm {
  margin-top: 32px;
}
.c-list-aside--sm .c-list-aside__item {
  padding-left: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5625;
}
@media (max-width: 767.98px) {
  .c-list-aside--sm .c-list-aside__item {
    font-size: 0.875rem;
  }
}

.list-inline {
  margin-left: 0;
}
.list-inline > li:first-child {
  padding-left: 0;
}
.list-inline.bordered > li {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 10px;
  border-right: 1px solid #999;
}
.list-inline.bordered > li:first-child {
  border-left: 1px solid #999;
}

.list-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
.list-link li {
  width: 49%;
  margin-bottom: 18px;
}
@media (max-width: 1199.98px) {
  .list-link li {
    width: 48%;
  }
}
@media (max-width: 767.98px) {
  .list-link li {
    width: 100%;
    margin-bottom: 12px;
  }
}
.list-link li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 19px 65px 19px 23px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  background-color: #f7f7f7;
  border-radius: 10px;
  transition: all 0.2s ease;
}
@media (max-width: 767.98px) {
  .list-link li a {
    font-size: 18px;
    padding: 12px 50px 12px 12px;
  }
}
.list-link li a:hover {
  color: #fff;
  background-color: #b8193f;
  text-decoration: none;
}
.list-link li a:before, .list-link li a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
}
.list-link li a:before {
  right: 23px;
  width: 29px;
  height: 29px;
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .list-link li a:before {
    width: 20px;
    height: 20px;
    right: 12px;
  }
}
.list-link li a:after {
  right: 34px;
  width: 7px;
  height: 12px;
  transform: rotate(90deg);
  background: url("/assets/smarton/images/icon-arrow-red.svg") 50% 50%/cover no-repeat;
}
@media (max-width: 767.98px) {
  .list-link li a:after {
    right: 19px;
    width: 5px;
    height: 10px;
  }
}

.list-link-lv2 {
  padding: 18px 30px;
  margin-bottom: 18px;
  background: #f7f7f7;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .list-link-lv2 {
    padding: 10px 20px;
  }
}
.list-link-lv2 li {
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .list-link-lv2 li {
    margin-bottom: 8px;
  }
}
.list-link-lv2 li a {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  color: #fff;
  background: #b8193f;
}
@media (max-width: 767.98px) {
  .list-link-lv2 li a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
.list-link-lv2 li a:hover {
  color: #b8193f;
  background-color: #fff;
  box-shadow: 0 0 0 1px #b8193f;
}
.list-link-lv2 li a:hover:before {
  background-color: #b8193f;
}
.list-link-lv2 li a:hover:after {
  filter: brightness(0) invert(1);
}
.list-link-lv2 .li-title {
  width: 100%;
  padding-left: 8px;
  margin-bottom: 9px;
  font-size: 25px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 767.98px) {
  .list-link-lv2 .li-title {
    padding-left: 5px;
    font-size: 20px;
  }
}

.list-link-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  -moz-column-gap: 36px;
       column-gap: 36px;
  padding: 9px 46px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .list-link-inline {
    padding: 5px 15px;
  }
}
.list-link-inline li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 15px 36px 15px 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 10px;
  transition: all 0.2s ease;
}
@media (max-width: 767.98px) {
  .list-link-inline li a {
    font-size: 18px;
  }
}
.list-link-inline li a:hover {
  color: #333;
  text-decoration: none;
}
.list-link-inline li a:before, .list-link-inline li a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
}
.list-link-inline li a:before {
  width: 29px;
  height: 29px;
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .list-link-inline li a:before {
    width: 20px;
    height: 20px;
  }
}
.list-link-inline li a:after {
  width: 7px;
  height: 12px;
  margin-right: 11px;
  transform: rotate(90deg);
  background: url("/assets/smarton/images/icon-arrow-red.svg") 50% 50%/cover no-repeat;
}
@media (max-width: 767.98px) {
  .list-link-inline li a:after {
    width: 5px;
    height: 10px;
  }
}

.list-dot-black li {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
}
@media (max-width: 767.98px) {
  .list-dot-black li {
    font-size: 14px;
  }
}
.list-dot-black li:before {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  content: "";
}
@media (max-width: 767.98px) {
  .list-dot-black li:before {
    top: 8px;
  }
}

.dl-list-indent {
  margin-bottom: 0;
}
.dl-list-indent,
.dl-list-indent dd {
  overflow: hidden;
  zoom: 1;
}
.dl-list-indent dt,
.dl-list-indent dd {
  display: table-cell;
  vertical-align: top;
}
.dl-list-indent dt {
  padding-right: 5px;
  font-weight: normal;
}
.dl-list-indent dt img {
  display: block;
}
.dl-list-indent dd {
  width: 10000px;
}
@media (max-width: 767.98px) {
  .dl-list-indent.cleared-md dt {
    display: block;
  }
  .dl-list-indent.cleared-md dd {
    padding-top: 0;
  }
}

.dl-icon {
  margin-top: 0;
}
.dl-icon dt,
.dl-icon dd {
  vertical-align: middle;
}
.dl-icon dt {
  min-width: 105px;
  padding-right: 14px;
}
@media (max-width: 767.98px) {
  .dl-icon dt {
    min-width: 60px;
    padding-right: 6px;
  }
}
@media (max-width: 767.98px) {
  .dl-icon dt img {
    max-width: 50px;
  }
}
.dl-icon dd {
  width: auto;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767.98px) {
  .dl-icon dd {
    font-size: 18px;
  }
}

.fig-caption {
  margin-top: 10px;
  margin-left: 63px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .fig-caption {
    margin-top: 6px;
    margin-left: 10px;
    font-size: 14px;
  }
}

.box-container {
  max-width: 1084px;
  margin: 25px auto 0;
}

.box-has-image {
  background-color: #f7f7f7;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .box-has-image {
    margin-bottom: 15px;
  }
}
.box-has-image .box-body {
  padding: 25px 30px 41px;
}
@media (max-width: 767.98px) {
  .box-has-image .box-body {
    padding: 15px 10px;
  }
}
.box-has-image.box-has-image-sm {
  margin-bottom: 14px;
}
.box-has-image.box-has-image-sm .box-body {
  padding: 14px 18px 15px;
}
@media (max-width: 767.98px) {
  .box-has-image.box-has-image-sm .box-body {
    padding: 10px;
  }
}
.box-has-image .box-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-has-image .box-title {
  margin-top: 16px;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
@media (max-width: 767.98px) {
  .box-has-image .box-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.box-has-image .box-text {
  margin-top: 25px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
}
@media (max-width: 767.98px) {
  .box-has-image .box-text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.row-0 {
  margin-right: 0;
  margin-left: 0;
}
.row-0 > div,
.row-0 > li {
  padding-right: 0;
  padding-left: 0;
}

.row-5 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-5 > div,
.row-5 > li {
  padding-right: 5px;
  padding-left: 5px;
}

.row-7 {
  margin-right: -7px;
  margin-left: -7px;
}
.row-7 > div,
.row-7 > li {
  padding-right: 7px;
  padding-left: 7px;
}

.row-10 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-10 > div,
.row-10 > li {
  padding-right: 10px;
  padding-left: 10px;
}

.row-11 {
  margin-right: -11px;
  margin-left: -11px;
}
.row-11 > div,
.row-11 > li {
  padding-right: 11px;
  padding-left: 11px;
}

.row-35 {
  margin-right: -35px;
  margin-left: -35px;
}
.row-35 > div,
.row-35 > li {
  padding-right: 35px;
  padding-left: 35px;
}

@media (max-width: 767.98px) {
  .row-5-md {
    margin-right: -5px;
    margin-left: -5px;
  }
  .row-5-md > div,
.row-5-md > li {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (min-width: 1200px) {
  .row-14-xl {
    margin-right: -14px;
    margin-left: -14px;
  }
  .row-14-xl > div,
.row-14-xl > li {
    padding-right: 14px;
    padding-left: 14px;
  }

  .row-19-xl {
    margin-right: -19px;
    margin-left: -19px;
  }
  .row-19-xl > div,
.row-19-xl > li {
    padding-right: 19px;
    padding-left: 19px;
  }
}
.container {
  max-width: 1200px;
  width: calc(100% - 40px);
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 1023.98px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}

.col-45 {
  width: 45%;
  flex: 0 0 auto;
}

.col-55 {
  width: 55%;
  flex: 0 0 auto;
}

.table-col-sm {
  width: 210px;
}

.table-col-md {
  width: 340px;
}

@media (min-width: 992px) {
  .table-layout-lg-auto,
.table-layout-lg-auto table {
    table-layout: auto !important;
  }
}

.table-vertical-middle thead th,
.table-vertical-middle thead td,
.table-vertical-middle tbody th,
.table-vertical-middle tbody td {
  vertical-align: middle;
}

.table-center thead th,
.table-center thead td,
.table-center tbody th,
.table-center tbody td {
  vertical-align: middle;
  text-align: center;
}

@media (max-width: 767.98px) {
  .table-simple table,
.table-simple thead,
.table-simple tbody,
.table-simple tr {
    width: 100%;
    display: block;
  }
}
.table-simple table {
  width: 100%;
}
.table-simple th,
.table-simple td {
  padding: 30px 0;
  line-height: 1.667;
  border: solid #b4b4b4;
  border-width: 1px 0;
}
@media (max-width: 767.98px) {
  .table-simple th,
.table-simple td {
    display: block;
    padding: 4vw 0;
  }
}
.table-simple th {
  padding-right: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767.98px) {
  .table-simple th {
    padding-right: 0;
    padding-bottom: 5px;
    font-size: 18px;
    border-bottom-width: 0;
  }
}
.table-simple td {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .table-simple td {
    padding-top: 0;
    font-size: 16px;
    border-top-width: 0;
  }
}

.table-header table {
  width: 100%;
  table-layout: fixed;
}
@media (max-width: 991.98px) {
  .table-header table {
    width: -moz-max-content;
    width: max-content;
    overflow-x: auto;
  }
}
.table-header th,
.table-header td {
  padding: 23px 24px;
  font-weight: 500;
  line-height: 1.667;
  border: 1px solid #707070;
}
@media (max-width: 767.98px) {
  .table-header th,
.table-header td {
    padding: 4vw;
  }
}
.table-header th {
  text-align: center;
}
@media (max-width: 767.98px) {
  .table-header th {
    padding: 2.5vw;
    font-size: 18px;
  }
}
.table-header th figure {
  line-height: 1;
}
.table-header td {
  font-size: 18px;
  vertical-align: top;
}
@media (max-width: 767.98px) {
  .table-header td {
    font-size: 16px;
  }
}
.table-header thead th {
  height: 86px;
  font-size: 20px;
  font-weight: bold;
  background-color: #f7f7f7;
}
.table-header .table-fig {
  min-width: 120px;
}
.table-header .td-colspan-2 {
  text-align: right;
  border-right-width: 0;
}
.table-header .td-colspan-2 + td {
  padding-left: 0;
  text-align: left;
  border-left-width: 0;
}
.table-header .td-colspan-left {
  padding-left: 80px;
  text-align: left;
}
@media (max-width: 767.98px) {
  .table-header .td-colspan-left {
    padding-left: 40px;
  }
}
.table-header .text-lg {
  font-size: 35px;
}
@media (max-width: 767.98px) {
  .table-header .text-lg {
    font-size: 25px;
  }
}

.btn-multiline {
  white-space: normal;
}

.btn-red {
  --bs-btn-color: #fff;
  --bs-btn-bg: #b8193f;
  --bs-btn-border-color: #b8193f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #9c1536;
  --bs-btn-hover-border-color: #931432;
  --bs-btn-focus-shadow-rgb: 195, 60, 92;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #931432;
  --bs-btn-active-border-color: #8a132f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #b8193f;
  --bs-btn-disabled-border-color: #b8193f;
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 0.03em;
  line-height: 1.692;
  border-radius: 5px;
  padding: 14px 10px 15px;
}
@media (max-width: 767.98px) {
  .btn-red {
    font-size: 20px;
    line-height: 1.4;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.btn-red:hover, .btn-red:active, .btn-red:focus {
  color: #b8193f;
  border-color: #b8193f;
  background-color: #fff;
  text-decoration: none;
}

.btn-blue-gradient {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2a71ff;
  --bs-btn-border-color: #2a71ff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2460d9;
  --bs-btn-hover-border-color: #225acc;
  --bs-btn-focus-shadow-rgb: 74, 134, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #225acc;
  --bs-btn-active-border-color: #2055bf;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #2a71ff;
  --bs-btn-disabled-border-color: #2a71ff;
  padding: 18px 20px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  border-radius: 5px;
  background: linear-gradient(to left, #09f 0%, #2a71ff 100%);
  border: 0;
}
@media (max-width: 767.98px) {
  .btn-blue-gradient {
    padding: 10px 15px;
    font-size: 20px;
  }
}
.btn-blue-gradient:hover, .btn-blue-gradient:active, .btn-blue-gradient:focus {
  text-decoration: none;
  color: #fff;
  border-color: #b8193f;
  background: #b8193f;
}

.bg-light-gray {
  background-color: #f7f7f7 !important;
}

@media (min-width: 768px) {
  .width-md-45p {
    width: 45%;
  }
}

@media (max-width: 767.98px) {
  .width-auto-md {
    width: auto;
  }
}

.badge-red {
  display: block;
  padding: 16px 10px;
  margin-bottom: 30px;
  border-radius: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  background-color: #b8193f;
  white-space: wrap;
}
@media (max-width: 767.98px) {
  .badge-red {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.card-collapse {
  margin-bottom: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 576px) {
  .card-collapse {
    font-size: 16px;
  }
}
.card-collapse .card-body {
  padding: 0;
  margin-bottom: 15px;
}
.card-collapse .card-title {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid #1946ba;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.card-collapse .card-title a {
  position: relative;
  display: block;
  padding: 22px 50px 23px 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  color: #646464;
}
@media (max-width: 767.98px) {
  .card-collapse .card-title a {
    padding: 12px 65px 10px 15px;
    font-size: 16px;
  }
}
.card-collapse .card-title a:hover, .card-collapse .card-title a:focus, .card-collapse .card-title a[aria-expanded=true] {
  color: #275cc4;
  text-decoration: none;
}
.card-collapse .card-title a:hover .icon, .card-collapse .card-title a:focus .icon, .card-collapse .card-title a[aria-expanded=true] .icon {
  background-color: #275cc4;
}
.card-collapse .card-title a[aria-expanded=true] {
  color: #646464;
  background-color: #f4f5f7;
}
.card-collapse .card-title a[aria-expanded=true]:hover {
  color: #275cc4;
}
.card-collapse .card-title a[aria-expanded=true]:hover .icon {
  background-color: #a8a8a8;
}
.card-collapse .card-title a[aria-expanded=true] .icon {
  background-color: #999;
}
.card-collapse .card-title a[aria-expanded=true] .icon .bar {
  transform: rotate(90deg);
}
.card-collapse .icon {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: block;
  width: 22px;
  height: 22px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #1946ba;
  content: "";
  transition: 300ms all ease;
}
@media (max-width: 767.98px) {
  .card-collapse .icon {
    right: 10px;
  }
}
.card-collapse .bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  height: 12px;
  margin: auto;
  background-color: #fff;
  content: "";
  transition: 300ms all ease;
}
.card-collapse .bar:nth-child(2n) {
  transform: rotate(90deg);
}

a.card {
  transition: all 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  a.card {
    transition: none;
  }
}

.card-default-container {
  padding: 60px 53px 60px 57px;
  margin-bottom: 30px;
  background: #f7f7f7;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .card-default-container {
    padding: 20px 15px;
  }
}

.card-default {
  display: block;
  padding: 38px 45px 38px 36px;
  background: #fff;
  border-radius: 10px;
  overflow: auto;
  font-size: 1.125rem;
  line-height: 1.95;
}
@media (max-width: 767.98px) {
  .card-default {
    padding: 25px 20px;
    font-size: 1rem;
  }
}
.card-default + .card-default {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .card-default.card-default-reverse .card-body {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .card-default.card-default-reverse .card-title,
.card-default.card-default-reverse .card-text {
    width: 56%;
    float: left;
  }
}
@media (min-width: 768px) {
  .card-default.card-default-reverse .card-text {
    padding-right: 5px;
    padding-left: 25px;
  }
}
@media (min-width: 768px) {
  .card-default.card-default-reverse .card-image {
    width: 44%;
    float: right;
  }
}
.card-default p {
  margin-top: 0;
}
.card-default .card-text {
  float: right;
  width: 54%;
}
@media (max-width: 767.98px) {
  .card-default .card-text {
    width: auto;
    float: none;
  }
}
.card-default .card-text .text {
  padding-right: 22px;
}
@media (max-width: 767.98px) {
  .card-default .card-text .text {
    padding-right: 0;
  }
}
.card-default .card-image {
  width: 46%;
  float: left;
  text-align: center;
}
@media (max-width: 767.98px) {
  .card-default .card-image {
    width: 70%;
    float: none;
    margin: 0 auto;
  }
}
.card-default .card-title {
  display: flex;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 2.188rem;
  line-height: 1.28;
}
@media (max-width: 767.98px) {
  .card-default .card-title {
    font-size: 1.5rem;
  }
}
.card-default .card-title .number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  margin-top: -6px;
  margin-right: 22px;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #fff;
  background: #b8193f;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .card-default .card-title .number {
    width: 40px;
    height: 40px;
    margin-top: -4px;
    margin-right: 10px;
    font-size: 1.125rem;
  }
}
.card-default .btn-container {
  margin-top: 34px;
}

.card-common {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 27px;
}
.card-common .card-body {
  padding: 37px 47px 55px;
}
@media (max-width: 991.98px) {
  .card-common .card-body {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .card-common .card-body {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
.card-common .card-title {
  position: relative;
  margin-top: 0;
  margin-bottom: 35px;
  padding: 0 16px 17px;
  font-weight: bold;
  font-size: 37px;
  line-height: 1.5;
  text-align: center;
  color: #b8193f;
}
@media (max-width: 767.98px) {
  .card-common .card-title {
    padding: 0 10px 8px;
    margin-bottom: 20px;
    font-size: 25px;
  }
}
.card-common .card-title:after {
  position: absolute;
  height: 2px;
  width: 346px;
  right: 0;
  left: 0;
  bottom: 0;
  margin-right: auto;
  margin-left: auto;
  background-color: #b8193f;
  content: "";
}
@media (max-width: 767.98px) {
  .card-common .card-title:after {
    width: 180px;
  }
}
.card-common .subtile {
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 7px;
}
@media (max-width: 991.98px) {
  .card-common .subtile {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .card-common .subtile {
    margin-top: 10px;
  }
}
.card-common .lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
}
@media (max-width: 767.98px) {
  .card-common .lead {
    font-size: 14px;
  }
}
.card-common .img-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .card-common .img-container {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .card-common .img-container img {
    max-width: 150px;
  }
}
.card-common.card-common-flow .row > div:nth-child(2) {
  position: relative;
}
@media (max-width: 767.98px) {
  .card-common.card-common-flow .row > div:nth-child(2) {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.card-common.card-common-flow .row > div:nth-child(2):before, .card-common.card-common-flow .row > div:nth-child(2):after {
  position: absolute;
  top: 53px;
  content: "";
}
@media (max-width: 767.98px) {
  .card-common.card-common-flow .row > div:nth-child(2):before, .card-common.card-common-flow .row > div:nth-child(2):after {
    transform: rotate(-90deg);
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.card-common.card-common-flow .row > div:nth-child(2):before {
  left: -44px;
  width: 66px;
  height: 27px;
  background: url("/assets/smarton/images/arrow-right-blue.svg") 50% 50%/cover no-repeat;
}
@media (max-width: 1399.98px) {
  .card-common.card-common-flow .row > div:nth-child(2):before {
    width: 4.4vw;
    height: 1.8vw;
    left: -20px;
  }
}
@media (max-width: 767.98px) {
  .card-common.card-common-flow .row > div:nth-child(2):before {
    width: 30px;
    height: 12px;
    left: 0;
    top: -15px;
  }
}
.card-common.card-common-flow .row > div:nth-child(2):after {
  right: -33px;
  width: 71px;
  height: 62px;
  background: url("/assets/smarton/images/double-arrow-right-blue.svg") 50% 50%/cover no-repeat;
}
@media (max-width: 1399.98px) {
  .card-common.card-common-flow .row > div:nth-child(2):after {
    width: 4.75vw;
    height: 4.1vw;
    right: -20px;
  }
}
@media (max-width: 767.98px) {
  .card-common.card-common-flow .row > div:nth-child(2):after {
    right: 0;
    top: auto;
    bottom: -34px;
    width: 34px;
    height: 30px;
  }
}

.card-light-blue {
  border-radius: 10px;
  background-color: #f7f7f7;
}
@media (max-width: 767.98px) {
  .card-light-blue {
    margin-bottom: 15px;
  }
}
.card-light-blue .card-body {
  padding: 17px 26px 24px 30px;
}
@media (max-width: 767.98px) {
  .card-light-blue .card-body {
    padding: 15px 10px;
  }
}
.card-light-blue .card-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767.98px) {
  .card-light-blue .card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.card-light-blue .card-text {
  margin-top: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
}
@media (max-width: 767.98px) {
  .card-light-blue .card-text {
    font-size: 14px;
  }
}

.c-heading-h1,
.c-heading-h2,
.c-heading-h3,
.c-heading-h4,
.c-heading-h5 {
  margin: 80px 0 30px;
}
@media (max-width: 767.98px) {
  .c-heading-h1,
.c-heading-h2,
.c-heading-h3,
.c-heading-h4,
.c-heading-h5 {
    margin-top: 16.6666666667vw;
  }
}

.c-heading-h2 {
  position: relative;
  padding-left: 57px;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.48;
}
@media (max-width: 767.98px) {
  .c-heading-h2 {
    padding-left: 36px;
    font-size: 1.75rem;
  }
}
.c-heading-h2:after {
  content: "";
  position: absolute;
  top: 33px;
  left: 0;
  display: block;
  height: 8px;
  background-color: #b8193f;
  width: 31px;
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .c-heading-h2:after {
    top: 22px;
    height: 4px;
    width: 24px;
  }
}

.c-heading-h3 {
  margin-bottom: 35px;
  font-size: 2.5rem;
}
@media (max-width: 767.98px) {
  .c-heading-h3 {
    font-size: 1.25rem;
  }
}

.c-heading-h4 {
  margin-top: 68px;
  font-size: 1.875rem;
}
@media (max-width: 767.98px) {
  .c-heading-h4 {
    margin-top: 15vw;
    font-size: 1.5rem;
  }
}

.title-red {
  margin-top: 46px;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #b8193f;
}
@media (max-width: 767.98px) {
  .title-red {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 21px;
  }
}
.title-red.title-lg {
  font-size: 37px;
}
@media (max-width: 767.98px) {
  .title-red.title-lg {
    font-size: 25px;
  }
}

.section-smooth {
  padding-bottom: 61px;
}
@media (max-width: 767.98px) {
  .section-smooth {
    padding-bottom: 28px;
  }
}

.section-authentication .subtitle {
  margin-top: 47px;
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.667;
  color: #b8193f;
}
@media (max-width: 767.98px) {
  .section-authentication .subtitle {
    margin-top: 20px;
    font-size: 18px;
  }
}
.section-authentication .btn-container {
  max-width: 675px;
  margin-top: 55px;
}
@media (max-width: 767.98px) {
  .section-authentication .btn-container {
    margin-top: 30px;
  }
}
.section-authentication .c-heading-h2 {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .section-authentication .c-heading-h2 {
    margin-top: 60px;
    margin-bottom: 28px;
  }
}
.section-authentication .d-flex-authentication {
  max-width: 1076px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-authentication .d-flex-authentication .flex-text {
    margin-left: 53px;
  }
}
@media (max-width: 767.98px) {
  .section-authentication .d-flex-authentication .flex-text {
    margin-top: 20px;
  }
}
.section-authentication .d-flex-authentication .flex-text p {
  margin-top: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.667;
}
@media (max-width: 767.98px) {
  .section-authentication .d-flex-authentication .flex-text p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.section-authentication .d-flex-authentication .flex-text small {
  display: block;
  font-size: 16px;
  line-height: 1.667;
  margin-top: 33px;
}
@media (max-width: 767.98px) {
  .section-authentication .d-flex-authentication .flex-text small {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .section-authentication .d-flex-authentication .flex-img {
    width: 40.6%;
    padding-top: 14px;
  }
}
.section-authentication .d-flex-authentication .flex-img img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .section-authentication .d-flex-authentication .flex-img img {
    max-width: 300px;
  }
}

.section-method {
  padding-top: 100px;
}
@media (max-width: 767.98px) {
  .section-method {
    padding-top: 60px;
  }
}
.section-method .c-heading-h2 {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .section-method .c-heading-h2 {
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .section-method .c-heading-h2 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.section-method .box-light-blue {
  margin-top: 41px;
  padding: 46px 55px 67px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .section-method .box-light-blue {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .section-method .box-light-blue {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}
.section-method .box-light-blue + .box-light-blue {
  margin-top: 33px;
}
.section-method .box-light-blue .box-title {
  margin-top: 0;
  margin-bottom: 26px;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.5;
  color: #b8193f;
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-method .box-light-blue .box-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.section-method .caption {
  margin-top: 18px;
  text-align: right;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
@media (min-width: 768px) {
  .section-method .caption {
    margin-bottom: 43px;
  }
}
@media (max-width: 767.98px) {
  .section-method .caption {
    font-size: 14px;
  }
}

.section-common {
  padding-top: 26px;
}
@media (min-width: 768px) {
  .section-common .c-heading-h2 {
    margin-bottom: 23px;
  }
}
@media (max-width: 767.98px) {
  .section-common .c-heading-h2 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .section-common.remote-desktop .card-common-flow {
    margin-top: 0;
  }
}
.section-common.remote-desktop .card-common-flow .row {
  justify-content: center;
}
@media (max-width: 767.98px) {
  .section-common.remote-desktop .card-common-flow .row > div:nth-child(2) {
    margin-bottom: 0;
  }
}
.section-common.remote-desktop .card-common-flow .row > div:nth-child(2):after {
  content: none;
}
@media (min-width: 768px) {
  .section-common.remote-desktop .card-common-flow .row > div:nth-child(2):before {
    left: -22px;
    top: 89px;
    width: 66px;
    height: 27px;
  }
}
@media (min-width: 768px) {
  .section-common.remote-desktop .card-common-flow .subtile {
    font-size: 23px;
    line-height: 1.522;
  }
}
.section-common.remote-desktop > img {
  width: 100%;
  max-width: 700px;
}
.section-common.remote-desktop .card-body {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .section-common.remote-desktop .card-body {
    padding-top: 31px;
    padding-bottom: 68px;
  }
}
.section-common.remote-desktop .caption {
  margin-top: 23px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-common.remote-desktop .caption {
    margin-top: 10px;
    font-size: 14px;
  }
}
.section-common.user-workload .lead {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.667;
}
@media (max-width: 767.98px) {
  .section-common.user-workload .lead {
    font-size: 16px;
  }
}
.section-common.user-workload .lead + .lead {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .section-common.user-workload .lead + .lead {
    margin-top: 10px;
  }
}
.section-common.user-workload > img {
  margin-top: 54px;
  margin-bottom: 61px;
}
@media (max-width: 767.98px) {
  .section-common.user-workload > img {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.section-common.user-workload .inner {
  max-width: 969px;
}
.section-common.user-workload .lead-container {
  max-width: 1090px;
  margin-top: 38px;
}
@media (min-width: 992px) {
  .section-common.user-workload .lead-container {
    margin-left: 55px;
  }
}
@media (max-width: 767.98px) {
  .section-common.user-workload .lead-container {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .section-common.functions .c-heading-h2 {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  .section-common.functions .card-common .card-body {
    padding-top: 48px;
    padding-bottom: 55px;
  }
}
@media (min-width: 992px) {
  .section-common.functions .card-common .card-body {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media (max-width: 991.98px) {
  .section-common.functions .card-common .card-body {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.section-common.environment {
  padding-bottom: 42px;
}
@media (max-width: 767.98px) {
  .section-common.environment {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .section-common.environment .card-common .d-flex-common .flex-img {
    width: 49.3%;
  }
}
.section-common.environment .card-common .d-flex-common .flex-text {
  margin-top: 6px;
}
@media (max-width: 767.98px) {
  .section-common.environment .card-common .d-flex-common .flex-text {
    margin-top: 15px;
  }
}
.section-common.environment .card-common .subtitle {
  margin-top: 27px;
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #b8193f;
}
@media (max-width: 767.98px) {
  .section-common.environment .card-common .subtitle {
    margin-top: 15px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .section-common.environment .card-common .card-body {
    padding-top: 48px;
    padding-bottom: 55px;
  }
}
@media (min-width: 992px) {
  .section-common.environment .card-common .card-body {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media (max-width: 991.98px) {
  .section-common.environment .card-common .card-body {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.section-common.environment .card-common .card-title small {
  text-align: right;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.01;
  color: #b8193f;
}
@media (max-width: 767.98px) {
  .section-common.environment .card-common .card-title small {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .section-common.environment .card-common.card-common-last .flex-img {
    width: 38.5%;
  }
}
.section-common.environment .card-common.card-common-last .flex-img img {
  max-width: 333px;
}
@media (min-width: 768px) {
  .section-common.environment .card-common.card-common-last .flex-img img {
    margin-top: 7px;
  }
}
.section-common.environment .card-common.card-common-last .box-has-image {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section-common.environment .card-common.card-common-last .box-has-image .box-body {
    padding: 28px 49px 45px;
  }
}
.section-common.environment .card-common.card-common-last .box-has-image .box-title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .section-common.environment .card-common.card-common-last .box-has-image .flex-text {
    margin-right: 46px;
  }
}
.section-common.environment .card-common.card-common-last .box-has-image .flex-img img {
  max-width: 355px;
}
@media (min-width: 768px) {
  .section-common.environment .card-common.card-common-last .box-has-image .flex-img img {
    margin-top: 20px;
    margin-right: 5px !important;
    margin-left: auto !important;
  }
}
.section-common .card-container {
  margin-top: 40px;
  border: 1px solid #b4b4b4;
  border-radius: 10px;
}
.section-common .card-container .card-common {
  margin-top: 0;
  border-top: 1px solid #b4b4b4;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.section-common .card-container .card-common:first-of-type {
  border-top: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.section-common .card-container .card-common .card-title {
  margin-bottom: 44px;
}
@media (max-width: 767.98px) {
  .section-common .card-container .card-common .card-title {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .tab-panel-top {
    padding-top: 28px;
  }
}
.tab-panel-top .text-about-container {
  padding-right: 50px;
  padding-left: 50px;
  margin-top: 10px;
  margin-bottom: 120px;
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .tab-panel-top .text-about-container {
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 80px;
    font-size: 1rem;
  }
}
.tab-panel-top .text-about-container p {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .tab-panel-top .text-about-container p {
    margin-top: 25px;
  }
}
.tab-panel-top .img-logo {
  margin-right: 25px;
}
.tab-panel-top .btn-inline-container {
  display: inline-block;
  max-width: 100%;
  width: 360px;
  margin: 12px 0;
  vertical-align: -12px;
}
@media (max-width: 767.98px) {
  .tab-panel-top .btn-inline-container {
    width: auto;
  }
}

.video-container {
  width: 100%;
  max-width: 700px;
  height: 395px;
}
@media (max-width: 767.98px) {
  .video-container {
    max-width: 400px;
    height: 220px;
  }
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

.d-flex-icon {
  width: 100%;
  max-width: 573px;
  align-items: center;
  padding: 20px 17px;
  border-radius: 10px;
  border: 1px solid #b4b4b4;
}
@media (max-width: 767.98px) {
  .d-flex-icon {
    margin-bottom: 15px;
  }
}
.d-flex-icon .flex-title {
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 767.98px) {
  .d-flex-icon .flex-title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .d-flex-icon .flex-text {
    margin-left: 14px;
  }
}
@media (max-width: 767.98px) {
  .d-flex-icon .flex-text {
    margin-top: 10px;
  }
}
.d-flex-icon .flex-text p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
}
@media (max-width: 767.98px) {
  .d-flex-icon .flex-text p {
    font-size: 14px;
  }
}
.d-flex-icon .flex-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-method .flex-left {
  width: 28.2%;
  margin-left: 93px;
}
@media (min-width: 1400px) {
  .d-flex-method .flex-left {
    margin-right: 94px;
  }
}
@media (max-width: 1199.98px) {
  .d-flex-method .flex-left {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .d-flex-method .flex-left {
    width: 100%;
    margin-left: 0;
  }
}
.d-flex-method .flex-left img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .d-flex-method .flex-left img {
    max-width: 250px;
  }
}
.d-flex-method .flex-right p {
  margin-bottom: 0;
  margin-left: 58px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .d-flex-method .flex-right p {
    font-size: 18px;
    margin-left: 0;
    margin-top: 0;
  }
}

.d-flex-common {
  flex-direction: row-reverse;
}
.d-flex-common .flex-text {
  margin-top: 13px;
}
@media (min-width: 768px) {
  .d-flex-common .flex-text {
    margin-right: 17px;
  }
}
@media (max-width: 767.98px) {
  .d-flex-common .flex-text {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .d-flex-common .flex-img {
    width: 53.65%;
  }
}
@media (min-width: 1400px) {
  .d-flex-common .flex-img {
    margin-right: 24px;
  }
}
.d-flex-common .flex-img img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .d-flex-common .flex-img img {
    max-width: 250px;
  }
}
.d-flex-common .lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.563;
  margin-top: 0;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .d-flex-common .lead {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
