@charset "UTF-8";
/*$font-sizes: (
  'xs': 0.75rem,   // 12px
  'sm': 0.875rem,  // 14px
  'base': 1rem,    // 16px
  'lg': 1.125rem,  // 18px
  'xl': 1.25rem,   // 20px
  '2xl': 1.5rem,   // 24px
  '3xl': 1.875rem, // 30px
  '4xl': 2.25rem,  // 36px
  '5xl': 3rem      // 48px
);*/
/*$container-padding: 1rem;*/
/*$font-sizes: (
  'xs': 0.75rem,   // 12px
  'sm': 0.875rem,  // 14px
  'base': 1rem,    // 16px
  'lg': 1.125rem,  // 18px
  'xl': 1.25rem,   // 20px
  '2xl': 1.5rem,   // 24px
  '3xl': 1.875rem, // 30px
  '4xl': 2.25rem,  // 36px
  '5xl': 3rem      // 48px
);*/
/*$container-padding: 1rem;*/
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(2, 208, 191);
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 2rem;
}
@media (min-width: 320px) {
  h1 {
    font-size: calc(2rem + 1 * (100vw - 320px) / 1600);
  }
}
@media (min-width: 1920px) {
  h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 0.9375rem;
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666666;
}

small,
.small {
  font-size: 0.75rem;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

blockquote {
  margin: 1.125rem 0;
  padding: 0.9375rem;
  padding-left: 1.125rem;
  border-left: 4px solid #00d4aa;
  background-color: rgba(240, 245, 255, 0.5);
  font-style: italic;
}
blockquote p {
  margin-bottom: 0.75rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-style: normal;
  color: #666666;
}
blockquote cite::before {
  content: "— ";
}

ul, ol {
  margin-bottom: 0.9375rem;
  padding-left: 1.125rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
  margin-bottom: 0;
}
ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
  margin-bottom: 0;
}
ol ol ol {
  list-style-type: lower-roman;
}

dl {
  margin-bottom: 0.9375rem;
}
dl dt {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
dl dd {
  margin-bottom: 0.75rem;
  margin-left: 0.9375rem;
}

code,
kbd,
pre,
samp {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
}

code {
  padding: 2px 4px;
  color: #e83e8c;
  background-color: #f8f9fa;
  border-radius: 6px;
}

pre {
  display: block;
  margin-bottom: 0.9375rem;
  padding: 0.9375rem;
  overflow: auto;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #212529;
  background-color: #f8f9fa;
  border-radius: 6px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

hr {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
}

mark {
  background-color: #fff3cd;
  padding: 2px 4px;
}

.text-primary {
  color: #1a3d7c !important;
}

.text-secondary {
  color: #00d4aa !important;
}

.text-success {
  color: #28a745 !important;
}

.text-error {
  color: #dc3545 !important;
}

.text-light {
  color: #666666 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.75rem !important;
}

.text-base {
  font-size: 0.875rem !important;
}

.text-lg {
  font-size: 1rem !important;
}

.text-xl {
  font-size: 1.125rem !important;
}

.text-2xl {
  font-size: 1.25rem !important;
}

.text-3xl {
  font-size: 1.5rem !important;
}

.text-4xl {
  font-size: 1.875rem !important;
}

.text-5xl {
  font-size: 2.5rem !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd,
figure, blockquote,
pre, table {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: #00d4aa;
}
a:focus-visible {
  /*    outline: 2px solid $secondary-color;
      outline-offset: 2px;*/
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

picture {
  display: block;
}

svg {
  fill: currentColor;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template,
[hidden] {
  display: none;
}

::-moz-selection {
  background-color: rgba(0, 212, 170, 0.2);
  color: #333333;
}

::selection {
  background-color: rgba(0, 212, 170, 0.2);
  color: #333333;
}

.focus-visible-polyfill *:focus {
  outline: none;
}

.focus-visible-polyfill *:focus-visible,
.focus-visible-polyfill .focus-visible {
  outline: none;
}

:focus-visible {
  outline: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 0;
  width: 100%;
}

.container-fluid {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 0;
  width: 100%;
}

main {
  min-height: 75vh;
}

section {
  padding: 1.875rem 0;
}
@media (max-width: 1024px) {
  section {
    padding: 1.5rem 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 0.9375rem 0;
    margin: 0;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid--2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .grid--3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .grid--3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1280px) {
  .grid--4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .grid--4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .grid--4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}
.flex--column {
  flex-direction: column;
}
.flex--center {
  justify-content: center;
  align-items: center;
}
.flex--between {
  justify-content: space-between;
}
.flex--wrap {
  flex-wrap: wrap;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-0 {
  margin: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-0 {
  padding: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.m-1 {
  margin: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.m-2 {
  margin: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.m-3 {
  margin: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.p-3 {
  padding: 0.75rem;
}

.mt-4 {
  margin-top: 0.9375rem;
}

.mb-4 {
  margin-bottom: 0.9375rem;
}

.ml-4 {
  margin-left: 0.9375rem;
}

.mr-4 {
  margin-right: 0.9375rem;
}

.mx-4 {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}

.my-4 {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

.m-4 {
  margin: 0.9375rem;
}

.pt-4 {
  padding-top: 0.9375rem;
}

.pb-4 {
  padding-bottom: 0.9375rem;
}

.pl-4 {
  padding-left: 0.9375rem;
}

.pr-4 {
  padding-right: 0.9375rem;
}

.px-4 {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.py-4 {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.p-4 {
  padding: 0.9375rem;
}

.mt-5 {
  margin-top: 1.125rem;
}

.mb-5 {
  margin-bottom: 1.125rem;
}

.ml-5 {
  margin-left: 1.125rem;
}

.mr-5 {
  margin-right: 1.125rem;
}

.mx-5 {
  margin-left: 1.125rem;
  margin-right: 1.125rem;
}

.my-5 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.m-5 {
  margin: 1.125rem;
}

.pt-5 {
  padding-top: 1.125rem;
}

.pb-5 {
  padding-bottom: 1.125rem;
}

.pl-5 {
  padding-left: 1.125rem;
}

.pr-5 {
  padding-right: 1.125rem;
}

.px-5 {
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.py-5 {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.p-5 {
  padding: 1.125rem;
}

.mt-6 {
  margin-top: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.25rem;
}

.ml-6 {
  margin-left: 1.25rem;
}

.mr-6 {
  margin-right: 1.25rem;
}

.mx-6 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-6 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.m-6 {
  margin: 1.25rem;
}

.pt-6 {
  padding-top: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.25rem;
}

.pl-6 {
  padding-left: 1.25rem;
}

.pr-6 {
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.p-6 {
  padding: 1.25rem;
}

.mt-7 {
  margin-top: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.5rem;
}

.ml-7 {
  margin-left: 1.5rem;
}

.mr-7 {
  margin-right: 1.5rem;
}

.mx-7 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-7 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.m-7 {
  margin: 1.5rem;
}

.pt-7 {
  padding-top: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.5rem;
}

.pl-7 {
  padding-left: 1.5rem;
}

.pr-7 {
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-7 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.p-7 {
  padding: 1.5rem;
}

.mt-8 {
  margin-top: 1.875rem;
}

.mb-8 {
  margin-bottom: 1.875rem;
}

.ml-8 {
  margin-left: 1.875rem;
}

.mr-8 {
  margin-right: 1.875rem;
}

.mx-8 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.my-8 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.m-8 {
  margin: 1.875rem;
}

.pt-8 {
  padding-top: 1.875rem;
}

.pb-8 {
  padding-bottom: 1.875rem;
}

.pl-8 {
  padding-left: 1.875rem;
}

.pr-8 {
  padding-right: 1.875rem;
}

.px-8 {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.py-8 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.p-8 {
  padding: 1.875rem;
}

.mt-9 {
  margin-top: 2rem;
}

.mb-9 {
  margin-bottom: 2rem;
}

.ml-9 {
  margin-left: 2rem;
}

.mr-9 {
  margin-right: 2rem;
}

.mx-9 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-9 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.m-9 {
  margin: 2rem;
}

.pt-9 {
  padding-top: 2rem;
}

.pb-9 {
  padding-bottom: 2rem;
}

.pl-9 {
  padding-left: 2rem;
}

.pr-9 {
  padding-right: 2rem;
}

.px-9 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-9 {
  padding: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.m-10 {
  margin: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-10 {
  padding: 2.5rem;
}

.mt-11 {
  margin-top: 3.125rem;
}

.mb-11 {
  margin-bottom: 3.125rem;
}

.ml-11 {
  margin-left: 3.125rem;
}

.mr-11 {
  margin-right: 3.125rem;
}

.mx-11 {
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.my-11 {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.m-11 {
  margin: 3.125rem;
}

.pt-11 {
  padding-top: 3.125rem;
}

.pb-11 {
  padding-bottom: 3.125rem;
}

.pl-11 {
  padding-left: 3.125rem;
}

.pr-11 {
  padding-right: 3.125rem;
}

.px-11 {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}

.py-11 {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.p-11 {
  padding: 3.125rem;
}

.mt-12 {
  margin-top: 3.75rem;
}

.mb-12 {
  margin-bottom: 3.75rem;
}

.ml-12 {
  margin-left: 3.75rem;
}

.mr-12 {
  margin-right: 3.75rem;
}

.mx-12 {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}

.my-12 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.m-12 {
  margin: 3.75rem;
}

.pt-12 {
  padding-top: 3.75rem;
}

.pb-12 {
  padding-bottom: 3.75rem;
}

.pl-12 {
  padding-left: 3.75rem;
}

.pr-12 {
  padding-right: 3.75rem;
}

.px-12 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.py-12 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.p-12 {
  padding: 3.75rem;
}

.mt-13 {
  margin-top: 5rem;
}

.mb-13 {
  margin-bottom: 5rem;
}

.ml-13 {
  margin-left: 5rem;
}

.mr-13 {
  margin-right: 5rem;
}

.mx-13 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-13 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.m-13 {
  margin: 5rem;
}

.pt-13 {
  padding-top: 5rem;
}

.pb-13 {
  padding-bottom: 5rem;
}

.pl-13 {
  padding-left: 5rem;
}

.pr-13 {
  padding-right: 5rem;
}

.px-13 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-13 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-13 {
  padding: 5rem;
}

.mt-14 {
  margin-top: 6.25rem;
}

.mb-14 {
  margin-bottom: 6.25rem;
}

.ml-14 {
  margin-left: 6.25rem;
}

.mr-14 {
  margin-right: 6.25rem;
}

.mx-14 {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.my-14 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.m-14 {
  margin: 6.25rem;
}

.pt-14 {
  padding-top: 6.25rem;
}

.pb-14 {
  padding-bottom: 6.25rem;
}

.pl-14 {
  padding-left: 6.25rem;
}

.pr-14 {
  padding-right: 6.25rem;
}

.px-14 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.py-14 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.p-14 {
  padding: 6.25rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 1920px) {
  .hide-xxl {
    display: none !important;
  }
  .show-xxl {
    display: block !important;
  }
}
@media (max-width: 1580px) {
  .hide-xl {
    display: none !important;
  }
  .show-xl {
    display: block !important;
  }
}
@media (max-width: 1368px) {
  .hide-lg {
    display: none !important;
  }
  .show-lg {
    display: block !important;
  }
}
@media (max-width: 1280px) {
  .hide-md {
    display: none !important;
  }
  .show-md {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .hide-sm {
    display: none !important;
  }
  .show-sm {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hide-xs {
    display: none !important;
  }
  .show-xs {
    display: block !important;
  }
}
@media (max-width: 550px) {
  .hide-xxs {
    display: none !important;
  }
  .show-xxs {
    display: block !important;
  }
}
@media screen and (max-width: 1580px) {
  .container, .container-fluid {
    width: 100%;
    padding: 0 15px;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(14, 37, 111);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.fixed {
  position: fixed;
}
.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1580px) {
  .header__container {
    padding: 0 15px;
  }
}
@media (max-width: 1368px) {
  .header__container {
    padding: 0 15px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 64px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
@media (max-width: 1580px) {
  .header__nav {
    gap: 20px;
  }
}
@media (max-width: 1368px) {
  .header__nav {
    gap: 15px;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  height: 100%;
}
@media (max-width: 1580px) {
  .header__menu {
    gap: 20px;
  }
}
@media (max-width: 1368px) {
  .header__menu {
    gap: 15px;
  }
}
.header__menu-item {
  position: relative;
  height: 100%;
}
.header__menu-item--has-mega > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.header__menu-item--has-mega:hover > a::after, .header__menu-item--has-mega.active > a::after {
  transform: rotate(180deg);
}
.header__menu-item > a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 30px 0;
  transition: color 0.3s ease;
  position: relative;
}
.header__menu-item > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #00bfa5;
  transition: width 0.3s ease;
}
@media (max-width: 1368px) {
  .header__menu-item > a {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .header__menu-item > a {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .header__menu-item > a {
    font-size: 12px;
  }
}
.header__menu-item:hover > a, .header__menu-item.active > a, .header__menu-item.selected > a {
  color: #00d4aa;
}
.header__menu-item:hover > a::before, .header__menu-item.active > a::before, .header__menu-item.selected > a::before {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__language {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__language button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.header__language button:hover {
  background: rgba(43, 57, 144, 0.1);
}
.header__language button.active {
  background: #2b3990;
  color: #fff;
}
.header__language .lang_btn {
  display: flex;
  flex-direction: row;
  gap: 7px;
  height: 20px;
  align-items: center;
  justify-content: flex-start;
}
.header__language .lang_btn .svg-lang_tr-dims {
  width: 20px;
  height: 21px;
}
.header__language .lang_btn .svg-lang_en-dims {
  width: 20px;
  height: 20px;
}
.header__language .lang_btn span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
}
.header__language .lang_dropdown {
  display: none;
  position: absolute;
  top: 100px;
  width: 120px;
  background-color: rgb(14, 37, 111);
  flex-direction: column;
  padding: 10px 15px;
  margin: 0 0 0 -15px;
  gap: 10px;
}
.header__language .lang_dropdown a {
  display: flex;
  flex-direction: row;
  gap: 7px;
  height: 20px;
  align-items: center;
  justify-content: flex-start;
}
.header__language .lang_dropdown a .svg-lang_tr-dims {
  width: 20px;
  height: 21px;
}
.header__language .lang_dropdown a .svg-lang_en-dims {
  width: 20px;
  height: 20px;
}
.header__language .lang_dropdown a span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
}
.header__language .lang_dropdown.active {
  display: flex;
}
.header__cta {
  background: #00bfa5;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.header__cta:hover {
  background: rgb(0, 140, 120.942408377);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-30%);
  width: -moz-max-content;
  width: max-content;
  max-width: 1170px;
  background: rgb(14, 37, 111);
  padding: 35px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__menu-item:hover .mega-menu, .header__menu-item.active .mega-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu .mega-menu__container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}
.mega-menu .mega-menu__sidebar {
  position: relative;
  overflow: hidden;
}
.mega-menu .mega-menu__title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.mega-menu .mega-menu__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.mega-menu .mega-menu__link {
  width: 50%;
  margin-bottom: 0;
}
.mega-menu .mega-menu__link a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mega-menu .mega-menu__link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #00bfa5;
  transition: height 0.3s ease;
}
.mega-menu .mega-menu__link a:hover {
  color: #fff;
}
.mega-menu .mega-menu__link a:hover::before {
  height: 70%;
}
.mega-menu .mega-menu__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mega-menu .mega-menu__content img {
  border-radius: 8px;
  overflow: hidden;
}
.mega-menu .mega-menu__featured {
  position: relative;
  z-index: 1;
}
.mega-menu .mega-menu__featured-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.mega-menu .mega-menu__featured-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.mega-menu .mega-menu__featured-item img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.mega-menu .mega-menu__featured-content {
  flex: 1;
}
.mega-menu .mega-menu__featured-content h3 {
  color: #1a2b6d;
  font-size: 18px;
  margin-bottom: 8px;
}
.mega-menu .mega-menu__featured-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.mega-menu .mega-menu__featured-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00bfa5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.mega-menu .mega-menu__featured-link:hover {
  gap: 10px;
  color: rgb(0, 140, 120.942408377);
}
.mega-menu .mega-menu__featured-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.mega-menu .mega-menu__featured-link:hover::after {
  transform: translateX(3px);
}
.mega-menu .mega-menu__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.mega-menu .mega-menu__card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.mega-menu .mega-menu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #00bfa5;
}
.mega-menu .mega-menu__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00bfa5, rgb(38, 255, 225.4607329843));
  border-radius: 15px;
  color: #fff;
  font-size: 24px;
}
.mega-menu .mega-menu__card-title {
  color: #1a2b6d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.mega-menu .mega-menu__card-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}
.mega-menu.single .mega-menu__container {
  display: flex;
  grid-template-columns: unset;
  gap: 60px;
}
.mega-menu.single .mega-menu__content {
  display: none;
}
.mega-menu.single .mega-menu__title {
  display: none;
}
.mega-menu.single .mega-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.mega-menu.single .mega-menu__link {
  width: 100%;
}
@media (max-width: 1580px) {
  .mega-menu {
    padding: 25px 30px;
  }
  .mega-menu .mega-menu__link {
    margin-bottom: 0px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0 10px 10px;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}
.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

@media (max-width: 1024px) {
  .header__logo {
    display: flex;
    align-items: center;
  }
  .header__logo svg {
    width: 150px;
    height: auto;
  }
  .header__cta {
    display: none;
  }
  .header .mega-menu {
    left: 0vh;
    max-width: 1024px;
  }
}
@media (max-width: 768px) {
  .header__wrapper {
    height: auto;
    min-height: 58px;
    gap: 15px;
  }
  .header__container {
    padding: 0 15px;
  }
  .header__toggle {
    display: block;
  }
  .header__nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
  }
  .header__nav.active {
    left: 0;
  }
  .header__nav {
    padding: 0 15px;
    top: 91px;
    height: calc(100vh - 250px);
  }
  .header__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__menu-item {
    width: 100%;
  }
  .header__menu-item > a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  }
  .header__menu {
    gap: 15px;
  }
  .header__menu-item {
    height: auto;
    margin-bottom: 0;
  }
  .header__menu-item a {
    height: auto;
    border-bottom: unset;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
  }
  .header__menu-item a::before {
    display: none;
  }
  .header__menu-item a::after {
    position: absolute;
    right: 0;
    border-top-color: #fff;
  }
  .header__menu-item.active a {
    color: #fff;
  }
  .header__menu-item--has-mega .mega-menu {
    display: none;
  }
  .header__menu-item--has-mega.active .mega-menu {
    display: flex;
  }
  .header__menu-item--has-mega.active .mega-menu__sidebar {
    position: relative;
    overflow: visible;
    display: flex;
  }
  .header__menu-item--has-mega.active .mega-menu__content, .header__menu-item--has-mega.active .mega-menu__title {
    display: none;
  }
  .header__menu-item--has-mega.active .mega-menu__container {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .header__menu-item--has-mega.active .mega-menu__links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    gap: 20px;
  }
  .header__menu-item--has-mega.active .mega-menu__link {
    width: 100%;
    margin-bottom: 0;
  }
  .header__menu-item--has-mega.active .mega-menu__link a {
    font-size: 14px;
    padding: 0 20px;
  }
  .header__logo img {
    height: 36px;
  }
  .header__logo .svg-hbvsiznesil-dims {
    width: 131.62px;
    height: 36px;
  }
  .header__language {
    display: none;
  }
  .header .mega-menu {
    padding: 0;
    left: 50%;
    width: 100%;
    margin: 15px 0 0;
  }
  .header__actions {
    gap: 15px;
    justify-self: flex-end;
    flex-direction: row-reverse;
    width: 100%;
  }
  .header__cta {
    display: flex;
    padding: 3px 20px;
    font-size: 12px;
  }
  .header__nav.active {
    background: rgb(14, 37, 111);
    overflow: auto;
  }
  .header.active {
    position: fixed;
    height: 100vh;
  }
  .header.active__actions {
    gap: 15px;
    justify-self: center;
    flex-direction: column-reverse;
    width: calc(100% - 30px);
    position: absolute;
    bottom: 50px;
  }
  .header.active__language {
    display: flex;
  }
  .header.active__language .lang_btn {
    display: none;
  }
  .header.active__language .lang_dropdown {
    display: flex;
    position: relative;
    top: unset;
    width: auto;
    background-color: rgb(14, 37, 111);
    flex-direction: row;
    padding: 10px 15px;
    margin: 0 auto;
    gap: 10px;
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
  }
  .mega-menu__container {
    grid-template-columns: 1fr;
  }
  .mega-menu__sidebar {
    display: none;
  }
  .mega-menu__cards {
    grid-template-columns: 1fr;
  }
  .mega-menu__container {
    display: flex;
    gap: 0;
    flex-direction: column;
    width: 100%;
  }
  .mega-menu__sidebar {
    width: 100%;
    display: none;
  }
  .mega-menu__links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    gap: 20px;
    width: 100%;
  }
  .mega-menu__link {
    width: 100%;
    margin-bottom: 0;
  }
  .mega-menu__link a {
    font-size: 14px;
    padding: 0 25px 0 20px;
  }
}
.header.active .header__actions {
  gap: 15px;
  justify-self: center;
  flex-direction: column-reverse;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 50px;
}
.header.active .header__search {
  display: none;
}
.header.active .header__language {
  display: flex;
}
.header.active .header__language .lang_btn {
  display: none;
}
.header.active .header__language .lang_dropdown {
  display: flex;
  position: relative;
  top: unset;
  width: auto;
  background-color: rgb(14, 37, 111);
  flex-direction: row;
  padding: 10px 15px;
  margin: 0 auto;
  gap: 10px;
}

.footer {
  background-color: rgb(14, 37, 111);
  color: #ffffff;
  padding: 3.75rem 0 3.125rem;
  /*  a {
      color: $bg-white;
      opacity: 0.8;
      transition: $transition-base;

      &:hover,
      &:focus {
          opacity: 1;
          color: $secondary-color;
      }
  }*/
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px repeat(3, auto) 340px;
  grid-template-rows: repeat(3, auto);
  gap: 0px;
}
.footer-grid .grid-top-left {
  grid-row: span 2/span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 11px;
}
.footer-grid .grid-top-left p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.footer-grid .grid-top-left .btn {
  width: 100%;
  margin: 17px auto 19px;
}
.footer-grid .grid-top-left .social-links {
  height: 40px;
  margin: 0 auto;
}
.footer-grid .grid-top-right {
  grid-row: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 1;
  background-color: rgb(17, 56, 166);
  border-radius: 12px;
  padding: 24px;
}
.footer-grid .grid-top-right h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 120%;
}
.footer-grid .grid-top {
  grid-column: span 3/span 3;
  grid-column-start: 2;
  grid-row-start: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 60px 27px 84px;
  padding: 0 0 24px;
  position: relative;
}
.footer-grid .grid-top:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(17, 56, 166);
}
.footer-grid .grid-top h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .footer-grid .grid-top {
    margin: 0 30px 27px 30px;
  }
}
.footer-grid .grid-top-bottom-left {
  grid-column-start: 2;
  grid-row-start: 2;
  margin: 0 0 0 84px;
}
@media (max-width: 1024px) {
  .footer-grid .grid-top-bottom-left {
    margin: 0 0 0 30px;
  }
}
.footer-grid .grid-top-bottom-center {
  grid-column-start: 3;
  grid-row-start: 2;
}
.footer-grid .grid-top-bottom-right {
  grid-column-start: 4;
  grid-row-start: 2;
  margin: 0 60px 0 0;
}
@media (max-width: 1024px) {
  .footer-grid .grid-top-bottom-right {
    margin: 0 30px 0 0;
  }
}
.footer-grid .grid-bottom-left {
  grid-row-start: 3;
  margin: 58px 0 0 0;
  padding: 27px 0 0;
  position: relative;
}
.footer-grid .grid-bottom-left:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(17, 56, 166);
}
.footer-grid .grid-bottom-center {
  grid-column: span 3/span 3;
  grid-row-start: 3;
  margin: 58px 0 0 0;
  padding: 27px 60px 0 84px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.footer-grid .grid-bottom-center:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(17, 56, 166);
}
@media (max-width: 1024px) {
  .footer-grid .grid-bottom-center {
    padding: 27px 30px 0 30px;
  }
}
.footer-grid .grid-bottom-right {
  grid-column-start: 5;
  grid-row-start: 3;
  margin: 58px 0 0 0;
  padding: 27px 0 0;
  position: relative;
}
.footer-grid .grid-bottom-right a {
  color: #00d4aa;
}
.footer-grid .grid-bottom-right a:hover {
  text-decoration: underline;
}
.footer-grid .grid-bottom-right:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(17, 56, 166);
}

.footer-grid-old {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1280px) {
  .footer-grid-old {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}
@media (max-width: 1024px) {
  .footer-grid-old {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
  }
}
@media (max-width: 768px) {
  .footer-grid-old {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.125rem;
    text-align: center;
  }
}

.footer-col h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0;
}
.footer-col img {
  margin-bottom: 0.9375rem;
  max-width: 150px;
}
@media (max-width: 768px) {
  .footer-col img {
    margin: 0 auto 0.9375rem;
  }
}
.footer-col .btn-secondary {
  background-color: #00d4aa;
  color: #ffffff;
}
.footer-col .btn-secondary:hover {
  background-color: rgb(0, 161, 129.1037735849);
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
  flex-wrap: nowrap;
  background-color: transparent;
  overflow: hidden;
  margin: 50px 0 0 0;
  position: relative;
}
.newsletter-form input[type=email], .newsletter-form input[type=text] {
  flex: 1;
  width: 100%;
  padding: 8px 20px 8px 0;
  border-radius: 0px;
  border: none;
  border-bottom: solid 1px #fff;
  background: transparent;
  color: #ffffff;
  font-size: 0.875rem;
}
.newsletter-form input[type=email]::-moz-placeholder, .newsletter-form input[type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type=email]::placeholder, .newsletter-form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type=email]:invalid:not(:-moz-placeholder), .newsletter-form input[type=text]:invalid:not(:-moz-placeholder) {
  border-color: #EC000E;
}
.newsletter-form input[type=email]:invalid:not(:placeholder-shown), .newsletter-form input[type=text]:invalid:not(:placeholder-shown) {
  border-color: #EC000E;
}
.newsletter-form input[type=email]:focus, .newsletter-form input[type=text]:focus {
  color: white;
  outline: none;
  background-color: transparent;
}
.newsletter-form input[type=email]:focus::-moz-placeholder, .newsletter-form input[type=text]:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form input[type=email]:focus::placeholder, .newsletter-form input[type=text]:focus::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form button {
  position: absolute;
  bottom: 8px;
  right: 4px;
  padding: 0;
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  margin-top: 0;
  margin-right: 0;
  transition: all 0.3s ease;
  /*&:focus-visible {
    outline: 2px solid $bg-white;
    outline-offset: -2px;
  }*/
}
.newsletter-form button span {
  color: #00d4aa;
  font-size: 14px;
}
.newsletter-message {
  font-size: 12px;
  line-height: 2.5;
}
.newsletter-message.error {
  color: #EC000E;
}

.footer-bottom {
  padding-top: 1.125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
.footer-links a {
  font-size: 0.75rem;
  position: relative;
}
.footer-links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.46875rem;
  opacity: 0.3;
}

.footer-credits {
  font-size: 0.75rem;
  opacity: 0.8;
}
.footer-credits a {
  font-weight: 600;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
.social-links a {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  /*&:focus-visible {
    outline: 2px solid $secondary-color;
    outline-offset: 2px;
  }*/
}
.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.social-links a:hover {
  background-color: #00d4aa;
  transform: translateY(-3px);
}

@media (max-width: 550px) {
  .footer {
    padding: 30px 0 37px;
  }
  .footer-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-grid .grid-top-left {
    order: 0;
    align-items: center;
    width: 100%;
    margin: 0 0 25px;
  }
  .footer-grid .grid-top {
    display: none;
  }
  .footer-grid .grid-top-bottom-left {
    order: 1;
    width: 50%;
    margin: 0;
    display: flex;
  }
}
@media (max-width: 550px) and (max-width: 768px) {
  .footer-grid .grid-top-bottom-left {
    width: 47%;
    margin: 0 3% 0 0;
    display: flex;
  }
}
@media (max-width: 550px) {
  .footer-grid .grid-top-bottom-center {
    order: 2;
    width: 50%;
    display: flex;
  }
}
@media (max-width: 550px) and (max-width: 768px) {
  .footer-grid .grid-top-bottom-center {
    width: 47%;
    margin: 0 0 0 3%;
    display: flex;
  }
}
@media (max-width: 550px) {
  .footer-grid .grid-top-bottom-right {
    order: 3;
    width: 50%;
    margin: 0;
    display: flex;
  }
}
@media (max-width: 550px) and (max-width: 768px) {
  .footer-grid .grid-top-bottom-right {
    width: 100%;
    margin: 0;
    display: flex;
  }
  .footer-grid .grid-top-bottom-right ul {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .footer-grid .grid-top-bottom-right ul li:nth-child(odd) {
    width: 47%;
    margin: 0 3% 0 0;
    display: flex;
  }
  .footer-grid .grid-top-bottom-right ul li:nth-child(even) {
    width: 47%;
    margin: 0 0 0 3%;
    display: flex;
  }
}
@media (max-width: 550px) {
  .footer-grid .grid-top-right {
    order: 4;
    width: 100%;
    margin: 27px 0 0;
  }
  .footer-grid .grid-bottom-center {
    order: 5;
    width: 100%;
    padding: 0;
    margin: 26px 0 0 0;
    text-align: left;
  }
  .footer-grid .grid-bottom-center:before {
    display: none;
  }
}
@media (max-width: 550px) and (max-width: 768px) {
  .footer-grid .grid-bottom-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .footer-grid .grid-bottom-left {
    order: 6;
    width: 100%;
    margin: 26px 0 0 0;
  }
  .footer-grid .grid-bottom-right {
    order: 7;
    width: 100%;
    margin: 13px 0 0;
    padding: 0;
  }
  .footer-grid .grid-bottom-right:before {
    display: none;
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #1a3d7c;
  color: rgb(14, 37, 111);
  border: none;
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus {
  background-color: rgb(34.84, 81.74, 166.16);
  color: rgb(14, 37, 111);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: rgb(2, 208, 191);
  color: rgb(14, 37, 111);
  border: none;
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: rgb(8.3714285714, 252.6285714286, 232.4714285714);
  color: rgb(14, 37, 111);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: rgb(2, 208, 191);
  color: rgb(14, 37, 111);
  border: none;
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: rgb(8.3714285714, 252.6285714286, 232.4714285714);
  color: rgb(14, 37, 111);
}
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: rgb(14, 37, 111);
  border: none;
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #1a3d7c;
}
.btn-outline:hover, .btn-outline:focus {
  background-color: rgba(25.5, 25.5, 25.5, 0);
  color: rgb(14, 37, 111);
}
.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline:hover, .btn-outline:focus {
  background-color: #1a3d7c;
  color: #ffffff;
}
.btn.icon-only:hover, .btn.icon-only:focus {
  background-color: unset;
  transform: unset;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
}
.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}
.btn-block {
  display: block;
  width: 100%;
}

.card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2.01167rem 1.34111rem;
  transition: all 0.3s ease;
}
.card__header {
  margin-bottom: 0.9375rem;
}
.card__title {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.card__content {
  color: rgb(14, 37, 111);
}
.card__footer {
  margin-top: 0.9375rem;
  padding-top: 0.9375rem;
  border-top: 1px solid #e0e0e0;
}

.service-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2.01167rem 1.34111rem;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.9375rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1a3d7c;
}
.service-card .service-link {
  position: absolute;
  bottom: 0.9375rem;
  right: 0.9375rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f5ff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #1a3d7c;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card .service-link:hover {
  background-color: #00d4aa;
  color: #ffffff;
  transform: scale(1.1);
}

.doctor-card {
  text-align: center;
  overflow: hidden;
}
.doctor-card img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.news-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 0;
  transition: all 0.3s ease;
  /*overflow: hidden;*/
  position: relative;
}
.news-card .news-date {
  position: absolute;
  top: -10px;
  left: 1.25rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 6px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  width: 70px;
}
.news-card .news-date .day {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5px 0 0 0;
  width: 100%;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  background-color: rgb(17, 48, 147);
}
.news-card .news-date .month {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2.5px 0;
  text-align: center;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgb(17, 48, 147);
}
.news-card .news-date .year {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(14, 37, 111);
  width: 100%;
  height: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgb(2, 208, 191);
}
.news-card img {
  width: 100%;
  height: 250px;
  border-radius: 16px 16px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card .news-content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 1.25rem;
  gap: 1.25rem;
  background-color: rgb(17, 48, 147);
  border-radius: 0 0 16px 16px;
}
.news-card .news-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2.01167rem 1.34111rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.hero-card h1, .hero-card h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(14, 37, 111);
  margin: 0 0 0.9375rem;
}
@media (max-width: 1024px) {
  .hero-card h1, .hero-card h2 {
    font-size: 1.25rem;
  }
}
.hero-card p {
  color: rgb(14, 37, 111);
  margin-bottom: 1.125rem;
  line-height: 1.6;
}
.hero-card img {
  width: 100%;
  height: auto;
  margin-top: 1.125rem;
  border-radius: 6px;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  background-color: #1a3d7c;
  border-radius: 50%;
}
.badge--secondary {
  background-color: #00d4aa;
}
.badge--success {
  background-color: #28a745;
}
.badge--error {
  background-color: #dc3545;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.spinner::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 4px;
  border-radius: 50%;
  border: 3px solid #00d4aa;
  border-color: #00d4aa transparent #00d4aa transparent;
  animation: spinner 1.2s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip__content {
  visibility: hidden;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1070;
  opacity: 0;
  transition: all 0.15s ease;
}
.tooltip__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}
.tooltip:hover .tooltip__content {
  visibility: visible;
  opacity: 1;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    margin: 22px 0 15px;
  }
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 0 0 480px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .right-column {
    flex: 0 !important;
  }
}

.sticky-image {
  width: 480px;
  max-width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  z-index: 10;
  transition: top 0.7s ease, bottom 0.7s ease;
}
@media (max-width: 768px) {
  .sticky-image {
    width: 100%;
    max-width: 100%;
    position: relative !important;
    top: unset !important;
    z-index: 10;
    transition: top 0.7s ease, bottom 0.7s ease;
  }
}

.sticky-image img {
  width: 480px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .sticky-image img {
    max-width: 100%;
    left: unset !important;
    bottom: unset !important;
    top: unset !important;
    width: 100% !important;
    height: unset;
    position: relative !important;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  #sticky-placeholder {
    display: none !important;
  }
}

.topknot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0;
  height: 600px;
  gap: 0;
  font-weight: 300;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -0.04em;
  text-align: center;
  color: rgb(255, 255, 255);
}
.topknot.half {
  height: 300px;
}
.topknot .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 50%;
  padding: 0 0 0 200px;
  height: 100%;
  background: url(../images/breadcrumb_bg.webp) center right no-repeat;
  background-size: cover;
  gap: 20px;
  z-index: 2;
  position: relative;
}
.topknot .right {
  display: flex;
  min-width: calc(50% + 100px);
  height: 100%;
  margin: 0 0 0 -100px;
  z-index: 1;
  position: relative;
  background-position: center center;
  background-size: cover;
}
.topknot.double {
  padding: 0 0 30px;
}
.topknot h1, .topknot h2, .topknot h3, .topknot h4, .topknot h5, .topknot h6, .topknot h7, .topknot span, .topknot p {
  width: 400px;
  max-width: 100%;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.05em;
  text-align: left;
  color: rgb(255, 255, 255);
  /*overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;*/
}
.topknot span, .topknot p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgb(103, 224, 190);
}
.topknot .breadcrumb {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 26px;
       column-gap: 26px;
  height: auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.topknot .breadcrumb li {
  font-weight: 300;
  color: rgb(255, 255, 255);
  font-size: 14px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 19px;
  letter-spacing: 0;
  text-align: left;
  position: relative;
  vertical-align: middle;
}
.topknot .breadcrumb li a {
  color: rgb(255, 255, 255);
  font-size: 14px;
}
.topknot .breadcrumb li a:hover {
  text-decoration: underline;
}
.topknot .breadcrumb li::before {
  content: "·";
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 1px;
  left: -14px;
}
.topknot .breadcrumb li:first-child::before {
  display: none;
}
.topknot.calculation {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: unset;
  padding: 0 0 17px;
  border-bottom: solid 1px rgb(223, 229, 248);
  height: 153px;
  gap: 0px;
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.04em;
  text-align: left;
  color: rgb(14, 37, 111);
}
.topknot.calculation h1, .topknot.calculation h2, .topknot.calculation h3, .topknot.calculation h4, .topknot.calculation h5, .topknot.calculation h6, .topknot.calculation h7, .topknot.calculation span, .topknot.calculation p {
  width: auto;
  max-width: 100%;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.05em;
  text-align: left;
  color: rgb(14, 37, 111);
}
.topknot.calculation .breadcrumb {
  margin: 20px 0 0 0;
  align-items: center;
  justify-content: flex-start;
}
.topknot.calculation .breadcrumb li {
  margin: 0;
  color: rgb(14, 37, 111);
}
.topknot.calculation .breadcrumb li a {
  color: rgb(14, 37, 111);
}
.topknot.searchBox {
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 41px 0 50px;
  background-color: rgb(14, 37, 111);
}
.topknot.searchBox .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0;
  width: 100%;
}
.topknot.searchBox h1 {
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.topknot.searchBox .breadcrumb {
  align-items: center;
  margin: 20px 0 47px;
}
.topknot.searchBox .searchInputBox {
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 100%;
  height: 60px;
  border-radius: 60px;
  border: solid 1px rgb(49, 94, 218);
  background-color: rgb(17, 56, 166);
  animation-name: inputFlow;
  animation-duration: 0.5s;
  margin: 0 auto;
}
.topknot.searchBox .searchInputBox .inputSearch {
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0 60px;
  color: #ffffff;
  border: unset;
  border-radius: 60px;
}
.topknot.searchBox .searchInputBox .inputSearch::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.topknot.searchBox .searchInputBox .inputSearch::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.topknot.searchBox .searchInputBox .searchIcon {
  width: 20px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 30px;
}
.topknot.searchBox .searchInputBox .searchIcon svg {
  display: block;
}
.topknot.searchBox .searchInputBox .searchClose {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 20px;
  z-index: 99;
}
.topknot.searchBox .searchInputBox .searchClose svg {
  display: block;
  filter: brightness(0) invert(1);
}
.topknot.searchBox .searchInputBox .searchClose svg svg path {
  fill: rgba(255, 255, 255, 0.5) !important;
}
.topknot.searchBox .tagBox {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 27px 0 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.topknot.searchBox .tagBox h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  padding: 0 0 16px;
  border-bottom: 1px solid rgb(17, 56, 166);
  margin: 0 0 20px;
}
.topknot.searchBox .tagBox ul {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.topknot.searchBox .tagBox ul li {
  display: flex;
  margin-bottom: unset;
}
.topknot.searchBox .tagBox ul li a {
  border: 1px solid rgb(49, 94, 218);
  border-radius: 28px;
  padding: 8px 15px;
  color: rgb(255, 255, 255);
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.topknot.searchBox .tagBox ul li a:hover {
  border-color: rgba(2, 208, 191, 0.7);
  /*background-color: rgba(2, 208, 191, 0.2);*/
}
.topknot.searchBox .tagBox ul li.active a {
  border-color: rgb(2, 208, 191);
  background-color: rgb(2, 208, 191);
  color: rgb(14, 37, 111);
}
.topknot.template {
  width: 250px;
  height: 70px;
  padding: 0 0 20px;
  font-weight: 300;
  color: #000;
  font-size: 7px;
  line-height: 100%;
  letter-spacing: -0.02em;
}
.topknot.template h1, .topknot.template h2, .topknot.template h3, .topknot.template h4, .topknot.template h5, .topknot.template h6, .topknot.template h7, .topknot.template div, .topknot.template span, .topknot.template p {
  display: inline;
  background: #000;
  font-weight: 300;
  color: #000;
  font-size: 7px;
  line-height: 100%;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .topknot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: unset;
    width: 100%;
    padding: 0px;
    height: 100%;
    background: unset;
    background-size: cover;
    background-color: rgb(14, 37, 111);
    gap: 10px;
    z-index: 2;
    position: relative;
  }
  .topknot .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: unset;
    width: 100%;
    padding: 20px;
    height: 100%;
    background: url();
    background-size: cover;
    gap: 10px;
    z-index: 2;
    position: relative;
  }
  .topknot .right {
    min-width: 100%;
    height: 100%;
    margin: 0;
  }
  .topknot h1, .topknot h2, .topknot h3, .topknot h4, .topknot h5, .topknot h6, .topknot h7 {
    font-size: 24px;
    text-align: center;
  }
  .topknot span, .topknot p {
    font-size: 14px;
    text-align: center;
  }
  .topknot .breadcrumb {
    display: none;
  }
  .topknot.half {
    height: auto;
  }
  .topknot.calculation {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
    padding: 20px 15px;
    height: unset;
    width: calc(100% + 30px);
    margin: 0 0 0 -15px;
    gap: 0px;
    font-weight: 300;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: -0.04em;
    text-align: center;
    color: rgb(14, 37, 111);
    background-color: unset;
  }
  .topknot.calculation h1, .topknot.calculation h2, .topknot.calculation h3, .topknot.calculation h4, .topknot.calculation h5, .topknot.calculation h6, .topknot.calculation h7, .topknot.calculation span, .topknot.calculation p {
    width: auto;
    max-width: 100%;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.05em;
    text-align: center;
    color: rgb(14, 37, 111);
  }
  .topknot.calculation.event {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: unset;
    padding: 0;
    height: unset;
    gap: 0px;
    font-weight: 300;
    border-bottom: unset;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: -0.04em;
    text-align: center;
    color: rgb(14, 37, 111);
    background-color: unset;
  }
  .topknot.calculation.event h1, .topknot.calculation.event h2, .topknot.calculation.event h3, .topknot.calculation.event h4, .topknot.calculation.event h5, .topknot.calculation.event h6, .topknot.calculation.event h7, .topknot.calculation.event span, .topknot.calculation.event p {
    width: auto;
    max-width: 100%;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.05em;
    text-align: center;
    color: rgb(14, 37, 111);
  }
  .topknot.searchBox {
    padding: 0px 0 30px;
  }
  .topknot.searchBox .container {
    width: 100%;
    padding: 0 15px;
  }
  .topknot.searchBox h1 {
    width: auto;
    margin: 20px auto;
    text-align: center;
  }
  .topknot.searchBox .tagBox h2 {
    text-align: left;
  }
  .topknot.searchBox .searchInputBox {
    transition: all 0.4s ease-in-out;
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 60px;
    border: solid 1px rgb(49, 94, 218);
    background-color: rgb(17, 56, 166);
    animation-name: inputFlow;
    animation-duration: 0.5s;
    margin: 0 auto;
  }
  .topknot.searchBox .searchInputBox .inputSearch {
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 0 46px;
    color: #ffffff;
    border: unset;
    border-radius: 60px;
  }
  .topknot.searchBox .searchInputBox .searchIcon {
    width: 20px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 17px;
  }
  .topknot.searchBox .searchInputBox .searchClose {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    right: 17px;
    z-index: 99;
  }
}

.cms-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  /*text-align: justify;*/
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  /*line-height: 24px;*/
  color: rgb(0, 0, 0);
  /* a {
      outline: 0px;
      color: rgba(36, 184, 201, 1);
      text-decoration: underline;
      cursor: pointer;
      background-color: transparent;

      &.btn {
          text-decoration: unset;
      }
  }*/
}
@media (max-width: 768px) {
  .cms-content {
    font-size: 14px;
    line-height: 22px;
  }
}
.cms-content .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cms-content .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .cms-content .container-fluid {
    width: 100%;
    padding: 0 15px;
  }
  .cms-content .container-fluid .services-slider {
    padding: 0 0 60px 0;
  }
}
.cms-content .container-fluid .hero-slider {
  padding: 0 0 1.125rem;
}
.cms-content .tableBox {
  display: flex;
  width: 100%;
  overflow-x: scroll;
  margin: 14px 0 20px;
}
.cms-content table {
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 0px;
  border-color: rgb(231, 231, 237);
  border: solid 1px rgb(231, 231, 237);
  max-width: 100%;
  overflow-x: scroll;
  border-radius: 4px;
  margin: 14px 0 20px;
}
.cms-content table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
  border: none;
  /*border: solid 1px rgba(231, 231, 237, 1);*/
}
.cms-content table td {
  display: table-cell;
  vertical-align: inherit;
  border: none;
  /*border: solid 1px rgba(231, 231, 237, 1);*/
}
.cms-content table td p {
  margin: 0;
}
.cms-content table thead tr {
  background: rgb(255, 255, 255);
  /*box-shadow: 0px -1px 0px 0px rgba(231, 231, 237, 1) inset;*/
}
.cms-content table thead tr td {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: rgb(0, 0, 0);
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid rgb(231, 231, 237);
  /*border-left: 1px solid rgba(231, 231, 237, 1);
  border-bottom: 1px solid rgba(231, 231, 237, 1);*/
  vertical-align: middle;
}
.cms-content table thead tr td p {
  margin: 0;
}
.cms-content table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
  border: none;
  /*border: solid 1px rgba(231, 231, 237, 1);*/
}
.cms-content table tbody tr td {
  padding: 21.5px 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: rgb(0, 0, 0);
  border: none;
  /*border-left: 1px solid rgba(231, 231, 237, 1);
  border-bottom: 1px solid rgba(231, 231, 237, 1);*/
  vertical-align: middle;
}
.cms-content table tbody tr td p {
  margin: 0;
}
.cms-content table tbody tr td:first-child {
  border-left: 0;
}
.cms-content .tableBox table {
  margin: 0;
}
.cms-content p {
  /*  display: block;
  text-align: justify;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 1);*/
  margin: 0 0 20px 0;
}
.cms-content p.subtitle {
  width: 800px;
  max-width: 100%;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  margin: 0 auto 44px;
  text-align: center;
}
.cms-content p.subtitle strong {
  font-weight: 700;
}
.cms-content p.subtitle.center {
  text-align: center;
  margin: 0 auto 44px;
}
@media (max-width: 768px) {
  .cms-content p.subtitle {
    font-size: 20px;
    line-height: 26px;
    margin: 0px auto 14px;
  }
  .cms-content p.subtitle.center {
    text-align: center;
    margin: 0px auto 14px;
  }
}
.cms-content p.center {
  text-align: center;
  margin: 0 auto;
}
.cms-content p.left {
  text-align: left;
  margin: 0 0 44px;
  width: 100%;
}
.cms-content ol.list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 30px 0;
}
.cms-content ol.list li {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 0 34px;
  position: relative;
  /* line-height: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;*/
  letter-spacing: 0;
  margin: 0 0 20px;
}
.cms-content ol.list li p {
  margin: 0;
}
.cms-content ol.list li:last-child {
  margin: 0;
}
.cms-content ol.list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
}
.cms-content ol.list li ul, .cms-content ol.list li ol {
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  margin: 10px 0 5px 20px;
}
.cms-content ol.list li ul li, .cms-content ol.list li ol li {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 0 34px;
  position: relative;
  /* line-height: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;*/
  letter-spacing: 0;
  margin: 0 0 20px;
}
.cms-content ol.list li ul li p, .cms-content ol.list li ol li p {
  margin: 0;
}
.cms-content ol.list li ul li::before, .cms-content ol.list li ol li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
}
.cms-content ol.list li ul li:last-child, .cms-content ol.list li ol li:last-child {
  margin: 0;
}
.cms-content ul.list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 20px 0;
}
.cms-content ul.list li {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 0 0 0 30px;
  position: relative;
  /* line-height: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;*/
  letter-spacing: 0;
}
.cms-content ul.list li p {
  margin: 0;
}
.cms-content ul.list li:last-child {
  margin: 0;
}
.cms-content ul.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 12px;
}
.cms-content ul.list li ul {
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  margin: 10px 0 5px 20px;
}
.cms-content ul.list li ul li {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 0 0 0 30px;
  position: relative;
  /* line-height: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;*/
  letter-spacing: 0;
}
.cms-content ul.list li ul li p {
  margin: 0;
}
.cms-content ul.list li ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 12px;
}
.cms-content h1 {
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
}
.cms-content h2 {
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
}
.cms-content h3 {
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 22px;
  line-height: 150%;
}
.cms-content h4, .cms-content h5, .cms-content h6 {
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 768px) {
  .cms-content p {
    margin: 0 0 10px 0;
  }
  .cms-content h1 {
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
  }
  .cms-content h2 {
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
  }
  .cms-content h3 {
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 22px;
    line-height: 150%;
  }
  .cms-content h4, .cms-content h5, .cms-content h6 {
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
  }
}

.notification {
  width: 580px;
  padding: 30px;
  display: none;
  z-index: 9999;
  position: fixed;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  min-height: 120px;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
}
.notification.show {
  display: block;
}
.notification .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(14, 37, 111);
  margin: 0 0 10px;
}
.notification p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(14, 37, 111);
  margin-bottom: 0;
}
.notification .closer {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.notification .closer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  background-color: rgb(14, 37, 111);
  border-radius: 100%;
}
.notification .closer svg {
  display: block;
  filter: brightness(0) invert(1);
}

.searchLoading {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(12, 25, 39, 0.5);
  z-index: 9;
}
.searchLoading.active {
  display: flex;
}
.searchLoading svg {
  width: 70px;
}

.noResult {
  width: 100%;
  padding: 0px 0 50px 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.noResult.active {
  display: flex;
}
.noResult .text {
  width: 100%;
  text-align: center;
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:active::before {
  width: 400px;
  height: 400px;
}
.btn svg {
  vertical-align: middle;
  margin-right: 0.5rem;
  /*width: 20px;
  height: 20px;*/
}
.btn.icon-right {
  padding-right: 49px;
}
.btn.icon-right svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  transform: translate(0, -50%);
  margin-right: 0;
  margin-left: unset;
  z-index: 1;
}
.btn.icon-right::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 4px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgb(14, 37, 111);
  transform: translate(0, -50%);
  transition: all 0.3s ease;
  margin-left: unset;
}
.btn.icon-right:hover::after {
  background-color: rgb(17, 56, 166);
}
.btn.icon-only {
  width: 35px;
  height: 35px;
  padding: 0px;
  background-color: transparent;
}
.btn.icon-only svg {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 9px;
  height: 9px;
  transform: translate(50%, -50%);
  margin-right: unset;
  margin-left: unset;
  z-index: 1;
  fill: rgb(14, 37, 111);
}
.btn.icon-only svg path {
  stroke: rgb(14, 37, 111);
}
.btn.icon-only::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  border: solid 1px rgb(14, 37, 111);
  border-radius: 50%;
  background-color: transparent;
  transform: unset;
  transition: all 0.3s ease;
  margin-left: unset;
}

.btn-ghost {
  background-color: transparent;
  color: #1a3d7c;
  border: none;
}
.btn-ghost:hover, .btn-ghost:focus {
  background-color: rgba(26, 61, 124, 0.1);
  color: #1a3d7c;
}

.btn-link {
  background-color: transparent;
  color: #1a3d7c;
  border: none;
  padding: 0;
  text-decoration: underline;
  border-radius: 0;
}
.btn-link:hover, .btn-link:focus {
  background-color: transparent;
  color: #00d4aa;
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 16px 0 0 16px;
}
.btn-group .btn:last-child {
  border-radius: 0 16px 16px 0;
}
.btn-group .btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-loading {
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-right-color: transparent;
  animation: spinner 0.75s linear infinite;
}

.fab {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #00d4aa;
  color: rgb(14, 37, 111);
  border: none;
  border-radius: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 1.125rem;
  right: 1.125rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 1030;
}
.fab:hover, .fab:focus {
  background-color: rgb(8, 255, 206.0660377358);
  color: rgb(14, 37, 111);
}
.fab:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fab {
    bottom: 0.9375rem;
    right: 0.9375rem;
  }
}
.fab svg {
  width: 24px;
  height: 24px;
  margin: 0;
}
.fab:hover {
  transform: scale(1.1);
}
.fab.mini {
  width: 40px;
  height: 40px;
}
.fab.mini svg {
  width: 20px;
  height: 20px;
}

.btn-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.5rem;
}
.btn-social.btn-facebook {
  background-color: #1877f2;
  color: #ffffff;
}
.btn-social.btn-facebook:hover {
  background-color: rgb(11.4549180328, 95.1639344262, 203.5450819672);
}
.btn-social.btn-twitter {
  background-color: #1da1f2;
  color: #ffffff;
}
.btn-social.btn-twitter:hover {
  background-color: rgb(11.9665271967, 133.4728033473, 208.0334728033);
}
.btn-social.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.btn-social.btn-instagram:hover {
  opacity: 0.9;
}
.btn-social.btn-youtube {
  background-color: #ff0000;
  color: #ffffff;
}
.btn-social.btn-youtube:hover {
  background-color: #cc0000;
}
.btn-social.btn-linkedin {
  background-color: #0077b5;
  color: #ffffff;
}
.btn-social.btn-linkedin:hover {
  background-color: hsl(200.5524861878, 100%, -64.5098039216%);
}

.btn-toggle {
  background-color: transparent;
  color: #333333;
  border: 2px solid #e0e0e0;
}
.btn-toggle.active {
  background-color: #1a3d7c;
  color: #ffffff;
  border-color: #1a3d7c;
}
.btn-toggle:hover:not(.active) {
  border-color: #1a3d7c;
  color: #1a3d7c;
}

.btn-close {
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.btn-close::before, .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: currentColor;
}
.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-close:hover {
  opacity: 1;
}
.btn-close:focus-visible {
  outline: unset;
  outline-offset: 0;
}

.form-group {
  margin-bottom: 1.125rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
}
label span[aria-label=zorunlu] {
  color: #dc3545;
  margin-left: 2px;
}

.form-control,
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
input[type=url],
input[type=date],
input[type=time],
input[type=datetime-local],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.form-control::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(102, 102, 102, 0.6);
  opacity: 1;
}
.form-control::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=url]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=datetime-local]::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(102, 102, 102, 0.6);
  opacity: 1;
}
.form-control:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime-local]:focus,
select:focus,
textarea:focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #00d4aa;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}
.form-control:disabled, .form-control[readonly],
input[type=text]:disabled,
input[type=text][readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=tel]:disabled,
input[type=tel][readonly],
input[type=password]:disabled,
input[type=password][readonly],
input[type=search]:disabled,
input[type=search][readonly],
input[type=url]:disabled,
input[type=url][readonly],
input[type=date]:disabled,
input[type=date][readonly],
input[type=time]:disabled,
input[type=time][readonly],
input[type=datetime-local]:disabled,
input[type=datetime-local][readonly],
select:disabled,
select[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}
.form-control:valid:not(:-moz-placeholder), input[type=text]:valid:not(:-moz-placeholder), input[type=email]:valid:not(:-moz-placeholder), input[type=tel]:valid:not(:-moz-placeholder), input[type=password]:valid:not(:-moz-placeholder), input[type=search]:valid:not(:-moz-placeholder), input[type=url]:valid:not(:-moz-placeholder), input[type=date]:valid:not(:-moz-placeholder), input[type=time]:valid:not(:-moz-placeholder), input[type=datetime-local]:valid:not(:-moz-placeholder), select:valid:not(:-moz-placeholder), textarea:valid:not(:-moz-placeholder) {
  /*    border-color: $success-color;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
}
.form-control.valid, .form-control:valid:not(:placeholder-shown),
input[type=text].valid,
input[type=text]:valid:not(:placeholder-shown),
input[type=email].valid,
input[type=email]:valid:not(:placeholder-shown),
input[type=tel].valid,
input[type=tel]:valid:not(:placeholder-shown),
input[type=password].valid,
input[type=password]:valid:not(:placeholder-shown),
input[type=search].valid,
input[type=search]:valid:not(:placeholder-shown),
input[type=url].valid,
input[type=url]:valid:not(:placeholder-shown),
input[type=date].valid,
input[type=date]:valid:not(:placeholder-shown),
input[type=time].valid,
input[type=time]:valid:not(:placeholder-shown),
input[type=datetime-local].valid,
input[type=datetime-local]:valid:not(:placeholder-shown),
select.valid,
select:valid:not(:placeholder-shown),
textarea.valid,
textarea:valid:not(:placeholder-shown) {
  /*    border-color: $success-color;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
}
.form-control:invalid:not(:-moz-placeholder), input[type=text]:invalid:not(:-moz-placeholder), input[type=email]:invalid:not(:-moz-placeholder), input[type=tel]:invalid:not(:-moz-placeholder), input[type=password]:invalid:not(:-moz-placeholder), input[type=search]:invalid:not(:-moz-placeholder), input[type=url]:invalid:not(:-moz-placeholder), input[type=date]:invalid:not(:-moz-placeholder), input[type=time]:invalid:not(:-moz-placeholder), input[type=datetime-local]:invalid:not(:-moz-placeholder), select:invalid:not(:-moz-placeholder), textarea:invalid:not(:-moz-placeholder) {
  /*    border-color: $error-color;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
}
.form-control.error, .form-control:invalid:not(:placeholder-shown),
input[type=text].error,
input[type=text]:invalid:not(:placeholder-shown),
input[type=email].error,
input[type=email]:invalid:not(:placeholder-shown),
input[type=tel].error,
input[type=tel]:invalid:not(:placeholder-shown),
input[type=password].error,
input[type=password]:invalid:not(:placeholder-shown),
input[type=search].error,
input[type=search]:invalid:not(:placeholder-shown),
input[type=url].error,
input[type=url]:invalid:not(:placeholder-shown),
input[type=date].error,
input[type=date]:invalid:not(:placeholder-shown),
input[type=time].error,
input[type=time]:invalid:not(:placeholder-shown),
input[type=datetime-local].error,
input[type=datetime-local]:invalid:not(:placeholder-shown),
select.error,
select:invalid:not(:placeholder-shown),
textarea.error,
textarea:invalid:not(:placeholder-shown) {
  /*    border-color: $error-color;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
}
.form-control:valid:focus:not(:-moz-placeholder), input[type=text]:valid:focus:not(:-moz-placeholder), input[type=email]:valid:focus:not(:-moz-placeholder), input[type=tel]:valid:focus:not(:-moz-placeholder), input[type=password]:valid:focus:not(:-moz-placeholder), input[type=search]:valid:focus:not(:-moz-placeholder), input[type=url]:valid:focus:not(:-moz-placeholder), input[type=date]:valid:focus:not(:-moz-placeholder), input[type=time]:valid:focus:not(:-moz-placeholder), input[type=datetime-local]:valid:focus:not(:-moz-placeholder), select:valid:focus:not(:-moz-placeholder), textarea:valid:focus:not(:-moz-placeholder) {
  /*    border-color: $success-color;
  box-shadow: 0 0 0 3px rgba($success-color, 0.1);*/
}
.form-control.valid:focus, .form-control:valid:focus:not(:placeholder-shown),
input[type=text].valid:focus,
input[type=text]:valid:focus:not(:placeholder-shown),
input[type=email].valid:focus,
input[type=email]:valid:focus:not(:placeholder-shown),
input[type=tel].valid:focus,
input[type=tel]:valid:focus:not(:placeholder-shown),
input[type=password].valid:focus,
input[type=password]:valid:focus:not(:placeholder-shown),
input[type=search].valid:focus,
input[type=search]:valid:focus:not(:placeholder-shown),
input[type=url].valid:focus,
input[type=url]:valid:focus:not(:placeholder-shown),
input[type=date].valid:focus,
input[type=date]:valid:focus:not(:placeholder-shown),
input[type=time].valid:focus,
input[type=time]:valid:focus:not(:placeholder-shown),
input[type=datetime-local].valid:focus,
input[type=datetime-local]:valid:focus:not(:placeholder-shown),
select.valid:focus,
select:valid:focus:not(:placeholder-shown),
textarea.valid:focus,
textarea:valid:focus:not(:placeholder-shown) {
  /*    border-color: $success-color;
  box-shadow: 0 0 0 3px rgba($success-color, 0.1);*/
}
.form-control:invalid:focus:not(:-moz-placeholder), input[type=text]:invalid:focus:not(:-moz-placeholder), input[type=email]:invalid:focus:not(:-moz-placeholder), input[type=tel]:invalid:focus:not(:-moz-placeholder), input[type=password]:invalid:focus:not(:-moz-placeholder), input[type=search]:invalid:focus:not(:-moz-placeholder), input[type=url]:invalid:focus:not(:-moz-placeholder), input[type=date]:invalid:focus:not(:-moz-placeholder), input[type=time]:invalid:focus:not(:-moz-placeholder), input[type=datetime-local]:invalid:focus:not(:-moz-placeholder), select:invalid:focus:not(:-moz-placeholder), textarea:invalid:focus:not(:-moz-placeholder) {
  /*    border-color: $error-color;
  box-shadow: 0 0 0 3px rgba($error-color, 0.1);*/
}
.form-control.error:focus, .form-control:invalid:focus:not(:placeholder-shown),
input[type=text].error:focus,
input[type=text]:invalid:focus:not(:placeholder-shown),
input[type=email].error:focus,
input[type=email]:invalid:focus:not(:placeholder-shown),
input[type=tel].error:focus,
input[type=tel]:invalid:focus:not(:placeholder-shown),
input[type=password].error:focus,
input[type=password]:invalid:focus:not(:placeholder-shown),
input[type=search].error:focus,
input[type=search]:invalid:focus:not(:placeholder-shown),
input[type=url].error:focus,
input[type=url]:invalid:focus:not(:placeholder-shown),
input[type=date].error:focus,
input[type=date]:invalid:focus:not(:placeholder-shown),
input[type=time].error:focus,
input[type=time]:invalid:focus:not(:placeholder-shown),
input[type=datetime-local].error:focus,
input[type=datetime-local]:invalid:focus:not(:placeholder-shown),
select.error:focus,
select:invalid:focus:not(:placeholder-shown),
textarea.error:focus,
textarea:invalid:focus:not(:placeholder-shown) {
  /*    border-color: $error-color;
  box-shadow: 0 0 0 3px rgba($error-color, 0.1);*/
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300d4aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

input[type=file] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
input[type=file]::-webkit-file-upload-button {
  padding: 0.5rem 0.75rem;
  margin-right: 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input[type=file]::file-selector-button {
  padding: 0.5rem 0.75rem;
  margin-right: 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=file]::-webkit-file-upload-button:hover {
  background-color: #e9ecef;
}
input[type=file]::file-selector-button:hover {
  background-color: #e9ecef;
}

.form-check {
  display: block;
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.75rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.form-check input[type=checkbox]:checked,
.form-check input[type=radio]:checked {
  background-color: #00d4aa;
  border-color: #00d4aa;
}
.form-check input[type=checkbox]:focus,
.form-check input[type=radio]:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}
.form-check label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.form-switch {
  padding-left: 2.5rem;
}
.form-switch input[type=checkbox] {
  width: 2rem;
  margin-left: -2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2rem;
  transition: background-position 0.15s ease-in-out;
}
.form-switch input[type=checkbox]:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

input[type=range] {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=range]::-webkit-slider-track {
  width: 100%;
  height: 0.5rem;
  background: #dee2e6;
  border-radius: 1rem;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 1rem;
  height: 1rem;
  background: #00d4aa;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.25rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
  background-color: rgb(0, 161, 129.1037735849);
  transform: scale(1.2);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  background: #dee2e6;
  border-radius: 1rem;
}
input[type=range]::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #00d4aa;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input[type=range]::-moz-range-thumb:hover {
  background-color: rgb(0, 161, 129.1037735849);
  transform: scale(1.2);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group-prepend, .input-group-append {
  display: flex;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #e0e0e0;
}
.input-group-prepend .input-group-text {
  border-right: 0;
  border-radius: 6px 0 0 6px;
}
.input-group-append .input-group-text {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}
.input-group-prepend + .form-control {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}
.input-group .form-control:not(:last-child) {
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.error-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #dc3545;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.error-message:not(:empty) {
  opacity: 1;
}

.form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}

.form-floating {
  position: relative;
}
.form-floating .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}
.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-floating .form-control:not(:-moz-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  background-color: #ffffff;
  padding: 0 0.25rem;
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  background-color: #ffffff;
  padding: 0 0.25rem;
}

.formarea {
  display: flex;
  flex-direction: column;
  margin: 36px auto;
  gap: 22px;
}
@media (max-width: 768px) {
  .formarea {
    margin: 30px auto;
    gap: 0px;
  }
}

.formtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  text-align: center;
  color: rgb(14, 37, 111);
}
@media (max-width: 768px) {
  .formtitle {
    font-size: 14px;
  }
}

.hbsag .formtitle {
  width: 465px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hbsag .formtitle {
    width: 100%;
  }
}

.formtitle.hide {
  display: none;
}

.formcolumns {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .formcolumns {
    flex-direction: column;
    margin: 20px 0 0 0;
  }
}

.formcolumns.hide {
  display: none;
}

.formcolumns .column {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  gap: 9px;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .formcolumns .column {
    width: 100%;
  }
}

.formcolumns .column label {
  font-weight: 600;
  font-size: 16px;
  line-height: 13.57px;
  letter-spacing: 0.17px;
  vertical-align: middle;
  margin-bottom: 0;
  color: rgb(14, 37, 111);
}
.formcolumns .column input[type=number] {
  width: 100%;
  border-color: rgb(223, 229, 248);
  padding-right: calc(1.5em + 0.75rem);
  background-image: unset;
  background-repeat: unset;
  background-position: unset;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  line-height: 16px;
  padding: 15px 19px 16px 14px;
  width: 100%;
  margin-top: 0px;
  color: rgb(14, 37, 111);
  background-color: #fff;
  border: 1px solid rgb(223, 229, 248);
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
}

.formcolumns .column .btn {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formcolumns .column input::-moz-placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.formcolumns .column input::placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.formcolumns .column input::-webkit-input-placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.formcolumns .column input::-moz-placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.formcolumns .column input:-ms-input-placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.formcolumns .column input::-ms-input-placeholder {
  color: rgb(14, 37, 111);
  font-weight: 400;
  opacity: 0.5;
}

.step {
  display: none;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
@media (max-width: 768px) {
  .step {
    width: 100%;
  }
}

.step.active {
  display: flex;
}

.question {
  display: flex;
  width: 100%;
  gap: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .question {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}

.hbsag .question {
  flex-direction: column;
  gap: 24px;
}

.steptitle {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgb(14, 37, 111);
  /*margin: 0 0 10px;*/
  margin: 20px 0 0 0;
}
@media (max-width: 768px) {
  .steptitle {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgb(14, 37, 111);
    margin: 20px 0 0 0;
  }
}

.hbsag .question .steptitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (max-width: 768px) {
  .hbsag .question .steptitle {
    font-size: 20px;
  }
}

.steptitle strong {
  font-weight: 400;
}

.score-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.score-options label {
  margin-bottom: 5px;
}

button {
  /*padding: 10px 20px;
  margin-top: 20px;
  margin-right: 10px;*/
}

.progress {
  display: flex;
  width: 100%;
  padding: 18px 20px 19px 20px;
  border: 1px solid rgb(223, 229, 248);
  border-radius: 6px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .progress {
    display: flex;
    width: 100%;
    padding: 18px 11px 21px 11px;
    border: 1px solid rgb(223, 229, 248);
    border-radius: 6px;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
}

.hbsag .progress {
  margin: 120px auto 0;
}
@media (max-width: 768px) {
  .hbsag .progress {
    margin: 10px auto 0;
  }
}

.progress .goback {
  display: flex;
}
@media (max-width: 768px) {
  .progress .goback {
    order: 2;
  }
}

.progress .next {
  display: flex;
}
@media (max-width: 768px) {
  .progress .next {
    order: 3;
  }
}

.progress .next .hide, .progress .goback .hide, .progress.hide {
  display: none;
}

.progresstep {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .progresstep {
    order: 1;
    width: 100%;
  }
}

.progresstitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgb(14, 37, 111);
}

#error-area {
  display: none;
  flex-direction: column;
  gap: 17px;
  margin: 20px auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: rgb(255, 0, 0);
}

#error-area.active {
  display: flex;
}

#result {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  justify-content: center;
}

#result.active {
  display: flex;
}

.scores {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: rgb(14, 37, 111);
}

.scores span {
  color: rgb(2, 208, 191);
}

#stepInfo {
  margin: 0 0 5px 0;
  position: relative;
  letter-spacing: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgb(223, 229, 248);
  padding: 37px 40px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  #stepInfo {
    margin: 20px 0 0px 0;
    padding: 26px 20px 20px;
  }
}

#stepInfo.active {
  display: flex;
}

#scoreInfo {
  width: auto;
  margin: 0 0 5px 0;
  padding: 0 0 0 26px;
  position: relative;
  letter-spacing: 0;
}

#scoreInfo.wide {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgb(223, 229, 248);
  padding: 37px 40px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  #scoreInfo.wide {
    margin: 20px 0 0px 0;
    padding: 26px 20px 20px;
  }
}

#scoreInfo::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0px;
}

#scoreInfo.green::before {
  background-color: rgb(2, 208, 191);
}

#scoreInfo.yellow::before {
  background-color: rgb(255, 221, 0);
}

#scoreInfo.orange::before {
  background-color: rgb(255, 165, 0);
}

#scoreInfo.red::before {
  background-color: rgb(255, 0, 0);
}

#scoreInfo.risk::before {
  content: "!";
  width: 20px;
  height: 20px;
  display: block;
  background-color: rgb(255, 0, 0);
  border-radius: 100%;
  text-align: center;
  position: absolute;
  vertical-align: middle;
  line-height: 20px;
  color: #fff;
  top: 4px;
  left: 0px;
}

#scoreInfo h3, #stepInfo h3 {
  font-size: 20px;
  line-height: 24px;
  color: rgb(14, 37, 111);
}

#scoreInfo ul, #stepInfo ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}

#scoreInfo ul li, #stepInfo ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 0 30px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgb(14, 37, 111);
}
@media (max-width: 768px) {
  #scoreInfo ul li, #stepInfo ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

#scoreInfo ul li svg, #stepInfo ul li svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}

.radiolist {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  max-width: 653px;
  gap: 40px;
  list-style: none;
  height: 100%;
}
@media (max-width: 768px) {
  .radiolist {
    width: 100%;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hbsag .radiolist {
    justify-content: center;
    gap: 20px;
  }
}

.radiolist li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  min-height: 100%;
  justify-content: space-around;
  align-items: flex-start;
}

.radiolist li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgb(14, 37, 111);
  height: 14px;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  border: 1px solid rgb(2, 208, 191);
  border-radius: 28px;
  background: rgb(222, 255, 246);
  padding: 10px 20px 10px 40px;
  color: rgb(14, 37, 111);
  cursor: pointer;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(14, 37, 111);
  margin: 0;
  height: 100%;
}
@media (max-width: 768px) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label {
    white-space: normal;
  }
}

.error [type=radio]:not(:checked) + label {
  border: 1px solid rgb(255, 0, 0);
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% - 9px);
  width: 18px;
  height: 18px;
  border: 1px solid rgb(2, 208, 191);
  border-radius: 100%;
  background: rgb(222, 255, 246);
  box-sizing: content-box;
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(2, 208, 191);
  position: absolute;
  top: calc(50% - 3px);
  left: 16px;
  border-radius: 100%;
  transition: all 0.2s ease;
  box-sizing: content-box;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

progress {
  margin: 0 auto;
  width: 400px;
  max-width: 100%;
  height: 8px;
  background-color: rgb(13, 59, 192);
  border-radius: 8px;
  overflow: hidden;
}
progress::-webkit-progress-bar {
  background-color: rgb(13, 59, 192);
}
progress::-webkit-progress-value {
  background: rgb(2, 208, 191);
}
progress::-moz-progress-bar {
  background: rgb(2, 208, 191);
}

.contactUs .formBox {
  position: relative;
  width: 800px;
  max-width: 100%;
  background-color: rgb(246, 252, 255);
  border-radius: 40px;
  margin: 70px auto;
  padding: 55px 0 60px;
}
.contactUs .formBox .contactForm {
  width: 490px;
  max-width: 100%;
  margin: 0 auto;
}
.contactUs .formBox .successMask {
  width: 800px;
  max-width: 100%;
  background-color: rgb(246, 252, 255);
  border-radius: 40px;
}
.contactUs .formBox .formTitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: rgb(14, 37, 111);
  margin: 0 0 15px;
}
.contactUs .formBox .formUl {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.contactUs .formBox .formUl .formLi {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0;
  width: calc(50% - 5px);
  position: relative;
}
.contactUs .formBox .formUl .formLi.full {
  width: 100%;
  margin: 0 0 0 0;
}
.contactUs .formBox .formUl .formLi.formLi50 {
  margin: 0 10px 0 0;
  width: calc(50% - 5px);
}
.contactUs .formBox .formUl .formLi.formLiTwo {
  width: calc(50% - 5px);
}
.contactUs .formBox .formUl .formLi.formLiCheck .inputBox .radioColon label:after {
  border: unset;
}
.contactUs .formBox .formUl .formLi.formLiCheck.error .inputBox .radioColon label:after {
  border: 1px solid red;
}
.contactUs .formBox .formUl .formLi.formLiCheck .formLiHidden {
  margin: 12px 0 0;
}
.contactUs .formBox .formUl .formLi.formLiPhone {
  /*margin: -87px 0 0 0;*/
}
.contactUs .formBox .formUl .formLi:last-child {
  margin: 0;
}
.contactUs .formBox .formUl .formLi.error .inputBox .inputText {
  border: 1px solid #EC000E;
}
.contactUs .formBox .formUl .formLi.error .inputBox textarea {
  border: 1px solid #EC000E;
}
.contactUs .formBox .formUl .formLi.error .inputBox .checkColon label:after {
  border: 2px solid #EC000E;
}
.contactUs .formBox .formUl .formLi.error .inputBox .radioColon label:after {
  /*border: 1px solid #EC000E;*/
  /*background: transparent;*/
  border: unset;
}
.contactUs .formBox .formUl .formLi.error .inputBox .radioColon .inputRadioBox:checked + label:after {
  /*background: transparent;*/
  border: unset;
  /*border: 1px solid #EC000E;*/
}
.contactUs .formBox .formUl .formLi.error .select2-container .select2-selection {
  border: 1px solid #EC000E !important;
}
.contactUs .formBox .formUl .formLi.error .formLiHidden .inputBox .inputText {
  border: 1px solid #EC000E;
}
.contactUs .formBox .formUl .formLi.g-recaptcha.error iframe {
  border: solid 1px red;
}
.contactUs .formBox .formUl .formLi .inputTitle {
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.17px;
  color: #B7B7B7;
  margin: 0 0 8px 0;
  justify-content: space-between;
  display: none !important;
}
.contactUs .formBox .formUl .formLi .inputTitle .error {
  text-align: right;
  color: #EC000E;
  opacity: 0;
}
.contactUs .formBox .formUl .formLi .inputBox {
  width: 100%;
  display: flex;
  position: relative;
}
.contactUs .formBox .formUl .formLi .inputBox .inputText {
  width: 100%;
  padding: 9px 13px;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.17px;
  border: 1px solid rgb(208, 213, 221);
  background: #FFFFFF;
  border-radius: 8px;
}
.contactUs .formBox .formUl .formLi .inputBox .inputText.datepicker {
  background-image: url(../img/calendar.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.contactUs .formBox .formUl .formLi .inputBox textarea {
  width: 100%;
  height: 140px;
  padding: 15px 15px;
  /*font-family: "Inter";*/
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.17px;
  border: 1px solid #D6E4EC;
  background: #FFFFFF;
  border-radius: 8px;
  resize: none;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon {
  position: relative;
  width: 100%;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon .inputCheckBox {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0px;
  border: 1px solid rgb(208, 213, 221);
  background: rgb(249, 245, 255);
  opacity: 0;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon label {
  width: 100%;
  display: block;
  padding: 0 0 0 24px;
  font-size: 12px;
  line-height: 20px;
  color: rgb(14, 37, 111);
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contactUs .formBox .formUl .formLi .inputBox .checkColon label {
    margin-bottom: 0;
  }
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon label:after {
  content: "";
  width: 16px;
  height: 16px;
  background: rgb(249, 245, 255);
  border: 1px solid #AABBC6;
  box-sizing: border-box;
  border-radius: 3px;
  position: absolute;
  top: 2px;
  left: 0px;
  z-index: 1;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon label:before {
  content: "";
  background-image: url(../images/check.png);
  width: 16px;
  height: 16px;
  border: 1px solid rgb(39, 100, 93);
  border-radius: 4px;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center center;
  top: 2px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon label a {
  color: rgb(2, 208, 191);
  /*text-decoration: underline;*/
  /*margin: 0 5px 0 0;*/
  letter-spacing: 0.25px;
}
.contactUs .formBox .formUl .formLi .inputBox .checkColon .inputCheckBox:checked + label:before {
  opacity: 1;
  visibility: visible;
}
.contactUs .formBox .formUl .formLi .linkBox-alternate {
  height: 48px;
}
.contactUs .formBox .formUl .formLi .linkBox-alternate a span {
  height: 44px;
  padding-right: 40px;
  padding-left: 40px;
}
.contactUs .formBox .formUl .formLi .linkBox-white {
  height: 48px;
}
.contactUs .formBox .formUl .formLi .linkBox-white a span {
  height: 44px;
  padding-right: 40px;
  padding-left: 40px;
}
.contactUs .formBox .formUl .formLi .linkBox {
  /*margin: 20px 0 0 0;*/
  width: 100%;
  justify-content: space-between;
}
.contactUs .formBox .formUl .formLi .linkBox.single {
  justify-content: flex-end;
}
.contactUs .formBox .formUl .formLi .linkBox a {
  width: 100%;
}
.contactUs .formBox .formUl .formLi .select2-container .select2-selection {
  padding: 0;
  cursor: pointer;
}
.contactUs .formBox .formUl .formLi .select2-container .select2-selection:before {
  display: none;
}
.contactUs .formBox .formUl .formLi .select2-container .select2-selection .select2-selection__rendered {
  padding: 0 13px;
  /*font-weight: normal;*/
}
.contactUs .formBox .formUl .formLi .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  font-size: 16px;
  font-weight: normal;
  /*line-height: 14px;*/
  /*letter-spacing: 0.17px;*/
  /*color: #000;*/
}
.contactUs .formBox .formUl .formLi .select2-container .select2-selection.select2-selection--multiple:after {
  background: url(../images/chevron-down.png) center center no-repeat;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
}
.contactUs .formBox .formUl .formLi .select2-container.select2-container--open .select2-selection.select2-selection--multiple:after {
  transform: rotate(180deg);
}
.contactUs .formBox .formUl .formLi .select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
  /*color: #5C5C5C;*/
  color: #000;
}
.contactUs .formBox .formUl .formLi .select2-container .select2-search--inline .select2-search__field::placeholder {
  /*color: #5C5C5C;*/
  color: #000;
}
.contactUs .formBox .formUl .formLi .formLiHidden {
  display: none;
}
.contactUs .formBox .formUl .formLi .formLiHidden.show {
  display: flex;
  flex-direction: column;
}
.contactUs .formBox .formUl .formLi .formLiHidden.error .inputBox .inputText {
  border: 1px solid #EC000E;
}
.contactUs .formBox .formUl .formLi.pb {
  /*padding-bottom: 172px;*/
}
.contactUs .formBox .successMask {
  position: absolute;
  width: 800px;
  max-width: 100%;
  background-color: rgb(246, 252, 255);
  border-radius: 40px;
  /*background: #FAFAFA;*/
  top: 0;
  left: 0;
  /*width: 100%;*/
  height: 100%;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
}
.contactUs .formBox .successMask.error .successMessage {
  color: #EC000E;
  /*  &::before {
      background-image: url('../img/cancel.svg');
  }*/
}
.contactUs .formBox .successMask.active {
  display: flex;
}
.contactUs .formBox .successMask .successMessage {
  width: auto;
  max-width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: rgb(20, 45, 106);
  position: relative;
  /*padding: 0 0 0 135px;*/
  /*&:before {
      content: '';
      width: 80px;
      height: 80px;
      background-image: url('../img/check.svg');
      position: absolute;
      top: 0;
      left: 30px;
  }*/
}
@media (max-width: 768px) {
  .contactUs .formBox {
    position: relative;
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    background-color: rgb(246, 252, 255);
    border-radius: unset;
    margin: -15px 0 0 -15px;
    padding: 24px 15px;
  }
  .contactUs .formBox .formUl .formLi {
    width: 100%;
  }
  .contactUs .formBox .successMask {
    width: 100%;
    padding: 0 20px;
    border-radius: unset;
  }
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #fff;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #fff;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-results__options[aria-multiselectable=true] .select2-results__option {
  position: relative;
  padding: 12px 15px 12px 24px;
}

.select2-results__options[aria-multiselectable=true] .select2-results__option[aria-selected=false]:before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #c4c4c4;
  box-sizing: border-box;
  border-radius: 3px;
  position: absolute;
  top: 12px;
  left: 5px;
  z-index: 1;
}

.select2-results__options[aria-multiselectable=true] .select2-results__option[aria-selected=true]:before {
  content: "";
  /* background-image: url(../sprite/sprite.png);
      background-position: -226px -172px;*/
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  left: 5px;
  z-index: 2;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  /*background-color: white;*/
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  position: relative;
}

.select2-container--default .select2-selection--multiple:after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 3.5px);
  background-image: url(../sprite/sprite.png);
  background-position: -150px -132px;
  width: 12px;
  height: 7px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  /*background-color: #e4e4e4;*/
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 3px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #FFF;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  /*border: solid black 1px;*/
  outline: 0;
  color: #fff;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2 {
  width: 100% !important;
}

.select2-dropdown {
  border: none;
  top: -1px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 0;
}
.select2-dropdown .select2-results__options {
  max-height: 230px !important;
  border: none;
}
.select2-dropdown .select2-results__options .select2-results__option--highlighted[aria-selected] {
  background-color: rgb(2, 208, 191);
  color: #ffffff;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.select2-dropdown .select2-results__options li {
  padding: 12px 15px;
  margin-bottom: unset;
  font-size: 14px;
  color: rgb(102, 112, 133);
  text-align: left;
}
.select2-dropdown .select2-results__options li[aria-selected=true] {
  background: rgb(2, 208, 191);
  color: #ffffff;
}

.select2-container {
  height: 44px;
}
.select2-container.select2-container--open .select2-selection .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container .select2-selection {
  height: 100%;
  /*border: none;*/
  border: solid 1px rgb(208, 213, 221);
  border-radius: 8px;
  /*border-bottom: 1px solid rgba(255, 255, 255,.3);*/
  background-color: #fff;
}
.select2-container .select2-selection .select2-selection__rendered {
  padding: 0 20px 0 0;
  height: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  color: rgb(102, 112, 133);
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.select2-container .select2-selection .select2-selection__rendered .select2-selection__clear {
  display: none;
}
.select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  color: rgba(102, 112, 133, 0.4);
}
.select2-container .select2-selection .select2-selection__arrow {
  right: 15px;
  top: calc(50% - 10px);
  background: url(../images/chevron-down.png) center center no-repeat;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  transition: transform 0.4s ease-in-out;
}
.select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

.select2-results__options[aria-multiselectable=true] .select2-results__option[aria-selected=true]:before {
  background: url(../images/chevron-down.png) center center no-repeat;
}

.card-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: nowrap;
}
.card-horizontal .card-img {
  flex: 0 0 40%;
  max-width: 40%;
}
.card-horizontal .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.card-horizontal .card-body {
  flex: 1;
  padding: 1.125rem;
}
@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: column;
  }
  .card-horizontal .card-img {
    flex: none;
    max-width: 100%;
  }
  .card-horizontal .card-img img {
    border-radius: 6px 6px 0 0;
  }
}
.card-overlay {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.card-overlay .card-img {
  position: relative;
}
.card-overlay .card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}
.card-overlay .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.125rem;
  z-index: 1;
}
.card-overlay .card-title {
  color: #ffffff;
}
.card-bordered {
  border: 2px solid #e0e0e0;
  box-shadow: none;
}
.card-bordered:hover {
  border-color: #00d4aa;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-primary {
  background-color: #1a3d7c;
  color: #ffffff;
}
.card-primary .card-title {
  color: #ffffff;
}
.card-secondary {
  background-color: #00d4aa;
  color: #ffffff;
}
.card-secondary .card-title {
  color: #ffffff;
}
.card-interactive {
  cursor: pointer;
}
.card-interactive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 212, 170, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.card-interactive:hover::before {
  background-color: rgba(0, 212, 170, 0.05);
}
.card-interactive:active {
  transform: scale(0.98);
}

.card-img, .card-img-top, .card-img-bottom {
  width: 100%;
}
.card-img img, .card-img-top img, .card-img-bottom img {
  width: 100%;
  height: auto;
}
.card-img-top {
  border-radius: 6px 6px 0 0;
}
.card-img-top img {
  border-radius: 6px 6px 0 0;
}
.card-img-bottom {
  border-radius: 0 0 6px 6px;
}
.card-img-bottom img {
  border-radius: 0 0 6px 6px;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.125rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.75rem;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link {
  color: #00d4aa;
  text-decoration: none;
}
.card-link:hover {
  text-decoration: underline;
}
.card-link + .card-link {
  margin-left: 0.9375rem;
}
.card-header {
  padding: 0.9375rem 1.125rem;
  margin-bottom: 0;
  background-color: rgba(240, 245, 255, 0.5);
  border-bottom: 1px solid #e0e0e0;
}
.card-header:first-child {
  border-radius: 6px 6px 0 0;
}
.card-footer {
  padding: 0.9375rem 1.125rem;
  margin-top: 0;
  background-color: rgba(240, 245, 255, 0.5);
  border-top: 1px solid #e0e0e0;
}
.card-footer:last-child {
  border-radius: 0 0 6px 6px;
}

.card-group {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: nowrap;
}
.card-group .card {
  flex: 1 0 0%;
  margin-bottom: 0;
  border-radius: 0;
}
.card-group .card:first-child {
  border-radius: 6px 0 0 6px;
}
.card-group .card:first-child .card-img-top {
  border-radius: 6px 0 0 0;
}
.card-group .card:first-child .card-img-bottom {
  border-radius: 0 0 0 6px;
}
.card-group .card:last-child {
  border-radius: 0 6px 6px 0;
}
.card-group .card:last-child .card-img-top {
  border-radius: 0 6px 0 0;
}
.card-group .card:last-child .card-img-bottom {
  border-radius: 0 0 6px 0;
}
.card-group .card:not(:first-child) {
  margin-left: -1px;
}
@media (max-width: 1024px) {
  .card-group {
    flex-direction: column;
  }
  .card-group .card {
    border-radius: 6px !important;
    margin-left: 0 !important;
    margin-bottom: 0.9375rem;
  }
  .card-group .card:last-child {
    margin-bottom: 0;
  }
  .card-group .card .card-img-top,
  .card-group .card .card-img-bottom {
    border-radius: 6px 6px 0 0 !important;
  }
}

.card-deck {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.card-deck .card {
  flex: 1 0 0%;
  min-width: 250px;
}
@media (max-width: 1024px) {
  .card-deck {
    flex-direction: column;
  }
  .card-deck .card {
    width: 100%;
  }
}

.card-columns {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1.125rem;
       column-gap: 1.125rem;
}
.card-columns .card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1.125rem;
}
@media (max-width: 1280px) {
  .card-columns {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 768px) {
  .card-columns {
    -moz-column-count: 1;
         column-count: 1;
  }
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  /*   width: 100%;
     height: 100%;
     object-fit: contain;*/
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  /*z-index: 10*/
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/*.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%
}*/
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  /*  width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)*/
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  /*   opacity: var(--swiper-pagination-bullet-opacity, 1);
     background: var(--swiper-pagination-color,var(--swiper-theme-color))*/
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  /*margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)*/
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  /*    left: 50%;
      transform: translateX(-50%);
      white-space: nowrap*/
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: opacity;
}
.swiper-slide-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #1a3d7c;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-family: "swiper-icons";
  font-size: 20px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background-color: #00d4aa;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.swiper-button-prev:active, .swiper-button-next:active {
  transform: scale(0.95);
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 16px;
  }
}
.swiper-button-prev {
  left: 10px;
  right: auto;
}
.swiper-button-prev::after {
  content: "geri";
}
.swiper-button-next {
  right: 10px;
  left: auto;
}
.swiper-button-next::after {
  content: "ileri";
}
.swiper-button-lock {
  display: none;
}

.swiper-initialized .swiper-pagination {
  z-index: 102;
}

.swiper-pagination {
  /*    display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  position: relative;
  min-height:14px;
  padding: 8px 0 11px;
  bottom: 0;
  left: 0;
  border-radius: 100px;
  margin: 0 auto;*/
  width: -moz-min-content;
  width: min-content;
  position: absolute;
  padding: 0;
  bottom: 30px;
  left: 0;
  right: 0;
  /*z-index: 1;*/
  border-radius: 100px;
  margin: 0 auto;
  justify-content: space-around;
  row-gap: unset;
  -moz-column-gap: 16px;
  column-gap: unset;
  height: auto;
  height: 18px;
  display: flex;
  align-items: center;
  transition-property: transform;
  box-sizing: content-box;
  flex-wrap: nowrap;
  flex-direction: unset;
  width: auto;
  position: absolute;
  bottom: 30px;
  /*z-index: 102;*/
  display: block;
  text-align: center;
  left: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  background-color: rgb(14, 37, 111);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -5px;
  left: -5px;
  background: transparent;
  /*border: solid 2px #fff;*/
  border: solid 2px rgb(14, 37, 111);
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.swiper-pagination.disabled {
  display: none;
}
.swiper-pagination.swiper-pagination-lock {
  display: none !important;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(26, 61, 124, 0.1);
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #00d4aa;
  border-radius: 10px;
  left: 0;
  top: 0;
  cursor: grab;
}
.swiper-scrollbar-drag:active {
  cursor: grabbing;
}
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 50;
  height: 5px;
  width: calc(100% - 20px);
}
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 50;
  width: 5px;
  height: calc(100% - 20px);
}

.hero-slider {
  /* // Overlay
   .swiper-slide::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.4);
       z-index: 1;
   }*/
}
.hero-slider .swiper-slide {
  /*min-height: 500px;*/
}
@media (max-width: 768px) {
  .hero-slider .swiper-slide {
    /*min-height: 400px;*/
    height: auto;
  }
}
.hero-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  max-width: 800px;
  padding: 0 0.9375rem;
}
.hero-slider .slide-content h1, .hero-slider .slide-content h2 {
  color: #ffffff;
  margin-bottom: 0.9375rem;
}
.hero-slider .slide-content p {
  font-size: 1rem;
  margin-bottom: 1.125rem;
}

.services-slider .swiper-slide {
  /*min-height: 500px;*/
}
@media (max-width: 768px) {
  .services-slider .swiper-slide {
    /*min-height: 400px;*/
    height: auto;
  }
}

.testimonials-slider {
  padding: 1.25rem 0;
}
.testimonials-slider .testimonial-item {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2.01167rem 1.34111rem;
  transition: all 0.3s ease;
  text-align: center;
  padding: 1.25rem;
}
.testimonials-slider .testimonial-item .testimonial-content {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1.125rem;
  position: relative;
}
.testimonials-slider .testimonial-item .testimonial-content::before, .testimonials-slider .testimonial-item .testimonial-content::after {
  content: '"';
  font-size: 1.875rem;
  color: #00d4aa;
  position: absolute;
}
.testimonials-slider .testimonial-item .testimonial-content::before {
  top: -20px;
  left: -30px;
}
.testimonials-slider .testimonial-item .testimonial-content::after {
  bottom: -40px;
  right: -30px;
}
.testimonials-slider .testimonial-item .testimonial-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.testimonials-slider .testimonial-item .testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  border: 4px solid #00d4aa;
}
.testimonials-slider .testimonial-item .testimonial-author .name {
  font-weight: 700;
  color: #1a3d7c;
  margin-bottom: 0.25rem;
}
.testimonials-slider .testimonial-item .testimonial-author .position {
  font-size: 0.75rem;
  color: #666;
}
.testimonials-slider.swiper-centered .swiper-slide {
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.3s ease;
}
.testimonials-slider.swiper-centered .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slider .swiper-slide {
  cursor: pointer;
  overflow: hidden;
}
.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slider .swiper-slide:hover img {
  transform: scale(1.1);
}
.gallery-slider-thumbs {
  margin-top: 0.9375rem;
}
.gallery-slider-thumbs .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}
.gallery-slider-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #00d4aa;
}

.autoplay-progress {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: bold;
  color: #ffffff;
}
.autoplay-progress svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #00d4aa;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

@media (max-width: 1920px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
}
@media (max-width: 1580px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
}
@media (max-width: 1368px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
}
@media (max-width: 1280px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
}
@media (max-width: 1024px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
}
@media (max-width: 768px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
}
@media (max-width: 550px) {
  .d-xxs-none {
    display: none !important;
  }
  .d-xxs-inline {
    display: inline !important;
  }
  .d-xxs-inline-block {
    display: inline-block !important;
  }
  .d-xxs-block {
    display: block !important;
  }
  .d-xxs-flex {
    display: flex !important;
  }
  .d-xxs-inline-flex {
    display: inline-flex !important;
  }
  .d-xxs-grid {
    display: grid !important;
  }
}
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.z-dropdown {
  z-index: 1000 !important;
}

.z-sticky {
  z-index: 1020 !important;
}

.z-fixed {
  z-index: 1030 !important;
}

.z-modal-backdrop {
  z-index: 1040 !important;
}

.z-modal {
  z-index: 1050 !important;
}

.z-popover {
  z-index: 1060 !important;
}

.z-tooltip {
  z-index: 1070 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.border {
  border: 1px solid #e0e0e0 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #e0e0e0 !important;
}

.border-end {
  border-right: 1px solid #e0e0e0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

.border-start {
  border-left: 1px solid #e0e0e0 !important;
}

.border-primary {
  border-color: #1a3d7c !important;
}

.border-secondary {
  border-color: #00d4aa !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-error {
  border-color: #dc3545 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 6px !important;
}

.rounded {
  border-radius: 6px !important;
}

.rounded-lg {
  border-radius: 6px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.rounded-end {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.rounded-start {
  border-bottom-left-radius: 6px !important;
  border-top-left-radius: 6px !important;
}

.bg-primary {
  background-color: #1a3d7c !important;
}

.bg-secondary {
  background-color: #00d4aa !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-error {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f0f5ff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1a3d7c 0%, rgb(12.74, 29.89, 60.76) 100%) !important;
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #00d4aa 0%, rgb(0, 135.5, 108.6556603774) 100%) !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.cursor-auto {
  cursor: auto !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-wait {
  cursor: wait !important;
}

.cursor-text {
  cursor: text !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-help {
  cursor: help !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-scale-down {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--ratio-aspect);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --ratio-aspect: 100%;
}

.ratio-4x3 {
  --ratio-aspect: 75%;
}

.ratio-16x9 {
  --ratio-aspect: 56.25%;
}

.ratio-21x9 {
  --ratio-aspect: 42.857143%;
}

.gap-0 {
  gap: 0 !important;
}

.gap-x-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem !important;
       column-gap: 0.75rem !important;
}

.gap-y-3 {
  row-gap: 0.75rem !important;
}

.gap-4 {
  gap: 0.9375rem !important;
}

.gap-x-4 {
  -moz-column-gap: 0.9375rem !important;
       column-gap: 0.9375rem !important;
}

.gap-y-4 {
  row-gap: 0.9375rem !important;
}

.gap-5 {
  gap: 1.125rem !important;
}

.gap-x-5 {
  -moz-column-gap: 1.125rem !important;
       column-gap: 1.125rem !important;
}

.gap-y-5 {
  row-gap: 1.125rem !important;
}

.gap-6 {
  gap: 1.25rem !important;
}

.gap-x-6 {
  -moz-column-gap: 1.25rem !important;
       column-gap: 1.25rem !important;
}

.gap-y-6 {
  row-gap: 1.25rem !important;
}

.gap-7 {
  gap: 1.5rem !important;
}

.gap-x-7 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.gap-y-7 {
  row-gap: 1.5rem !important;
}

.gap-8 {
  gap: 1.875rem !important;
}

.gap-x-8 {
  -moz-column-gap: 1.875rem !important;
       column-gap: 1.875rem !important;
}

.gap-y-8 {
  row-gap: 1.875rem !important;
}

.gap-9 {
  gap: 2rem !important;
}

.gap-x-9 {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.gap-y-9 {
  row-gap: 2rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem !important;
       column-gap: 2.5rem !important;
}

.gap-y-10 {
  row-gap: 2.5rem !important;
}

.gap-11 {
  gap: 3.125rem !important;
}

.gap-x-11 {
  -moz-column-gap: 3.125rem !important;
       column-gap: 3.125rem !important;
}

.gap-y-11 {
  row-gap: 3.125rem !important;
}

.gap-12 {
  gap: 3.75rem !important;
}

.gap-x-12 {
  -moz-column-gap: 3.75rem !important;
       column-gap: 3.75rem !important;
}

.gap-y-12 {
  row-gap: 3.75rem !important;
}

.gap-13 {
  gap: 5rem !important;
}

.gap-x-13 {
  -moz-column-gap: 5rem !important;
       column-gap: 5rem !important;
}

.gap-y-13 {
  row-gap: 5rem !important;
}

.gap-14 {
  gap: 6.25rem !important;
}

.gap-x-14 {
  -moz-column-gap: 6.25rem !important;
       column-gap: 6.25rem !important;
}

.gap-y-14 {
  row-gap: 6.25rem !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.hero {
  padding: 2rem 0 1.125rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero {
    padding: 0.9375rem 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0.9375rem 0;
  }
}

.hero-slider {
  position: relative;
}
.hero-slider:not(.swiper-initialized) {
  position: relative;
  z-index: 1;
}
.hero-slider:not(.swiper-initialized) .hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
  /*  @include breakpoint('sm') {
      @include grid(1, map.get($spacers, 4));
  }*/
}
@media (max-width: 768px) {
  .hero-slider:not(.swiper-initialized) .hero-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
    overflow: hidden;
  }
}

.hero-card {
  animation: fadeInUp 0.8s ease-out;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right 20px bottom 15px;
  background-color: rgb(223, 229, 248);
  min-height: 320px;
}
.hero-card:nth-child(2) {
  animation-delay: 0.2s;
  background-color: rgb(186, 255, 249);
}
.hero-card h1, .hero-card h2 {
  line-height: 1.2em;
  font-size: 1.875rem;
  width: 385px;
  /*width: 100%;*/
  max-width: 100%;
  /*  @include breakpoint('xs') {
      font-size: 1.5rem;
  }*/
}
.hero-card p {
  font-size: 1rem;
  line-height: 1.48;
  width: 385px;
  /*width: 100%;*/
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-card p {
    font-size: 0.875rem;
  }
}
.hero-card .btn {
  margin-bottom: 1.125rem;
}
@media (max-width: 768px) {
  .hero-card .btn {
    width: 100%;
  }
}
.hero-card picture {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hero-card picture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 61, 124, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-card picture img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.hero-card picture:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .hero-card {
    min-height: unset;
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    background-image: unset !important;
  }
  .hero-card h1, .hero-card h2, .hero-card p {
    width: 100%;
  }
  .hero-card h1, .hero-card h2 {
    font-size: 24px;
  }
  .hero-card .btn {
    width: auto;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .hero-card {
    min-height: unset;
    padding: 14px 20px 56px;
    width: 100%;
    box-sizing: border-box;
    background-image: unset !important;
  }
  .hero-card h1, .hero-card h2, .hero-card p {
    width: 100%;
  }
  .hero-card h1, .hero-card h2 {
    font-size: 24px;
  }
  .hero-card .btn {
    width: auto;
    margin: 0;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9375rem;
  margin-top: 1.875rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
}
@media (max-width: 768px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}
.hero-stats .stat-item {
  padding: 0.9375rem;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hero-stats .stat-item .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #00d4aa;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  background-color: #ffffff;
  padding: 0 0 1.875rem 0;
  position: relative;
}
.services h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.services h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #00d4aa;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .services {
    padding: 0;
  }
  .services .services-slider {
    padding: 0 0 60px 0;
  }
}

.services-slider {
  position: relative;
}
.services-slider:not(.swiper-initialized) {
  position: relative;
  z-index: 1;
}
.services-slider:not(.swiper-initialized) .services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.125rem;
}
@media (max-width: 768px) {
  .services-slider:not(.swiper-initialized) .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  gap: 15px;
  min-height: 240px;
  transition: all 0.4s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .service-card {
    min-height: unset;
    padding: 20px 20px 58px;
  }
}
.service-card:nth-child(6n+1) {
  background-color: rgb(223, 239, 248);
}
.service-card:nth-child(6n+2) {
  background-color: rgb(248, 223, 242);
}
.service-card:nth-child(6n+3) {
  background-color: rgb(223, 248, 227);
}
.service-card:nth-child(6n+4) {
  background-color: rgb(223, 248, 243);
}
.service-card:nth-child(6n+5) {
  background-color: rgb(233, 223, 248);
}
.service-card:nth-child(6n) {
  background-color: rgb(248, 239, 223);
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card:hover:nth-child(6n+1) {
  background-color: rgb(181.1538461538, 218.0769230769, 238.8461538462);
}
.service-card:hover:nth-child(6n+2) {
  background-color: rgb(238.8461538462, 181.1538461538, 225);
}
.service-card:hover:nth-child(6n+3) {
  background-color: rgb(181.1538461538, 238.8461538462, 190.3846153846);
}
.service-card:hover:nth-child(6n+4) {
  background-color: rgb(181.1538461538, 238.8461538462, 227.3076923077);
}
.service-card:hover:nth-child(6n+5) {
  background-color: rgb(204.2307692308, 181.1538461538, 238.8461538462);
}
.service-card:hover:nth-child(6n) {
  background-color: rgb(238.8461538462, 218.0769230769, 181.1538461538);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover img {
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-link {
  /*transform: scale(1.2);
  background-color: $secondary-color;
  color: $bg-white;*/
}
.service-card img {
  transition: transform 0.4s ease;
  filter: grayscale(0);
  opacity: 0.8;
}
.service-card img:hover {
  filter: grayscale(0) brightness(1.1);
  opacity: 1;
}
.service-card h3 {
  transition: color 0.3s ease;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .service-card h3 {
    font-size: 0.875rem;
    margin: 0;
  }
}
.service-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.service-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.service-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.service-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.service-card:nth-child(5) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.service-card:nth-child(6) {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

.services-list .service-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1.125rem;
  margin-bottom: 0.9375rem;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.services-list .service-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}
.services-list .service-item:hover .service-icon {
  background-color: #00d4aa;
  transform: rotate(360deg);
}
.services-list .service-item:hover .service-icon img {
  filter: brightness(0) invert(1);
}
.services-list .service-item .service-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #f0f5ff;
  border-radius: 6px;
  margin-right: 1.125rem;
  transition: all 0.5s ease;
}
.services-list .service-item .service-icon img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease;
}
.services-list .service-item .service-content {
  flex: 1;
}
.services-list .service-item .service-content h3 {
  margin-bottom: 0.5rem;
}
.services-list .service-item .service-content p {
  margin-bottom: 0;
  color: #666;
}
.services-list .service-item .service-arrow {
  font-size: 1.125rem;
  color: #1a3d7c;
  transition: all 0.3s ease;
}
.services-list .service-item .service-arrow:hover {
  transform: translateX(5px);
}

.service-tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.service-tabs .tab {
  padding: 0.75rem 1.125rem;
  background-color: #f0f5ff;
  border: 2px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-tabs .tab:hover {
  background-color: rgb(163.5, 194, 255);
  border-color: #00d4aa;
}
.service-tabs .tab.active {
  background-color: #00d4aa;
  color: #ffffff;
  border-color: #00d4aa;
}

.doctors {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.doctors .container {
  padding: 60px 0 0 110px;
  max-width: unset;
  width: calc(100% - 180px);
  margin: 0 0 0 180px;
}
.doctors::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 208px);
  background-color: rgb(17, 48, 147);
}
.doctors h2 {
  font-size: 2.5rem;
  color: #fff;
  text-align: left;
  margin-bottom: 1.125rem;
  position: relative;
}
@media (max-width: 768px) {
  .doctors h2 {
    font-size: 1.875rem;
  }
}
.doctors p {
  font-size: 1.25rem;
  color: #fff;
  text-align: left;
  max-width: 400px;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .doctors p {
    font-size: 0.875rem;
  }
}
@media (max-width: 1024px) {
  .doctors::before {
    height: calc(100% - 155px);
  }
  .doctors .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .doctors::before {
    height: calc(100% - 155px);
  }
  .doctors .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
}

.doctors-slider {
  position: relative;
  width: 100%;
  /*min-width: calc(100% + calc(calc(100vw - 1540px) / 2));*/
  /*padding: 94px 60px 0 0;
  margin: 0 -60px 0 0;*/
  padding: 94px 20px 0 0;
  margin: -90px 0 0 0;
}
@media (max-width: 1024px) {
  .doctors-slider {
    padding: 0;
    margin: 0;
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .doctors-slider {
    padding: 0;
    margin: 0;
  }
}
.doctors-slider .swiper-slide {
  width: 380px;
  text-align: center;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .doctors-slider .swiper-slide {
    padding: 0;
  }
}
.doctors-slider .swiper-button-prev, .doctors-slider .swiper-button-next {
  width: 64px;
  height: 64px;
  top: 0px;
  right: 0;
  left: unset;
  bottom: unset;
  transform: scale(1);
  margin-top: unset;
  border: 1.5px solid rgb(255, 255, 255);
  background-color: transparent;
  border-radius: 100%;
  box-shadow: unset;
}
.doctors-slider .swiper-button-prev svg, .doctors-slider .swiper-button-next svg {
  position: relative;
  transition: position 0.9s ease;
}
@media (max-width: 1024px) {
  .doctors-slider .swiper-button-prev, .doctors-slider .swiper-button-next {
    top: -80px;
  }
}
@media (max-width: 768px) {
  .doctors-slider .swiper-button-prev, .doctors-slider .swiper-button-next {
    width: 34px;
    height: 34px;
    top: calc(50% - 50px);
    border-color: rgb(12, 46, 78);
    background-color: rgb(12, 46, 78);
  }
  .doctors-slider .swiper-button-prev svg, .doctors-slider .swiper-button-next svg {
    filter: brightness(0) invert(1);
    width: 7px;
    height: 12px;
  }
  .doctors-slider .swiper-button-prev::after, .doctors-slider .swiper-button-next::after {
    font-size: 16px;
  }
}
.doctors-slider .swiper-button-prev {
  right: 271px;
  transform: rotate(0deg);
}
.doctors-slider .swiper-button-prev:hover svg {
  left: calc(0% - 6px);
}
@media (max-width: 1024px) {
  .doctors-slider .swiper-button-prev {
    right: 80px;
  }
}
@media (max-width: 768px) {
  .doctors-slider .swiper-button-prev {
    right: unset;
    left: 10px;
  }
  .doctors-slider .swiper-button-prev:hover svg {
    left: unset;
  }
}
.doctors-slider .swiper-button-next {
  right: 197px;
}
.doctors-slider .swiper-button-next:hover svg {
  left: calc(0% + 6px);
}
@media (max-width: 1024px) {
  .doctors-slider .swiper-button-next {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .doctors-slider .swiper-button-next {
    left: unset;
    right: 10px;
  }
  .doctors-slider .swiper-button-next:hover svg {
    left: unset;
  }
}
.doctors-slider .swiper-pagination {
  bottom: -30px;
}
.doctors-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #1a3d7c;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.doctors-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: #00d4aa;
  opacity: 1;
}

.doctor-card-popup {
  width: 500px;
  max-width: 100%;
}

.doctor-card {
  width: 100%;
  height: 100%;
  position: relative;
}
.doctor-card .doctor-image {
  position: relative;
  overflow: hidden;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}
.doctor-card .doctor-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 61, 124, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.doctor-card .doctor-image .doctor-hover {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(14, 37, 111);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.doctor-card .doctor-image .doctor-hover span {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.doctor-card .doctor-image .doctor-hover svg {
  width: 64px;
  height: 64px;
}
.doctor-card .doctor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media (max-width: 768px) {
  .doctor-card .doctor-image {
    width: 100%;
    height: auto;
  }
}
.doctor-card:hover .doctor-image .doctor-hover {
  opacity: 1;
}
.doctor-card h3 {
  text-align: left;
  padding: 0 20px;
  font-size: 1.25rem;
  color: #1a3d7c;
  margin: 16px 0 5px;
  transition: color 0.3s ease;
}
.doctor-card p {
  text-align: left;
  padding: 0 20px;
  font-size: 0.875rem;
  color: #1a3d7c;
  transition: color 0.3s ease;
}
.doctor-card:hover {
  cursor: pointer;
}
.doctor-card:hover h3 {
  color: #00d4aa;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
@media (max-width: 1368px) {
  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}
@media (max-width: 1024px) {
  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
}
@media (max-width: 768px) {
  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}

@media (max-width: 768px) {
  section.doctors {
    padding: 0.9375rem 0;
    width: 100%;
    margin: 0;
  }
}
@keyframes right-to-left {
  0% {
    height: 100vh;
    right: 0;
    opacity: 0;
    transform: translate(100%, 0%);
  }
  100% {
    height: 100vh;
    right: 0;
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
#doctors-overlay {
  display: none;
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0.9;
}
#doctors-overlay.gray {
  opacity: 0.3;
}

.doctors-modal {
  display: none;
  z-index: 9999;
  position: fixed;
  right: 0;
  top: 0%;
  transform: translate(100%, 0%);
  height: 100%;
  max-width: 100%;
  width: 800px;
  overflow-x: auto;
  background-color: rgb(222, 255, 246);
  animation: right-to-left 0.5s;
  animation-fill-mode: forwards;
}
@media (max-width: 768px) {
  .doctors-modal {
    width: 100%;
  }
}
.doctors-modal .modal-closer {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.doctors-modal .modal-closer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  background-color: rgb(14, 37, 111);
  border-radius: 100%;
}
.doctors-modal .modal-closer svg {
  display: block;
  filter: brightness(0) invert(1);
}
.doctors-modal .modal-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: flex-start;
  height: 100%;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .doctors-modal .modal-layout {
    flex-direction: column;
    gap: 0;
  }
}
.doctors-modal .modal-layout .modal-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: rgb(255, 255, 255);
  height: -moz-fit-content;
  height: fit-content;
  max-width: 280px;
  min-width: 280px;
}
@media (max-width: 768px) {
  .doctors-modal .modal-layout .modal-info {
    display: none;
  }
}
.doctors-modal .modal-layout .modal-info .doctor-image {
  position: relative;
  overflow: hidden;
  height: auto;
  width: 100%;
  border-radius: unset;
  max-width: 100%;
}
.doctors-modal .modal-layout .modal-info .doctor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.doctors-modal .modal-layout .modal-info h3 {
  text-align: left;
  padding: 0 20px;
  font-size: 18px;
  color: rgb(54, 132, 110);
  margin: 13px 0 5px;
  transition: color 0.3s ease;
}
.doctors-modal .modal-layout .modal-info p {
  text-align: left;
  padding: 0 20px 17px;
  font-size: 0.875rem;
  color: #1a3d7c;
  transition: color 0.3s ease;
}
.doctors-modal .modal-layout .modal-content {
  padding: 33px 40px 33px 0;
  height: 100%;
  width: 100%;
  display: inline;
  margin: 0 0 33px 0;
  max-height: 100%;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .doctors-modal .modal-layout .modal-content {
    padding: 30px 15px;
  }
}
.doctors-modal .modal-layout .modal-content h1, .doctors-modal .modal-layout .modal-content h2, .doctors-modal .modal-layout .modal-content h3, .doctors-modal .modal-layout .modal-content h4, .doctors-modal .modal-layout .modal-content h5 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.04em;
  color: rgb(14, 37, 111);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .doctors-modal .modal-layout .modal-content h1, .doctors-modal .modal-layout .modal-content h2, .doctors-modal .modal-layout .modal-content h3, .doctors-modal .modal-layout .modal-content h4, .doctors-modal .modal-layout .modal-content h5 {
    padding: 0 30px 0 0;
  }
}
.doctors-modal .modal-layout .modal-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: rgb(14, 37, 111);
  margin-bottom: 20px;
}
.doctors-modal .modal-layout .modal-content p strong {
  font-weight: 600;
}

.news {
  background-color: #ffffff;
  position: relative;
}
.news .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.news .section-header h2 {
  font-size: 1.5rem;
  color: #1a3d7c;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .news .section-header h2 {
    font-size: 1.25rem;
  }
}
.news .section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.news .showall {
  justify-self: center;
  display: flex;
  margin: 1.875rem auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.news-grid.listpage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.125rem;
  }
  .news-grid.listpage {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.125rem;
  }
}

.news-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card .news-category {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  padding: 0.25rem 0.75rem;
  background-color: #1a3d7c;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  z-index: 2;
}
.news-card img {
  width: 100%;
  /*height: 100%;*/
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .news-card img {
    height: unset;
  }
}
.news-card .news-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card .news-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.1);
}
.news-card:hover .news-image::after {
  opacity: 1;
}
.news-card:hover .news-content h3 {
  color: #00d4aa;
}
.news-card .news-date {
  animation: pulse 2s infinite;
  /*.day {
      font-size: map.get($font-sizes, '3xl');
      line-height: 1;
  }

  .month {
      font-size: map.get($font-sizes, 'base');
      text-transform: uppercase;
      letter-spacing: 1px;
  }*/
}
.news-card .news-content {
  flex: 1;
  display: flex;
  /*flex-direction: column;*/
}
@media (max-width: 768px) {
  .news-card .news-content {
    flex-direction: column;
  }
}
.news-card .news-content h3 {
  flex: 1;
  transition: color 0.3s ease;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .news-card .news-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
.news-card .news-content .news-meta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #666;
}
.news-card .news-content .news-meta .author {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.news-card .news-content .news-meta .author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.news-card .news-content .news-meta .read-time::before {
  content: "•";
  margin-right: 0.5rem;
}
.news-card .news-content .news-excerpt {
  color: #666;
  margin-bottom: 0.9375rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-content .btn-secondary {
  align-self: flex-start;
  transition: transform 0.3s ease;
}
.news-card .news-content .btn-secondary::after {
  /*content: '→';
  margin-left: map.get($spacers, 2);
  transition: margin-left 0.3s ease;*/
}
.news-card .news-content .btn-secondary:hover::after {
  /*margin-left: map.get($spacers, 3);*/
}

.news-slider .swiper-slide {
  height: auto;
}
.news-slider .news-card {
  height: 100%;
}

.event-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: rgb(223, 229, 248);
  border-radius: 16px;
  overflow: hidden;
  gap: 15px;
  padding: 10px 30px 10px 10px;
}
.event-gallery .open-gallery {
  min-width: 140px;
  width: 140px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.event-gallery .open-gallery a {
  cursor: pointer;
  z-index: 7;
  position: relative;
  background-color: transparent;
  background: transparent;
}
.event-gallery .open-gallery a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 37, 111, 0.5);
  z-index: 2;
}
.event-gallery .open-gallery .magnify {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.event-gallery .open-gallery .magnify svg {
  width: 24px;
  height: 24px;
}
.event-gallery .open-gallery img {
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.event-gallery .txt-gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}
.event-gallery .txt-gallery h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgb(14, 37, 111);
  padding-bottom: 0;
  margin-bottom: 0px;
}
.event-gallery .txt-gallery p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgb(14, 37, 111);
  margin: 0;
}

.featured-news {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2.01167rem 1.34111rem;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .featured-news {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.featured-news .featured-image {
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .featured-news .featured-image {
    height: 250px;
  }
}
.featured-news .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-news .featured-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-news .featured-content .featured-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(0, 212, 170, 0.1);
  color: #00d4aa;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.featured-news .featured-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
}
@media (max-width: 768px) {
  .featured-news .featured-content h3 {
    font-size: 1.125rem;
  }
}
.featured-news .featured-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 170, 0);
  }
}
.faq {
  position: relative;
  text-align: center;
}
.faq > .container {
  position: relative;
  z-index: 1;
}
.faq .svg-sss-dims {
  margin: 0 0 9px;
}
.faq h2 {
  font-size: 2.5rem;
  color: #1a3d7c;
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.875rem;
    margin-bottom: 23px;
  }
}
.faq .btn {
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .faq .btn {
    margin-top: 1.25rem;
  }
}

.faq-accordion {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.faq-accordion.listpage {
  width: 100%;
  margin: 70px 0 40px;
}
@media (max-width: 768px) {
  .faq-accordion.listpage {
    width: 100%;
    margin: 15px 0;
  }
}

.faq-item {
  background-color: #ffffff;
  border-radius: 6px;
  /*margin-bottom: map.get($spacers, 4);*/
  transition: all 0.15s ease;
  overflow: hidden;
  /* &.page {
      .faq-question {
          p {
              color: #00d4aa;
              text-decoration:underline;
          }
      }
  }*/
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:last-child .faq-question {
  border-bottom: solid 1px rgb(217, 217, 217);
}
.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
  background-color: rgb(2, 208, 191);
}
.faq-item.active .faq-answer {
  display: flex;
}
.faq-item.active.page .faq-answer {
  display: none;
}
.faq-question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.875rem 0;
  background-color: transparent;
  border: unset;
  border-top: solid 1px rgb(217, 217, 217);
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(14, 37, 111);
  cursor: pointer;
  margin-top: unset;
  margin-right: unset;
  transition: all 0.15s ease;
  position: relative;
  /* &:focus-visible {
      outline: 2px solid $secondary-color;
      outline-offset: -2px;
  }*/
}
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}
.faq-question span:first-child {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin-right: 10px;
  color: rgb(14, 37, 111);
}
@media (max-width: 768px) {
  .faq-question span:first-child {
    min-width: 28px;
    height: 28px;
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }
}
.faq-question p {
  width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-question p {
    font-size: 1.25rem;
    line-height: 24px;
    letter-spacing: -0.02em;
  }
}
.faq-question:hover {
  color: #1a3d7c;
}
.faq-question:hover span:last-child {
  border-radius: 100%;
  background-color: rgb(2, 208, 191);
}

.faq-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 0.9375rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: rgb(242, 242, 242);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}
.faq-toggle::before {
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 768px) {
  .faq-toggle {
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
  }
}

.faq-go {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 0.9375rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: rgb(242, 242, 242);
}
.faq-go::before, .faq-go::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}
.faq-go::before {
  transform: rotate(-45deg);
  width: 10px;
  top: calc(50% + 2px);
  left: calc(50% - 5px);
}
.faq-go::after {
  transform: rotate(45deg);
  width: 10px;
  top: calc(50% - 4px);
  left: calc(50% - 5px);
}
@media (max-width: 768px) {
  .faq-go {
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
  }
}

.faq-answer {
  margin: 0 3.125rem 2.5rem 3.125rem;
  color: rgb(14, 37, 111);
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  line-height: 24px;
}
@media (max-width: 768px) {
  .faq-answer {
    padding: 0 2.5rem 2.5rem 2.5rem;
    margin: 0;
    font-size: 0.875rem;
  }
}
.faq-answer p {
  /*padding-left: calc(40px + 0.9375rem);*/
}
@media (max-width: 768px) {
  .faq-answer p {
    /*padding-left: calc(35px + 0.75rem);*/
  }
}
.faq-answer ul, .faq-answer ol {
  padding-left: calc(40px + 0.9375rem + 0.9375rem);
}
@media (max-width: 768px) {
  .faq-answer ul, .faq-answer ol {
    padding-left: calc(35px + 0.75rem + 0.75rem);
  }
}
.faq-answer a {
  color: #00d4aa;
  text-decoration: underline;
}
.faq-answer a:hover {
  text-decoration: none;
}

.faq-tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .faq-tabs {
    flex-direction: column;
  }
}
.faq-tabs .faq-categories {
  flex: 0 0 250px;
}
@media (max-width: 1024px) {
  .faq-tabs .faq-categories {
    flex: 1;
    width: 100%;
    margin-bottom: 1.125rem;
  }
}
.faq-tabs .faq-categories .category-btn {
  display: block;
  width: 100%;
  padding: 0.9375rem;
  margin-bottom: 0.75rem;
  background-color: #ffffff;
  border: 2px solid transparent;
  border-radius: 6px;
  text-align: left;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-tabs .faq-categories .category-btn:hover {
  border-color: #00d4aa;
  color: #00d4aa;
}
.faq-tabs .faq-categories .category-btn.active {
  background-color: #1a3d7c;
  color: #ffffff;
  border-color: #1a3d7c;
}
.faq-tabs .faq-content {
  flex: 1;
}
.faq-tabs .faq-content .category-content {
  display: none;
}
.faq-tabs .faq-content .category-content.active {
  display: block;
}