:root {

  --bs-primary-rgb: 13, 110, 253;
  --bs-success-text-emphasis: #0a3622;
  --bs-danger-text-emphasis: #58151c;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-success-border-subtle: #a3cfbb;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-bg: #e9ecef;
  --bs-tertiary-bg: #f8f9fa;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-xxl: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}


ul {
  padding-left: 2rem;
}


ul {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  text-transform: none;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.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-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .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-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  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) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}

.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: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --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;
  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-visible {
  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);
}
 :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
 :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.show:focus-visible {
  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);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.collapse:not(.show) {
  display: none;
}


.dropdown {
  position: relative;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
 .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  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);
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}

:root {
  --bs-btn-close-filter: ;
}

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

:root {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.d-flex {
  display: flex !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.w-100 {
  width: 100% !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.order-2 {
  order: 2 !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-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;
}
@media (min-width: 992px) {
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.navbar-dropdown {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .navbar-dropdown .navbar-logo {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .navbar-dropdown .navbar-logo img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
  .navbar-dropdown .navbar-caption {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .navbar-dropdown .navbar-caption, .navbar-dropdown .navbar-caption:hover {
      color: inherit;
      text-decoration: none; }
  .navbar-dropdown .navbar-brand span {
    vertical-align: -4px; }

.nav-dropdown {
  font-size: 0.75rem;
  font-weight: 500;
  height: auto !important; }
  .nav-dropdown .link {
    margin: .667em 1.667em;
    font-weight: 500;
    padding: 0;
    transition: color .2s ease-in-out; }
  .nav-dropdown .link::after {
    color: inherit; }
  .nav-dropdown .btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }



@charset "UTF-8";
section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}

.symbol-section-title {
  font-style: normal;
  line-height: 1.3;
}

.symbol-section-subtitle {
  line-height: 1.3;
}

.symbol-text {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.display-2,
.display-4,
.display-5,
.display-7,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

b,
strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

.symbol-z-index20 {
  z-index: 20;
}

/*! Base colors */

.symbol-black {
  color: #111111;
}

/*! Text-aligns */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

/*! Font-weight  */

.symbol-bold {
  font-weight: 700;
}

/*! Media  */

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}
/*! Buttons */
.symbol-section-btn {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

nav .symbol-section-btn {
  margin-left: 0rem;
  margin-right: 0rem;
}

/*! Btn icon margin */

.symbol-bold {
  font-weight: 700;
}

[type=submit] {
  -webkit-appearance: none;
}

/*! Full-screen */

.section-article03-3 {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/*! Map */

/*! Scroll to top arrow */

/*! Arrow Down */

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*Gradients animation*/
@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: -webkit-flex;
}
.menu .navbar-brand span {
  display: flex;
  display: -webkit-flex;
}
.menu .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.menu .navbar-brand .navbar-logo img {
  display: -webkit-flex;
  width: auto;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: -webkit-flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.navbar {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
  -webkit-flex-grow: 1;
  -webkit-align-items: center;
}

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}

.row {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}

.justify-content-center {
  -webkit-justify-content: center;
}

.card-wrapper {
  -webkit-flex: 1;
}

.form-group:focus {
  outline: none;
}

.navbar-toggler {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  box-shadow: none;
}

html,
body {
  height: auto;
  min-height: 100vh;
}

.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.form-control {
  background-color: #ffffff;
  background-clip: border-box;
  color: #232323;
  line-height: 1rem !important;
  height: auto;
  padding: 0.6rem 1.2rem;
  transition: border-color 0.25s ease 0s;
  border: 1px solid transparent !important;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
}

form .row {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
form .row [class*=col] {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .symbol-section-btn {
  margin: 0;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  display: flex;
  padding: 0.6rem 1.2rem;
  margin: 0;
}

textarea.form-control {
  line-height: 1.5rem !important;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-control,
form .btn {
  min-height: 48px;
}

.form-control:focus {
  box-shadow: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

@media (min-width: 992px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
  .row > [class*=col] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.card-wrapper {
  overflow: hidden;
}
@font-face {
  font-family: 'typography2';
  font-display: swap;
  src:  url('fonts/repetition2.eot');
  src:  url('fonts/repetition2.eot') format('embedded-opentype'),
    url('fonts/repetition2.ttf') format('truetype'),
    url('fonts/repetition2.woff') format('woff'),
    url('fonts/repetition2.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: Instrument Sans;
}
.display-2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.125em;
  letter-spacing: -0.01em;
}
.display-4 {
  font-family: 'Instrument Serif', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
}
.display-5 {
  font-family: 'Instrument Serif', sans-serif;
  font-size: 2.5rem;
  line-height: 1.22222em;
  letter-spacing: 0;
}
.display-7 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.41176em;
  letter-spacing: .03em;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 5em;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f8a70 !important;
  border-color: #1f8a70 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0f4337 !important;
  border-color: #0f4337 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0f4337 !important;
  border-color: #0f4337 !important;
}
.text-primary {
  color: #1f8a70 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0c372c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.alert-success {
  background-color: #70c770;
}
.alert-danger {
  background-color: #bd1313;
}
a,
a:hover {
  color: #1f8a70;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Instrument Serif', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
  font-weight: 400;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1f8a70 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Instrument Serif', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
  font-weight: 400;
}
/* Forms */
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.symbol-section-btn .btn {
  padding: 5px 25px;
  box-shadow: none;
  font-style: italic;
  font-weight: 400 !important;
}
.symbol-section-btn .btn:hover,
.symbol-section-btn .btn:focus {
  box-shadow: none;
}
.section-header2-1 {
  background-color: #0f4c81;
}
.section-header2-1 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .section-header2-1 .container-fluid {
    padding: 0 30px;
  }
}
.section-header2-1 .container-fluid .row {
  padding: 0;
}
.section-header2-1 .title-wrapper {
  padding: 180px 120px;
}
@media (max-width: 1200px) {
  .section-header2-1 .title-wrapper {
    padding: 120px 60px;
  }
}
@media (max-width: 992px) {
  .section-header2-1 .title-wrapper {
    padding: 80px 0;
  }
}
.section-header2-1 .title-wrapper .symbol-section-title {
  margin-bottom: 32px;
}
.section-header2-1 .title-wrapper .symbol-text {
  margin-bottom: 22px;
}
.section-header2-1 .image-wrapper {
  position: relative;
}
.section-header2-1 .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-header2-1 .image-wrapper img:first-child {
  height: 900px;
}
@media (max-width: 992px) {
  .section-header2-1 .image-wrapper img:first-child {
    height: 350px;
  }
}
.section-header2-1 .image-wrapper img:last-child {
  position: absolute;
  bottom: 5rem;
  left: -7rem;
  width: 315px;
  height: 425px;
  border-radius: 10px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .section-header2-1 .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .section-header2-1 .image-wrapper img:last-child {
    display: none;
  }
}
@media (max-width: 1200px) {
  .section-header2-1 .image-wrapper img:last-child {
    left: -5rem;
  }
}
@media (max-width: 992px) {
  .section-header2-1 .image-wrapper img:last-child {
    display: none;
  }
}
.section-header2-1 .symbol-section-title {
  color: #000000;
}
.section-header2-1 .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-header2-1 .symbol-section-title,
.section-header2-1 .symbol-section-btn {
  text-align: center;
  color: #ffffff;
}
.section-menu1-m .navbar-dropdown {
  position: relative !important;
}
.section-menu1-m .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-m .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-m .container {
  display: flex;
  margin: auto;
}
.section-menu1-m .nav-item:focus,
.section-menu1-m .nav-link:focus {
  outline: none;
}
.section-menu1-m .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-m .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-m .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-m .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-m ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-m .navbar {
    height: 60px;
  }
  .section-menu1-m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-m a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-m img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-m .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-m .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-m ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-m .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-m .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-m .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-m .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-m .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-m .container,
  .section-menu1-m .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-m li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-m ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-m a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-m .nav-item {
  position: relative;
}
.section-menu1-m .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-m .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-m li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-m a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-m .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-m .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-m .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-m a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-article03-3 {
  position: relative;
  overflow: hidden;
  background-color: #f4d06f;
}
.section-article03-3 .row {
  justify-content: flex-end;
}
.section-article03-3 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.section-article03-3 .title-wrapper .title-wrap .symbol-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section-article03-3 .title-wrapper .title-wrap .symbol-section-title {
    margin-bottom: 30px;
  }
}
.section-article03-3 .card-wrapper {
  position: relative;
  z-index: 2;
  padding: 54px;
  background-color: #0f4c81;
}
@media (max-width: 1440px) {
  .section-article03-3 .card-wrapper {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .section-article03-3 .card-wrapper {
    padding: 30px 16px;
  }
}
.section-article03-3 .card-wrapper .symbol-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .section-article03-3 .card-wrapper .symbol-section-title {
    margin-bottom: 30px;
  }
}
.section-article03-3 .card-wrapper .symbol-text {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .section-article03-3 .card-wrapper .symbol-text {
    margin-bottom: 30px;
  }
}
.section-article03-3 .card-wrapper .symbol-section-btn .btn {
  margin-bottom: 0;
}
.section-article03-3 .image-wrap {
  position: absolute;
}
.section-article03-3 .image-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-article03-3 .image-wrap_1 {
  z-index: 1;
  top: 0;
  left: 170px;
}
.section-article03-3 .image-wrap_1 img {
  height: 580px;
  width: 580px;
}
.section-article03-3 .image-wrap_2 {
  bottom: 0;
  right: 170px;
}
.section-article03-3 .image-wrap_2 img {
  height: 700px;
  width: 1000px;
}
.section-article03-3 .symbol-section-title {
  color: #151e11;
}
.section-article03-3 .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-article03-3 .symbol-section-title,
.section-article03-3 .symbol-section-btn {
  color: #ffffff;
  text-align: center;
}
.section-article01-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0f4c81;
}
.section-article01-4 .items-wrapper {
  justify-content: flex-end;
}
.section-article01-4 .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .section-article01-4 .image-wrapper {
    margin-bottom: 32px;
  }
}
.section-article01-4 .image-wrapper img {
  height: 720px;
  width: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .section-article01-4 .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .section-article01-4 .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .section-article01-4 .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .section-article01-4 .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.section-article01-4 .content-wrapper {
  padding-left: 120px;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .section-article01-4 .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .section-article01-4 .content-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .section-article01-4 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .section-article01-4 .content-wrapper {
    padding-right: 0;
  }
}
.section-article01-4 .content-wrapper .symbol-desc {
  margin-bottom: 8px;
}
.section-article01-4 .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-article01-4 .content-wrapper .symbol-text {
  margin-bottom: 24px;
}
.section-article01-4 .symbol-desc {
  color: #ffffff;
  text-align: center;
}
.section-article01-4 .symbol-section-title {
  color: #272b2e;
}
.section-article01-4 .symbol-text,
.section-article01-4 .text-wrapper {
  color: #272b2e;
}
.section-article01-4 .symbol-section-title,
.section-article01-4 .symbol-section-btn {
  text-align: center;
  color: #ffffff;
}
.section-article01-4 .symbol-text {
  text-align: center;
  color: #ffffff;
}
.section-article05-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
@media (max-width: 992px) {
  .section-article05-5 .container {
    padding: 0 30px;
  }
}
.section-article05-5 .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #0f4c81;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper {
    display: block;
  }
}
.section-article05-5 .content-wrapper .card {
  justify-content: center;
}
.section-article05-5 .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.section-article05-5 .content-wrapper .content-wrap .symbol-section-title {
  margin-bottom: 35px;
}
.section-article05-5 .content-wrapper .content-wrap .symbol-text {
  margin-bottom: 40px;
}
.section-article05-5 .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.section-article05-5 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-article05-5 .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #0f4c81;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.section-article05-5 .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.section-article05-5 .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-article05-5 .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #f4d06f;
}
@media (max-width: 992px) {
  .section-article05-5 .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.section-article05-5 .symbol-section-title {
  color: #144031;
}
.section-article05-5 .symbol-text {
  color: #000000;
  text-align: center;
}
.section-article05-5 .list {
  color: #144031;
}
.section-article05-5 .symbol-section-title,
.section-article05-5 .symbol-section-btn {
  text-align: center;
  color: #000000;
}
.section-article05-5 .list,
.section-article05-5 .item-wrap {
  color: #ffffff;
}
.why-us {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f4c81;
  overflow: hidden;
}
.why-us .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .why-us .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .why-us .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .why-us .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .why-us .container {
    padding: 0 16px;
  }
}
.why-us .row {
  justify-content: space-between;
}
.why-us .row:hover,
.why-us .row:focus {
  cursor: pointer;
}
.why-us .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .why-us .image-wrapper {
    margin-bottom: 32px;
  }
}
.why-us .image-wrapper img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .why-us .image-wrapper img {
    height: 300px;
  }
}
.why-us .content-wrapper .symbol-section-title {
  margin-bottom: 16px;
}
.why-us .content-wrapper .symbol-text {
  margin-bottom: 16px;
}
.why-us .symbol-section-title {
  color: #000000;
}
.why-us .symbol-text {
  color: #ffffff;
  text-align: center;
}
.why-us .symbol-section-title,
.why-us .symbol-section-btn {
  text-align: center;
  color: #ffffff;
}
.section-contacts01-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4d06f;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-contacts01-7 .container {
    padding: 0 16px;
  }
}
.section-contacts01-7 .row {
  justify-content: center;
}
.section-contacts01-7 .content-wrapper {
  position: relative;
}
.section-contacts01-7 .content-wrapper .symbol-section-title {
  margin-bottom: 40px;
}
.section-contacts01-7 .content-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.section-contacts01-7 .content-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.section-contacts01-7 .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-contacts01-7 .content-wrapper .list .item-wrap:hover,
.section-contacts01-7 .content-wrapper .list .item-wrap:focus {
  color: #0f4c81;
}
.section-contacts01-7 .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #0f4c81 -10%, transparent 70%);
}
.section-contacts01-7 .symbol-section-title {
  color: #000000;
}
.section-contacts01-7 .list {
  color: #000000;
  text-align: center;
}
.section-contacts01-7 .symbol-section-title {
  text-align: center;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-m .navbar-dropdown {
  position: relative !important;
}
.section-menu1-m .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-m .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-m .container {
  display: flex;
  margin: auto;
}
.section-menu1-m .nav-item:focus,
.section-menu1-m .nav-link:focus {
  outline: none;
}
.section-menu1-m .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-m .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-m .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-m .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-m ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-m .navbar {
    height: 60px;
  }
  .section-menu1-m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-m a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-m img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-m .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-m .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-m ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-m .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-m .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-m .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-m .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-m .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-m .container,
  .section-menu1-m .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-m li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-m ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-m a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-m .nav-item {
  position: relative;
}
.section-menu1-m .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-m .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-m li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-m a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-m .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-m .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-m .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-m a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-header04-d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
.section-header04-d .symbol-text {
  max-width: 550px;
}
.section-header04-d .row {
  align-items: center;
}
.section-header04-d .symbol-section-subtitle {
  line-height: 1.6;
  text-align: center;
}
.section-header04-d .symbol-text,
.section-header04-d .symbol-section-btn {
  color: #000000;
  text-align: center;
}
.section-header04-d .symbol-section-title {
  text-align: center;
}
.section-article02-a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f4c81;
}
@media (max-width: 992px) {
  .section-article02-a .container {
    padding: 0 22px;
  }
}
.section-article02-a .card {
  justify-content: center;
}
.section-article02-a .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .section-article02-a .content-wrapper {
    padding: 0;
  }
}
.section-article02-a .content-wrapper .symbol-section-title {
  margin-bottom: 10px;
}
.section-article02-a .content-wrapper .symbol-text {
  margin-bottom: 10px;
}
.section-article02-a .image-wrapper {
  padding-right: 64px;
}
@media (max-width: 992px) {
  .section-article02-a .image-wrapper {
    margin-top: 20px;
    padding: 0;
  }
}
.section-article02-a .image-wrapper img {
  height: 600px;
  border-radius: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .section-article02-a .image-wrapper img {
    height: 350px;
  }
}
.section-article02-a .symbol-section-title {
  color: #ffffff;
}
.section-article02-a .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-article02-a .symbol-section-title,
.section-article02-a .symbol-section-btn {
  text-align: center;
}
.section-article04-b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4d06f;
  overflow: hidden;
}
@media (max-width: 992px) {
  .section-article04-b .container {
    padding: 0 22px;
  }
}
.section-article04-b .card {
  justify-content: center;
}
.section-article04-b .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .section-article04-b .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .section-article04-b .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.section-article04-b .content-wrapper .symbol-section-title {
  margin-bottom: 10px;
}
.section-article04-b .content-wrapper .symbol-text {
  margin-bottom: 0;
}
.section-article04-b .image-wrapper {
  display: flex;
  justify-content: center;
}
.section-article04-b .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 10px 10px 60px #0f4c81;
}
@media (max-width: 1440px) {
  .section-article04-b .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .section-article04-b .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .section-article04-b .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .section-article04-b .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.section-article04-b .symbol-section-title {
  color: #000000;
  text-align: center;
}
.section-article04-b .symbol-text {
  color: #000000;
  text-align: center;
}
.section-article04-c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f4c81;
}
@media (max-width: 992px) {
  .section-article04-c .container {
    padding: 0 22px;
  }
}
.section-article04-c .row {
  justify-content: space-between;
}
.section-article04-c .row .card {
  justify-content: center;
}
.section-article04-c .content-wrapper .symbol-section-title {
  margin-bottom: 32px;
}
.section-article04-c .content-wrapper .symbol-desc {
  margin-bottom: 32px;
}
.section-article04-c .content-wrapper .symbol-text {
  margin-bottom: 0px;
}
.section-article04-c .image-wrapper {
  position: relative;
}
.section-article04-c .image-wrapper img {
  height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .section-article04-c .image-wrapper img {
    height: 350px;
  }
}
.section-article04-c .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-article04-c .symbol-desc {
  color: #ffffff;
  text-align: center;
}
.section-article04-c .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-m .navbar-dropdown {
  position: relative !important;
}
.section-menu1-m .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-m .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-m .container {
  display: flex;
  margin: auto;
}
.section-menu1-m .nav-item:focus,
.section-menu1-m .nav-link:focus {
  outline: none;
}
.section-menu1-m .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-m .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-m .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-m .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-m ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-m .navbar {
    height: 60px;
  }
  .section-menu1-m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-m a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-m img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-m .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-m .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-m ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-m .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-m .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-m .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-m .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-m .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-m .container,
  .section-menu1-m .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-m li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-m ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-m a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-m .nav-item {
  position: relative;
}
.section-menu1-m .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-m .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-m li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-m a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-m .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-m .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-m .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-m a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-header1-f {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  background: #0f4c81;
}
@media (min-width: 1330px) {
  .section-header1-f .container {
    max-width: 1330px !important;
  }
}
.section-header1-f .content-wrap {
  background-color: #f4d06f;
}
.section-header1-f .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #0f4c81;
}
@media (min-width: 992px) {
  .section-header1-f .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
    margin-left: -12.6rem;
  }
}
@media (max-width: 767px) {
  .section-header1-f .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.section-header1-f .img-wrap {
  height: 100%;
}
.section-header1-f .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.section-header1-f .symbol-section-subtitle {
  animation-delay: .2s;
}
.section-header1-f .symbol-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.section-header1-f [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .section-header1-f .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.section-header1-f .symbol-section-subtitle,
.section-header1-f .symbol-section-btn {
  color: #ffffff;
  text-align: center;
}
.section-article06-g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
@media (max-width: 992px) {
  .section-article06-g .container {
    padding: 0 30px;
  }
}
.section-article06-g .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .section-article06-g .content-wrapper {
    display: block;
  }
}
.section-article06-g .content-wrapper .card {
  justify-content: center;
}
.section-article06-g .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #0f4c81;
  border-radius: 0 0 2rem 0 !important;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .section-article06-g .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.section-article06-g .content-wrapper .content-wrap .symbol-section-title {
  margin-bottom: 35px;
}
.section-article06-g .content-wrapper .content-wrap .symbol-text {
  margin-bottom: 40px;
}
.section-article06-g .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .section-article06-g .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.section-article06-g .content-wrapper .image-wrapper img {
  min-height: 630px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .section-article06-g .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.section-article06-g .symbol-section-title {
  color: #144031;
}
.section-article06-g .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-article06-g .symbol-section-title,
.section-article06-g .symbol-section-btn {
  color: #ffffff;
  text-align: center;
}
.section-content7-j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0f4c81;
}
.section-content7-j .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .section-content7-j .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .section-content7-j .container {
    padding: 0 20px;
  }
}
.section-content7-j .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .section-content7-j .title-wrapper {
    margin-bottom: 24px;
  }
}
.section-content7-j .title-wrapper .symbol-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .section-content7-j .title-wrapper .symbol-section-title {
    margin-bottom: 24px;
  }
}
.section-content7-j .title-wrapper .symbol-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .section-content7-j .title-wrapper .symbol-text {
    margin-bottom: 24px;
  }
}
.section-content7-j .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.section-content7-j .image-wrapper img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .section-content7-j .image-wrapper img {
    height: 300px;
  }
}
.section-content7-j .symbol-section-title {
  color: #c2b299;
}
.section-content7-j .symbol-text {
  color: #ffffff;
  text-align: center;
}
.section-content7-j .symbol-section-title,
.section-content7-j .symbol-section-btn {
  color: #ffffff;
  text-align: center;
}
.section-content3-s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
.section-content3-s .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .section-content3-s .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .section-content3-s .container {
    padding: 0 26px;
  }
}
.section-content3-s .row {
  margin: 0;
}
@media (max-width: 992px) {
  .section-content3-s .row {
    margin: 0 -12px;
  }
}
.section-content3-s .card {
  position: relative;
  padding: 0 50px 0 0;
  justify-content: center;
  border-radius: 0;
  padding: 0 0 0 50px;
}
.section-content3-s .card:first-child {
  border-right: 1px solid #0f4c81;
}
@media (max-width: 992px) {
  .section-content3-s .card:first-child {
    border: none;
  }
}
.section-content3-s .card:first-child::before {
  content: '';
  position: absolute;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: #0f4c81;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .section-content3-s .card:first-child::before {
    display: none;
  }
}
.section-content3-s .card:last-child {
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  .section-content3-s .card:last-child {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .section-content3-s .card {
    padding: 0 12px;
  }
}
.section-content3-s .card:last-child {
  padding: 0 50px 0 0;
}
@media (max-width: 992px) {
  .section-content3-s .card:last-child {
    padding: 0 12px;
  }
}
.section-content3-s .card:first-child {
  border-right: none;
  border-left: 1px solid #0f4c81;
}
@media (max-width: 992px) {
  .section-content3-s .card:first-child {
    border: none;
  }
}
.section-content3-s .card:first-child::before {
  right: auto;
  left: -8px;
}
@media (max-width: 992px) {
  .section-content3-s .card:first-child::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .section-content3-s .card {
    padding: 0 12px;
  }
}
.section-content3-s .image-wrapper {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .section-content3-s .image-wrapper {
    padding: 0 0 40px 0;
  }
}
.section-content3-s .image-wrapper img {
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .section-content3-s .image-wrapper img {
    height: 300px;
  }
}
.section-content3-s .title-wrapper .title-wrap {
  padding: 40px;
}
@media (max-width: 992px) {
  .section-content3-s .title-wrapper .title-wrap {
    padding: 0;
  }
}
.section-content3-s .title-wrapper .title-wrap .symbol-section-title {
  margin-bottom: 18px;
}
.section-content3-s .title-wrapper .title-wrap .symbol-text {
  margin-bottom: 0;
}
.section-content3-s .symbol-section-title {
  color: #000000;
  text-align: center;
}
.section-content3-s .symbol-text {
  color: #000000;
  text-align: center;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-m .navbar-dropdown {
  position: relative !important;
}
.section-menu1-m .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-m .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-m .container {
  display: flex;
  margin: auto;
}
.section-menu1-m .nav-item:focus,
.section-menu1-m .nav-link:focus {
  outline: none;
}
.section-menu1-m .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-m .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-m .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-m .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-m ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-m .navbar {
    height: 60px;
  }
  .section-menu1-m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-m a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-m img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-m .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-m .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-m ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-m .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-m .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-m .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-m .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-m .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-m .container,
  .section-menu1-m .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-m li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-m ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-m a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-m .nav-item {
  position: relative;
}
.section-menu1-m .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-m .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-m li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-m a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-m .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-m .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-m .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-m a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-form02-l {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0f4c81;
}
.section-form02-l form .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
}
.section-form02-l h1 {
  font-weight: 500;
  line-height: 1;
}
.section-form02-l .form-control {
  padding: 1rem;
  background-color: #ffffff;
  border: none !important;
  border-radius: 0;
  border-left: 2px solid #0f4c81 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.section-form02-l .form-control::-webkit-input-placeholder,
.section-form02-l .form-control::-webkit-input-placeholder {
  color: #6e6e6e;
}
.section-form02-l .form-control:-moz-placeholder,
.section-form02-l .form-control:-moz-placeholder {
  color: #6e6e6e;
}
.section-form02-l .form-control:hover,
.section-form02-l .form-control:focus {
  background-color: #ffffff;
  border-color: #1f8a70 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.section-form02-l .form-control:hover::-webkit-input-placeholder,
.section-form02-l .form-control:focus::-webkit-input-placeholder,
.section-form02-l .form-control:hover::-webkit-input-placeholder,
.section-form02-l .form-control:focus::-webkit-input-placeholder {
  color: #000000;
}
.section-form02-l .form-control:hover:-moz-placeholder,
.section-form02-l .form-control:focus:-moz-placeholder,
.section-form02-l .form-control:hover:-moz-placeholder,
.section-form02-l .form-control:focus:-moz-placeholder {
  color: #000000;
}
.section-form02-l textarea {
  min-height: 150px;
}
.section-form02-l input::-webkit-clear-button {
  display: none;
}
.section-form02-l input::-webkit-inner-spin-button {
  display: none;
}
.section-form02-l input::-webkit-outer-spin-button {
  display: none;
}
.section-form02-l input::-webkit-calendar-picker-indicator {
  display: none;
}
.section-form02-l .symbol-section-title {
  text-align: center;
  color: #ffffff;
}
.section-contacts01-t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4d06f;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-contacts01-t .container {
    padding: 0 16px;
  }
}
.section-contacts01-t .row {
  justify-content: center;
}
.section-contacts01-t .content-wrapper {
  position: relative;
}
.section-contacts01-t .content-wrapper .symbol-section-title {
  margin-bottom: 40px;
}
.section-contacts01-t .content-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.section-contacts01-t .content-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.section-contacts01-t .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-contacts01-t .content-wrapper .list .item-wrap:hover,
.section-contacts01-t .content-wrapper .list .item-wrap:focus {
  color: #0f4c81;
}
.section-contacts01-t .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #0f4c81 -10%, transparent 70%);
}
.section-contacts01-t .symbol-section-title {
  color: #000000;
}
.section-contacts01-t .list {
  color: #000000;
  text-align: center;
}
.section-contacts01-t .symbol-section-title {
  text-align: center;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-m .navbar-dropdown {
  position: relative !important;
}
.section-menu1-m .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-m .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-m .container {
  display: flex;
  margin: auto;
}
.section-menu1-m .nav-item:focus,
.section-menu1-m .nav-link:focus {
  outline: none;
}
.section-menu1-m .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-m .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-m .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-m .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-m ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-m .navbar {
    height: 60px;
  }
  .section-menu1-m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-m a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-m img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-m .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-m .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-m ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-m .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-m .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-m .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-m .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-m .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-m .container,
  .section-menu1-m .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-m li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-m ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-m a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-m .nav-item {
  position: relative;
}
.section-menu1-m .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-m .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-m li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-m a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-m .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-m .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-m .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-m a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-content7-n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
.section-content7-n .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .section-content7-n .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .section-content7-n .container {
    padding: 0;
  }
}
.section-content7-n .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .section-content7-n .title-wrapper {
    padding: 0 16px;
  }
}
.section-content7-n .title-wrapper .symbol-section-title {
  margin-bottom: 0;
}
.section-content7-n .title-wrapper .symbol-text {
  margin: 30px 0 0 0;
}
.section-content7-n .symbol-section-title {
  color: #000000;
  text-align: center;
}
.section-content7-n .symbol-text {
  color: #000000;
  text-align: left;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-o .navbar-dropdown {
  position: relative !important;
}
.section-menu1-o .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-o .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-o .container {
  display: flex;
  margin: auto;
}
.section-menu1-o .nav-item:focus,
.section-menu1-o .nav-link:focus {
  outline: none;
}
.section-menu1-o .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-o .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-o .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-o .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-o ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-o .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-o .navbar {
    height: 60px;
  }
  .section-menu1-o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-o a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-o img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-o .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-o .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-o ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-o .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-o .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-o .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-o .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-o .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-o .container,
  .section-menu1-o .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-o li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-o ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-o a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-o .nav-item {
  position: relative;
}
.section-menu1-o .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-o .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-o li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-o a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-o .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-o .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-o .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-o a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-content7-p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4d06f;
}
.section-content7-p .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .section-content7-p .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .section-content7-p .container {
    padding: 0;
  }
}
.section-content7-p .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .section-content7-p .title-wrapper {
    padding: 0 16px;
  }
}
.section-content7-p .title-wrapper .symbol-section-title {
  margin-bottom: 0;
}
.section-content7-p .title-wrapper .symbol-text {
  margin: 30px 0 0 0;
}
.section-content7-p .symbol-section-title {
  color: #000000;
  text-align: center;
}
.section-content7-p .symbol-text {
  color: #000000;
  text-align: left;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}
.section-menu1-q .navbar-dropdown {
  position: relative !important;
}
.section-menu1-q .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.section-menu1-q .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.section-menu1-q .container {
  display: flex;
  margin: auto;
}
.section-menu1-q .nav-item:focus,
.section-menu1-q .nav-link:focus {
  outline: none;
}
.section-menu1-q .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0a0f1c;
}
.section-menu1-q .navbar .navbar-logo img {
  width: auto;
}
.section-menu1-q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-menu1-q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .section-menu1-q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .section-menu1-q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .section-menu1-q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .section-menu1-q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .section-menu1-q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.section-menu1-q .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.section-menu1-q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.section-menu1-q .navbar-brand .navbar-logo a {
  outline: none;
}
.section-menu1-q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.section-menu1-q ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.section-menu1-q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.section-menu1-q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.section-menu1-q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.section-menu1-q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.section-menu1-q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.section-menu1-q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-menu1-q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section-menu1-q .navbar {
    height: 60px;
  }
  .section-menu1-q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.section-menu1-q a {
  display: inline;
  transition: all .3s !important;
}
.section-menu1-q img {
  display: inline;
  padding-right: 10px;
}
@media (max-width: 990px) {
  .section-menu1-q .nav-dropdown .link {
    margin: 0 !important;
  }
}
.section-menu1-q .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .section-menu1-q ul li {
    height: 45px;
    display: list-item;
  }
}
.section-menu1-q .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.section-menu1-q .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.section-menu1-q .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.section-menu1-q .container-fluid {
  padding-right: 0;
}
@media (max-width: 945px) {
  .section-menu1-q .icons-menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-menu1-q .container,
  .section-menu1-q .container-fluid {
    flex-wrap: nowrap;
  }
}
.section-menu1-q li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .section-menu1-q ul.navbar-nav {
    padding-left: 0;
  }
}
.section-menu1-q a.btn > span {
  margin-left: 0.5rem;
}
.section-menu1-q .nav-item {
  position: relative;
}
.section-menu1-q .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.section-menu1-q .nav-item:hover {
  text-decoration: underline;
}
.section-menu1-q li.nav-item {
  padding: 0px 23px !important;
}
.section-menu1-q a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.section-menu1-q .navbar-toggler {
  margin-right: 35px;
}
@media (max-width: 430px) {
  .section-menu1-q .icons-menu {
    min-width: initial !important;
  }
  .section-menu1-q .navbar-toggler {
    margin-right: 12px;
  }
}
.section-menu1-q a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.section-content7-r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4d06f;
}
.section-content7-r .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .section-content7-r .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .section-content7-r .container {
    padding: 0;
  }
}
.section-content7-r .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .section-content7-r .title-wrapper {
    padding: 0 16px;
  }
}
.section-content7-r .title-wrapper .symbol-section-title {
  margin-bottom: 0;
}
.section-content7-r .title-wrapper .symbol-text {
  margin: 30px 0 0 0;
}
.section-content7-r .symbol-section-title {
  color: #000000;
  text-align: center;
}
.section-content7-r .symbol-text {
  color: #000000;
  text-align: left;
}
.section-footer01-u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0f1c;
}
@media (max-width: 992px) and (max-width: 992px) {
  .section-footer01-u .container {
    padding: 0 24px;
  }
}
.section-footer01-u .row {
  justify-content: space-between;
}
.section-footer01-u .logo-wrapper {
  display: flex;
}
.section-footer01-u .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px !important;
}
.section-footer01-u .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #f4d06f;
}
.section-footer01-u .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .section-footer01-u .content-wrapper {
    padding: 24px 0;
  }
}
.section-footer01-u .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.section-footer01-u .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .content-wrapper .list .item-wrap:hover,
.section-footer01-u .content-wrapper .list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.section-footer01-u .content-wrapper .symbol-section-title {
  margin-bottom: 24px;
}
.section-footer01-u .content-wrapper .symbol-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-footer01-u .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer01-u .nav-list {
    padding: 0;
  }
}
.section-footer01-u .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #f4d06f;
  border-bottom: 1px solid #f4d06f;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.section-footer01-u .nav-list .item-wrap:hover,
.section-footer01-u .nav-list .item-wrap:focus {
  color: #f4d06f;
}
.section-footer01-u .nav-list .item-wrap:hover::before,
.section-footer01-u .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.section-footer01-u .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.section-footer01-u .nav-list .item-wrap::before {
  content: '';
  background-color: #f4d06f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.section-footer01-u .symbol-section-title {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list {
  color: #F9F6E0;
}
.section-footer01-u .symbol-copy {
  color: #ffffff;
  text-align: center;
}
.section-footer01-u .list,
.section-footer01-u .item-wrap {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
}
/* Finish Cookie Banner */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
    box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff;
    }
    50% {
        text-shadow: 0 0 20px #ff0;
    }
    100% {
        text-shadow: 0 0 5px #fff;
    }
}

.navbar-brand {
    animation: glow 2s alternate;
}
/* endlogoanimations */
.cookie-banner.show {
  visibility: visible;
  opacity: 1;
}
