@import url("../css/icons/style.css");
:root {
  --ff-primary: "Helvetica", sans-serif;
  --ff-primary-ar: "Almarai", sans-serif;
  --ff-secondary-ar: "IBM Plex Sans Arabic", sans-serif;
  /* Heading Variable */
  --fs-h1: 58px;
  --fs-h2: 36px;
  --fs-h3: 30px;
  --fs-h4: 24px;
  /* Paragraph Variable */
  --fs-p-xl: 20px;
  --fs-p-l: 18px;
  --fs-p-m: 16px;
  --fs-p-s: 14px;
  --fs-p-xs: 12px;
  --fs-p-xxs: 10px;
  /* Font Weight Variable */
  --fw-regular: normal;
  --fw-medium: 300;
  --fw-bold: bold;
  /* Color Variable */
  --primary: #002570;
  --secondary: #8F9BB3;
  --red: #E01624;
  --grey: #292929;
  --black: #000000;
  --white: #ffffff;
  --lightblue: #F3F8FE;
  --lightgrey: #D9D9D9;
  --darkgrey: #A9A9A9;
  --success: #2C7453;
  --success-off: #DBF3E8;
  --failure: #E01624;
  --failure-off: #F8D7DA;
  --carousel-button-shadow: #fff;
  /* Border Radius Variable */
  --border-radius-l: 10px;
  --border-radius-m: 8px;
  --border-radius-s: 6px;
  --border-radius-xs: 4px;
  --border-radius-xss: 2px;
  --border-radius-100: 100%;
}
:root .border-color-grey {
  border: 1px solid var(--lightgrey);
}

@media (max-width: 1599.98px) {
  :root {
    /* Heading Variable */
    --fs-h1: 48px;
    --fs-h2: 32px;
    --fs-h3: 30px;
    --fs-h4: 28px;
    --fs-h5: 26px;
    --fs-h6: 24px;
    /* Paragraph Variable */
    --fs-p-xl: 18px;
    --fs-p-l: 16px;
    --fs-p-m: 14px;
    --fs-p-s: 12px;
    --fs-p-xs: 10px;
    --fs-p-xxs: 8px;
  }
}
@media (max-width: 1599.98px) {
  :root {
    /* Heading Variable */
    --fs-h4: 24px;
  }
}
@media (max-width: 1199.98px) {
  :root {
    /* Heading Variable */
    --fs-h1: 34px;
    --fs-h2: 32px;
    --fs-h3: 30px;
    --fs-h4: 24px;
    --fs-h5: 26px;
    --fs-h6: 24px;
    /* Paragraph Variable */
    --fs-p-xl: 18px;
    --fs-p-l: 16px;
    --fs-p-m: 14px;
    --fs-p-s: 12px;
    --fs-p-xs: 10px;
    --fs-p-xxs: 8px;
  }
}
@media (max-width: 991.98px) {
  :root {
    /* Heading Variable */
    --fs-h1: 32px;
    --fs-h2: 30px;
    --fs-h3: 28px;
    --fs-h4: 22px;
    --fs-h5: 24px;
    --fs-h6: 22px;
    /* Paragraph Variable */
    --fs-p-xl: 18px;
    --fs-p-l: 16px;
    --fs-p-m: 14px;
    --fs-p-s: 12px;
    --fs-p-xs: 10px;
    --fs-p-xxs: 8px;
    --border-radius-l: 5px;
  }
}
@media (max-width: 575.98px) {
  :root {
    /* Heading Variable */
    --fs-h1: 30px;
    --fs-h2: 26px;
    --fs-h3: 26px;
    --fs-h4: 20px;
    --fs-h5: 20px;
    --fs-h6: 18px;
  }
}
@media (max-width: 480px) {
  :root {
    /* Heading Variable */
    --fs-h1: 26px;
    --fs-h2: 24px;
    --fs-h3: 22px;
    --fs-h4: 18px;
    --fs-h5: 20px;
    --fs-h6: 18px;
    --fs-p-l: 15px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

.container-fluid {
  width: 85%;
  max-width: 100%;
  position: relative;
}
@media (max-width: 1399.98px) {
  .container-fluid {
    width: 90%;
  }
}
@media (max-width: 1199.98px) {
  .container-fluid {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .container-fluid {
    width: 98%;
  }
}
.container-fluid.max-width-default {
  max-width: 1800px;
}

.bg--white {
  background-color: var(--white);
}

.bg--lightblue {
  background-color: var(--lightblue);
}

.box-shadow {
  box-shadow: 0 2px 8px 0px rgba(0, 37, 112, 0.15);
}

.padding-large {
  padding: 30px;
  border-radius: var(--border-radius-l);
}
@media (max-width: 767.98px) {
  .padding-large {
    padding: 20px;
  }
}

/* Zebra Tooltips */
.Zebra_Tooltip {
  background: 0 0;
  position: absolute;
  z-index: 8000;
}

.Zebra_Tooltip .Zebra_Tooltip_Message {
  background: var(--bh-brand);
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  color: var(--bh-light);
  font-size: var(--bh-fs-p-s);
  line-height: 1.4;
  text-align: center;
  *margin-right: 0;
  max-width: 250px;
  padding: 10px;
  position: relative;
  border: 0px solid #000;
}

.Zebra_Tooltip .Zebra_Tooltip_Message.Zebra_Tooltip_Has_Close {
  padding-right: 23px;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow {
  position: absolute;
  width: 20px;
  height: 10px;
  overflow: hidden;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Bottom {
  bottom: 0;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Bottom div {
  top: 0;
  border-color: var(--bh-brand) transparent transparent;
  _border-bottom-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Bottom div.Zebra_Tooltip_Arrow_Border {
  border-color: var(--bh-brand) transparent transparent;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Top {
  top: 0;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Top div {
  bottom: 0;
  border-color: transparent transparent var(--bh-brand);
  _border-top-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow.Zebra_Tooltip_Arrow_Top div.Zebra_Tooltip_Arrow_Border {
  border-color: transparent transparent var(--bh-brand);
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow div {
  position: absolute;
  border-style: solid;
  border-width: 10px;
  width: 0;
  height: 0;
  left: 0;
  _border-left-color: pink;
  _border-right-color: pink;
  _filter: chroma(color=pink);
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow div.Zebra_Tooltip_Arrow_Border {
  border-width: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  left: 0;
}

.Zebra_Tooltip .Zebra_Tooltip_Close {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  position: absolute;
  right: 2px;
  text-decoration: none;
  top: 2px;
}

.Zebra_Tooltip .Zebra_Tooltip_Close:hover {
  color: #000;
  background: #c2d076;
  border-radius: 5px;
}

:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: var(--bh-tertiary);
  --iti-dropdown-bg: #fff;
  --iti-spacer-horizontal: 12px;
  --iti-flag-height: 24px;
  --iti-flag-width: 32px;
  --iti-border-width: 1px;
  --iti-arrow-height: 7px;
  --iti-arrow-width: 14px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 10px;
  --iti-arrow-color: var(--bh-brand);
  --iti-input-padding: 10px;
  --iti-right-hand-selected-country-padding: calc(var(--iti-spacer-horizontal) + var(--iti-spacer-horizontal) + var(--iti-flag-width));
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding) + var(--iti-arrow-padding) + var(--iti-flag-width) + var(--iti-spacer-horizontal) + var(--iti-arrow-width) + var(--iti-input-padding));
  --iti-path-flags-1x: url("../img/largeFlags.png") !important;
  --iti-path-flags-2x: url("../img/largeFlags@2x.png") !important;
  --iti-path-globe-1x: url("../img/globe.webp") !important;
  --iti-path-globe-2x: url("../img/globe@2x.webp") !important;
  --iti-flag-sprite-width: 7808px;
  --iti-flag-sprite-height: 24px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 100%;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: var(--iti-right-hand-selected-country-padding);
  margin-right: 0;
}

.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--iti-border-width);
}

.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
  padding-inline-start: 0;
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 7px;
  height: 7px;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--secondary);
  opacity: 0.8;
}

[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  border-radius: var(--bh-border-radius-xs);
  background-color: var(--iti-dropdown-bg);
}

.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--bh-border-primary);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: var(--bh-border-radius-xs);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 10px;
  border-bottom: 1px solid var(--blightblue);
  font-size: var(--fs-p-l);
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}

.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 12px var(--iti-spacer-horizontal);
  outline: none;
}

.iti__dial-code {
  color: var(--secondary);
  font-size: var(--fs-p-l);
}

.iti__country-name {
  font-size: var(--fs-p-l);
  color: var(--secondary);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-input-padding);
  padding-left: var(--iti-selected-country-arrow-padding);
  margin-left: 0;
}

[dir=rtl] .iti--allow-dropdown input.iti__tel-input,
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=text],
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-selected-country-arrow-padding);
  padding-left: var(--iti-input-padding);
  margin-right: 0;
}

.iti--allow-dropdown .iti__country-container {
  right: auto;
  left: 0;
}

[dir=rtl] .iti--allow-dropdown .iti__country-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}

.iti .iti__selected-dial-code {
  font-size: var(--fs-p-l);
  color: var(--secondary);
  margin: 0px 0 0;
  direction: ltr;
}

[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}

.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}

.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -32px;
}

.iti__ae {
  --iti-flag-offset: -64px;
}

.iti__af {
  --iti-flag-offset: -96px;
}

.iti__ag {
  --iti-flag-offset: -128px;
}

.iti__ai {
  --iti-flag-offset: -160px;
}

.iti__al {
  --iti-flag-offset: -192px;
}

.iti__am {
  --iti-flag-offset: -224px;
}

.iti__ao {
  --iti-flag-offset: -256px;
}

.iti__ar {
  --iti-flag-offset: -288px;
}

.iti__as {
  --iti-flag-offset: -320px;
}

.iti__at {
  --iti-flag-offset: -352px;
}

.iti__au {
  --iti-flag-offset: -384px;
}

.iti__aw {
  --iti-flag-offset: -416px;
}

.iti__ax {
  --iti-flag-offset: -448px;
}

.iti__az {
  --iti-flag-offset: -480px;
}

.iti__ba {
  --iti-flag-offset: -512px;
}

.iti__bb {
  --iti-flag-offset: -544px;
}

.iti__bd {
  --iti-flag-offset: -576px;
}

.iti__be {
  --iti-flag-offset: -608px;
}

.iti__bf {
  --iti-flag-offset: -640px;
}

.iti__bg {
  --iti-flag-offset: -672px;
}

.iti__bh {
  --iti-flag-offset: -704px;
}

.iti__bi {
  --iti-flag-offset: -736px;
}

.iti__bj {
  --iti-flag-offset: -768px;
}

.iti__bl {
  --iti-flag-offset: -800px;
}

.iti__bm {
  --iti-flag-offset: -832px;
}

.iti__bn {
  --iti-flag-offset: -864px;
}

.iti__bo {
  --iti-flag-offset: -896px;
}

.iti__bq {
  --iti-flag-offset: -928px;
}

.iti__br {
  --iti-flag-offset: -960px;
}

.iti__bs {
  --iti-flag-offset: -992px;
}

.iti__bt {
  --iti-flag-offset: -1024px;
}

.iti__bw {
  --iti-flag-offset: -1056px;
}

.iti__by {
  --iti-flag-offset: -1088px;
}

.iti__bz {
  --iti-flag-offset: -1120px;
}

.iti__ca {
  --iti-flag-offset: -1152px;
}

.iti__cc {
  --iti-flag-offset: -1184px;
}

.iti__cd {
  --iti-flag-offset: -1216px;
}

.iti__cf {
  --iti-flag-offset: -1248px;
}

.iti__cg {
  --iti-flag-offset: -1280px;
}

.iti__ch {
  --iti-flag-offset: -1312px;
}

.iti__ci {
  --iti-flag-offset: -1344px;
}

.iti__ck {
  --iti-flag-offset: -1376px;
}

.iti__cl {
  --iti-flag-offset: -1408px;
}

.iti__cm {
  --iti-flag-offset: -1440px;
}

.iti__cn {
  --iti-flag-offset: -1472px;
}

.iti__co {
  --iti-flag-offset: -1504px;
}

.iti__cr {
  --iti-flag-offset: -1536px;
}

.iti__cu {
  --iti-flag-offset: -1568px;
}

.iti__cv {
  --iti-flag-offset: -1600px;
}

.iti__cw {
  --iti-flag-offset: -1632px;
}

.iti__cx {
  --iti-flag-offset: -1664px;
}

.iti__cy {
  --iti-flag-offset: -1696px;
}

.iti__cz {
  --iti-flag-offset: -1728px;
}

.iti__de {
  --iti-flag-offset: -1760px;
}

.iti__dj {
  --iti-flag-offset: -1792px;
}

.iti__dk {
  --iti-flag-offset: -1824px;
}

.iti__dm {
  --iti-flag-offset: -1856px;
}

.iti__do {
  --iti-flag-offset: -1888px;
}

.iti__dz {
  --iti-flag-offset: -1920px;
}

.iti__ec {
  --iti-flag-offset: -1952px;
}

.iti__ee {
  --iti-flag-offset: -1984px;
}

.iti__eg {
  --iti-flag-offset: -2016px;
}

.iti__eh {
  --iti-flag-offset: -2048px;
}

.iti__er {
  --iti-flag-offset: -2080px;
}

.iti__es {
  --iti-flag-offset: -2112px;
}

.iti__et {
  --iti-flag-offset: -2144px;
}

.iti__fi {
  --iti-flag-offset: -2176px;
}

.iti__fj {
  --iti-flag-offset: -2208px;
}

.iti__fk {
  --iti-flag-offset: -2240px;
}

.iti__fm {
  --iti-flag-offset: -2272px;
}

.iti__fo {
  --iti-flag-offset: -2304px;
}

.iti__fr {
  --iti-flag-offset: -2336px;
}

.iti__ga {
  --iti-flag-offset: -2368px;
}

.iti__gb {
  --iti-flag-offset: -2400px;
}

.iti__gd {
  --iti-flag-offset: -2432px;
}

.iti__ge {
  --iti-flag-offset: -2464px;
}

.iti__gf {
  --iti-flag-offset: -2496px;
}

.iti__gg {
  --iti-flag-offset: -2528px;
}

.iti__gh {
  --iti-flag-offset: -2560px;
}

.iti__gi {
  --iti-flag-offset: -2592px;
}

.iti__gl {
  --iti-flag-offset: -2624px;
}

.iti__gm {
  --iti-flag-offset: -2656px;
}

.iti__gn {
  --iti-flag-offset: -2688px;
}

.iti__gp {
  --iti-flag-offset: -2720px;
}

.iti__gq {
  --iti-flag-offset: -2752px;
}

.iti__gr {
  --iti-flag-offset: -2784px;
}

.iti__gt {
  --iti-flag-offset: -2816px;
}

.iti__gu {
  --iti-flag-offset: -2848px;
}

.iti__gw {
  --iti-flag-offset: -2880px;
}

.iti__gy {
  --iti-flag-offset: -2912px;
}

.iti__hk {
  --iti-flag-offset: -2944px;
}

.iti__hn {
  --iti-flag-offset: -2976px;
}

.iti__hr {
  --iti-flag-offset: -3008px;
}

.iti__ht {
  --iti-flag-offset: -3040px;
}

.iti__hu {
  --iti-flag-offset: -3072px;
}

.iti__id {
  --iti-flag-offset: -3104px;
}

.iti__ie {
  --iti-flag-offset: -3136px;
}

.iti__il {
  --iti-flag-offset: -3168px;
}

.iti__im {
  --iti-flag-offset: -3200px;
}

.iti__in {
  --iti-flag-offset: -3232px;
}

.iti__io {
  --iti-flag-offset: -3264px;
}

.iti__iq {
  --iti-flag-offset: -3296px;
}

.iti__ir {
  --iti-flag-offset: -3328px;
}

.iti__is {
  --iti-flag-offset: -3360px;
}

.iti__it {
  --iti-flag-offset: -3392px;
}

.iti__je {
  --iti-flag-offset: -3424px;
}

.iti__jm {
  --iti-flag-offset: -3456px;
}

.iti__jo {
  --iti-flag-offset: -3488px;
}

.iti__jp {
  --iti-flag-offset: -3520px;
}

.iti__ke {
  --iti-flag-offset: -3552px;
}

.iti__kg {
  --iti-flag-offset: -3584px;
}

.iti__kh {
  --iti-flag-offset: -3616px;
}

.iti__ki {
  --iti-flag-offset: -3648px;
}

.iti__km {
  --iti-flag-offset: -3680px;
}

.iti__kn {
  --iti-flag-offset: -3712px;
}

.iti__kp {
  --iti-flag-offset: -3744px;
}

.iti__kr {
  --iti-flag-offset: -3776px;
}

.iti__kw {
  --iti-flag-offset: -3808px;
}

.iti__ky {
  --iti-flag-offset: -3840px;
}

.iti__kz {
  --iti-flag-offset: -3872px;
}

.iti__la {
  --iti-flag-offset: -3904px;
}

.iti__lb {
  --iti-flag-offset: -3936px;
}

.iti__lc {
  --iti-flag-offset: -3968px;
}

.iti__li {
  --iti-flag-offset: -4000px;
}

.iti__lk {
  --iti-flag-offset: -4032px;
}

.iti__lr {
  --iti-flag-offset: -4064px;
}

.iti__ls {
  --iti-flag-offset: -4096px;
}

.iti__lt {
  --iti-flag-offset: -4128px;
}

.iti__lu {
  --iti-flag-offset: -4160px;
}

.iti__lv {
  --iti-flag-offset: -4192px;
}

.iti__ly {
  --iti-flag-offset: -4224px;
}

.iti__ma {
  --iti-flag-offset: -4256px;
}

.iti__mc {
  --iti-flag-offset: -4288px;
}

.iti__md {
  --iti-flag-offset: -4320px;
}

.iti__me {
  --iti-flag-offset: -4352px;
}

.iti__mf {
  --iti-flag-offset: -4384px;
}

.iti__mg {
  --iti-flag-offset: -4416px;
}

.iti__mh {
  --iti-flag-offset: -4448px;
}

.iti__mk {
  --iti-flag-offset: -4480px;
}

.iti__ml {
  --iti-flag-offset: -4512px;
}

.iti__mm {
  --iti-flag-offset: -4544px;
}

.iti__mn {
  --iti-flag-offset: -4576px;
}

.iti__mo {
  --iti-flag-offset: -4608px;
}

.iti__mp {
  --iti-flag-offset: -4640px;
}

.iti__mq {
  --iti-flag-offset: -4672px;
}

.iti__mr {
  --iti-flag-offset: -4704px;
}

.iti__ms {
  --iti-flag-offset: -4736px;
}

.iti__mt {
  --iti-flag-offset: -4768px;
}

.iti__mu {
  --iti-flag-offset: -4800px;
}

.iti__mv {
  --iti-flag-offset: -4832px;
}

.iti__mw {
  --iti-flag-offset: -4864px;
}

.iti__mx {
  --iti-flag-offset: -4896px;
}

.iti__my {
  --iti-flag-offset: -4928px;
}

.iti__mz {
  --iti-flag-offset: -4960px;
}

.iti__na {
  --iti-flag-offset: -4992px;
}

.iti__nc {
  --iti-flag-offset: -5024px;
}

.iti__ne {
  --iti-flag-offset: -5056px;
}

.iti__nf {
  --iti-flag-offset: -5088px;
}

.iti__ng {
  --iti-flag-offset: -5120px;
}

.iti__ni {
  --iti-flag-offset: -5152px;
}

.iti__nl {
  --iti-flag-offset: -5184px;
}

.iti__no {
  --iti-flag-offset: -5216px;
}

.iti__np {
  --iti-flag-offset: -5248px;
}

.iti__nr {
  --iti-flag-offset: -5280px;
}

.iti__nu {
  --iti-flag-offset: -5312px;
}

.iti__nz {
  --iti-flag-offset: -5344px;
}

.iti__om {
  --iti-flag-offset: -5376px;
}

.iti__pa {
  --iti-flag-offset: -5408px;
}

.iti__pe {
  --iti-flag-offset: -5440px;
}

.iti__pf {
  --iti-flag-offset: -5472px;
}

.iti__pg {
  --iti-flag-offset: -5504px;
}

.iti__ph {
  --iti-flag-offset: -5536px;
}

.iti__pk {
  --iti-flag-offset: -5568px;
}

.iti__pl {
  --iti-flag-offset: -5600px;
}

.iti__pm {
  --iti-flag-offset: -5632px;
}

.iti__pr {
  --iti-flag-offset: -5664px;
}

.iti__ps {
  --iti-flag-offset: -5696px;
}

.iti__pt {
  --iti-flag-offset: -5728px;
}

.iti__pw {
  --iti-flag-offset: -5760px;
}

.iti__py {
  --iti-flag-offset: -5792px;
}

.iti__qa {
  --iti-flag-offset: -5824px;
}

.iti__re {
  --iti-flag-offset: -5856px;
}

.iti__ro {
  --iti-flag-offset: -5888px;
}

.iti__rs {
  --iti-flag-offset: -5920px;
}

.iti__ru {
  --iti-flag-offset: -5952px;
}

.iti__rw {
  --iti-flag-offset: -5984px;
}

.iti__sa {
  --iti-flag-offset: -6016px;
}

.iti__sb {
  --iti-flag-offset: -6048px;
}

.iti__sc {
  --iti-flag-offset: -6080px;
}

.iti__sd {
  --iti-flag-offset: -6112px;
}

.iti__se {
  --iti-flag-offset: -6144px;
}

.iti__sg {
  --iti-flag-offset: -6176px;
}

.iti__sh {
  --iti-flag-offset: -6208px;
}

.iti__si {
  --iti-flag-offset: -6240px;
}

.iti__sj {
  --iti-flag-offset: -6272px;
}

.iti__sk {
  --iti-flag-offset: -6304px;
}

.iti__sl {
  --iti-flag-offset: -6336px;
}

.iti__sm {
  --iti-flag-offset: -6368px;
}

.iti__sn {
  --iti-flag-offset: -6400px;
}

.iti__so {
  --iti-flag-offset: -6432px;
}

.iti__sr {
  --iti-flag-offset: -6464px;
}

.iti__ss {
  --iti-flag-offset: -6496px;
}

.iti__st {
  --iti-flag-offset: -6528px;
}

.iti__sv {
  --iti-flag-offset: -6560px;
}

.iti__sx {
  --iti-flag-offset: -6592px;
}

.iti__sy {
  --iti-flag-offset: -6624px;
}

.iti__sz {
  --iti-flag-offset: -6656px;
}

.iti__tc {
  --iti-flag-offset: -6688px;
}

.iti__td {
  --iti-flag-offset: -6720px;
}

.iti__tg {
  --iti-flag-offset: -6752px;
}

.iti__th {
  --iti-flag-offset: -6784px;
}

.iti__tj {
  --iti-flag-offset: -6816px;
}

.iti__tk {
  --iti-flag-offset: -6848px;
}

.iti__tl {
  --iti-flag-offset: -6880px;
}

.iti__tm {
  --iti-flag-offset: -6912px;
}

.iti__tn {
  --iti-flag-offset: -6944px;
}

.iti__to {
  --iti-flag-offset: -6976px;
}

.iti__tr {
  --iti-flag-offset: -7008px;
}

.iti__tt {
  --iti-flag-offset: -7040px;
}

.iti__tv {
  --iti-flag-offset: -7072px;
}

.iti__tw {
  --iti-flag-offset: -7104px;
}

.iti__tz {
  --iti-flag-offset: -7136px;
}

.iti__ua {
  --iti-flag-offset: -7168px;
}

.iti__ug {
  --iti-flag-offset: -7200px;
}

.iti__us {
  --iti-flag-offset: -7232px;
}

.iti__uy {
  --iti-flag-offset: -7264px;
}

.iti__uz {
  --iti-flag-offset: -7296px;
}

.iti__va {
  --iti-flag-offset: -7328px;
}

.iti__vc {
  --iti-flag-offset: -7360px;
}

.iti__ve {
  --iti-flag-offset: -7392px;
}

.iti__vg {
  --iti-flag-offset: -7424px;
}

.iti__vi {
  --iti-flag-offset: -7456px;
}

.iti__vn {
  --iti-flag-offset: -7488px;
}

.iti__vu {
  --iti-flag-offset: -7520px;
}

.iti__wf {
  --iti-flag-offset: -7552px;
}

.iti__ws {
  --iti-flag-offset: -7584px;
}

.iti__xk {
  --iti-flag-offset: -7616px;
}

.iti__ye {
  --iti-flag-offset: -7648px;
}

.iti__yt {
  --iti-flag-offset: -7680px;
}

.iti__za {
  --iti-flag-offset: -7712px;
}

.iti__zm {
  --iti-flag-offset: -7744px;
}

.iti__zw {
  --iti-flag-offset: -7776px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
/*-----------------------------
PRELOADER SECTION STARTS
-----------------------------*/
.preloadcss {
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: var(--primary);
}

/*-----------------------------
PRELOADER SECTION ENDS
-----------------------------*/
/*-----------------------------
GENRAL BODY SECTION STARTS
-----------------------------*/
:focus {
  outline: none;
  /* Remove the default focus outline */
}

/* Optional: Add a custom focus style for better accessibility */
:focus-visible {
  outline: none;
  /* Example custom focus style */
  outline-offset: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  opacity: 1;
  transition: 1s opacity;
  font-family: var(--ff-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-p-l);
  background-color: var(--white);
  color: var(--grey);
  line-height: 1.5;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  font-family: var(--ff-primary);
}

main {
  flex-grow: 1;
  min-width: 100%;
}

select option {
  font-family: var(--ff-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
}
a strong,
a b {
  font-weight: var(--fw-bold);
}
a:hover {
  color: var(--red);
}

.default-cursor {
  cursor: default !important;
}

p {
  line-height: 1.5;
}

button {
  cursor: pointer;
}

i,
span,
a {
  display: inline-block;
}

strong,
b {
  font-weight: var(--fw-bold);
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--primary);
  opacity: 0.6;
}

*::placeholder {
  color: var(--primary);
  opacity: 0.6;
}

input::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 0.6;
}

input::-moz-input-placeholder {
  color: var(--primary);
  opacity: 0.6;
}

input::placeholder {
  color: var(--primary);
  opacity: 0.6;
}

body.placeholder {
  color: var(--primary);
  opacity: 0.6;
}
body:-moz-placeholder {
  color: var(--primary);
  opacity: 0.6;
}
body::-moz-placeholder {
  color: var(--primary);
  opacity: 0.6;
}
body::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 0.6;
}

/*-----------------------------
GENRAL BODY SECTION END
-----------------------------*/
/*-----------------------------
GENRAL CSS SECTION STARTS
-----------------------------*/
img {
  width: 100%;
}

.simpleParallax {
  height: 100%;
  width: 100%;
}
.simpleParallax img {
  object-fit: cover;
  height: 100%;
}

.hr {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 40px 0;
  background-color: var(--secondary);
}

.container.allow-extend {
  overflow: visible;
}

.container.allow-extend .row {
  flex-wrap: nowrap;
  --bs-gutter-x: 0;
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.extend-column {
  max-width: unset;
}

.--line-clamp-1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.--line-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.--line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.--line-clamp-4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.--line-clamp-5 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.fancybox__backdrop {
  background-color: rgba(0, 37, 112, 0.9);
}

section,
.general-section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  section,
  .general-section {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  section,
  .general-section {
    padding: 40px 0;
  }
}

.general-section.general-section--img-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--white), 0.9);
  z-index: 1;
}

/*-----------------------------
GENRAL TITLE SECTION STARTS
-----------------------------*/
.title-block {
  text-wrap: balance;
  margin-block-end: 30px;
}
@media (max-width: 991.98px) {
  .title-block {
    margin-block-end: 15px;
  }
}

.title-block-small {
  color: var(--red);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  margin-block-end: 10px;
}

a.title-block-small:hover {
  color: var(--primary);
}

.paragraph-abstract,
.paragraph-abstract p {
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: var(--fw-bold);
  margin-block-end: 30px;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .paragraph-abstract,
  .paragraph-abstract p {
    margin-block-end: 15px;
  }
}

/*-----------------------------
GENRAL TITLE SECTION END
-----------------------------*/
/*-----------------------------
GENRAL STATISTIC SECTION STARTS
-----------------------------*/
.swiper-slide {
  height: auto;
}

.odometer .odometer-digit .odometer-value {
  width: 100%;
}

.statistic {
  text-align: center;
}
.statistic__content-title {
  text-transform: uppercase;
  font-size: var(--fs-p-m);
}
@media (max-width: 1599.98px) {
  .statistic__content-title {
    font-size: var(--fs-p-s);
  }
}
@media (max-width: 575.98px) {
  .statistic__content-title {
    font-size: var(--fs-p-m);
  }
}
.statistic__content-counter {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--primary);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 480px) {
  .statistic__content-counter {
    font-size: 42px;
  }
}
.statistic__content-counter .sign {
  font-size: var(--fs-p-l);
  font-weight: var(--fw-regular);
}

.carousel__nav-pagination {
  display: flex;
  align-items: center;
}
.carousel__nav-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.carousel__nav-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 28px;
  height: 10px;
  border-radius: var(--border-radius-l);
}

.projects-block {
  background: var(--primary);
}

.media-center-block {
  background: #fff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(232, 241, 250) 99%);
  overflow: hidden;
}

/*-----------------------------
GENRAL STATISTIC SECTION END
-----------------------------*/
/*-----------------------------
FANCYBOX SECTION START
-----------------------------*/
html.with-fancybox {
  scroll-behavior: smooth !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: var(--white);
}

/*-----------------------------
FANCYBOX SECTION END
-----------------------------*/
/*-----------------------------
FOOTER SECTION START
-----------------------------*/
footer {
  background: var(--grey);
  color: var(--lightblue);
  font-size: var(--fs-p-s);
}
footer .footer-info {
  display: flex;
}
footer .footer-info li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-p-m);
}
footer .footer-info li .icon-email {
  font-size: 13px;
}
@media (max-width: 1399.98px) {
  footer .footer-info li .icon-email {
    font-size: 11px;
  }
}
@media (max-width: 1199.98px) {
  footer .footer-info li .icon-email {
    font-size: 10px;
  }
}
footer .footer-logo {
  display: flex;
  gap: 30px 50px;
  justify-content: end;
}
@media (max-width: 1199.98px) {
  footer .footer-logo {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  footer .footer-logo {
    flex-wrap: wrap;
  }
}
footer .footer-logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 1199.98px) {
  footer .footer-logo img {
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  footer .footer-logo {
    justify-content: start;
    margin-top: 25px;
  }
}
footer a {
  color: var(--lightblue);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
footer a img {
  opacity: 0.9;
}
footer a:hover {
  opacity: 0.7;
  color: var(--white);
}
footer a:hover img {
  opacity: 1;
}
footer .copyright {
  margin-block-start: 50px;
  padding-block-start: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991.98px) {
  footer .copyright {
    margin-block-start: 30px;
    padding-block-start: 30px;
  }
}
footer .copyright .copy-text {
  text-wrap: balance;
  line-height: 2;
  margin: 0;
}
footer .copyright ul {
  display: flex;
  margin-block-end: 10px;
  gap: 15px;
  align-items: center;
  line-height: 0;
}
footer .copyright ul li {
  display: flex;
  align-items: center;
  line-height: 2;
}
footer .copyright ul li a {
  line-height: 1;
}
footer .copyright ul li:after {
  content: "/";
  padding-inline-start: 15px;
  opacity: 0.5;
}
footer .copyright ul li:last-child:after {
  content: "";
}
@media (max-width: 575.98px) {
  footer .copyright ul li {
    display: inline;
    margin-right: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  footer .copyright ul {
    display: inline-block;
    width: 100%;
  }
}
footer .copyright .social-media li:after {
  content: "";
  padding-inline-start: 0;
}
footer .copyright .social-media li a {
  font-size: var(--fs-p-xl);
}
footer .copyright .boxon {
  height: 16px;
  display: inline;
  width: auto;
  margin-top: -8px;
  padding-inline-start: 5px;
}
footer .copyright .gig-footer {
  height: 55px;
  width: auto;
}
@media (max-width: 575.98px) {
  footer .copyright .gig-footer {
    height: 50px;
  }
}

/*-----------------------------
FOOTER SECTION END
-----------------------------*/
/*-----------------------------
SEARCH SECTION START
-----------------------------*/
.search-popup-block {
  position: relative;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .search-popup-block {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .search-popup-block {
    width: 90%;
  }
}
.search-popup-block button {
  position: absolute;
  right: 1%;
  top: 28%;
  background: transparent;
  box-shadow: none;
  border: 0;
  outline: none;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.search-popup-block button span {
  font-size: var(--fs-h3);
  color: var(--white);
}
@media (max-width: 991.98px) {
  .search-popup-block button span {
    font-size: 20px;
  }
}
.search-popup-block button:hover {
  opacity: 0.8;
}

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 37, 112, 0.9);
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

#search.open {
  opacity: 1;
  z-index: 106;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}

#search input[type=search] {
  width: 100%;
  color: var(--white);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  font-size: var(--fs-h2);
  font-family: var(--ff-primary);
  font-weight: 300;
  outline: none;
  padding: 10px;
  -webkit-appearance: none;
  appearance: none;
}
#search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 991.98px) {
  #search input[type=search] {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  #search input[type=search] {
    font-size: 18px;
  }
}
#search input[type=search]::placeholder {
  color: var(--white);
  opacity: 0.8;
  /* Optional: set opacity (default is 0.5) */
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  opacity: 1;
  font-size: var(--fs-h3);
  color: var(--white);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}

#search .close:hover {
  opacity: 0.5;
  cursor: pointer;
}

/*-----------------------------
SEARCH SECTION END
-----------------------------*/
.bcoms-pagination {
  position: relative;
}
.bcoms-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 5px;
}
@media (max-width: 575.98px) {
  .bcoms-pagination ul {
    flex-wrap: wrap;
    gap: 5px 2px;
  }
}
.bcoms-pagination ul li {
  position: relative;
  height: 50px;
  width: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border-bottom: 1px solid var(--white);
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .bcoms-pagination ul li {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .bcoms-pagination ul li {
    height: 35px;
    width: 35px;
    min-width: 35px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-pagination ul li {
    height: 30px;
    width: 30px;
    min-width: 30px;
  }
}
.bcoms-pagination ul li:hover {
  border-bottom: 1px solid var(--red);
}
.bcoms-pagination ul li.bcoms-pagination__current {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.bcoms-pagination ul li.bcoms-pagination__current:hover {
  border-bottom: 1px solid var(--red);
  color: var(--red);
}
.bcoms-pagination ul li.bcoms-pagination__truncate {
  color: var(--secondary);
}
.bcoms-pagination ul li.bcoms-pagination__next, .bcoms-pagination ul li.bcoms-pagination__prev, .bcoms-pagination ul li.PagedList-skipToLast, .bcoms-pagination ul li.PagedList-skipToFirst {
  background-color: var(--lightblue);
  border-radius: 100%;
  border: none;
}
.bcoms-pagination ul li.bcoms-pagination__next a, .bcoms-pagination ul li.bcoms-pagination__prev a, .bcoms-pagination ul li.PagedList-skipToLast a, .bcoms-pagination ul li.PagedList-skipToFirst a {
  padding: 0;
  color: var(--red);
}
.bcoms-pagination ul li.bcoms-pagination__next:hover, .bcoms-pagination ul li.bcoms-pagination__prev:hover, .bcoms-pagination ul li.PagedList-skipToLast:hover, .bcoms-pagination ul li.PagedList-skipToFirst:hover {
  background-color: var(--primary);
}
.bcoms-pagination ul li.bcoms-pagination__next:hover a, .bcoms-pagination ul li.bcoms-pagination__prev:hover a, .bcoms-pagination ul li.PagedList-skipToLast:hover a, .bcoms-pagination ul li.PagedList-skipToFirst:hover a {
  color: var(--white);
}
.bcoms-pagination ul li a {
  height: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px 2px;
  width: 100%;
  color: var(--secondary);
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .bcoms-pagination ul li a {
    font-size: 13px;
  }
}
.bcoms-pagination ul li a span {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .bcoms-pagination ul li a span {
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-pagination ul li a span {
    font-size: 10px;
  }
}
.bcoms-pagination ul li a:hover {
  color: var(--red);
}
.bcoms-pagination .bcoms-pagination__info {
  text-align: center;
  margin-top: 25px;
}
@media (max-width: 991.98px) {
  .bcoms-pagination .bcoms-pagination__info {
    margin-top: 20px;
  }
}

.sharethis-card {
  color: var(--grey);
  margin-block-end: 20px;
}
@media (max-width: 575.98px) {
  .sharethis-card {
    margin-block-end: 10px;
  }
}

/***************************************************
 * Generated by SVG Artista on 5/22/2025, 11:54:47 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg .themeiconsvg-elem-1 {
  stroke-dashoffset: 1882.4763183594px;
  stroke-dasharray: 1882.4763183594px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .themeiconsvg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .themeiconsvg-elem-2 {
  stroke-dashoffset: 820.4873657227px;
  stroke-dasharray: 820.4873657227px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .themeiconsvg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .themeiconsvg-elem-3 {
  stroke-dashoffset: 1882.4763183594px;
  stroke-dasharray: 1882.4763183594px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .themeiconsvg-elem-3 {
  stroke-dashoffset: 0;
}

svg .themeiconsvg-elem-4 {
  stroke-dashoffset: 820.4873657227px;
  stroke-dasharray: 820.4873657227px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .themeiconsvg-elem-4 {
  stroke-dashoffset: 0;
}

/***************************************************
 * Generated by SVG Artista on 5/25/2025, 6:05:46 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg .themelogosvg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .themelogosvg-elem-1 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.01s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.01s;
}

svg.active .themelogosvg-elem-2 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.02s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.02s;
}

svg.active .themelogosvg-elem-3 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.03s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.03s;
}

svg.active .themelogosvg-elem-4 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.04s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.04s;
}

svg.active .themelogosvg-elem-5 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s;
}

svg.active .themelogosvg-elem-6 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.06s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.06s;
}

svg.active .themelogosvg-elem-7 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.07s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.07s;
}

svg.active .themelogosvg-elem-8 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
}

svg.active .themelogosvg-elem-9 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.09s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.09s;
}

svg.active .themelogosvg-elem-10 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .themelogosvg-elem-11 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.11s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.11s;
}

svg.active .themelogosvg-elem-12 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.12s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.12s;
}

svg.active .themelogosvg-elem-13 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.13s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.13s;
}

svg.active .themelogosvg-elem-14 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.14s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.14s;
}

svg.active .themelogosvg-elem-15 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s;
}

svg.active .themelogosvg-elem-16 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.16s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.16s;
}

svg.active .themelogosvg-elem-17 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.17s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.17s;
}

svg.active .themelogosvg-elem-18 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.18s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.18s;
}

svg.active .themelogosvg-elem-19 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.19s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.19s;
}

svg.active .themelogosvg-elem-20 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-21 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .themelogosvg-elem-21 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-22 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.21s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.21s;
}

svg.active .themelogosvg-elem-22 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-23 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.22s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.22s;
}

svg.active .themelogosvg-elem-23 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-24 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.23s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.23s;
}

svg.active .themelogosvg-elem-24 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-25 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.24s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.24s;
}

svg.active .themelogosvg-elem-25 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s;
}

svg.active .themelogosvg-elem-26 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-27 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.26s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.26s;
}

svg.active .themelogosvg-elem-27 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-28 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.27s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.27s;
}

svg.active .themelogosvg-elem-28 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.28s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.28s;
}

svg.active .themelogosvg-elem-29 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-30 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.29s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.29s;
}

svg.active .themelogosvg-elem-30 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-31 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .themelogosvg-elem-31 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-32 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.31s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.31s;
}

svg.active .themelogosvg-elem-32 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-33 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
}

svg.active .themelogosvg-elem-33 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-34 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.33s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.33s;
}

svg.active .themelogosvg-elem-34 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-35 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.34s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.34s;
}

svg.active .themelogosvg-elem-35 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-36 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s;
}

svg.active .themelogosvg-elem-36 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-37 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.36s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.36s;
}

svg.active .themelogosvg-elem-37 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-38 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.37s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.37s;
}

svg.active .themelogosvg-elem-38 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-39 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.38s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.38s;
}

svg.active .themelogosvg-elem-39 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-40 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.39s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.39s;
}

svg.active .themelogosvg-elem-40 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-41 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .themelogosvg-elem-41 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-42 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.41s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.41s;
}

svg.active .themelogosvg-elem-42 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-43 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.42s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.42s;
}

svg.active .themelogosvg-elem-43 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-44 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.43s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.43s;
}

svg.active .themelogosvg-elem-44 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-45 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
}

svg.active .themelogosvg-elem-45 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-46 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.45s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.45s;
}

svg.active .themelogosvg-elem-46 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-47 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.46s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.46s;
}

svg.active .themelogosvg-elem-47 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-48 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.47s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.47s;
}

svg.active .themelogosvg-elem-48 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-49 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.48s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.48s;
}

svg.active .themelogosvg-elem-49 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-50 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.49s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.49s;
}

svg.active .themelogosvg-elem-50 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-51 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .themelogosvg-elem-51 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-52 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.51s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.51s;
}

svg.active .themelogosvg-elem-52 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-53 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.52s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.52s;
}

svg.active .themelogosvg-elem-53 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-54 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.53s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.53s;
}

svg.active .themelogosvg-elem-54 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-55 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.54s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.54s;
}

svg.active .themelogosvg-elem-55 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-56 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s;
}

svg.active .themelogosvg-elem-56 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-57 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s;
}

svg.active .themelogosvg-elem-57 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-58 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.57s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.57s;
}

svg.active .themelogosvg-elem-58 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-59 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.58s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.58s;
}

svg.active .themelogosvg-elem-59 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-60 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.59s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.59s;
}

svg.active .themelogosvg-elem-60 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-61 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .themelogosvg-elem-61 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-62 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.61s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.61s;
}

svg.active .themelogosvg-elem-62 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-63 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.62s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.62s;
}

svg.active .themelogosvg-elem-63 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-64 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.63s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.63s;
}

svg.active .themelogosvg-elem-64 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-65 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.64s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.64s;
}

svg.active .themelogosvg-elem-65 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-66 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s;
}

svg.active .themelogosvg-elem-66 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-67 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.66s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.66s;
}

svg.active .themelogosvg-elem-67 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-68 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.67s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.67s;
}

svg.active .themelogosvg-elem-68 {
  fill: rgb(36, 48, 107);
}

svg .themelogosvg-elem-69 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s;
}

svg.active .themelogosvg-elem-69 {
  fill: rgb(143, 155, 179);
}

svg .themelogosvg-elem-70 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.69s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.69s;
}

svg.active .themelogosvg-elem-70 {
  fill: rgb(224, 31, 39);
}

svg .themelogosvg-elem-71 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

svg.active .themelogosvg-elem-71 {
  fill: rgb(255, 255, 255);
}

.dropzone .dz-preview .dz-error-message {
  top: 160px;
}
.dropzone .dz-preview .dz-error-message span {
  display: inherit;
}

.sitemap li {
  position: relative;
}

.sitemap_border {
  padding-block-end: 20px;
  padding-block-start: 20px;
  margin-bottom: 0;
}
.sitemap_border:after {
  content: "";
  display: block;
  width: 50%;
  border-bottom: 1px solid #000;
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .sitemap_border:after {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .sitemap_border:after {
    width: 100%;
  }
}

.sub-menu a {
  color: #292929;
  padding-bottom: 20px;
}
.sub-menu a::before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 5px;
  background-color: #292929;
  position: relative;
  border-radius: 10px;
  left: 0;
  top: -4px;
  margin-inline-end: 10px;
}

.sitemap_block {
  padding-block-start: 80px;
}
@media (max-width: 767.98px) {
  .sitemap_block {
    padding-block-start: 50px;
  }
}

.search_results_content {
  padding: 40px 0px;
  position: relative;
}
.search_results_content h2 {
  margin-block-end: 10px;
}
.search_results_content .breadcrumb {
  color: var(--grey);
  margin-block-end: 10px;
  opacity: 0.5;
}
.search_results_content .breadcrumb::after {
  content: "\e90b";
  font-family: icomoon;
  font-size: 12px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
}
.search_results_content .breadcrumb.active::after {
  display: none;
}
.search_results_content .result_link {
  font-weight: var(--fw-bold);
}
.search_results_content .result_link span {
  margin-inline-start: 8px;
  font-size: 12px;
}
.search_results_content:after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
}

.search_results_count {
  color: var(--grey);
}
.search_results_count span {
  color: var(--red);
}

.vh-100 {
  height: 100vh;
}

.error_page {
  display: flex;
  align-items: center;
  height: 75vh;
  justify-content: center;
}
.error_page h5 {
  color: var(--white);
}
.error_page h1 {
  color: var(--white);
  font-weight: var(--fw-bold);
}

.alert {
  width: max-content;
  padding: 24px;
}
.alert .alert_img {
  width: 30px;
  height: 30px;
  margin-inline-end: 10px;
  margin-block-start: 4px;
}
.alert .title {
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
}
.alert .close_btn {
  padding-inline-start: 50px;
}
.alert .close_btn a {
  font-size: 12px;
}
.alert.failed {
  box-shadow: 0 2px 8px 0px rgba(224, 22, 36, 0.15);
}
.alert.failed .title {
  color: #dc3545;
}
.alert.failed p {
  margin-bottom: 0px;
}
.alert.success {
  box-shadow: 0 2px 8px 0px rgba(44, 116, 82, 0.15);
}
.alert.success .title {
  color: #2c7453;
}

/*----------------------------
Sweet Alert Start 
-----------------------------*/
.swal2-title {
  font-size: 32px !important;
  color: var(--primary);
}

.swal2-html-container {
  font-size: 18px !important;
  margin-top: 10px !important;
  color: #292929 !important;
}

.swal2-confirm {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 35px 13px 35px;
  cursor: pointer;
  font-weight: var(--fw-medium);
  font-size: var(--fs-p-m);
  gap: 5px 10px;
  text-decoration: none;
  border-radius: var(--border-radius-xs);
  color: var(--primary);
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  background-color: var(--bg-primary);
  border: 1px solid var(--primary);
  color: var(--primary);
}
.swal2-confirm:hover, .swal2-confirm:focus-visible {
  background-color: var(--primary);
  color: var(--white);
}

/*----------------------------
Sweet Alert End
-----------------------------*/
/*----------------------------
Form Preloader Start
-----------------------------*/
.__pre_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.__pre_logo svg {
  animation-name: textanimatepre;
  animation-duration: 0.7s;
  animation-delay: 2.7s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
  width: 250px;
  height: auto;
}
@media (max-width: 991.98px) {
  .__pre_logo svg {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .__pre_logo svg {
    width: 160px;
  }
}

.before-loading {
  visibility: hidden !important;
  opacity: 0 !important;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#loading {
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: var(--lightgrey);
  top: 0;
  right: 0;
  -moz-transition: all 1.3s ease;
  -webkit-transition: all 1.3s ease;
  -o-transition: all 1.3s ease;
  transition: all 1.3s ease;
  opacity: 1;
}

#loading.loaded:before {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading .loader,
#loading .loader__figure {
  z-index: 1;
}

#loading .loader {
  overflow: visible;
  width: auto;
  height: auto;
  padding: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}

#loading .loader.loaded {
  opacity: 0;
}

.loader-infinite {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  margin-top: 40px;
}
.loader-infinite .item {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
}
.loader-infinite .item.item4 {
  background-color: transparent;
  animation: circle2 2s linear infinite;
}
.loader-infinite .item.item4 .circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  border-radius: 50%;
}
.loader-infinite .item.item4 .circle:before {
  content: "";
  width: 3px;
  height: 8px;
  border-radius: 12px;
  background-color: var(--red);
  position: absolute;
  top: 15px;
  left: 6px;
}
.loader-infinite .item.item4 .circle.circle1 {
  transform: rotate(0);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle1:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle2 {
  transform: rotate(40deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle2:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle3 {
  transform: rotate(80deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle3:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle4 {
  transform: rotate(120deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle4:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle5 {
  transform: rotate(160deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle5:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle6 {
  transform: rotate(200deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle6:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle7 {
  transform: rotate(240deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle7:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle8 {
  transform: rotate(280deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle8:before {
  background-color: var(--red);
}
.loader-infinite .item.item4 .circle.circle9 {
  transform: rotate(320deg);
  opacity: 1;
}
.loader-infinite .item.item4 .circle.circle9:before {
  background-color: var(--red);
}

@keyframes circle0 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.formpreloader {
  position: fixed;
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(217, 217, 217, 0.9);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.formpreloader.active {
  opacity: 1;
  visibility: visible;
  z-index: 1001;
}
.formpreloader .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formpreloader .container .loader-infinite {
  width: 100px;
}

/*----------------------------
Form Preloader End
-----------------------------*/
.sitemap-section {
  columns: 2;
}
@media (max-width: 767.98px) {
  .sitemap-section {
    columns: 1;
  }
}
.sitemap-section > li {
  position: relative;
  overflow: hidden;
}
.sitemap-section > li a h3 {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.sitemap-section > li a h3:hover {
  color: var(--red);
}
.sitemap-section > li a:hover {
  color: var(--red);
}

.section-side-sticky {
  position: relative;
  overflow: inherit;
}
.section-side-sticky .bcoms-side-widget {
  position: sticky;
  top: 130px;
}
@media (max-width: 1199.98px) {
  .section-side-sticky .bcoms-side-widget {
    top: 80px;
  }
}

.removecapta > div {
  display: none;
}
.removecapta > div.mandatory-text {
  display: block;
}

.daterangepicker .drp-buttons .btn {
  color: var(--primary);
}
.daterangepicker .drp-buttons .btn:hover {
  color: var(--white);
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: var(--primary);
  color: var(--white);
}

/*-----------------------------
HEAD SECTION STARTS
-----------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: 100%;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.header.slideDown {
  transform: translateY(0);
}
.header.slideUp {
  transform: translateY(-100%);
}
.header.headroom--not-top {
  background: var(--white);
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.15);
}
.header.headroom--not-top .navigation-section {
  border: 0;
}
.header.headroom--not-top .subsidiary-col {
  opacity: 0;
  visibility: hidden;
}
.header.headroom--not-top .menu nav > ul li a:hover {
  color: var(--primary);
  opacity: 1;
}
.header.headroom--not-top .menu nav > ul li a, .header.headroom--not-top .menu nav > ul li a .sub-arrow::before {
  color: var(--grey);
}
.header.headroom--not-top .head .head__headrow .head__logo img {
  height: 38px;
  min-height: 38px;
}
.header.headroom--not-top .head .head__headrow .head__logo a .general-view.--default {
  opacity: 0;
}
.header.headroom--not-top .head .head__headrow .head__logo a .general-view.--colored {
  opacity: 1;
}
.header.headroom--not-top .head .head__headrow .head__secondary-menu ul li a, .header.headroom--not-top .head .head__headrow .head__secondary-menu .head__lang-switcher span, .header.headroom--not-top .head .head__headrow .head__secondary-menu .head__search-switcher span, .header.headroom--not-top .head .head__headrow .head__secondary-menu .hamburger span {
  color: var(--grey);
}
.header.headroom--not-top .head .head__headrow .head__secondary-menu ul li a:hover, .header.headroom--not-top .head .head__headrow .head__secondary-menu .head__lang-switcher span:hover, .header.headroom--not-top .head .head__headrow .head__secondary-menu .head__search-switcher span:hover, .header.headroom--not-top .head .head__headrow .head__secondary-menu .hamburger span:hover {
  color: var(--primary);
  opacity: 1;
}
.header.headroom--not-top .head .head__headrow .head__secondary-menu .head__lang-switcher:hover, .header.headroom--not-top .head .head__headrow .head__secondary-menu .head__search-switcher:hover, .header.headroom--not-top .head .head__headrow .head__secondary-menu .hamburger:hover {
  opacity: 1;
}

.headroom--top .general-view, .headroom--not-top .general-view {
  display: block;
}
.headroom--top .sticky-view, .headroom--not-top .sticky-view {
  display: none;
}

.head {
  position: relative;
}
.head .head__headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-secondary);
  padding: 20px 0;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 1399.98px) {
  .head .head__headrow {
    padding: 12px 0;
  }
}
@media (max-width: 1199.98px) {
  .head .head__headrow {
    border-bottom: 0px solid var(--border-secondary);
  }
}
@media (max-width: 575.98px) {
  .head .head__headrow {
    padding: 10px 0;
  }
}
.head .head__headrow .head__logo {
  display: flex;
  align-items: center;
  gap: 5px 15px;
}
@media (max-width: 575.98px) {
  .head .head__headrow .head__logo {
    gap: 5px 10px;
  }
}
.head .head__headrow .head__logo a {
  position: relative;
}
.head .head__headrow .head__logo a .general-view {
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.head .head__headrow .head__logo a .general-view.--default {
  display: block;
  opacity: 1;
}
.head .head__headrow .head__logo a .general-view.--colored {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.head .head__headrow .head__logo img {
  width: auto;
  height: 60px;
  min-height: 60px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 1399.98px) {
  .head .head__headrow .head__logo img {
    height: 60px;
    min-height: 60px;
  }
}
@media (max-width: 1199.98px) {
  .head .head__headrow .head__logo img {
    height: 60px;
    min-height: 60px;
  }
}
@media (max-width: 991.98px) {
  .head .head__headrow .head__logo img {
    height: 55px;
    min-height: 55px;
  }
}
@media (max-width: 575.98px) {
  .head .head__headrow .head__logo img {
    height: 46px;
    min-height: 46px;
  }
}
@media (max-width: 480px) {
  .head .head__headrow .head__logo img {
    height: 34px;
    min-height: 34px;
  }
}
.head .head__headrow .head__secondary-menu {
  display: flex;
  align-items: center;
  gap: 5px 20px;
}
@media (max-width: 991.98px) {
  .head .head__headrow .head__secondary-menu {
    gap: 5px 15px;
  }
}
@media (max-width: 575.98px) {
  .head .head__headrow .head__secondary-menu {
    gap: 5px 20px;
  }
}
.head .head__headrow .head__secondary-menu ul {
  display: flex;
  align-items: center;
  gap: 5px 25px;
}
.head .head__headrow .head__secondary-menu ul li {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
}
.head .head__headrow .head__secondary-menu ul li a {
  color: var(--white);
  font-size: var(--fs-p-m);
}
.head .head__headrow .head__secondary-menu ul li a:hover {
  opacity: 0.5;
}
.head .head__headrow .head__secondary-menu ul li::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 0px;
  height: 15px;
  width: 1px;
  background-color: var(--border-secondary);
}
.head .head__headrow .head__secondary-menu ul li:last-child::after {
  display: none;
}
.head .head__headrow .head__secondary-menu .head__lang-switcher {
  color: var(--white);
  font-size: var(--fs-p-s);
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.head .head__headrow .head__secondary-menu .head__lang-switcher span {
  color: var(--white);
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .head .head__headrow .head__secondary-menu .head__lang-switcher span {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .head .head__headrow .head__secondary-menu .head__lang-switcher span {
    font-size: 18px;
  }
}
.head .head__headrow .head__secondary-menu .head__lang-switcher:hover {
  opacity: 0.5;
}
.head .head__headrow .head__secondary-menu .head__search-switcher {
  color: var(--white);
  font-size: var(--fs-p-m);
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  text-decoration: none;
}
.head .head__headrow .head__secondary-menu .head__search-switcher .--close {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.head .head__headrow .head__secondary-menu .head__search-switcher .--active {
  opacity: 1;
}
.head .head__headrow .head__secondary-menu .head__search-switcher.active .--close {
  opacity: 1;
  visibility: visible;
}
.head .head__headrow .head__secondary-menu .head__search-switcher.active .--active {
  opacity: 0;
  visibility: hidden;
}
.head .head__headrow .head__secondary-menu .head__search-switcher span {
  color: var(--white);
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  font-size: 24px;
}
@media (max-width: 1199.98px) {
  .head .head__headrow .head__secondary-menu .head__search-switcher span {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .head .head__headrow .head__secondary-menu .head__search-switcher span {
    font-size: 18px;
  }
}
.head .head__headrow .head__secondary-menu .head__search-switcher:hover {
  opacity: 0.5;
}
.head .head__headrow .head__secondary-menu .hamburger {
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  cursor: pointer;
  font-size: 32px;
  color: var(--white);
}
.head .head__headrow .head__secondary-menu .hamburger .--close {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.head .head__headrow .head__secondary-menu .hamburger .--active {
  opacity: 1;
}
.head .head__headrow .head__secondary-menu .hamburger.active .--close {
  opacity: 1;
  visibility: visible;
}
.head .head__headrow .head__secondary-menu .hamburger.active .--active {
  opacity: 0;
  visibility: hidden;
}
.head .head__headrow .head__secondary-menu .hamburger span {
  color: var(--white);
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .head .head__headrow .head__secondary-menu .hamburger span {
    font-size: 28px;
  }
}
.head .head__headrow .head__secondary-menu .hamburger span:hover {
  opacity: 0.5;
}

.subsidiary {
  height: 35px;
  width: auto;
  margin-block-end: 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}

/*-----------------------------
HEAD SECTION ENDS
-----------------------------*/
/*-----------------------------
MENU SECTION STARTS
-----------------------------*/
.navigation-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1199.98px) {
  .navigation-section {
    border: 0;
  }
}

.navigation-section__secondary {
  margin-top: 10px;
  padding-bottom: 50px;
}
.navigation-section__secondary a {
  font-size: 15px;
  padding: 6px 0;
}

.menuclose {
  position: fixed;
  height: 100dvh;
  width: 100%;
  background: var(--primary);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.menuclose.active {
  opacity: 0.5;
  visibility: visible;
  pointer-events: inherit;
}

.menu {
  position: relative;
}
@media (max-width: 1199.98px) {
  .menu {
    position: fixed;
    width: 400px;
    height: 100dvh;
    z-index: 2;
    right: 0;
    top: 0;
    background: var(--light);
    transform: translateX(100%);
    overflow-y: auto;
  }
  .menu.has-animate {
    -webkit-transition: all 0.5s ease 0s !important;
    -moz-transition: all 0.5s ease 0s !important;
    -ms-transition: all 0.5s ease 0s !important;
    -o-transition: all 0.5s ease 0s !important;
    transition: all 0.5s ease 0s !important;
  }
  .menu.active {
    transform: translateX(0);
    background: var(--white);
  }
  .menu.active .container-fluid {
    padding: 0 35px;
  }
  .menu.active .container-fluid .subsidiary {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .menu {
    width: 430px;
  }
}
@media (max-width: 575.98px) {
  .menu {
    width: 380px;
  }
}
@media (max-width: 480px) {
  .menu {
    width: 95%;
  }
}
@media (max-width: 1199.98px) {
  .menu .container {
    height: 100%;
    padding: 0;
    padding-bottom: 40px;
    overflow-y: scroll;
  }
}
@media (max-width: 1199.98px) {
  .menu .menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .menu .menu__top {
    padding-top: 35px;
  }
}
.menu .menu__logo a img {
  height: 60px;
  min-height: 60px;
}
@media (max-width: 1399.98px) {
  .menu .menu__logo a img {
    height: 45px;
    min-height: 45px;
  }
}
@media (max-width: 480px) {
  .menu .menu__logo a img {
    height: 30px;
    min-height: 30px;
  }
}
.menu .menu__switchers {
  align-items: center;
  gap: 10px;
}
.menu .menu__switchers .head__lang-switcher {
  font-family: var(--ff-secondary);
  font-weight: 500;
  font-size: var(--fs-p-m);
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.menu .menu__switchers .head__lang-switcher i {
  color: var(--tertiary);
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .menu .menu__switchers .head__lang-switcher i {
    font-size: 18px;
  }
}
.menu .menu__switchers .head__lang-switcher:hover {
  color: var(--accent);
}
.menu .menu__switchers .head__lang-switcher:hover span {
  color: var(--accent);
}
.menu .menu__close {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  right: 30px;
  top: 30px;
}
.menu .menu__close span {
  color: var(--grey);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .menu .menu__close span {
    font-size: 22px;
  }
}
.menu .menu__close span:hover {
  color: var(--accent);
}
.menu .menu__secondary-menu-list {
  padding: 25px 15px;
}
.menu .menu__secondary-menu-list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
}
@media (max-width: 767.98px) {
  .menu .menu__secondary-menu-list ul {
    gap: 15px 20px;
  }
}
.menu .menu__secondary-menu-list ul li {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
}
.menu .menu__secondary-menu-list ul li a {
  color: var(--bg-brand);
  font-size: var(--fs-p-s);
  text-decoration: underline;
}
.menu .menu__secondary-menu-list ul li a:hover {
  color: var(--accent);
}
.menu .menu__secondary-menu-list ul li::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 0px;
  height: 15px;
  width: 1px;
  background-color: var(--border-secondary);
}
@media (max-width: 767.98px) {
  .menu .menu__secondary-menu-list ul li::after {
    height: 13px;
    right: -10px;
  }
}
.menu .menu__secondary-menu-list ul li:last-child::after {
  display: none;
}
.menu nav > ul {
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
}
@media (max-width: 1399.98px) {
  .menu nav > ul {
    gap: 0 0px;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul {
    align-items: start;
    flex-wrap: wrap;
  }
}
.menu nav > ul a {
  text-decoration: none;
}
.menu nav > ul dt {
  border-bottom: 1px solid var(--border-secondary);
}
.menu nav > ul > li a.highlighted, .menu nav > ul > li a:focus-visible {
  background-color: var(--bg-secondary);
}
@media (max-width: 1199.98px) {
  .menu nav > ul > li > ul > li > ul {
    padding-inline-start: 0px !important;
    padding-inline-end: 0px !important;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul > li > ul > li > ul > li {
    padding-inline-start: 10px;
    border-left: 2px solid var(--border-secondary) !important;
    border-bottom: 0px solid var(--border-tertiary) !important;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul > li > ul > li > ul > li:hover {
    border-left: 2px solid var(--accent) !important;
  }
}
.menu nav > ul li {
  position: relative;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li {
    width: 100%;
    border-bottom: 1px solid var(--border-tertiary);
  }
}
.menu nav > ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 100%;
}
.menu nav > ul li a .sub-arrow {
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li a .sub-arrow {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
}
.menu nav > ul li a .sub-arrow:before {
  content: "\e909";
  font-family: "icomoon" !important;
  font-size: 6px;
  color: var(--white);
}
@media (max-width: 1199.98px) {
  .menu nav > ul li a .sub-arrow:before {
    right: 0px;
    position: absolute;
    color: var(--grey);
  }
}
.menu nav > ul li > ul {
  top: 51px !important;
  left: 0;
  min-width: 300px !important;
  background-color: var(--white);
  box-shadow: 0 5px 8px 0px rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul {
    min-width: 100% !important;
    box-shadow: none;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-block-start: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }
}
.menu nav > ul li > ul li {
  border-bottom: 1px solid var(--lightgrey);
  padding: 0px 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li {
    padding: 0px 0px;
  }
}
.menu nav > ul li > ul li:last-child {
  border-bottom: 0px solid var(--border-secondary);
}
.menu nav > ul li > ul li:hover {
  color: var(--primary);
  background-color: var(--lightblue);
}
.menu nav > ul li > ul li a {
  padding: 12px 0px;
  font-size: 16px;
  font-weight: var(--fw-regular);
  justify-content: space-between;
  color: var(--grey);
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a {
    padding: 10px 0px;
    font-weight: var(--fw-semibold);
    color: var(--grey);
  }
}
@media (max-width: 767.98px) {
  .menu nav > ul li > ul li a {
    font-size: 15px;
  }
}
.menu nav > ul li > ul li a:hover {
  padding-inline-start: 9px;
  padding-inline-end: 10px;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a:hover {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
    background: transparent;
    color: var(--primary);
    opacity: 0.7;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a.highlighted .sub-arrow:before {
    transform: scaleY(-1);
  }
}
.menu nav > ul li > ul li a .sub-arrow {
  transform: rotate(-90deg);
  right: 5px;
  position: absolute;
  top: 8px;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a .sub-arrow {
    top: 0px;
  }
}
.menu nav > ul li > ul li a .sub-arrow::before {
  content: "";
}
.menu nav > ul li > ul li a .sub-arrow::before {
  content: "\e909";
  font-family: "icomoon" !important;
  font-size: 6px;
  color: var(--primary);
  padding-top: 15px;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a .sub-arrow::before {
    color: var(--grey);
    position: absolute;
    right: 0;
    top: 14px;
    padding: 0;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a .sub-arrow {
    transform: none;
    padding: 0;
    color: var(--white);
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li a .sub-arrow.dropdown-open:before {
    content: "\e32a";
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul li li a {
    font-weight: var(--fw-regular);
  }
}
.menu nav > ul li > ul ul {
  top: -10px;
  left: 30px !important;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li > ul ul {
    top: auto;
    left: 0;
    padding: 10px 10px;
    padding-block-start: 0;
  }
}
.menu nav > ul li a {
  color: var(--white);
  font-size: var(--fs-p-l);
  font-weight: var(--fw-regular);
  padding: 10px 20px 10px 0;
}
@media (max-width: 1399.98px) {
  .menu nav > ul li a {
    font-size: var(--fs-p-l);
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li a {
    padding: 15px 20px 15px 0;
    display: block;
    font-weight: var(--fw-bold);
    color: var(--grey);
  }
}
@media (max-width: 767.98px) {
  .menu nav > ul li a {
    font-size: 17px;
  }
}
@media (max-width: 575.98px) {
  .menu nav > ul li a {
    padding: 10px 20px 10px 0;
  }
}
.menu nav > ul li:hover > a {
  opacity: 0.5;
}
.menu nav > ul li.megamenu {
  position: initial;
}
.menu nav > ul li.megamenu > ul {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  margin: 0 !important;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li.megamenu > ul {
    padding: 15px;
    padding-block-start: 0;
  }
}
.menu nav > ul li.megamenu > ul li {
  width: 100%;
}
.menu nav > ul li.megamenu > ul li .menu__megamenu-title {
  font-size: var(--fs-p-l);
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li.megamenu > ul li ul {
    padding: 0;
  }
}
@media (max-width: 1199.98px) {
  .menu nav > ul li.megamenu > ul li ul li:last-child {
    border-bottom: 1px solid var(--border-secondary);
  }
}
.menu nav > ul li.megamenu > ul li ul li a {
  padding: 10px 10px 10px 0px;
}
.menu nav > ul li.megamenu > ul li ul li a:hover {
  padding-inline-start: 5px;
  padding-inline-end: 5px;
}
@media (max-width: 1199.98px) {
  .menu nav > ul li.megamenu > ul li ul li a:hover {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
  }
}
.menu nav > ul li.megamenu > ul .menu__megamenu-img {
  height: 100%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.menu nav > ul li.megamenu > ul .menu__megamenu-img img {
  height: 100%;
  object-fit: cover;
}
.menu nav > ul li.megamenu > ul .menu__megamenu--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0 50px;
}
@media (max-width: 767.98px) {
  .menu nav > ul li.megamenu > ul .menu__megamenu--two-col {
    grid-template-columns: 1fr;
    gap: 0 30px;
  }
}

/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li, .sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
  box-sizing: inherit;
}

@media (min-width: 1200px) {
  .sm ul {
    position: absolute;
  }
}
/*-----------------------------
MENU SECTION ENDS
-----------------------------*/
.fullwidthslider {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .fullwidthslider {
    height: 70dvh;
    min-height: 500px;
  }
}
.fullwidthslider .swiper {
  height: 100%;
}
@media (max-width: 767.98px) {
  .fullwidthslider .theme__pagination.align-bottom {
    bottom: 10px;
  }
}
.fullwidthslider .fullwidthslider__swiper .swiper-slide {
  background-color: var(--primary);
}
.fullwidthslider .swiper-slide .fullwidthslider__video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fullwidthslider .swiper-slide .fullwidthslider__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 65%);
}
.fullwidthslider .swiper-slide .fullwidthslider__video:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 48%);
}
.fullwidthslider .swiper-slide .fullwidthslider__video .fullwidthslider__video-local {
  height: 100%;
  width: 100%;
}
.fullwidthslider .swiper-slide .fullwidthslider__video .fullwidthslider__video-local video {
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fullwidthslider .swiper-slide .fullwidthslider__video img {
  height: 100%;
  object-fit: cover;
}
.fullwidthslider .swiper-slide .fullwidthslider__img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fullwidthslider .swiper-slide .fullwidthslider__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 65%);
}
.fullwidthslider .swiper-slide .fullwidthslider__img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 48%);
}
.fullwidthslider .swiper-slide .fullwidthslider__img img {
  height: 100%;
  object-fit: cover;
}
.fullwidthslider .fullwidthslider__content {
  padding: 65px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .fullwidthslider .fullwidthslider__content {
    padding: 100px 0;
  }
}
.fullwidthslider .fullwidthslider__content h1 {
  position: relative;
  margin-block-end: 22px;
  color: var(--white);
  font-weight: var(--fw-regular);
}
.fullwidthslider .fullwidthslider__content p {
  color: var(--lightblue);
  font-size: var(--fs-p-l);
  margin-block-end: 20px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
}
.fullwidthslider .homebanner-foot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.fullwidthslider .homebanner-foot .logos-thumb {
  color: var(--white);
  display: flex;
  gap: 15px;
  align-items: center;
}
.fullwidthslider .homebanner-foot .logos-thumb span {
  font-size: var(--fs-h4);
}
.fullwidthslider .homebanner-foot .logos-thumb .thegroup-title {
  text-transform: uppercase;
  font-size: var(--fs-p-xl);
}
@media (max-width: 480px) {
  .fullwidthslider .homebanner-foot .logos-thumb .thegroup-title {
    font-size: var(--fs-p-l);
  }
}
.fullwidthslider .homebanner-foot .swiper-slide {
  opacity: 0.5;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.fullwidthslider .homebanner-foot .swiper-slide-thumb-active {
  opacity: 1;
}

.searchslider {
  position: relative;
  overflow: hidden;
}
.searchslider .searchslider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.searchslider .searchslider__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.searchslider .searchslider__img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5004202365) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  opacity: 0.2;
}
.searchslider .searchslider__img img {
  object-fit: cover;
  height: 100%;
}
.searchslider .searchslider__content {
  margin: 12% auto;
  position: relative;
  z-index: 1;
  max-width: 72%;
  background: rgba(var(--bh-bg-primary-rgba), 0.9);
  border-radius: var(--bh-border-radius-xs);
  padding: 30px;
  padding-block-end: 40px;
}
@media (max-width: 1199.98px) {
  .searchslider .searchslider__content {
    max-width: 85%;
  }
}
@media (max-width: 991.98px) {
  .searchslider .searchslider__content {
    max-width: 100%;
    margin: 100px auto;
  }
}
@media (max-width: 575.98px) {
  .searchslider .searchslider__content {
    padding: 25px 15px;
  }
}
.searchslider .searchslider__content h2 {
  font-weight: var(--bh-fw-bold);
  color: var(--bh-primary);
  margin-bottom: 10px;
}
.searchslider .searchslider__content p {
  font-size: var(--bh-fs-p-s);
  color: var(--bh-secondary);
  margin-bottom: 10px;
}
.searchslider .searchslider__content ul {
  display: flex;
  align-items: center;
  gap: 5px 15px;
  flex-wrap: wrap;
}
.searchslider .searchslider__content ul li a {
  font-size: var(--bh-fs-p-m);
  font-weight: var(--bh-fw-bold);
  color: var(--bh-brand);
  text-decoration: underline;
  padding: 3px 0;
}
.searchslider .searchslider__content ul li a:hover {
  color: var(--bh-accent);
}
@media (max-width: 767.98px) {
  .searchslider .searchslider__content .btn {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .searchslider .searchslider__content .btn {
    width: 100%;
  }
}

.page-banner-block {
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  max-height: 560px;
}
@media (max-width: 1399.98px) {
  .page-banner-block {
    min-height: 380px;
    max-height: 420px;
  }
}
@media (max-width: 1199.98px) {
  .page-banner-block {
    min-height: 330px;
    max-height: 330px;
  }
}
@media (max-width: 767.98px) {
  .page-banner-block {
    min-height: 280px;
    max-height: 280px;
  }
}
.page-banner-block .page-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-banner-block .page-banner-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 0;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  opacity: 0.8;
  z-index: 1;
}
.page-banner-block .page-banner-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 0;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  opacity: 1;
  z-index: 1;
}
.page-banner-block .page-banner-block__container {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
}
.page-banner-block .page-banner-block__container .page-banner-block__content {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content {
    margin-bottom: 20px;
  }
}
.page-banner-block .page-banner-block__container .page-banner-block__content h1 {
  font-size: var(--fs-h1);
  color: var(--white);
  font-weight: var(--fw-regular);
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content h1 {
    margin-bottom: 5px;
  }
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 25px;
}
@media (max-width: 575.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group {
    gap: 2px 20px;
  }
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li {
  position: relative;
  color: var(--white);
  font-size: var(--fs-p-l);
}
@media (max-width: 575.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li {
    font-size: 12px;
  }
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li a {
  color: var(--white);
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:last-child:after {
  display: none;
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
  content: "";
  right: -13px;
  top: 8px;
  position: absolute;
  height: 13px;
  width: 1px;
  background: var(--white);
  transform: skewX(-20deg);
}
@media (max-width: 1599.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
    height: 12px;
    top: 6px;
  }
}
@media (max-width: 1399.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
    height: 13px;
  }
}
@media (max-width: 1199.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
    height: 12px;
  }
}
@media (max-width: 767.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
    right: -13px;
    height: 13px;
    top: 5px;
  }
}
@media (max-width: 575.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li:after {
    height: 10px;
    top: 4px;
  }
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group li.bcoms-breadcrumb__item-last {
  font-weight: var(--fw-bold);
}
.page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group a {
  display: flex;
  align-items: center;
  color: var(--lightgrey);
  font-size: var(--fs-p-l);
}
@media (max-width: 575.98px) {
  .page-banner-block .page-banner-block__container .page-banner-block__content .bcoms-breadcrumb__group a {
    font-size: 12px;
  }
}

.solid-gradient-section {
  position: relative;
}
.solid-gradient-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--white);
}
@media (max-width: 1399.98px) {
  .solid-gradient-section::before {
    height: 170px;
  }
}
@media (max-width: 1199.98px) {
  .solid-gradient-section::before {
    height: 150px;
  }
}
@media (max-width: 991.98px) {
  .solid-gradient-section::before {
    height: 120px;
  }
}
@media (max-width: 767.98px) {
  .solid-gradient-section::before {
    height: 100px;
  }
}

.aspect-ratio-5 {
  aspect-ratio: 16/5;
}
@media (max-width: 1399.98px) {
  .aspect-ratio-5 {
    aspect-ratio: 16/6;
  }
}
@media (max-width: 991.98px) {
  .aspect-ratio-5 {
    aspect-ratio: 16/7;
  }
}
@media (max-width: 767.98px) {
  .aspect-ratio-5 {
    aspect-ratio: 16/10;
  }
}

.image-block-fullwidth {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-l);
}
.image-block-fullwidth .general-carousel__slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bcoms-content-block__list, .bcoms-content-block ul {
  position: relative;
}
.bcoms-content-block__list li, .bcoms-content-block ul li {
  overflow: hidden;
  position: relative;
  padding-inline-start: 21px;
  margin: 15px 0;
}
.bcoms-content-block__list li::before, .bcoms-content-block ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0px;
  height: 8px;
  width: 8px;
  background: var(--lightgrey);
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .bcoms-content-block__list li::before, .bcoms-content-block ul li::before {
    top: 7px;
    height: 7px;
    width: 7px;
  }
}

.logo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-l);
  background: var(--lightblue);
  padding: 30px;
  height: 100%;
  align-items: start;
  flex-wrap: wrap;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .logo-card {
    padding: 20px;
  }
}
.logo-card .logo-card__title {
  padding-top: 25px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.logo-card .logo-card__title h4 {
  margin: 0;
}
.logo-card .logo-card__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.logo-card .logo-card__img img {
  max-width: 220px;
  max-height: 130px;
  width: auto;
  height: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .logo-card .logo-card__img img {
    max-height: 100px;
  }
}
.logo-card:hover .logo-card__img img {
  transform: scale(1.05);
}
.filter-wrapper {
  position: relative;
}

.daterangepicker .btn {
  background: transparent;
}

.dropzone-form-group.lightblue .dropzone {
  background-color: var(--lightblue);
}

.dropzone {
  background-color: var(--white);
  border: 2px dashed transparent;
  border-radius: var(--border-radius-l);
  padding: 30px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  text-align: center;
}
@media (max-width: 991.98px) {
  .dropzone {
    padding: 20px;
  }
}
.dropzone .dz-message {
  font-size: var(--fs-p-m);
  color: var(--secondary);
}
.dropzone .dz-message span {
  font-size: 40px;
  color: var(--secondary);
  padding-block-end: 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.dropzone .dz-message p {
  margin: 0;
}
.dropzone .dz-preview .dz-remove {
  background: var(--primary);
  width: 100%;
  color: var(--white);
  border-radius: 4px;
  padding: 2px;
  margin-top: 10px;
  font-size: 12px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.dropzone .dz-preview .dz-remove:hover {
  background-color: var(--red);
  color: var(--white);
}
.dropzone:hover {
  border: 2px dashed var(--lightgrey);
}
.dropzone:hover .dz-message span {
  color: var(--primary);
}

.form-group__file {
  position: relative;
  background-color: var(--lightblue);
  border: 2px dashed transparent;
  border-radius: var(--border-radius-l);
  padding: 20px;
}
.form-group__file .form-group__file-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px 13px 25px;
  cursor: pointer;
  font-weight: var(--fw-medium);
  font-size: var(--fs-p-m);
  text-decoration: none;
  border-radius: var(--border-radius-xs);
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.form-group__file .form-group__file-input .icon-upload {
  padding-inline-start: 8px;
}
.form-group__file .form-group__file-input input {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-group__file .form-group__file-input:has(input:focus-visible) {
  box-shadow: 0 0px 0px 3px var(--focus);
}
.form-group__file .form-group__file-input:hover {
  background-color: var(--primary);
  color: var(--white);
}
.form-group__file .form-group__file-required {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
  padding-top: 10px;
}
.form-group__file .form-group__file-required div {
  font-size: var(--fs-p-m);
  color: var(--secondary);
}
.form-group__file .form-group__file-selected {
  position: relative;
}
.form-group__file .form-group__file-selected .form-group__selected-files-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  border-radius: 5px;
  padding: 8px;
  margin-top: 10px;
  padding-inline-end: 50px;
  border: 2px dashed var(--lightgrey);
  font-size: 12px;
}
.form-group__file .form-group__file-selected .form-group__selected-files-items .form-group__selected-files-items-title {
  font-size: var(--fs-p-s);
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-decoration: underline;
}
.form-group__file .form-group__file-selected .form-group__selected-files-items .form-group__selected-files-items-size {
  color: var(--darkgrey);
  padding-inline-start: 5px;
  font-weight: var(--fw-regular);
}
.form-group__file .form-group__file-selected .form-group__selected-files-items .close-btn {
  position: absolute;
  right: 15px;
  color: var(--primary);
  background: transparent;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.form-group__file .form-group__file-selected .form-group__selected-files-items .close-btn:hover {
  color: var(--red);
}

.govbh-form-control__validation-message {
  font-size: 12px;
  color: var(--red);
  margin-top: 5px;
}

.form-label {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
}
.form-label span {
  color: var(--red);
  padding-inline-start: 5px;
}

.form-check {
  position: relative;
}
.form-check .error-lable {
  position: absolute;
  bottom: -22px;
  font-size: 12px;
  right: 0;
  color: var(--red);
}

.upload-feild-block {
  position: relative;
}
.upload-feild-block .error-lable {
  position: absolute;
  bottom: -22px;
  font-size: 12px;
  right: 0;
  color: var(--red);
  padding-inline-end: calc(var(--bs-gutter-x) * 0.5);
}

.form-group {
  position: relative;
  border-bottom: 1px solid var(--secondary);
}
.form-group.error {
  border-color: var(--red);
}
.form-group .error-lable {
  position: absolute;
  bottom: -22px;
  font-size: 12px;
  right: 0;
  color: var(--red);
}
.form-group.form-control--sort .select2 .selection .select2-selection__arrow::after {
  content: "\e925";
  font-size: 18px;
  top: 10px;
}
@media (max-width: 767.98px) {
  .form-group.form-control--sort .select2 .selection .select2-selection__arrow::after {
    font-size: 15px;
    top: 14px;
  }
}
.form-group.form-group--left-icon .form-control {
  padding-inline-end: 50px;
}
.form-group.form-group--left-icon button, .form-group.form-group--left-icon .form-floating__ico {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--secondary);
  box-shadow: none;
  border: none;
  height: 100%;
  padding: 10px;
  padding-inline-end: 0;
  background: none;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  display: flex;
  align-items: center;
}
.form-group.form-group--left-icon button span, .form-group.form-group--left-icon .form-floating__ico span {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .form-group.form-group--left-icon button span, .form-group.form-group--left-icon .form-floating__ico span {
    font-size: 16px;
  }
}
.form-group.form-group--left-icon button:hover, .form-group.form-group--left-icon .form-floating__ico:hover {
  color: var(--primary);
}
.form-group .form-control {
  color: var(--primary);
  position: relative;
  padding: 0;
  border: 0px;
  background: transparent;
  border-radius: 0;
  width: 100%;
  min-width: 150px;
  height: 52px;
  min-height: auto;
  font-size: var(--fs-p-l);
  line-height: 1.2;
  font-weight: var(--fw-regular);
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.form-group .form-control.placeholder {
  color: var(--secondary);
  opacity: 0.8;
}
.form-group .form-control:-moz-placeholder {
  color: var(--secondary);
  opacity: 0.8;
}
.form-group .form-control::-moz-placeholder {
  color: var(--secondary);
  opacity: 0.8;
}
.form-group .form-control::-webkit-input-placeholder {
  color: var(--secondary);
  opacity: 0.8;
}
.form-group .form-control.form-textarea {
  height: 180px;
}
.form-group.form-check {
  border: 0px;
}

.form-check {
  margin: 0;
  padding: 0;
}
.form-check.error .form-check__group {
  border-bottom: 1px solid var(--red);
}
.form-check .form-toggle__label-text {
  color: var(--secondary);
  margin-bottom: 10px;
}
.form-check .form-check__group {
  padding: 10px 0px;
  border-bottom: 1px solid var(--secondary);
}
.form-check .form-check__group.form-check__group--horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px 20px;
}
.form-check .form-check__group.govbh-form-control--invalid {
  border-color: var(--bh-error-star);
}
.form-check .form-check__group.govbh-form-control--invalid ~ .govbh-form-control__validation-message {
  color: var(--bh-error-star);
}
.form-check .form-check__group.govbh-form-control--success {
  border-color: var(--bh-success-content);
}
.form-check .form-check__group.govbh-form-control--success ~ .govbh-form-control__validation-message {
  color: var(--bh-success-content);
}
.form-check .form-check__group.govbh-form-control--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form-check .form-check__group .form-check__item {
  display: flex;
  align-items: center;
  gap: 0px;
}
.form-check .form-check__group .form-check__item input[type=checkbox] {
  cursor: pointer;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--secondary);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  position: relative;
}
@media (max-width: 1199.98px) {
  .form-check .form-check__group .form-check__item input[type=checkbox] {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }
}
.form-check .form-check__group .form-check__item input[type=checkbox]:after {
  transform: scale(0);
  content: "\e928";
  font-family: icomoon;
  font-size: 15px;
  color: var(--white);
  position: absolute;
  top: 0px;
  left: 0;
  min-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .form-check .form-check__group .form-check__item input[type=checkbox]:after {
    font-size: 11px;
  }
}
.form-check .form-check__group .form-check__item input[type=checkbox]:checked {
  background: var(--primary);
  border: 0px solid var(--primary);
}
.form-check .form-check__group .form-check__item input[type=checkbox]:checked:after {
  transform: scale(1);
}
.form-check .form-check__group .form-check__item input[type=checkbox]:checked + label {
  color: var(--primary);
}
.form-check .form-check__group .form-check__item input[type=checkbox]:checked + label:after {
  transform: scale(1);
}
.form-check .form-check__group .form-check__item input[type=checkbox] + label {
  padding: 0px;
  margin: 4px 0;
  padding-inline-start: 5px;
  position: relative;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  color: var(--secondary);
  cursor: pointer;
}
.form-check .form-check__group .form-check__item input[type=checkbox] + label:hover {
  color: var(--primary);
}
.form-check .form-check__group .form-check__item input[type=radio] {
  cursor: pointer;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  position: relative;
}
@media (max-width: 1199.98px) {
  .form-check .form-check__group .form-check__item input[type=radio] {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }
}
.form-check .form-check__group .form-check__item input[type=radio]:after {
  transform: scale(0);
  content: "\e929";
  font-family: icomoon;
  font-size: 10px;
  color: var(--white);
  position: absolute;
  top: 0px;
  left: 0;
  min-width: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .form-check .form-check__group .form-check__item input[type=radio]:after {
    font-size: 8px;
  }
}
.form-check .form-check__group .form-check__item input[type=radio]:checked {
  background: var(--primary);
  border: 0px solid var(--primary);
}
.form-check .form-check__group .form-check__item input[type=radio]:checked:after {
  transform: scale(1);
}
.form-check .form-check__group .form-check__item input[type=radio]:checked + label {
  color: var(--primary);
}
.form-check .form-check__group .form-check__item input[type=radio]:checked + label:after {
  transform: scale(1);
}
.form-check .form-check__group .form-check__item input[type=radio] + label {
  padding: 0px;
  margin: 4px 0;
  padding-inline-start: 5px;
  position: relative;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  color: var(--secondary);
  cursor: pointer;
}
.form-check .form-check__group .form-check__item input[type=radio] + label:hover {
  color: var(--primary);
}

.select2-hidden-accessible {
  display: none;
}

.select2 {
  width: 100% !important;
  height: 100%;
}
.select2.select2-container--open .selection .select2-selection__arrow:after {
  transform: scaleY(-1);
}
.select2 .selection {
  width: 100%;
  height: 52px;
}
.select2 .selection .select2-selection {
  width: 100%;
  height: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.select2 .selection .select2-selection .select2-selection__rendered {
  padding: 0;
  color: var(--secondary);
  font-size: var(--fs-p-l);
}
.select2 .selection .select2-selection__arrow b {
  display: none;
}
.select2 .selection .select2-selection__arrow:after {
  content: "\e905";
  font-family: icomoon;
  position: absolute;
  right: 0px;
  top: 17px;
  font-size: 10px;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 1199.98px) {
  .select2 .selection .select2-selection__arrow:after {
    font-size: 9px;
  }
}
@media (max-width: 767.98px) {
  .select2 .selection .select2-selection__arrow:after {
    font-size: 7px;
    top: 19px;
  }
}
.select2:focus .select2-selection {
  border: none;
  border-bottom: 1px solid var(--secondary);
}

.select2-container {
  z-index: 3;
}
.select2-container .select2-dropdown {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  padding: 0px 0;
  border-radius: 0;
}
.select2-container .select2-dropdown .select2-search {
  width: 100%;
}
.select2-container .select2-dropdown .select2-search .select2-search__field {
  width: 100%;
  height: 45px;
  border: 0px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  padding: 10px 20px;
  font-size: 17px;
}
.select2-container .select2-dropdown .select2-results {
  width: 100%;
  padding: 10px 0;
}
.select2-container .select2-dropdown .select2-results ul li {
  padding: 6px 15px;
  color: var(--secondary);
  font-size: var(--fs-p-l);
  font-weight: var(--fw-regular);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.select2-container .select2-dropdown .select2-results ul li.select2-results__option--highlighted, .select2-container .select2-dropdown .select2-results ul li.select2-results__option--selected {
  background-color: transparent;
}
.select2-container .select2-dropdown .select2-results ul li:hover {
  color: var(--primary);
  background-color: transparent;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-inline-start: 20px;
  padding-inline-end: 10px;
}

.redbtn {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 100%;
  border: 0px;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .redbtn {
    height: 35px;
    width: 35px;
    min-width: 35px;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .redbtn {
    height: 40px;
    width: 100%;
    border-radius: 5px;
  }
}
.redbtn:hover {
  background: var(--primary);
}

.filter-result {
  color: var(--secondary);
  font-size: var(--fs-p-l);
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .filter-result {
    margin-top: 20px;
  }
}

.mandatory-text {
  color: var(--secondary);
}
.mandatory-text p {
  margin: 0;
  font-size: 14px;
}
.mandatory-text span {
  color: var(--red);
}
.mandatory-text a {
  color: var(--red);
}
.mandatory-text a:hover {
  color: var(--primary);
}

.tabs__head-tabs-wrapper {
  position: relative;
  overflow: hidden;
}

.tabs__head-tabs {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.tabs__head-tabs .tabs__list {
  margin: 2px;
}
.tabs__head-tabs .tabs__list button {
  padding: 10px 20px;
  font-size: 16px;
  color: var(--secondary);
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .tabs__head-tabs .tabs__list button {
    padding: 10px 15px;
  }
}
.tabs__head-tabs .tabs__list button span {
  font-size: 0px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.tabs__head-tabs .tabs__list button:hover {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.tabs__head-tabs .tabs__list button.active {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.tabs__head-tabs .tabs__list button.active span {
  font-size: 16px;
}
@media (max-width: 575.98px) {
  .tabs__head-tabs .tabs__list button.active span {
    font-size: 14px;
  }
}

.bcoms-blockquote {
  position: relative;
  overflow: hidden;
  max-width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
@media (max-width: 1399.98px) {
  .bcoms-blockquote {
    max-width: 90%;
  }
}
@media (max-width: 991.98px) {
  .bcoms-blockquote {
    max-width: 100%;
  }
}
.bcoms-blockquote .bcoms-blockquote__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}
.bcoms-blockquote .bcoms-blockquote__icon span {
  font-size: 30px;
  color: var(--secondary);
  background: var(--white);
  z-index: 1;
  position: relative;
  padding-inline-end: 20px;
}
@media (max-width: 767.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon span {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon span {
    padding-inline-end: 10px;
  }
}
.bcoms-blockquote .bcoms-blockquote__icon:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary);
  opacity: 0.25;
}
@media (max-width: 767.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon:before {
    top: 12px;
  }
}
.bcoms-blockquote .bcoms-blockquote__icon--bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
.bcoms-blockquote .bcoms-blockquote__icon--bottom span {
  font-size: 30px;
  color: var(--secondary);
  background: var(--white);
  z-index: 1;
  position: relative;
  padding-inline-start: 20px;
}
@media (max-width: 767.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon--bottom span {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon--bottom span {
    padding-inline-start: 10px;
  }
}
.bcoms-blockquote .bcoms-blockquote__icon--bottom:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary);
  opacity: 0.25;
}
@media (max-width: 767.98px) {
  .bcoms-blockquote .bcoms-blockquote__icon--bottom:before {
    top: 12px;
  }
}
.bcoms-blockquote .bcoms-blockquote__content {
  position: relative;
  padding: 20px 0;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .bcoms-blockquote .bcoms-blockquote__content {
    max-width: 90%;
  }
}
.bcoms-blockquote .bcoms-blockquote__content p {
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin: 0;
}

.clippath-block {
  position: relative;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  margin: 60px 0 30px;
}
@media (max-width: 1199.98px) {
  .clippath-block {
    margin: 45px 0 30px;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 575.98px) {
  .clippath-block {
    gap: 20px;
    margin: 30px 0 0px;
  }
}
.clippath-block .clippath-block__col {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: var(--white);
  min-width: 54.5%;
  width: 54.5%;
}
@media (max-width: 1199.98px) {
  .clippath-block .clippath-block__col {
    min-width: 100%;
    width: 100%;
  }
}
.clippath-block .clippath-block__col.clippath-block__col--left {
  clip-path: polygon(0 0, 100% 0%, 77% 100%, 0 100%);
  border-top-left-radius: var(--border-radius-l);
  border-bottom-left-radius: var(--border-radius-l);
  padding: 70px;
  margin-top: 70px;
}
@media (max-width: 1599.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--left {
    padding: 45px;
  }
}
@media (max-width: 1399.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--left {
    margin-top: 45px;
  }
}
@media (max-width: 1199.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--left {
    clip-path: inherit;
    padding: 30px;
    margin-top: 0;
    border-radius: var(--border-radius-l);
  }
}
@media (max-width: 575.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--left {
    padding: 20px;
  }
}
.clippath-block .clippath-block__col.clippath-block__col--right {
  background-color: var(--grey);
  clip-path: polygon(23% 0, 100% 0%, 100% 100%, 0 100%);
  position: absolute;
  right: 0;
  border-top-right-radius: var(--border-radius-l);
  border-bottom-right-radius: var(--border-radius-l);
  height: calc(100% - 70px);
}
@media (max-width: 1399.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--right {
    height: calc(100% - 45px);
  }
}
@media (max-width: 1199.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--right {
    clip-path: inherit;
    position: relative;
    height: 100%;
    border-radius: var(--border-radius-l);
  }
}
.clippath-block .clippath-block__col.clippath-block__col--right .clippath-block__col-content {
  padding: 70px;
  margin: 0 0 0 auto;
  text-align: right;
}
@media (max-width: 1599.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--right .clippath-block__col-content {
    padding: 45px;
  }
}
@media (max-width: 1199.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--right .clippath-block__col-content {
    padding: 30px;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .clippath-block .clippath-block__col.clippath-block__col--right .clippath-block__col-content {
    padding: 20px;
  }
}
.clippath-block .clippath-block__col .swiper {
  height: 100%;
}
.clippath-block .clippath-block__col .clippath-block__col-content {
  position: relative;
  max-width: 85%;
  color: var(--lightgrey);
}
@media (max-width: 1199.98px) {
  .clippath-block .clippath-block__col .clippath-block__col-content {
    max-width: 100%;
  }
}
.clippath-block .clippath-block__col .clippath-block__col-content h2, .clippath-block .clippath-block__col .clippath-block__col-content h3, .clippath-block .clippath-block__col .clippath-block__col-content h4, .clippath-block .clippath-block__col .clippath-block__col-content h5, .clippath-block .clippath-block__col .clippath-block__col-content h6 {
  color: var(--white);
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .clippath-block .clippath-block__col .clippath-block__col-content h2, .clippath-block .clippath-block__col .clippath-block__col-content h3, .clippath-block .clippath-block__col .clippath-block__col-content h4, .clippath-block .clippath-block__col .clippath-block__col-content h5, .clippath-block .clippath-block__col .clippath-block__col-content h6 {
    margin-bottom: 20px;
  }
}
.clippath-block .clippath-block__col .clippath-block__themeicon {
  position: absolute;
  bottom: 8%;
  left: -2px;
  height: 101%;
  opacity: 0.1;
}
.clippath-block .clippath-block__col .clippath-block__themeicon.clippath-block__themeicon--flipped {
  transform: scaleY(-1) scaleX(-1);
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
}
.clippath-block .clippath-block__col .clippath-block__themeicon svg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.clippath-block .clippath-block__col .clippath-block__col-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.clippath-block .clippath-block__col .clippath-block__col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clippath-block .clippath-block__col .general-pagination-container {
  margin-top: 100px;
}
@media (max-width: 1399.98px) {
  .clippath-block .clippath-block__col .general-pagination-container {
    margin-top: 60px;
  }
}
.clippath-block .clippath-block__col .carousel__nav-pagination {
  position: relative;
  z-index: 1;
  bottom: 0;
}
.clippath-block .clippath-block__col .carousel__nav-pagination .swiper-pagination-bullet {
  background-color: var(--white);
}
.clippath-block .clippath-block__col .carousel__nav-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--red);
}

.vision-block {
  background: var(--lightblue);
  position: relative;
}
.vision-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--white);
  z-index: 0;
}
@media (max-width: 1199.98px) {
  .vision-block:before {
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .vision-block:before {
    display: none;
  }
}
.vision-block .bcoms-image-block {
  position: relative;
  overflow: hidden;
  border-top-right-radius: var(--border-radius-l);
  height: 100%;
}
@media (max-width: 767.98px) {
  .vision-block .bcoms-image-block {
    border-top-right-radius: 0px;
  }
}
.vision-block .bcoms-content-block {
  padding: 80px 30px;
  max-width: 800px;
  width: 90%;
  margin-top: 80px;
}
@media (max-width: 1399.98px) {
  .vision-block .bcoms-content-block {
    padding: 60px 20px;
  }
}
@media (max-width: 1199.98px) {
  .vision-block .bcoms-content-block {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .vision-block .bcoms-content-block {
    padding: 50px 20px;
  }
}
@media (max-width: 767.98px) {
  .vision-block .bcoms-content-block {
    margin-top: 0px;
  }
}
.vision-block .bcoms-content-block .img-logo {
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 1599.98px) {
  .vision-block .bcoms-content-block .img-logo {
    margin-bottom: 25px;
  }
}
.vision-block .bcoms-content-block .img-logo img {
  width: auto;
  height: auto;
  max-height: 120px;
  max-width: 300px;
}
@media (max-width: 1599.98px) {
  .vision-block .bcoms-content-block .img-logo img {
    max-height: 95px;
  }
}
@media (max-width: 1199.98px) {
  .vision-block .bcoms-content-block .img-logo img {
    max-height: 75px;
  }
}

.bcoms-map-block {
  width: 2000px;
  top: -650px;
  position: absolute;
  z-index: 0;
  left: -435px;
}
@media (max-width: 1599.98px) {
  .bcoms-map-block {
    width: 1600px;
    top: -460px;
    left: -325px;
  }
}
@media (max-width: 1399.98px) {
  .bcoms-map-block {
    width: 1400px;
    top: -380px;
    left: -290px;
  }
}
@media (max-width: 1199.98px) {
  .bcoms-map-block {
    width: 100%;
    max-width: 400px;
    height: 280px;
    top: auto;
    left: auto;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  .bcoms-map-block {
    height: 230px;
  }
}
@media (max-width: 1199.98px) {
  .bcoms-map-block svg {
    position: absolute;
    top: -409px;
    width: 1000px;
    height: 1000px;
    left: auto;
  }
}
@media (max-width: 991.98px) {
  .bcoms-map-block svg {
    left: -57px;
  }
}
@media (max-width: 767.98px) {
  .bcoms-map-block svg {
    top: -428px;
    left: -225px;
  }
}
.bcoms-map-block:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 45%;
  width: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 31%, rgba(255, 255, 255, 0) 76%);
  background: -moz-linear-gradient(0deg, rgb(255, 255, 255) 31%, rgba(255, 255, 255, 0) 76%);
  background: linear-gradient(0deg, rgb(255, 255, 255) 31%, rgba(255, 255, 255, 0) 76%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
}
@media (max-width: 1199.98px) {
  .bcoms-map-block:after {
    display: none;
  }
}

.bcoms-color-block {
  position: relative;
  columns: 3;
  column-gap: 20px;
}
@media (max-width: 1399.98px) {
  .bcoms-color-block {
    columns: 2;
  }
}
@media (max-width: 1199.98px) {
  .bcoms-color-block {
    columns: 3;
  }
}
@media (max-width: 767.98px) {
  .bcoms-color-block {
    columns: 2;
  }
}
.bcoms-color-block .bcoms-color-block__list {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  .bcoms-color-block .bcoms-color-block__list {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.bcoms-color-block .bcoms-color-block__list .bcoms-color-block__icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
}
@media (max-width: 767.98px) {
  .bcoms-color-block .bcoms-color-block__list .bcoms-color-block__icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-color-block .bcoms-color-block__list .bcoms-color-block__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
.bcoms-color-block .bcoms-color-block__list .bcoms-color-block__text {
  color: var(--grey);
}
.bcoms-color-block .bcoms-color-block__list .bcoms-color-block__text p {
  margin: 0;
}

.bcoms-note-text {
  position: relative;
  color: var(--secondary);
  margin: 10px 0;
}
.bcoms-note-text p {
  color: var(--secondary);
  margin: 0;
}

.contact-details-block {
  position: relative;
}
.contact-details-block.inside-tabs {
  background-color: var(--lightblue);
  padding: 40px 30px;
  border-radius: var(--border-radius-l);
  max-width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .contact-details-block.inside-tabs {
    padding: 30px 20px;
  }
}
.contact-details-block.inside-tabs .contact-details-block__list {
  margin: 30px 0;
}
.contact-details-block.inside-tabs .contact-details-block__list:last-child {
  margin-bottom: 0px;
}
.contact-details-block .contact-details-block__list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.contact-details-block .contact-details-block__list .contact-details-block__list_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.contact-details-block .contact-details-block__list .contact-details-block__list_wrapper a {
  position: relative;
}
.contact-details-block .contact-details-block__list .contact-details-block__list_wrapper a:after {
  content: "";
  height: 18px;
  width: 1px;
  background: var(--grey);
  position: absolute;
  right: -8px;
  top: 4px;
  transform: skewX(-20deg);
}
@media (max-width: 1599.98px) {
  .contact-details-block .contact-details-block__list .contact-details-block__list_wrapper a:after {
    top: 2px;
  }
}
.contact-details-block .contact-details-block__list .contact-details-block__list_wrapper a:last-child:after {
  display: none;
}
.contact-details-block .contact-details-block__list .contact-details-block__icon {
  min-width: 25px;
  text-align: center;
  line-height: 1;
}
.contact-details-block .contact-details-block__list .contact-details-block__icon span {
  color: var(--red);
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .contact-details-block .contact-details-block__list .contact-details-block__icon span {
    font-size: 28px;
  }
}
.contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-location {
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-location {
    font-size: 28px;
  }
}
.contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-call {
  font-size: 23px;
}
@media (max-width: 767.98px) {
  .contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-call {
    font-size: 20px;
  }
}
.contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-email {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .contact-details-block .contact-details-block__list .contact-details-block__icon span.icon-email {
    font-size: 16px;
  }
}
.contact-details-block .contact-details-block__list a.contact-details-block__text {
  padding-inline-end: 5px;
  direction: ltr;
}
.contact-details-block .contact-details-block__list a.contact-details-block__text:hover {
  color: var(--red);
  padding-inline-start: 5px;
  padding-inline-end: 0px;
}
.contact-details-block .contact-details-block__list .contact-details-block__text {
  font-weight: var(--fw-bold);
  color: var(--grey);
}
.contact-details-block .contact-details-block__list .contact-details-block__text a {
  font-size: 14px;
  text-decoration: underline;
  font-weight: var(--fw-regular);
  color: var(--red);
}
.contact-details-block .contact-details-block__list .contact-details-block__text a:hover {
  color: var(--primary);
}

.bcoms-alert {
  display: flex;
  align-items: start;
  padding: 25px;
  padding-inline-end: 40px;
  border-radius: 5px;
  gap: 5px 10px;
  position: relative;
}
@media (max-width: 991.98px) {
  .bcoms-alert {
    padding: 20px;
    padding-inline-end: 40px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-alert {
    padding: 15px;
    padding-inline-end: 35px;
  }
}
.bcoms-alert .bcoms-alert__icon {
  font-size: 22px;
  display: flex;
}
@media (max-width: 991.98px) {
  .bcoms-alert .bcoms-alert__icon {
    font-size: 20px;
  }
}
.bcoms-alert .bcoms-alert__close {
  position: absolute;
  right: 15px;
  font-size: 12px;
  cursor: pointer;
  color: var(--grey);
  background: transparent;
  border: none;
  display: flex;
  padding: 10px;
  top: 15px;
}
@media (max-width: 991.98px) {
  .bcoms-alert .bcoms-alert__close {
    right: 5px;
    top: 5px;
  }
}
.bcoms-alert .bcoms-alert__close i {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-alert .bcoms-alert__close:hover {
  color: var(--red);
}
.bcoms-alert p {
  color: var(--grey);
  font-size: var(--fs-p-m);
  margin: 0;
}
.bcoms-alert .abstract {
  font-size: var(--fs-p-l);
  font-weight: var(--fw-bold);
}
.bcoms-alert.bcoms-alert--success {
  background-color: var(--success-off);
}
.bcoms-alert.bcoms-alert--success .bcoms-alert__icon {
  color: var(--success);
}
.bcoms-alert.bcoms-alert--success .abstract {
  color: var(--success);
}
.bcoms-alert.bcoms-alert--failure {
  background-color: var(--failure-off);
}
.bcoms-alert.bcoms-alert--failure .bcoms-alert__icon {
  color: var(--failure);
}
.bcoms-alert.bcoms-alert--failure .abstract {
  color: var(--failure);
}

.sharethis-card {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sharethis-card .sharethis-inline-share-buttons > div {
  display: inline-block !important;
  padding: 0 5px !important;
}

#st-1 .st-total.st-hidden {
  display: none !important;
}

.bcoms-enquiry-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-l);
  overflow: hidden;
}
.bcoms-enquiry-block .simpleParallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bcoms-enquiry-block .simpleParallax:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.6;
}
.bcoms-enquiry-block .bcoms-enquiry-block__content {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .bcoms-enquiry-block .bcoms-enquiry-block__content {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .bcoms-enquiry-block .bcoms-enquiry-block__content {
    width: 100%;
  }
}
.bcoms-enquiry-block .bcoms-enquiry-block__content .bcoms-enquiry-block__content-title {
  color: var(--white);
}

div:where(.swal2-container) button:where(.swal2-styled):focus-visible {
  box-shadow: none !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 35px 13px 35px;
  cursor: pointer;
  font-weight: var(--fw-medium);
  font-size: var(--fs-p-m);
  gap: 5px 10px;
  text-decoration: none;
  border-radius: var(--border-radius-xs);
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 767.98px) {
  .btn {
    padding: 10px 25px;
  }
}
@media (max-width: 575.98px) {
  .btn {
    gap: 5px 5px;
  }
}
.btn span {
  color: var(--white);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  font-size: var(--fs-p-xs);
  opacity: 0;
  position: absolute;
  right: 35px;
}
@media (max-width: 767.98px) {
  .btn span {
    right: 25px;
  }
}
.btn:hover {
  background-color: var(--primary);
  color: var(--white);
  padding-inline-end: 55px;
}
@media (max-width: 767.98px) {
  .btn:hover {
    padding-inline-end: 42px;
  }
}
.btn:hover span {
  color: var(--white);
  opacity: 1;
}
.btn.btn--iconleft span {
  position: relative;
  right: auto;
  color: var(--red);
  opacity: 1;
  font-size: 20px;
}
.btn.btn--iconleft:hover {
  padding-inline-end: 35px;
}
@media (max-width: 767.98px) {
  .btn.btn--iconleft:hover {
    padding-inline-end: 25px;
  }
}
.btn.btn--iconleft:hover span {
  color: var(--white);
}
.btn.btn--outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn.btn--outline:hover {
  background-color: var(--primary);
  color: var(--white);
}
.btn.btn--outline.theme--dark {
  border: 1px solid var(--white);
  color: var(--white);
}
.btn.btn--outline.theme--dark:hover {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--primary);
}
.btn.btn--outline.theme--dark:hover span {
  color: var(--primary);
}

/*-----------------------------
INTRODUCTION CONTENT SECTION START
-----------------------------*/
.intro-mainblock-section {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
.intro-mainblock-section__world-map {
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
}
.intro-mainblock-section__world-map svg {
  height: 100dvh;
  transform: scale(1.5) translateX(5%);
}
@media (max-width: 1999.98px) {
  .intro-mainblock-section__world-map svg {
    transform: scale(1.5) translateX(8%);
  }
}
@media (max-width: 1599.98px) {
  .intro-mainblock-section__world-map svg {
    transform: scale(1.5) translateX(10%);
  }
}
@media (max-width: 1399.98px) {
  .intro-mainblock-section__world-map svg {
    transform: scale(1.5) translateX(14%);
  }
}
@media (max-width: 575.98px) {
  .intro-mainblock-section__world-map svg {
    height: 90dvh;
    transform: scale(1.3) translateX(0%);
  }
}
@media (max-width: 1199.98px) {
  .intro-mainblock-section__world-map {
    margin-top: -300px;
  }
}
@media (max-width: 575.98px) {
  .intro-mainblock-section__world-map {
    top: 45px;
    left: -70px;
    width: 750px;
  }
}
@media (max-width: 480px) {
  .intro-mainblock-section__world-map {
    top: 25px;
    left: -40px;
  }
}
.intro-mainblock-section__content {
  position: absolute;
  z-index: 1;
  margin-top: 65px;
}
@media (max-width: 1199.98px) {
  .intro-mainblock-section__content {
    position: relative;
  }
}
.intro-mainblock-section__content-block {
  margin-block-start: 40px;
}
@media (max-width: 1199.98px) {
  .intro-mainblock-section__content-block {
    margin-block-start: 0;
  }
}
.intro-mainblock-section__statistic {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  padding-left: 90px;
  padding-right: 90px;
}
@media (max-width: 575.98px) {
  .intro-mainblock-section__statistic {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 575.98px) {
  .intro-mainblock-section__statistic {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*-----------------------------
INTRODUCTION CONTENT SECTION END
-----------------------------*/
/*-----------------------------
PRODUCTS CONTENT SECTION START
-----------------------------*/
@media (max-width: 575.98px) {
  .featured-block-main-block {
    padding-top: 0;
  }
}

/*-----------------------------
PRODUCTS CONTENT SECTION END
-----------------------------*/
/*-----------------------------
NEWS CONTENT SECTION START
-----------------------------*/
.news-block .general-pagination-container {
  margin-top: -18px;
  z-index: 1;
  position: relative;
}
@media (max-width: 991.98px) {
  .news-block .general-pagination-container {
    margin-top: 10px;
  }
}
.news-block .btn {
  margin-bottom: 45px;
}
.news-block .news__news-img, .news-block .news__news-img__expand, .news-block .news__news-img__expand a {
  height: 100%;
}

.news__date {
  color: var(--primary);
  margin-block-end: 20px;
}
@media (max-width: 991.98px) {
  .news__date {
    margin-block-start: 20px;
  }
}
@media (max-width: 575.98px) {
  .news__date {
    margin-block-end: 10px;
  }
}
.news .icon-calender {
  color: var(--red);
  padding-inline-end: 10px;
}
.news__news-img {
  -webkit-border-radius: var(--border-radius-s);
  -moz-border-radius: var(--border-radius-s);
  border-radius: var(--border-radius-s);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .news__news-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .news__news-img {
    margin-bottom: 15px;
  }
}
.news__news-img__expand {
  transform: scale(1);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  line-height: 0;
}
.news h3 {
  margin-block-end: 30px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 1399.98px) {
  .news h3 {
    margin-block-end: 15px;
  }
}
@media (max-width: 575.98px) {
  .news h3 {
    margin-block-end: 10px;
  }
}
.news h3:hover {
  color: var(--red);
}
.news p {
  margin-block-end: 40px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 1399.98px) {
  .news p {
    margin-block-end: 25px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 1199.98px) {
  .news p {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .news p {
    display: -webkit-box;
  }
}
@media (max-width: 575.98px) {
  .news p {
    margin-block-end: 15px;
  }
}
/*-----------------------------
NEWS CONTENT SECTION END
-----------------------------*/
/*-----------------------------
PROJECT CONTENT SECTION START
-----------------------------*/
.projects-block {
  overflow: hidden;
}
.projects-block .clippath-block__themeicon {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  top: 0;
  left: 0;
}
@media (max-width: 1199.98px) {
  .projects-block .clippath-block__themeicon {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .projects-block .clippath-block__themeicon {
    width: 80%;
  }
}
.projects-block .clippath-block__themeicon svg {
  width: 100%;
  height: 100%;
}
.projects-block__maintitle {
  color: var(--white);
}
.projects-block__maintitle p {
  font-size: var(--fs-p-xl);
  color: var(--white);
  font-weight: var(--fw-bold);
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 1399.98px) {
  .projects-block__maintitle p {
    margin-block-start: 20px;
  }
}
.projects-block__maintitle h2 {
  color: var(--white);
}
@media (max-width: 1399.98px) {
  .projects-block .title-block {
    margin-block-end: 0;
  }
}

.latest_project_swiper {
  overflow: visible;
}
.latest_project_swiper .swiper-slide a {
  transform: scale(0.8);
}
.latest_project_swiper .swiper-slide-active a {
  transform: scale(1);
}
.latest_project_swiper h2 {
  color: var(--white);
}
.latest_project_swiper .leatest_gallery_slide {
  margin-top: 60px;
  position: relative;
}
.latest_project_swiper .leatest_gallery_slide__hover-icon {
  transform: translateY(0);
  transform: translateX(-20px);
}
.latest_project_swiper .leatest_gallery_slide__hover-icon .circle {
  background: var(--white);
  border-radius: var(--border-radius-100);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest_project_swiper .leatest_gallery_slide .icon-expand {
  transform: rotate(90deg);
  color: var(--red);
  font-size: var(--fs-p-l);
}
.latest_project_swiper .leatest_gallery_slide__gallery-foot {
  width: 80%;
}
@media (max-width: 575.98px) {
  .latest_project_swiper .leatest_gallery_slide__gallery-foot {
    width: 100%;
  }
}
.latest_project_swiper .leatest_gallery_slide__gallery-foot h4 {
  font-size: var(--fs-h3);
}
@media (max-width: 991.98px) {
  .latest_project_swiper .leatest_gallery_slide__gallery-foot h4 {
    font-size: var(--fs-h4);
  }
}
.latest_project_swiper .leatest_gallery_slide__gallery-foot__address {
  color: var(--white);
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 575.98px) {
  .latest_project_swiper .leatest_gallery_slide__gallery-foot__address {
    margin-top: 8px;
  }
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container .swiper-fraction {
  color: var(--white);
  position: relative;
  font-size: var(--fs-p-l);
  margin-inline-end: 125px;
}
@media (max-width: 991.98px) {
  .pagination-container .swiper-fraction {
    margin-inline-end: 90px;
  }
}
@media (max-width: 575.98px) {
  .pagination-container .swiper-fraction {
    margin-inline-end: 65px;
  }
}
.pagination-container .swiper-fraction:after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 100px;
  height: 1px;
  background: var(--lightgrey);
}
@media (max-width: 991.98px) {
  .pagination-container .swiper-fraction:after {
    width: 65px;
  }
}
@media (max-width: 575.98px) {
  .pagination-container .swiper-fraction:after {
    width: 45px;
  }
}
.pagination-container .project-pagination {
  width: auto;
}

.general-pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.general-pagination-container.color--lightgrey .general-fraction {
  color: var(--lightgrey);
}
.general-pagination-container.color--lightgrey .general-fraction:after {
  background: var(--lightgrey);
}
.general-pagination-container .general-fraction {
  color: var(--secondary);
  position: relative;
  font-size: var(--fs-p-l);
  margin-inline-end: 125px;
}
@media (max-width: 991.98px) {
  .general-pagination-container .general-fraction {
    margin-inline-end: 90px;
  }
}
@media (max-width: 575.98px) {
  .general-pagination-container .general-fraction {
    margin-inline-end: 65px;
  }
}
.general-pagination-container .general-fraction:after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 100px;
  height: 1px;
  background: var(--secondary);
}
@media (max-width: 991.98px) {
  .general-pagination-container .general-fraction:after {
    width: 65px;
  }
}
@media (max-width: 575.98px) {
  .general-pagination-container .general-fraction:after {
    width: 45px;
  }
}

.project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  background: var(--lightblue);
}
.project-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 35px;
  height: 10px;
  border-radius: var(--border-radius-l);
}

/*-----------------------------
COMMITMENT CONTENT SECTION START
-----------------------------*/
.our-commitment-block {
  padding-block-start: 185px;
  overflow: hidden;
}
@media (max-width: 1599.98px) {
  .our-commitment-block {
    padding-block-start: 130px;
  }
}
@media (max-width: 1399.98px) {
  .our-commitment-block {
    padding-block-start: 45px;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block {
    padding-block-start: 0;
  }
}
.our-commitment-block h4 {
  color: var(--white);
  line-height: 32px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .our-commitment-block h4 {
    font-size: var(--fs-p-xl);
    line-height: 28px;
  }
}
.our-commitment-block__our-commitment {
  position: relative;
  display: flex;
  height: 500px;
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment {
    display: block;
    height: auto;
  }
}
.our-commitment-block__our-commitment__sustainability {
  position: absolute;
  width: 53%;
  left: 0;
  top: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0 100%);
  -webkit-border-top-left-radius: var(--border-radius-l);
  -webkit-border-bottom-left-radius: var(--border-radius-l);
  -moz-border-radius-topleft: var(--border-radius-l);
  -moz-border-radius-bottomleft: var(--border-radius-l);
  border-top-left-radius: var(--border-radius-l);
  border-bottom-left-radius: var(--border-radius-l);
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__sustainability {
    width: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    -webkit-border-radius: var(--border-radius-l);
    -moz-border-radius: var(--border-radius-l);
    border-radius: var(--border-radius-l);
  }
}
.our-commitment-block__our-commitment__sustainability .img-shape {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__sustainability .img-shape {
    height: 350px;
  }
}
.our-commitment-block__our-commitment__sustainability:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #292929;
  background: linear-gradient(182deg, rgba(41, 41, 41, 0.78) 0%, rgba(41, 41, 41, 0) 100%);
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0 100%);
  -webkit-border-top-left-radius: var(--border-radius-l);
  -webkit-border-bottom-left-radius: var(--border-radius-l);
  -moz-border-radius-topleft: var(--border-radius-l);
  -moz-border-radius-bottomleft: var(--border-radius-l);
  border-top-left-radius: var(--border-radius-l);
  border-bottom-left-radius: var(--border-radius-l);
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__sustainability:after {
    clip-path: none;
  }
}
.our-commitment-block__our-commitment__sustainability .text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 80px;
  width: 70%;
  padding-inline-end: 30px;
}
@media (max-width: 1599.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    padding: 40px;
  }
}
@media (max-width: 1399.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    width: 90%;
  }
}
@media (max-width: 1399.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    width: 80%;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    width: 70%;
    padding: 40px;
  }
}
@media (max-width: 575.98px) {
  .our-commitment-block__our-commitment__sustainability .text {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .our-commitment-block__our-commitment__sustainability .text {
    width: 100%;
    padding: 25px;
  }
}
.our-commitment-block__our-commitment__vision-2030 {
  position: absolute;
  width: 58%;
  right: 0;
  top: -70px;
}
@media (max-width: 1399.98px) {
  .our-commitment-block__our-commitment__vision-2030 {
    top: -40px;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 {
    width: 100%;
    top: 0;
    position: relative;
    margin-top: 100px;
  }
}
.our-commitment-block__our-commitment__vision-2030 .img-shape {
  height: 500px;
  object-fit: cover;
  -webkit-border-top-right-radius: var(--border-radius-l);
  -webkit-border-bottom-right-radius: var(--border-radius-l);
  -moz-border-radius-topright: var(--border-radius-l);
  -moz-border-radius-bottomright: var(--border-radius-l);
  border-top-right-radius: var(--border-radius-l);
  border-bottom-right-radius: var(--border-radius-l);
  clip-path: polygon(27% 0, 100% 0%, 100% 100%, 0 100%);
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 .img-shape {
    -webkit-border-radius: var(--border-radius-l);
    -moz-border-radius: var(--border-radius-l);
    border-radius: var(--border-radius-l);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__vision-2030 .img-shape {
    height: 350px;
  }
}
.our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
  position: absolute;
  left: 175px;
  bottom: 125px;
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
    bottom: 75px;
  }
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
    bottom: 90px;
  }
}
@media (max-width: 767.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
    left: 135px;
  }
}
@media (max-width: 575.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
    left: 110px;
  }
}
@media (max-width: 480px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building {
    left: 10px;
  }
}
.our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
  height: auto;
  width: 750px;
  padding-top: 30px;
  margin-inline-start: 20px;
}
@media (max-width: 1599.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
    width: 685px;
  }
}
@media (max-width: 1399.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
    width: 615px;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
    width: 600px;
  }
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
    width: 420px;
  }
}
@media (max-width: 767.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision-2030-building img {
    width: 395px;
    margin-inline-start: 0px;
  }
}
.our-commitment-block__our-commitment__vision-2030:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #002570;
  background: linear-gradient(0deg, rgba(0, 37, 112, 0.95) 36%, rgba(0, 37, 112, 0) 100%);
  clip-path: polygon(27% 0, 100% 0%, 100% 100%, 0 100%);
  -webkit-border-top-right-radius: var(--border-radius-l);
  -webkit-border-bottom-right-radius: var(--border-radius-l);
  -moz-border-radius-topright: var(--border-radius-l);
  -moz-border-radius-bottomright: var(--border-radius-l);
  border-top-right-radius: var(--border-radius-l);
  border-bottom-right-radius: var(--border-radius-l);
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030:after {
    -webkit-border-radius: var(--border-radius-l);
    -moz-border-radius: var(--border-radius-l);
    border-radius: var(--border-radius-l);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
}
.our-commitment-block__our-commitment__vision-2030 .text {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 80px;
  width: 50%;
  text-align: right;
  padding-inline-start: 30px;
}
@media (max-width: 1599.98px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    padding: 40px;
    width: 70%;
  }
}
@media (max-width: 1399.98px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    width: 70%;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    left: 0;
    right: auto;
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    padding: 40px;
  }
}
@media (max-width: 575.98px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    padding: 30px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .our-commitment-block__our-commitment__vision-2030 .text {
    padding: 25px;
  }
}
.our-commitment-block__our-commitment__vision-2030 .vision_2030-logo {
  position: absolute;
  left: 150px;
  bottom: 80px;
  z-index: 2;
}
@media (max-width: 1599.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision_2030-logo {
    left: 100px;
    bottom: 40px;
  }
}
@media (max-width: 1199.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision_2030-logo {
    left: auto;
    right: 40px;
  }
}
@media (max-width: 767.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision_2030-logo {
    right: 40px;
  }
}
@media (max-width: 575.98px) {
  .our-commitment-block__our-commitment__vision-2030 .vision_2030-logo {
    display: none;
  }
}

/*-----------------------------
COMMITMENT CONTENT SECTION END
-----------------------------*/
/*-----------------------------
GALLERY CONTENT SECTION START
-----------------------------*/
.latest_gallery_swiper {
  overflow: visible;
}
.latest_gallery_swiper .swiper-slide a {
  transform: scale(0.8);
}
.latest_gallery_swiper .swiper-slide-active a {
  transform: scale(1);
}
@media (max-width: 575.98px) {
  .latest_gallery_swiper {
    width: 94%;
  }
}

.leatest_gallery_slide {
  position: relative;
  background: var(--black);
  border-radius: var(--border-radius-s);
  overflow: hidden;
}
.leatest_gallery_slide__latest_img_gal {
  border-radius: var(--border-radius-s);
  overflow: hidden;
  position: relative;
}
.leatest_gallery_slide__latest_img_gal img {
  transform: scale(1.2) !important;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.leatest_gallery_slide__latest_img_gal:after {
  content: "";
  background: #2e2e2e;
  background: linear-gradient(0deg, rgba(46, 46, 46, 0.81) 0%, rgba(150, 150, 150, 0) 99%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.leatest_gallery_slide__card_btn {
  position: absolute;
  left: 0;
  top: 0;
  margin: 40px 45px;
  background: var(--white);
  border-radius: var(--border-radius-100);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  transform: translateY(0);
}
@media (max-width: 575.98px) {
  .leatest_gallery_slide__card_btn {
    margin: 20px;
  }
}
.leatest_gallery_slide__card_btn span {
  color: var(--red);
  padding-bottom: 0;
}
.leatest_gallery_slide__hover-icon {
  opacity: 0;
  color: var(--white);
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 65px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  transform: translateY(20px);
}
@media (max-width: 767.98px) {
  .leatest_gallery_slide__hover-icon {
    font-size: 43px;
  }
}
.leatest_gallery_slide__gallery-foot {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px 45px;
  text-wrap: balance;
}
@media (max-width: 767.98px) {
  .leatest_gallery_slide__gallery-foot {
    padding: 40px;
  }
}
@media (max-width: 575.98px) {
  .leatest_gallery_slide__gallery-foot {
    padding: 25px;
  }
}
.leatest_gallery_slide__gallery-foot h4 {
  color: var(--white);
  margin-bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1199.98px) {
  .leatest_gallery_slide__gallery-foot h4 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .leatest_gallery_slide__gallery-foot h4 {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.leatest_gallery_slide:hover img {
  transform: scale(1.3) !important;
  opacity: 0.6;
}
.leatest_gallery_slide:hover .leatest_gallery_slide__card_btn {
  opacity: 0;
  transform: translateY(20px);
}
.leatest_gallery_slide:hover .leatest_gallery_slide__hover-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 35px;
  height: 10px;
  border-radius: var(--border-radius-l);
}

/*-----------------------------
GALLERY CONTENT SECTION END
-----------------------------*/
.products-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
.products-card .products-card__readmore {
  position: absolute;
  bottom: 25px;
  right: 60px;
  height: 50px;
  width: 50px;
  display: flex;
  background: var(--white);
  color: var(--red);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
}
@media (max-width: 1399.98px) {
  .products-card .products-card__readmore {
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 1199.98px) {
  .products-card .products-card__readmore {
    right: 40px;
    height: 40px;
    width: 40px;
  }
}
.products-card .products-card__readmore span {
  font-size: 20px;
}
@media (max-width: 1399.98px) {
  .products-card .products-card__readmore span {
    font-size: 16px;
  }
}
.products-card .products-card__content {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background-color: var(--lightblue);
  position: relative;
  padding: 30px;
}
@media (max-width: 1199.98px) {
  .products-card .products-card__content {
    padding: 20px;
  }
}
.products-card .products-card__content .products-card__icon {
  position: absolute;
  top: 0;
  left: -42px;
  width: 95%;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.products-card .products-card__content .products-card__title {
  position: relative;
  z-index: 1;
}
.products-card .products-card__content .products-card__title h4 {
  color: var(--primary);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.products-card .products-card__content .products-card__text {
  position: relative;
  z-index: 1;
}
.products-card .products-card__content .products-card__text p {
  color: var(--grey);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .products-card .products-card__content .products-card__text p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.products-card .products-card__img {
  aspect-ratio: 16/9;
  position: relative;
}
.products-card .products-card__img .simpleParallax {
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.products-card .products-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-card:hover {
  background-color: var(--primary);
}
.products-card:hover .products-card__readmore {
  opacity: 1;
  right: 30px;
}
@media (max-width: 1199.98px) {
  .products-card:hover .products-card__readmore {
    right: 20px;
  }
}
.products-card:hover .simpleParallax {
  transform: scale(1.05);
}
.products-card:hover .products-card__content {
  background-color: var(--primary);
  transform: translateY(-55px);
}
.products-card:hover .products-card__content .products-card__title h4 {
  color: var(--white);
}
.products-card:hover .products-card__content .products-card__text p {
  color: var(--lightgrey);
}
.products-card:hover .products-card__content .products-card__icon {
  opacity: 1;
}

.projects-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
.projects-card .projects-card__readmore {
  position: relative;
  height: 50px;
  width: 50px;
  min-width: 50px;
  display: flex;
  background: var(--white);
  color: var(--red);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  margin-bottom: -30px;
}
@media (max-width: 1399.98px) {
  .projects-card .projects-card__readmore {
    height: 45px;
    width: 45px;
    min-width: 45px;
  }
}
@media (max-width: 1199.98px) {
  .projects-card .projects-card__readmore {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
@media (max-width: 991.98px) {
  .projects-card .projects-card__readmore {
    margin-bottom: 0px;
    opacity: 1;
  }
}
.projects-card .projects-card__readmore span {
  font-size: 20px;
}
@media (max-width: 1399.98px) {
  .projects-card .projects-card__readmore span {
    font-size: 16px;
  }
}
.projects-card .projects-card__wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--lightblue);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  padding: 30px;
}
@media (max-width: 1199.98px) {
  .projects-card .projects-card__wrapper {
    padding: 20px;
  }
}
.projects-card .projects-card__content {
  position: relative;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.projects-card .projects-card__content .projects-card__title {
  position: relative;
  z-index: 1;
}
.projects-card .projects-card__content .projects-card__title h4 {
  color: var(--primary);
  margin-bottom: 0px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.projects-card .projects-card__content .projects-card__list {
  position: absolute;
  z-index: 1;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .projects-card .projects-card__content .projects-card__list {
    opacity: 1;
    visibility: visible;
    position: relative;
    margin-top: 10px;
  }
}
.projects-card .projects-card__content .projects-card__list li {
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.projects-card .projects-card__content .projects-card__list li span {
  color: var(--red);
  font-size: 20px;
}
.projects-card .projects-card__img {
  aspect-ratio: 16/9;
  position: relative;
}
.projects-card .projects-card__img .simpleParallax {
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.projects-card .projects-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-card:hover .projects-card__readmore {
  opacity: 1;
}
.projects-card:hover .projects-card__wrapper {
  transform: translateY(-20px);
}
@media (max-width: 991.98px) {
  .projects-card:hover .projects-card__wrapper {
    transform: translateY(0px);
  }
}
.projects-card:hover .projects-card__list {
  opacity: 1;
  visibility: visible;
  bottom: -30px;
}
@media (max-width: 991.98px) {
  .projects-card:hover .projects-card__list {
    bottom: 0px;
  }
}
.projects-card:hover .simpleParallax {
  transform: scale(1.05);
}

.client-card {
  position: relative;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
  padding: 30px;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .client-card {
    padding: 20px;
  }
}
.client-card.bg--white {
  background-color: var(--white);
}
.client-card.bg--white .client-card__readmore {
  background: var(--lightblue);
}
.client-card.bg--white .client-card__readmore:hover {
  background-color: var(--primary);
}
.client-card.client-card--horizontal {
  min-height: 250px;
}
@media (max-width: 991.98px) {
  .client-card.client-card--horizontal {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .client-card.client-card--horizontal {
    padding: 40px 20px;
  }
}
.client-card.client-card--horizontal .client-card__img {
  flex-direction: column;
  justify-content: space-evenly;
}
.client-card.client-card--horizontal .client-card__subtitle {
  position: relative;
  bottom: auto;
  padding: 0 30px;
  width: 100%;
}
.client-card.client-card--horizontal .client-card__content {
  flex-direction: revert;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.client-card.client-card--horizontal .client-card__content img {
  max-width: 100%;
}
.client-card.client-card--horizontal:hover .client-card__subtitle {
  bottom: auto;
}
.client-card .client-card__img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease 0s !important;
  -moz-transition: all 0.4s ease 0s !important;
  -ms-transition: all 0.4s ease 0s !important;
  -o-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .client-card .client-card__img {
    opacity: 0;
    display: none;
  }
}
.client-card .client-card__img img {
  height: auto;
  width: auto;
  max-width: 75%;
  max-height: 150px;
}
.client-card .client-card__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  z-index: 2;
  position: relative;
}
@media (max-width: 991.98px) {
  .client-card .client-card__content {
    opacity: 1;
  }
}
.client-card .client-card__content img {
  height: 55px;
  width: auto;
  max-width: 70%;
  max-height: 100%;
  margin-bottom: 15px;
}
.client-card .client-card__content li {
  color: var(--grey);
}
.client-card .client-card__content li span {
  font-weight: var(--fw-bold);
}
.client-card .client-card__title {
  color: var(--primary);
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}
.client-card .client-card__subtitle {
  color: var(--primary);
  font-weight: var(--fw-bold);
  position: absolute;
  bottom: 20px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 991.98px) {
  .client-card .client-card__subtitle {
    display: none;
  }
}
.client-card .client-card__readmore {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  transform: translateX(-20px);
}
@media (max-width: 991.98px) {
  .client-card .client-card__readmore {
    height: 35px;
    width: 35px;
    min-width: 35px;
    transform: translateX(0px);
  }
}
.client-card .client-card__readmore span {
  color: var(--red);
  font-size: 17px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .client-card .client-card__readmore span {
    font-size: 12px;
  }
}
.client-card .client-card__readmore:hover {
  background-color: var(--primary);
}
.client-card .client-card__readmore:hover span {
  color: var(--white);
}
.client-card:hover .client-card__subtitle {
  opacity: 0;
  bottom: 40px;
}
.client-card:hover .client-card__img {
  opacity: 0;
  transform: translateY(-20px);
}
.client-card:hover .client-card__content {
  opacity: 1;
}
.client-card:hover .client-card__readmore {
  transform: translateX(0);
}

.photos-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
}
.photos-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  opacity: 0.7;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.photos-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.photos-card .simpleParallax {
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.photos-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .photos-card img {
    aspect-ratio: 16/12;
  }
}
@media (max-width: 575.98px) {
  .photos-card img {
    aspect-ratio: 16/8;
  }
}
@media (max-width: 480px) {
  .photos-card img {
    aspect-ratio: 16/10;
  }
}
.photos-card .photos-card__content {
  position: absolute;
  bottom: 30px;
  padding: 0 30px;
  z-index: 1;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 991.98px) {
  .photos-card .photos-card__content {
    padding: 0 20px;
    bottom: 20px;
  }
}
.photos-card .photos-card__content h4 {
  color: var(--white);
  margin: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 991.98px) {
  .photos-card .photos-card__content h4 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .photos-card .photos-card__content h4 {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .photos-card .photos-card__content h4 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .photos-card .photos-card__content h4 {
    font-size: 18px;
  }
}
.photos-card .photos-card__icon {
  position: absolute;
  top: 25px;
  left: 25px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .photos-card .photos-card__icon {
    left: 20px;
    top: 20px;
  }
}
@media (max-width: 767.98px) {
  .photos-card .photos-card__icon {
    height: 35px;
    width: 35px;
  }
}
.photos-card .photos-card__icon span {
  color: var(--red);
  font-size: 17px;
}
@media (max-width: 767.98px) {
  .photos-card .photos-card__icon span {
    font-size: 12px;
  }
}
.photos-card .photos-card__icon-expand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--white);
  font-size: 40px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  opacity: 0;
}
.photos-card:hover:before {
  opacity: 0;
}
.photos-card:hover:after {
  opacity: 0.6;
}
.photos-card:hover .photos-card__icon {
  top: 0;
  opacity: 0;
}
.photos-card:hover .photos-card__icon-expand {
  font-size: 60px;
  opacity: 1;
}
.photos-card:hover .simpleParallax {
  transform: scale(1.05);
}
.photos-card:hover .photos-card__content {
  bottom: 0px;
  opacity: 0;
}
.photos-card:hover .photos-card__content h4 {
  color: var(--lightblue);
}

.date-card {
  color: var(--grey);
  margin-block-end: 20px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .date-card {
    margin-block-end: 10px;
  }
}
.date-card span {
  color: var(--red);
  padding-inline-end: 10px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}

.news-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
  cursor: pointer;
}
.news-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lightblue);
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  z-index: 1;
}
.news-card:after {
  content: "\e91b";
  font-family: "icomoon";
  font-size: 380px;
  line-height: 1;
  color: var(--white);
  position: absolute;
  top: 0;
  right: 30px;
  opacity: 0.1;
  line-height: 1;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  z-index: 1;
}
.news-card .news-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.news-card .news-card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.news-card .news-card__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.65;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  z-index: 1;
}
.news-card .news-card__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.35;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.news-card .news-card__wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .news-card .news-card__wrapper {
    padding: 20px;
  }
}
.news-card .news-card__wrapper .news-card__content {
  margin-bottom: 45px;
}
@media (max-width: 1399.98px) {
  .news-card .news-card__wrapper .news-card__content {
    margin-bottom: 20px;
  }
}
.news-card .news-card__wrapper .news-card__date {
  color: var(--secondary);
  margin-block-end: 20px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .news-card .news-card__wrapper .news-card__date {
    margin-block-end: 10px;
  }
}
.news-card .news-card__wrapper .news-card__date span {
  color: var(--red);
  padding-inline-end: 10px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.news-card .news-card__wrapper .news-card__title {
  margin-bottom: 20px;
}
.news-card .news-card__wrapper .news-card__title h4 {
  color: var(--primary);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.news-card .news-card__wrapper .news-card__text {
  margin-bottom: 20px;
}
.news-card .news-card__wrapper .news-card__text p {
  color: var(--grey);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.news-card .news-card__wrapper .news-card__foot-icon {
  position: relative;
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .news-card .news-card__wrapper .news-card__foot-icon {
    height: 35px;
    width: 35px;
    min-width: 35px;
  }
}
.news-card .news-card__wrapper .news-card__foot-icon span {
  color: var(--red);
  font-size: 17px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 767.98px) {
  .news-card .news-card__wrapper .news-card__foot-icon span {
    font-size: 12px;
  }
}
.news-card .news-card__wrapper .news-card__foot {
  position: relative;
}
.news-card .news-card__wrapper .news-card__foot .news-card__foot-button {
  position: absolute;
  bottom: -50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-p-m);
  gap: 5px 10px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--border-radius-xs);
  border: 1px solid var(--white);
  color: var(--white);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 575.98px) {
  .news-card .news-card__wrapper .news-card__foot .news-card__foot-button {
    padding: 10px 15px;
  }
}
.news-card .news-card__wrapper .news-card__foot .news-card__foot-button:hover {
  background-color: var(--white);
  color: var(--primary);
}
.news-card .news-card__wrapper .news-card__foot .news-card__foot-button:hover span {
  color: var(--red);
}
.news-card:hover:before {
  opacity: 0;
}
.news-card:hover .news-card__img {
  opacity: 1;
}
.news-card:hover .news-card__img img {
  transform: scale(1.05);
}
.news-card:hover .news-card__wrapper .news-card__date {
  color: var(--lightgrey);
}
.news-card:hover .news-card__wrapper .news-card__date span {
  color: var(--lightgrey);
}
.news-card:hover .news-card__wrapper .news-card__title h4 {
  color: var(--white);
}
.news-card:hover .news-card__wrapper .news-card__text p {
  color: var(--lightgrey);
}
.news-card:hover .news-card__wrapper .news-card__foot-icon {
  opacity: 0;
}
.news-card:hover .news-card__wrapper .news-card__foot-button {
  bottom: 0;
  opacity: 1;
}

.ourvalue-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--lightblue);
  border-radius: var(--border-radius-l);
  cursor: pointer;
  padding: 30px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 575.98px) {
  .ourvalue-card {
    padding: 20px;
  }
}
.ourvalue-card .ourvalue-card-no {
  color: var(--secondary);
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .ourvalue-card .ourvalue-card-no {
    top: 20px;
    right: 20px;
  }
}
.ourvalue-card .ourvalue-card-no span {
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.ourvalue-card .ourvalue-card-no span:first-child {
  opacity: 0;
  transform: translateX(-40px);
  position: absolute;
}
.ourvalue-card .ourvalue-card-no span:nth-child(2) {
  opacity: 1;
}
.ourvalue-card .ourvalue-card__icon {
  position: relative;
  padding-bottom: 25px;
  margin-top: 120px;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 767.98px) {
  .ourvalue-card .ourvalue-card__icon {
    margin-top: 70px;
  }
}
.ourvalue-card .ourvalue-card__icon img {
  height: 90px;
  width: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 575.98px) {
  .ourvalue-card .ourvalue-card__icon img {
    height: 75px;
  }
}
.ourvalue-card .ourvalue-card__content {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.ourvalue-card .ourvalue-card__title {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: var(--primary);
}
.ourvalue-card .ourvalue-card__text, .ourvalue-card .ourvalue-card__text p {
  color: var(--grey);
  margin: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.ourvalue-card:hover {
  background-color: var(--primary);
}
.ourvalue-card:hover .ourvalue-card__icon {
  margin-top: 0px;
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .ourvalue-card:hover .ourvalue-card__icon {
    margin-bottom: 70px;
  }
}
.ourvalue-card:hover .ourvalue-card__icon img {
  filter: brightness(0) invert(1);
}
.ourvalue-card:hover .ourvalue-card__content {
  transform: translateY(-15px);
}
.ourvalue-card:hover .ourvalue-card__title {
  color: var(--white);
}
.ourvalue-card:hover .ourvalue-card__text, .ourvalue-card:hover .ourvalue-card__text p {
  color: var(--lightgrey);
}
.ourvalue-card:hover .ourvalue-card-no span:nth-child(1) {
  opacity: 1;
  transform: translateX(0px);
  position: absolute;
}
.ourvalue-card:hover .ourvalue-card-no span:nth-child(2) {
  opacity: 0;
  transform: translateX(40px);
}

.title-with-num-card {
  position: relative;
  border-radius: var(--border-radius-l);
  background: var(--white);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
@media (max-width: 991.98px) {
  .title-with-num-card {
    padding: 20px;
  }
}
.title-with-num-card .title-with-num-card__text {
  margin: 0;
  color: var(--primary);
}
.title-with-num-card .title-with-num-card__no {
  margin: 0;
  color: var(--secondary);
  opacity: 0.25;
}

.download-card {
  position: relative;
  border-radius: var(--border-radius-l);
  background: var(--lightblue);
  padding: 30px;
  display: flex;
  align-items: start;
  gap: 20px;
  height: 100%;
}
@media (max-width: 991.98px) {
  .download-card {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .download-card {
    gap: 15px;
  }
}
.download-card .download-card__title {
  margin-bottom: 10px;
  font-size: var(--fs-h4);
}
.download-card a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.download-card .download-card__icon {
  margin-top: 8px;
}
@media (max-width: 767.98px) {
  .download-card .download-card__icon {
    margin-top: 6px;
  }
}
.download-card .download-card__icon span {
  color: var(--primary);
  font-size: 50px;
}
@media (max-width: 767.98px) {
  .download-card .download-card__icon span {
    font-size: 35px;
  }
}
.download-card .download-card__text {
  color: var(--secondary);
}

.bcoms-statistic {
  position: relative;
  display: flex;
  gap: 10px 20px;
}
@media (max-width: 767.98px) {
  .bcoms-statistic {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
}
.bcoms-statistic.theme--dark .bcoms-statistic__content .bcoms-statistic__content-counter {
  color: var(--bh-light);
}
.bcoms-statistic.bcoms-statistic--vertical {
  flex-direction: column;
  align-items: center;
}
.bcoms-statistic.bcoms-statistic--vertical .bcoms-statistic__content {
  text-align: center;
}
.bcoms-statistic.bcoms-statistic--vertical .bcoms-statistic__content .bcoms-statistic__content-title {
  justify-content: center;
}
.bcoms-statistic.bcoms-statistic--vertical .bcoms-statistic__content .bcoms-statistic__content-counter {
  justify-content: center;
}
.bcoms-statistic .bcoms-statistic__icon {
  position: relative;
  width: 64px;
  min-width: 64px;
}
@media (max-width: 1199.98px) {
  .bcoms-statistic .bcoms-statistic__icon {
    width: 60px;
    min-width: 60px;
  }
}
@media (max-width: 767.98px) {
  .bcoms-statistic .bcoms-statistic__icon {
    width: 55px;
    min-width: 55px;
  }
}
.bcoms-statistic .bcoms-statistic__content .bcoms-badge {
  padding: 4px 8px;
  display: inline-block;
}
.bcoms-statistic .bcoms-statistic__content .bcoms-badge i {
  font-weight: var(--bh-fw-bold);
}
.bcoms-statistic .bcoms-statistic__content .bcoms-statistic__content-counter {
  font-size: var(--bh-fs-h1);
  font-weight: var(--bh-fw-bold);
  color: var(--bh-brand);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bcoms-statistic .bcoms-statistic__content .bcoms-statistic__content-title {
  font-size: var(--bh-fs-p-s);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bcoms-statistic .bcoms-statistic__content .bcoms-statistic__content-title span {
  display: flex;
  cursor: pointer;
}
.bcoms-statistic .bcoms-statistic__content .bcoms-statistic__content-title span i {
  font-size: var(--bh-fs-p-s);
  color: var(--bh-tertiary);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: initial;
  *vertical-align: auto;
  position: relative;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 110%;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0) translateX(1px);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  line-height: 1.1em;
}

.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

.bcoms-datatable__table thead tr th {
  background: var(--primary);
  color: var(--lightgrey);
  font-weight: var(--fw-regular);
  font-size: var(--fs-p-l);
  padding: 15px 12px;
  border: 0px solid var(--grey);
}

.table > thead {
  vertical-align: middle;
}

table.table.dataTable.fixedHeader-floating > :not(caption) > * > * {
  background: var(--primary);
}

.bcoms-datatable {
  position: relative;
}
.bcoms-datatable table.dataTable th.dt-type-numeric, .bcoms-datatable table.dataTable th.dt-type-date, .bcoms-datatable table.dataTable td.dt-type-numeric, .bcoms-datatable table.dataTable td.dt-type-date {
  text-align: start;
}
.bcoms-datatable .bcoms-datatable__table, .bcoms-datatable table {
  width: 100%;
  border-collapse: collapse !important;
  vertical-align: middle;
}
.bcoms-datatable .bcoms-datatable__table thead tr th, .bcoms-datatable table thead tr th {
  background: var(--primary);
  color: var(--lightgrey);
  font-weight: var(--fw-regular);
  font-size: var(--fs-p-l);
  padding: 15px 12px;
  border: 0px solid var(--grey);
}
.bcoms-datatable .bcoms-datatable__table thead tr th:first-child, .bcoms-datatable table thead tr th:first-child {
  border-top-left-radius: var(--border-radius-l);
}
.bcoms-datatable .bcoms-datatable__table thead tr th:last-child, .bcoms-datatable table thead tr th:last-child {
  border-top-right-radius: var(--border-radius-l);
}
.bcoms-datatable .bcoms-datatable__table thead tr th .bcoms-datatable__table--check input[type=checkbox]:checked + label:before, .bcoms-datatable table thead tr th .bcoms-datatable__table--check input[type=checkbox]:checked + label:before {
  background-color: var(--primary);
}
.bcoms-datatable .bcoms-datatable__table thead tr th .bcoms-datatable__table--check input[type=checkbox]:checked + label:after, .bcoms-datatable table thead tr th .bcoms-datatable__table--check input[type=checkbox]:checked + label:after {
  color: var(--primary);
}
.bcoms-datatable .bcoms-datatable__table tbody tr, .bcoms-datatable table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.bcoms-datatable .bcoms-datatable__table tbody tr:last-child, .bcoms-datatable table tbody tr:last-child {
  border-bottom: 0px solid rgba(0, 0, 0, 0.08);
}
.bcoms-datatable .bcoms-datatable__table tbody tr:last-child td:first-child, .bcoms-datatable table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius-l);
}
.bcoms-datatable .bcoms-datatable__table tbody tr:last-child td:last-child, .bcoms-datatable table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius-l);
}
.bcoms-datatable .bcoms-datatable__table tbody tr.child ul.dtr-details, .bcoms-datatable table tbody tr.child ul.dtr-details {
  width: 100%;
}
.bcoms-datatable .bcoms-datatable__table tbody tr.child ul.dtr-details li, .bcoms-datatable table tbody tr.child ul.dtr-details li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bcoms-datatable .bcoms-datatable__table tbody tr.child ul.dtr-details li .dtr-title, .bcoms-datatable table tbody tr.child ul.dtr-details li .dtr-title {
  color: var(--primary);
  font-weight: var(--fw-regular);
}
.bcoms-datatable .bcoms-datatable__table tbody tr:nth-child(even) td, .bcoms-datatable table tbody tr:nth-child(even) td {
  background-color: var(--lightblue);
}
.bcoms-datatable .bcoms-datatable__table tbody tr:hover td, .bcoms-datatable table tbody tr:hover td {
  background-color: var(--lightblue);
}
.bcoms-datatable .bcoms-datatable__table tbody tr td, .bcoms-datatable table tbody tr td {
  color: var(--grey);
  font-size: var(--fs-p-l);
  padding: 15px 12px;
  border: 0px solid var(--grey);
  background-color: var(--lightblue);
}
.bcoms-datatable .bcoms-datatable__table tbody tr td .content, .bcoms-datatable table tbody tr td .content {
  height: auto !important;
}
.bcoms-datatable .bcoms-datatable__table th, .bcoms-datatable .bcoms-datatable__table td, .bcoms-datatable table th, .bcoms-datatable table td {
  text-align: start;
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox], .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox] {
  display: none;
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox]:checked + label, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox]:checked + label {
  color: var(--grey);
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox]:checked + label:after, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox]:checked + label:after {
  transform: scale(1);
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox]:checked + label:before, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox]:checked + label:before {
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox] + label, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox] + label {
  padding: 0px;
  margin: 0;
  height: 16px;
  width: 16px;
  position: relative;
  font-size: var(--fs-p-l);
  font-weight: var(--fw-regular);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  color: var(--grey);
  cursor: pointer;
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox] + label:before, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius-l);
  border: 1px solid var(--darkgrey);
  background: var(--primary);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox] + label:after, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox] + label:after {
  content: "\e182";
  font-family: Phosphor-Bold;
  font-size: 12px;
  color: var(--white);
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius-l);
  background: transparent;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  transform: scale(0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcoms-datatable .bcoms-datatable__table .bcoms-datatable__table--check input[type=checkbox] + label:hover, .bcoms-datatable table .bcoms-datatable__table--check input[type=checkbox] + label:hover {
  color: var(--bh-accent);
}
.bcoms-datatable .bcoms-datatable__table--success {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bcoms-datatable .bcoms-datatable__table--success i {
  color: var(--bh-success);
  font-size: 20px;
  font-weight: bold;
}
.bcoms-datatable .bcoms-datatable__table--failure {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bcoms-datatable .bcoms-datatable__table--failure i {
  color: var(--red);
  font-size: 20px;
}
.bcoms-datatable .no-sort .dt-column-order {
  display: none !important;
}
.bcoms-datatable .dt-info {
  font-size: var(--fs-p-s);
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination {
  gap: 5px 5px;
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li {
  position: relative;
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li .page-link {
  height: 36px;
  min-width: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px 2px;
  width: 100%;
  color: var(--primary);
  font-size: var(--fs-p-s);
  text-decoration: none;
  background: var(--primary);
  border-radius: var(--border-radius-l);
  border: 1px solid var(--grey);
}
@media (max-width: 991.98px) {
  .bcoms-datatable .dt-container div.dt-paging ul.pagination li .page-link {
    height: 30px;
    min-width: 32px;
  }
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li .page-link i {
  color: var(--bh-accent);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li .page-link:hover {
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li .page-link:hover i {
  color: var(--white);
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li.active .page-link {
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.bcoms-datatable .dt-container div.dt-paging ul.pagination li.active .page-link i {
  color: var(--white);
}
.bcoms-datatable .dt-container .search-filter-col {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 8px 15px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .bcoms-datatable .dt-container .search-filter-col {
    justify-content: start;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .bcoms-datatable .dt-container .search-filter-col {
    justify-content: center;
  }
}
.bcoms-datatable .dt-container .dt-search {
  position: relative;
  max-width: 200px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .bcoms-datatable .dt-container .dt-search {
    max-width: 100%;
  }
}
.bcoms-datatable .dt-container .dt-search label {
  position: absolute;
  left: 0;
  top: 0px;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-p-xl);
  color: var(--primary);
}
.bcoms-datatable .dt-container .dt-search input {
  border: 1px solid var(--darkgrey);
  color: var(--grey);
  background: var(--white);
  width: 100%;
  min-width: 150px;
  height: 44px;
  min-height: auto;
  padding: 10px 15px;
  margin: 0;
  font-size: var(--fs-p-l);
  line-height: 1.2;
  font-weight: var(--fw-regular);
  box-shadow: none;
  outline: none;
  border-radius: var(--border-radius-l);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.bcoms-datatable .dt-container .dt-search input.placeholder {
  opacity: 0.6;
}
.bcoms-datatable .dt-container .dt-search input:-moz-placeholder {
  opacity: 0.6;
}
.bcoms-datatable .dt-container .dt-search input::-moz-placeholder {
  opacity: 0.6;
}
.bcoms-datatable .dt-container .dt-search input::-webkit-input-placeholder {
  opacity: 0.6;
}
.bcoms-datatable .dt-container .form-label-group {
  position: relative;
  max-width: 200px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .bcoms-datatable .dt-container .form-label-group {
    max-width: 100%;
  }
}
.bcoms-datatable .dt-container .form-label-group label {
  top: -10px;
  left: 10px;
  background: var(--primary);
  padding: 0px 5px;
  font-size: var(--fs-p-s);
  color: var(--grey);
  position: absolute;
}
.bcoms-datatable .dt-container .form-label-group .form-select {
  border: 1px solid var(--darkgrey);
  color: var(--grey);
  width: 100%;
  min-width: 150px;
  height: 44px;
  min-height: auto;
  padding: 10px 15px;
  font-size: var(--fs-p-l);
  line-height: 1.2;
  font-weight: var(--fw-regular);
  box-shadow: none;
  outline: none;
  border-radius: var(--border-radius-l);
}
.bcoms-datatable .dt-container .form-label-group .form-select option {
  font-family: var(--bh-ff-primary);
}
.bcoms-datatable .dt-container .dt-length label {
  font-size: var(--fs-p-s);
}
.bcoms-datatable .dt-container .dt-length .form-select {
  border: 1px solid var(--darkgrey);
  color: var(--grey);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 0 6px;
  height: 44px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before {
  border: none;
  content: "\e90b";
  font-family: "icomoon" !important;
  color: var(--white);
  font-size: 8px;
  background: var(--primary);
  height: 20px;
  width: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.dtr-expanded > td.dtr-control::before, table.dataTable.dtr-inline.collapsed > tbody > tr.dtr-expanded > th.dtr-control::before {
  content: "\e909";
  border: none;
  color: var(--white);
}

.view-all {
  display: none;
}

.bcoms-datatable__table--button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bcoms-map {
  position: relative;
  border-radius: var(--border-radius-l);
  overflow: hidden;
  z-index: 0;
}
.bcoms-map .bcoms-map__container {
  display: none;
}
.bcoms-map .bcoms-map__wrapper {
  display: flex;
  aspect-ratio: 16/7;
  max-height: 600px;
  width: 100%;
  background-color: var(--primary);
}
@media (max-width: 991.98px) {
  .bcoms-map .bcoms-map__wrapper {
    aspect-ratio: 16/11;
  }
}
@media (max-width: 767.98px) {
  .bcoms-map .bcoms-map__wrapper {
    aspect-ratio: 16/14;
  }
}
@media (max-width: 480px) {
  .bcoms-map .bcoms-map__wrapper {
    aspect-ratio: 16/20;
  }
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter {
  min-width: 340px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter {
    min-width: 300px;
  }
}
@media (max-width: 991.98px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background: var(--primary);
    z-index: 2;
    box-shadow: 0 0px 8px 2px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease 0s !important;
    -moz-transition: all 0.5s ease 0s !important;
    -ms-transition: all 0.5s ease 0s !important;
    -o-transition: all 0.5s ease 0s !important;
    transition: all 0.5s ease 0s !important;
  }
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter.active {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter {
    width: 65%;
  }
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-close {
  position: absolute;
  top: 7px;
  right: -35px;
  height: 30px;
  width: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--primary);
  color: var(--primary);
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  box-shadow: 0px 0px 4px var(--primary);
}
@media (max-width: 991.98px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-close {
    display: flex;
  }
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-close:hover {
  background-color: var(--red);
  color: var(--white);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter ul {
  padding-top: 88px;
  overflow-y: auto;
  height: 100%;
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter ul li {
  color: var(--bh-primary);
  font-size: var(--bh-fs-p-l);
  font-weight: var(--fw-bold);
  border-bottom: 1px solid var(--secondary);
  padding: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter ul li:hover, .bcoms-map .bcoms-map__wrapper .bcoms-map__filter ul li.active {
  background-color: var(--secondary);
  color: var(--red);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter ul li:last-child {
  border-bottom: 0px;
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input {
  position: relative;
  margin: 20px 15px;
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: var(--primary);
  width: calc(100% - 63px);
  min-width: 150px;
  height: 48px;
  min-height: auto;
  padding: 10px 15px;
  font-size: var(--fs-p-m);
  line-height: 1.2;
  font-weight: var(--fw-regular);
  box-shadow: none;
  outline: none;
  border-radius: var(--border-radius-l);
}
@media (max-width: 991.98px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input {
    width: 100%;
  }
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input.placeholder {
  color: var(--secondary);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input:-moz-placeholder {
  color: var(--secondary);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input::-moz-placeholder {
  color: var(--secondary);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input input::-webkit-input-placeholder {
  color: var(--secondary);
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  background: var(--primary);
  border: none;
  box-shadow: none;
  font-size: 20px;
  color: var(--white);
  border-radius: var(--border-radius-l);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
@media (max-width: 991.98px) {
  .bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input button {
    display: none;
  }
}
.bcoms-map .bcoms-map__wrapper .bcoms-map__filter .bcoms-map__filter-form .bcoms-map__filter-input button:hover {
  background-color: var(--red);
  color: var(--white);
}
.bcoms-map .bcoms-map__output {
  font-family: var(--ff-primary);
  width: 100%;
  z-index: 1;
}
.bcoms-map .bcoms-map__output a {
  color: var(--primary);
}
.bcoms-map .bcoms-map__output .leaflet-control-container .leaflet-left {
  right: 0;
  left: auto;
}
.bcoms-map .bcoms-map__output .leaflet-control-container .leaflet-left .leaflet-control-zoom {
  margin-right: 10px;
}
.bcoms-map .bcoms-map__output .leaflet-control-container .leaflet-left .leaflet-control-zoom a {
  color: var(--secondary);
}
.bcoms-map .bcoms-map__output .leaflet-control-container .leaflet-left .leaflet-control-zoom a:hover {
  color: var(--red);
}
.bcoms-map .bcoms-map__output .leaflet-popup {
  margin-bottom: 40px;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: var(--border-radius-l);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
  margin: 20px;
}
@media (max-width: 767.98px) {
  .bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
    max-width: 250px;
  }
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-title {
  color: var(--red);
  font-size: var(--fs-p-xl);
  font-weight: var(--fw-bold);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-address {
  margin: 10px 0;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-address p {
  margin: 0;
  font-size: var(--fs-p-l);
  color: var(--secondary);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a {
  color: var(--primary);
  text-decoration: underline;
  font-size: var(--fs-p-s);
  position: relative;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a span {
  font-size: 16px;
  vertical-align: text-bottom;
  padding-inline-end: 3px;
}
@media (max-width: 1199.98px) {
  .bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a span {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a span {
    font-size: 12px;
  }
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a:hover {
  color: var(--red);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-direction a:hover:after {
  color: var(--red);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-social {
  position: relative;
  margin: 15px 0px;
}
@media (max-width: 767.98px) {
  .bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-social {
    margin: 10px 0px;
  }
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-social a {
  font-size: var(--fs-p-l);
  font-weight: var(--fw-bold);
  color: var(--primary);
  padding: 4px 0;
  display: block;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-content-wrapper .bcoms-map__callout-social a:hover {
  color: var(--red);
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-close-button {
  top: 5px;
  right: 5px;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-close-button:before {
  content: "\e919";
  font-family: "icomoon" !important;
  font-size: 17px;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-map .bcoms-map__output .leaflet-popup .leaflet-popup-close-button span {
  display: none;
}

.cookie-card {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  padding: 25px 0px;
  box-shadow: 0 -7px 6px rgba(0, 0, 0, 0.1);
}
.cookie-card p {
  margin: 0;
}
.cookie-card .cookie-card__container {
  display: flex;
  align-items: start;
  gap: 10px 50px;
}
@media (max-width: 1199.98px) {
  .cookie-card .cookie-card__container {
    flex-wrap: wrap;
  }
}
.cookie-card .cookie-card__content a {
  color: var(--bh-brand);
  text-decoration: underline;
}
.cookie-card .cookie-card__content a:hover {
  color: var(--bh-accent);
}
.cookie-card .cookie-card__buttons {
  display: flex;
  align-items: center;
  min-width: 35%;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px;
}

.bcoms-footer {
  position: relative;
  padding: 60px 0;
  background-color: var(--bh-bg-primary);
  min-width: 100%;
}
@media (max-width: 767.98px) {
  .bcoms-footer {
    padding: 40px 0;
  }
}
.bcoms-footer.theme--dark {
  background-color: var(--bh-bg-dark);
}
.bcoms-footer.theme--dark .bcoms-footer__menu .bcoms-footer__menu-col ul li a, .bcoms-footer.theme--dark .bcoms-footer__paragraph p, .bcoms-footer.theme--dark .bcoms-footer__direction, .bcoms-footer.theme--dark .bcoms-footer__contact li a, .bcoms-footer.theme--dark .bcoms-footer__link li a, .bcoms-footer.theme--dark .bcoms-footer__newsletter p a, .bcoms-footer.theme--dark .bcoms-footer__lastupdate p, .bcoms-footer.theme--dark .bcoms-footer__solcial-widget ul li a {
  color: var(--bh-linkinverse);
}
.bcoms-footer.theme--dark .bcoms-footer__menu .bcoms-footer__copyrights p {
  color: var(--bh-inverse);
}
.bcoms-footer h1, .bcoms-footer h2, .bcoms-footer h3, .bcoms-footer h4, .bcoms-footer h5, .bcoms-footer h6 {
  color: var(--bh-light);
}
.bcoms-footer h5 {
  margin-bottom: 25px;
}
@media (max-width: 1199.98px) {
  .bcoms-footer h5 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .bcoms-footer h5 {
    margin-bottom: 15px;
  }
}
.bcoms-footer .bcoms-footer__paragraph p {
  margin-bottom: 5px;
  font-size: var(--bh-fs-p-s);
  text-wrap: pretty;
  text-wrap: balance;
}
.bcoms-footer .bcoms-footer__direction {
  font-size: var(--bh-fs-p-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-underline-offset 0.3s;
}
.bcoms-footer .bcoms-footer__direction:hover {
  color: var(--bh-light);
  text-underline-offset: 4px;
}
.bcoms-footer .bcoms-footer__contact {
  margin: 25px 0;
  margin-bottom: 0;
}
.bcoms-footer .bcoms-footer__contact li {
  margin: 10px 0;
}
.bcoms-footer .bcoms-footer__contact li a {
  font-size: var(--bh-fs-p-m);
  font-weight: var(--bh-fw-bold);
  color: var(--bh-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-underline-offset 0.3s;
  padding-inline-start: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  direction: ltr;
}
.bcoms-footer .bcoms-footer__contact li a:hover {
  color: var(--bh-light);
  text-underline-offset: 4px;
}
.bcoms-footer .bcoms-footer__contact li a i {
  position: absolute;
  left: 0;
  color: var(--bh-tertiary);
  font-size: 22px;
}
.bcoms-footer .bcoms-footer__link li a {
  font-size: var(--bh-fs-p-s);
  text-decoration: underline;
  padding: 5px 0;
  color: var(--bh-secondary);
  text-underline-offset: 3px;
  transition: text-underline-offset 0.3s;
}
.bcoms-footer .bcoms-footer__link li a:hover {
  color: var(--bh-light);
  text-underline-offset: 4px;
}
.bcoms-footer .bcoms-footer__newsletter {
  margin-bottom: 30px;
}
.bcoms-footer .bcoms-footer__newsletter p {
  font-size: var(--bh-fs-p-xs);
  margin: 0;
}
.bcoms-footer .bcoms-footer__newsletter p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-underline-offset 0.3s;
}
.bcoms-footer .bcoms-footer__newsletter p a:hover {
  color: var(--bh-light);
  text-underline-offset: 4px;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input {
  position: relative;
  margin-bottom: 10px;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input.--is-invalid input {
  border-color: var(--bh-error);
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input.--is-success input {
  border-color: var(--bh-success);
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input {
  border: 1px solid var(--bh-border-primary);
  color: var(--bh-secondary);
  background: var(--bh-bg-primary);
  width: 100%;
  min-width: 150px;
  height: 52px;
  min-height: auto;
  padding: 10px 15px;
  padding-inline-end: 50px;
  font-size: var(--bh-fs-p-m);
  line-height: 1.2;
  font-weight: var(--bh-fw-regular);
  box-shadow: none;
  outline: none;
  border-radius: var(--bh-border-radius-xs);
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input.placeholder {
  opacity: 0.4;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input:-moz-placeholder {
  opacity: 0.4;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input::-moz-placeholder {
  opacity: 0.4;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input::-webkit-input-placeholder {
  opacity: 0.4;
}
@media (max-width: 991.98px) {
  .bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input {
    height: 50px;
  }
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input input:focus-visible {
  box-shadow: 0 0px 0px 3px var(--bh-focus);
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 22px;
  color: var(--bh-accent);
  border-top-right-radius: var(--bh-border-radius-xs);
  border-bottom-right-radius: var(--bh-border-radius-xs);
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input button i {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.bcoms-footer .bcoms-footer__newsletter .bcoms-footer__newsletter-input button:hover {
  color: var(--bh-light);
  background-color: var(--bh-accent);
}
.bcoms-footer .bcoms-footer__solcial-widget ul {
  display: flex;
  align-items: center;
  gap: 5px 10px;
}
.bcoms-footer .bcoms-footer__solcial-widget ul li a {
  height: 45px;
  width: 45px;
  border: 1px solid var(--bh-border-primary);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-secondary);
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 1199.98px) {
  .bcoms-footer .bcoms-footer__solcial-widget ul li a {
    height: 40px;
    width: 40px;
  }
}
.bcoms-footer .bcoms-footer__solcial-widget ul li a:hover {
  background: var(--bh-error);
  border: 1px solid var(--bh-error);
  color: var(--bh-linkinverse);
}
.bcoms-footer .bcoms-footer__lastupdate p {
  font-size: var(--bh-fs-p-s);
}
.bcoms-footer .hr {
  opacity: 0.5;
  margin: 20px 0;
}
.bcoms-footer .bcoms-footer__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 50px;
}
@media (max-width: 991.98px) {
  .bcoms-footer .bcoms-footer__logos {
    flex-wrap: wrap;
  }
}
.bcoms-footer .bcoms-footer__logos .bcoms-footer__logos-col {
  display: flex;
  align-items: end;
  gap: 10px 25px;
}
@media (max-width: 991.98px) {
  .bcoms-footer .bcoms-footer__logos .bcoms-footer__logos-col {
    flex-wrap: wrap;
  }
}
.bcoms-footer .bcoms-footer__logos .bcoms-footer__logos-col img {
  height: auto;
  width: auto;
  min-width: 100%;
  max-height: 110px;
}
@media (max-width: 1199.98px) {
  .bcoms-footer .bcoms-footer__logos .bcoms-footer__logos-col img {
    max-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-footer .bcoms-footer__logos .bcoms-footer__logos-col img {
    max-height: 50px;
  }
}
.bcoms-footer .bcoms-footer__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 50px;
}
@media (max-width: 991.98px) {
  .bcoms-footer .bcoms-footer__menu {
    flex-wrap: wrap;
    justify-content: start;
  }
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul {
  display: flex;
  align-items: center;
  gap: 5px 25px;
}
@media (max-width: 991.98px) {
  .bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul {
    flex-wrap: wrap;
  }
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li {
  position: relative;
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li:after {
  content: "";
  position: absolute;
  right: -13px;
  top: 11px;
  height: 13px;
  width: 1px;
  background-color: var(--bh-border-secondary);
  opacity: 0.3;
}
@media (max-width: 1199.98px) {
  .bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li:after {
    top: 9px;
  }
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li:last-child:after {
  display: none;
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li a {
  font-size: var(--bh-fs-p-s);
  color: var(--bh-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-underline-offset 0.3s;
  padding: 5px 0;
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__menu-col ul li a:hover {
  color: var(--bh-light);
  text-underline-offset: 4px;
}
.bcoms-footer .bcoms-footer__menu .bcoms-footer__copyrights p {
  font-size: var(--bh-fs-p-s);
  color: var(--bh-secondary);
  margin: 0;
}

.bcoms-scrollToTopBtn {
  border: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0px 0px 9px -5px rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 65px;
  right: 28px;
  z-index: 10;
  transform: translateY(200px);
  -webkit-transition: all 1s ease 0s !important;
  -moz-transition: all 1s ease 0s !important;
  -ms-transition: all 1s ease 0s !important;
  -o-transition: all 1s ease 0s !important;
  transition: all 1s ease 0s !important;
  line-height: 0;
}
@media (max-width: 1399.98px) {
  .bcoms-scrollToTopBtn {
    right: 23px;
  }
}
@media (max-width: 991.98px) {
  .bcoms-scrollToTopBtn {
    width: 45px;
    height: 45px;
    right: 10px;
  }
}
@media (max-width: 575.98px) {
  .bcoms-scrollToTopBtn {
    right: 13px;
  }
}
.bcoms-scrollToTopBtn span {
  color: var(--primary);
  font-size: 30px;
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 991.98px) {
  .bcoms-scrollToTopBtn span {
    font-size: 22px;
  }
}
.bcoms-scrollToTopBtn:hover {
  background: var(--primary);
}
.bcoms-scrollToTopBtn:hover span {
  color: var(--white);
}
.bcoms-scrollToTopBtn:hover span:after {
  height: 0px;
}

.showBtn {
  transform: translateY(0);
}

.bcoms-floatinglist {
  position: fixed;
  overflow: hidden;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 11;
  gap: 10px;
  padding-inline-start: 40px;
  background-color: var(--bh-bg-brand);
  border-top-left-radius: var(--bh-border-radius-s);
  transform: translateX(calc(100% - 90px));
  -webkit-transition: all 0.5s ease 0s !important;
  -moz-transition: all 0.5s ease 0s !important;
  -ms-transition: all 0.5s ease 0s !important;
  -o-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
@media (max-width: 1199.98px) {
  .bcoms-floatinglist {
    transform: translateX(calc(100% - 85px));
  }
}
@media (max-width: 767.98px) {
  .bcoms-floatinglist {
    padding-inline-start: 35px;
    transform: translateX(calc(100% - 70px));
  }
}
.bcoms-floatinglist.bcoms-floatinglist--open {
  transform: translateX(0);
}
.bcoms-floatinglist.bcoms-floatinglist--open .bcoms-floatinglist__backarrow i {
  transform: scaleX(-1);
}
.bcoms-floatinglist.bcoms-floatinglist--show {
  display: inherit;
  padding-inline-start: 0px;
  padding-block-end: 40px;
  right: 20px;
}
.bcoms-floatinglist.bcoms-floatinglist--show .bcoms-floatinglist__backarrow {
  height: 40px;
  width: 100%;
}
.bcoms-floatinglist.bcoms-floatinglist--show ul {
  flex-direction: column;
}
.bcoms-floatinglist ul {
  display: flex;
  align-items: center;
  gap: 0px;
}
.bcoms-floatinglist ul li {
  color: var(--bh-light);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background-color: var(--bh-bg-brand);
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .bcoms-floatinglist ul li {
    font-size: 25px;
  }
}
@media (max-width: 767.98px) {
  .bcoms-floatinglist ul li {
    font-size: 20px;
    padding: 10px 8px;
  }
}
.bcoms-floatinglist ul li:hover {
  background-color: var(--bh-accent);
}
.bcoms-floatinglist ul li a {
  color: var(--bh-light);
}
.bcoms-floatinglist__backarrow {
  position: absolute;
  bottom: 0;
  left: 0px;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  color: var(--bh-inverse);
  font-size: 22px;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background-color: var(--bh-bg-brand);
}
@media (max-width: 767.98px) {
  .bcoms-floatinglist__backarrow {
    font-size: 18px;
    width: 35px;
  }
}
.bcoms-floatinglist__backarrow:hover {
  background-color: var(--bh-accent);
}
.bcoms-floatinglist__backarrow i {
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  -ms-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}

.footer-main-block {
  display: flex;
  align-items: center;
  gap: 10px 50px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer-main-block {
    flex-wrap: wrap;
  }
}
.footer-main-block .footer-main-block-col {
  display: flex;
  gap: 20px 50px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer-main-block .footer-main-block-col {
    flex-wrap: wrap;
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .footer-main-block .footer-main-block-col {
    min-width: 100%;
  }
}
.footer-main-block .footer-main-block-col .footer-mainlogo img {
  min-width: 186px;
}
.footer-main-block .footer-info-block .footer-info {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}

/***************************************************
 * Generated by SVG Artista on 5/14/2025, 12:48:38 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg .svg-elem-logo-animation-1 {
  stroke-dashoffset: 666.8080444336px;
  stroke-dasharray: 666.8080444336px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-logo-animation-1 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-logo-animation-2 {
  stroke-dashoffset: 644.7593994141px;
  stroke-dasharray: 644.7593994141px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-logo-animation-2 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-logo-animation-3 {
  stroke-dashoffset: 495.5649719238px;
  stroke-dasharray: 495.5649719238px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-logo-animation-3 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-logo-animation-4 {
  stroke-dashoffset: 70.3455123901px;
  stroke-dasharray: 70.3455123901px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-logo-animation-4 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-logo-animation-5 {
  stroke-dashoffset: 70.3320770264px;
  stroke-dasharray: 70.3320770264px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-logo-animation-5 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-logo-animation-6 {
  stroke-dashoffset: 134.6878814697px;
  stroke-dasharray: 134.6878814697px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-logo-animation-6 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-logo-animation-7 {
  stroke-dashoffset: 134.6998596191px;
  stroke-dasharray: 134.6998596191px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .svg-elem-logo-animation-7 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

/***************************************************
 * Generated by SVG Artista on 5/14/2025, 1:54:57 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg .svg-elem-map-1 {
  stroke-dashoffset: 340.0760192871px;
  stroke-dasharray: 340.0760192871px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-map-1 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-2 {
  stroke-dashoffset: 192.283996582px;
  stroke-dasharray: 192.283996582px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-map-2 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-3 {
  stroke-dashoffset: 106.65599823px;
  stroke-dasharray: 106.65599823px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-map-3 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-4 {
  stroke-dashoffset: 314.5100097656px;
  stroke-dasharray: 314.5100097656px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-map-4 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-5 {
  stroke-dashoffset: 817.7540283203px;
  stroke-dasharray: 817.7540283203px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-map-5 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-6 {
  stroke-dashoffset: 636.1340332031px;
  stroke-dasharray: 636.1340332031px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-map-6 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-7 {
  stroke-dashoffset: 287.4920043945px;
  stroke-dasharray: 287.4920043945px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .svg-elem-map-7 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-8 {
  stroke-dashoffset: 246.4580078125px;
  stroke-dasharray: 246.4580078125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-map-8 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-9 {
  stroke-dashoffset: 455.2520141602px;
  stroke-dasharray: 455.2520141602px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-map-9 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-10 {
  stroke-dashoffset: 9132px;
  stroke-dasharray: 9132px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

svg.active .svg-elem-map-10 {
  stroke-dashoffset: 0;
  fill: rgb(0, 0, 0);
}

svg .svg-elem-map-11 {
  stroke-dashoffset: 9132px;
  stroke-dasharray: 9132px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-map-11 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-map-12 {
  stroke-dashoffset: 51495.86328125px;
  stroke-dasharray: 51495.86328125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}

svg.active .svg-elem-map-12 {
  stroke-dashoffset: 0;
  fill: rgb(243, 248, 254);
}

svg .svg-elem-map-13 {
  stroke-dashoffset: 623.8495483398px;
  stroke-dasharray: 623.8495483398px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-map-13 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-14 {
  stroke-dashoffset: 1167.6950683594px;
  stroke-dasharray: 1167.6950683594px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-map-14 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-15 {
  stroke-dashoffset: 730.5626220703px;
  stroke-dasharray: 730.5626220703px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-map-15 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-16 {
  stroke-dashoffset: 402.7036743164px;
  stroke-dasharray: 402.7036743164px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-map-16 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-17 {
  stroke-dashoffset: 47.53465271px;
  stroke-dasharray: 47.53465271px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}

svg.active .svg-elem-map-17 {
  stroke-dashoffset: 0;
  fill: rgb(0, 37, 112);
}

svg .svg-elem-map-18 {
  stroke-dashoffset: 146.0867614746px;
  stroke-dasharray: 146.0867614746px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-map-18 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-19 {
  stroke-dashoffset: 151.4667510986px;
  stroke-dasharray: 151.4667510986px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-map-19 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-20 {
  stroke-dashoffset: 84.2087783813px;
  stroke-dasharray: 84.2087783813px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

svg.active .svg-elem-map-20 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-21 {
  stroke-dashoffset: 16.0700597763px;
  stroke-dasharray: 16.0700597763px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

svg.active .svg-elem-map-21 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-22 {
  stroke-dashoffset: 114.9863204956px;
  stroke-dasharray: 114.9863204956px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
}

svg.active .svg-elem-map-22 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-23 {
  stroke-dashoffset: 151.4671936035px;
  stroke-dasharray: 151.4671936035px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

svg.active .svg-elem-map-23 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-24 {
  stroke-dashoffset: 84.208694458px;
  stroke-dasharray: 84.208694458px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
}

svg.active .svg-elem-map-24 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-25 {
  stroke-dashoffset: 16.0700883865px;
  stroke-dasharray: 16.0700883865px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}

svg.active .svg-elem-map-25 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-26 {
  stroke-dashoffset: 319.2913208008px;
  stroke-dasharray: 319.2913208008px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
}

svg.active .svg-elem-map-26 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-27 {
  stroke-dashoffset: 151.4672241211px;
  stroke-dasharray: 151.4672241211px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s;
}

svg.active .svg-elem-map-27 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-28 {
  stroke-dashoffset: 84.2091903687px;
  stroke-dasharray: 84.2091903687px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
}

svg.active .svg-elem-map-28 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-29 {
  stroke-dashoffset: 16.0703277588px;
  stroke-dasharray: 16.0703277588px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s;
}

svg.active .svg-elem-map-29 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-30 {
  stroke-dashoffset: 255.5539550781px;
  stroke-dasharray: 255.5539550781px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
}

svg.active .svg-elem-map-30 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-31 {
  stroke-dashoffset: 151.4672088623px;
  stroke-dasharray: 151.4672088623px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
}

svg.active .svg-elem-map-31 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-32 {
  stroke-dashoffset: 84.2090835571px;
  stroke-dasharray: 84.2090835571px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s;
}

svg.active .svg-elem-map-32 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-33 {
  stroke-dashoffset: 16.0700807571px;
  stroke-dasharray: 16.0700807571px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
}

svg.active .svg-elem-map-33 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-34 {
  stroke-dashoffset: 127.5328826904px;
  stroke-dasharray: 127.5328826904px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s;
}

svg.active .svg-elem-map-34 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-35 {
  stroke-dashoffset: 151.4671936035px;
  stroke-dasharray: 151.4671936035px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
}

svg.active .svg-elem-map-35 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-36 {
  stroke-dashoffset: 84.208984375px;
  stroke-dasharray: 84.208984375px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
}

svg.active .svg-elem-map-36 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-37 {
  stroke-dashoffset: 16.0701093674px;
  stroke-dasharray: 16.0701093674px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.32s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.32s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
}

svg.active .svg-elem-map-37 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-38 {
  stroke-dashoffset: 94.162399292px;
  stroke-dasharray: 94.162399292px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
}

svg.active .svg-elem-map-38 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-39 {
  stroke-dashoffset: 151.4672546387px;
  stroke-dasharray: 151.4672546387px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s;
}

svg.active .svg-elem-map-39 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-40 {
  stroke-dashoffset: 84.2088775635px;
  stroke-dasharray: 84.2088775635px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
}

svg.active .svg-elem-map-40 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-41 {
  stroke-dashoffset: 16.0700569153px;
  stroke-dasharray: 16.0700569153px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
}

svg.active .svg-elem-map-41 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-42 {
  stroke-dashoffset: 197.5415344238px;
  stroke-dasharray: 197.5415344238px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
}

svg.active .svg-elem-map-42 {
  stroke-dashoffset: 0;
}

svg .svg-elem-map-43 {
  stroke-dashoffset: 151.4672088623px;
  stroke-dasharray: 151.4672088623px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s;
}

svg.active .svg-elem-map-43 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-44 {
  stroke-dashoffset: 84.208732605px;
  stroke-dasharray: 84.208732605px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s;
}

svg.active .svg-elem-map-44 {
  stroke-dashoffset: 0;
  fill: rgb(143, 155, 179);
}

svg .svg-elem-map-45 {
  stroke-dashoffset: 16.0700683594px;
  stroke-dasharray: 16.0700683594px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.28s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.28s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s;
}

svg.active .svg-elem-map-45 {
  stroke-dashoffset: 0;
  fill: rgb(224, 22, 36);
}

svg .svg-elem-map-46 {
  stroke-dashoffset: 1667.9760742188px;
  stroke-dasharray: 1667.9760742188px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s;
}

svg.active .svg-elem-map-46 {
  stroke-dashoffset: 0;
}/*# sourceMappingURL=style.css.map */