@charset "UTF-8";

/*
 * Font
 */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url(../../assets/fonts/montserrat/Montserrat-Light.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: url(../../assets/fonts/montserrat/Montserrat-LightItalic.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/montserrat/Montserrat-Regular.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(../../assets/fonts/montserrat/Montserrat-Medium.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(../../assets/fonts/montserrat/Montserrat-SemiBold.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(../../assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(../../assets/fonts/montserrat/Montserrat-Bold.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(../../assets/fonts/montserrat/Montserrat-BoldItalic.ttf)
    format("truetype");
  font-display: swap;
}

/*
 * Root
 */

:root {
  --bic-primary-font: "Montserrat";
  --bic-secondary-font: "Montserrat";
  --bic-font-size: 16px;
  --bic-font-weight: 500;
  --bic-line-height: 1.5;
  --bic-container-width: 1530px;
  --bic-site-gap: 80px;
  --bic-header-height: 80px;
  --bic-header-logo-width: 217px;
  --bic-grid-gap: 15px;
  --bic-primary-color: #f05323;
  --bic-primary-hover-color: #d1471f;
  --bic-secondary-color: #1f1f1f;
  --bic-secondary-hover-color: #ffffff;
  --bic-heading-color: #1f1f1f;
  --bic-text-color: #364153;
  --bic-link-color: #1f1f1f;
  --bic-link-hover-color: #1f1f1f;
  --bic-border-color: #ebedff;
  --bic-border-radius: 8px;
  --bic-gradient-color: linear-gradient(
    92deg,
    #ffb966 1.44%,
    #ff8547 52.58%,
    #f05323 98.14%
  );
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--bic-gradient-color);
  border-radius: 8px;
}

/*
 * Reset
 */

html {
  box-sizing: border-box;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  padding: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 0;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: var(--bic-link-color);
  font-weight: 500;
  text-align: left;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  background: #eee;
  font-family: monospace, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

b,
strong {
  color: var(--bic-heading-color);
  font-weight: 700;
}

.bic-bold,
.bic-bold a {
  color: var(--bic-link-color) !important;
  font-weight: 700 !important;
}

code,
kbd,
samp,
tt,
var {
  font-family: monospace, monospace;
  font-size: 1rem;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

mark,
ins {
  --background-color: #f2f2f2;
  --text-color: #1f1f1f;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 0.25rem;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25rem;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--bic-primary-font);
  font-size: var(--bic-font-size);
  line-height: 1.6;
  margin: 0;
}

text,
select,
textarea,
number {
  --background-color: #ffffff;
  --text-color: #1f1f1f;
  background-color: var(--background-color);
  color: var(--text-color);
}

p {
  margin: 0 0 1.5rem;
  padding: 0;
}

p:last-child {
  margin: 0;
}

blockquote,
.wp-block-quote {
  color: var(--bic-link-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  overflow: hidden;
  padding: 0 0 0 2.5rem;
}

.wp-block-quote.is-style-large {
  padding: 0 0 0 2.5rem;
}

blockquote:before {
  font-size: 28px !important;
  left: 0;
  position: absolute;
}

blockquote cite,
.wp-block-quote cite {
  color: var(--bic-text-color);
  display: block;
  font-size: 16px;
  font-style: normal;
  margin-top: 0.5em;
}

.wp-block-quote.extraclass:before,
blockquote.has-text-color:before {
  content: "";
}

blockquote cite:before {
  content: "-";
  margin-right: 5px;
}

blockquote cite a {
  color: var(--bic-primary-color);
}

address {
  font-style: normal;
  margin: 0 0 1.5rem;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  font-weight: 700;
  box-sizing: border-box;
  color: var(--bic-heading-color);
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  margin: 0;
  -webkit-appearance: none;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden],
.hidden {
  display: none;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.alignleft {
  clear: both;
  display: inline;
  float: left;
  margin: 0.3em 1.5em 1.5em 0;
}

.alignright {
  clear: both;
  display: inline;
  float: right;
  margin: 0.3em 0 1.5em 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

body {
  color: var(--bic-text-color);
  background-color: #fbfcfd;
  font-family: var(--bic-primary-font);
  font-size: var(--bic-font-size);
  font-weight: var(--bic-font-weight);
  line-height: var(--bic-line-height);
  overflow-x: hidden;
}

body.rtl {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  clear: both;
  color: var(--bic-heading-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: none;
}

h1,
.h1 {
  font-size: 56px;
  font-size: 3.5rem;
}

h2,
.h2 {
  font-size: 44px;
  font-size: 2.75rem;
}

h3,
.h3 {
  font-size: 36px;
  font-size: 2.25rem;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 1.875rem;
}

h5,
.h5 {
  font-size: 24px;
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 20px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

:focus,
button:focus {
  outline: none;
}

label {
  color: var(--bic-heading-color);
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
}

fieldset {
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  --background-color: #ffffff;
  --text-color: #1f1f1f;
  background-color: var(--background-color);
  color: var(--text-color);
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  display: block;
  font-size: var(--bic-font-size);
  line-height: 1.5;
  padding: 11px 16px;
  height: 56px;
  width: 100%;
}

textarea {
  overflow: auto;
  min-height: 200px;
  border-radius: var(--bic-border-radius);
}

select {
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  height: 45px;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff url(../images/icons/icon_select.svg) 97% 50%/26px 60px
    no-repeat;
  display: block;
  padding-left: 15px;
  padding-right: 25px;
}

select option {
  background-color: var(--bic-body-background);
  color: var(--bic-text-color);
}

select::-ms-expand {
  display: none;
}

body.rtl select {
  background: #ffffff url(../images/icons/icon_select.svg) 2% 50%/26px 60px
    no-repeat;
}

select::-webkit-scrollbar {
  width: 12px;
}

select::-webkit-scrollbar-track {
  background: #e9e9e9;
}

select::-webkit-scrollbar-thumb {
  background: #cccccc;
}

input[type="checkbox"],
input[type="radio"] {
  border: 1px solid var(--bic-border-color);
  margin-right: 8px;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 6px 5px 0;
  cursor: pointer;
  vertical-align: middle;
  top: 1px;
  line-height: 0;
  transition: var(--bic-transition);
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: 400;
  display: inline-block;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1);
  opacity: 1;
}

input[type="radio"]::before {
  background: var(--bic-secondary-color);
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  opacity: 0;
  transform: scale(0.9);
  border-radius: 50%;
}

input[type="checkbox"]::before {
  background: var(--bic-secondary-color);
  color: var(--bic-secondary-hover-color);
  font-weight: 400;
  font-size: 12px;
  height: 100%;
  width: 100%;
  line-height: 1.3;
  opacity: 0;
  transform: scale(0.9);
}

.button,
.btn,
button,
input[type="button"],
input[type="submit"] {
  background: var(--bic-gradient-color);
  color: #fff;
  line-height: 1;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 18px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

a.btn.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.5);
  transition: none;
  border-radius: 30px;
}

a.btn.btn-primary:hover {
  transform: scale(1.05);
  transition: all 0.3s;
}

a.btn.btn-primary:hover::before {
  width: 120%;
  background-color: hsla(0, 0%, 100%, 0);
  transition: all 0.5s ease-in-out;
}

.button:not([href]):not([tabindex]),
.btn:not([href]):not([tabindex]) {
  background-color: var(--bic-primary-color);
  color: #ffffff;
}

.button:hover,
.btn:hover,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:not([href]):not([tabindex]):hover,
.btn:not([href]):not([tabindex]):hover {
  background-color: var(--bic-primary-hover-color);
  color: #fff;
}

input + button,
input + input[type="button"],
input + input[type="submit"] {
  padding: 0.75em 1.4671em;
}

::-webkit-input-placeholder {
  color: var(--bic-text-color);
  font-family: var(--bic-primary-font);
}

:-moz-placeholder {
  color: var(--bic-text-color);
  font-family: var(--bic-primary-font);
}

::-moz-placeholder {
  color: var(--bic-text-color);
  font-family: var(--bic-primary-font);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--bic-text-color);
  font-family: var(--bic-primary-font);
}

hr {
  border: none;
  border-bottom: 1px solid #1d1f21;
  margin: 20px 0 20px;
}

hr.wp-block-separator {
  max-width: 100px;
}

hr.wp-block-separator.is-style-wide,
hr.wp-block-separator.is-style-dots {
  max-width: 100%;
}

ul,
ol {
  margin-left: 1.2em;
  margin-bottom: 1.5em;
  padding: 0;
}

ul {
  list-style: inside;
}

ol {
  list-style: decimal;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

table {
  border-spacing: 0;
  margin: 0 0 1.5rem;
  width: 100%;
}

thead th {
  color: var(--bic-heading-color);
  padding-bottom: 0.6781rem;
  font-weight: 700;
}

tr {
  border: 1px solid var(--bic-border-color);
}

th {
  font-weight: 700;
  padding: 0.6781rem;
  text-align: left;
}

td {
  padding: 0.6781rem;
}

.bic-table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

a {
  color: var(--bic-link-color);
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a:hover {
  color: var(--bic-link-hover-color);
  outline: 0;
  text-decoration: none;
}

/*
 * Header
 */

.bic-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.admin-bar .bic-header {
  top: 32px;
}

.bic-header::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.6s;
  border-bottom: 1px solid #f3f4f6;
}

.bic-header-sticky::before {
  top: 0;
  transition: all 0.6s;
  position: absolute;
}

.bic-header-sticky .bic-header-nav ul.menu-list > li > a {
  color: #000;
}

.bic-header-desktop,
.bic-header-mobile {
  flex: 0 0 100%;
  max-width: 100%;
}

.bic-header-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 var(--bic-grid-gap);
}

.bic-header-col.col-left {
  flex: 1;
  justify-content: flex-start;
}

.bic-header-col.col-center {
  flex: 1 0 auto;
  justify-content: end;
}

.bic-header-col.col-right {
  flex: 1;
  justify-content: flex-end;
}

.bic-header-col > * {
  display: flex;
  align-items: center;
  height: var(--bic-header-height);
}

.bic-header-main {
  position: relative;
}

/* Logo */

.sticky-logo,
.bic-header-logo a {
  display: inline-flex;
  align-items: center;
  height: var(--bic-header-height);
  max-height: 100%;
}

.sticky-logo img,
.bic-header-logo img {
  width: var(--bic-header-logo-width);
  max-width: var(--bic-header-logo-width);
  height: auto;
}

.bic-header-sticky .bic-header-logo a {
  display: none;
}

a.sticky-logo {
  display: none;
}

.bic-header-sticky a.sticky-logo {
  display: inline-flex;
}

/* Menu */

.bic-header-nav,
.bic-header-nav > ul.menu-list,
.bic-header-nav > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.bic-header-nav ul {
  margin: 0;
  list-style: none;
}

.bic-header-nav > ul.menu-list {
  flex-direction: row;
  flex-wrap: wrap;
}

.bic-header-nav ul.menu-list li {
  position: relative;
}

.bic-header-nav ul.menu-list > li {
  height: var(--bic-header-height);
}

.bic-header-nav ul.menu-list > li:not(:last-child) {
  margin-right: 35px;
}

.bic-header-nav ul.menu-list > li > a {
  color: #fff;
  font-weight: 600;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-transform: uppercase;
}

.bic-header-nav ul.menu-list > li:hover > a,
.bic-header-nav ul.menu-list > li > a:focus,
.bic-header-nav ul.menu-list > li[class*="current"] > a {
  color: var(--bic-primary-color);
}

.bic-header-nav ul.menu-list > li > a span.bic-menu-text {
  position: relative;
}

.bic-header-nav ul.menu-list > li > a span.bic-menu-text:after {
  border-bottom: 2px solid;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  transition: width 0.3s;
}

.bic-header-nav ul.menu-list > li:hover > a span.bic-menu-text:after {
  width: 100%;
}

.bic-header-nav ul.menu-list > li[class*="has-children"] > a:after {
  content: "";
  position: relative;
  -webkit-mask-image: url(../images/icons/icon_chevron_down.svg);
  mask-image: url(../images/icons/icon_chevron_down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: currentColor;
  width: 14px;
  height: 14px;
  display: block;
  margin-left: 5px;
  margin-bottom: 2px;
  transition: transform 0.3s;
}

.bic-header-nav ul.menu-list .sub-menu {
  background-color: #ffffff;
  border-radius: var(--bic-border-radius);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  color: var(--bic-text-color);
  padding: 10px 0;
  min-width: 230px;
  position: absolute;
  left: -10px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 98;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(15px);
}

.bic-header-nav ul.sub-menu > li .sub-menu {
  left: 100%;
  top: 0;
}

.bic-header-nav ul.menu-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: visible;
  pointer-events: unset;
}

.bic-header-nav ul.menu-list ul.sub-menu li a {
  display: block;
  color: var(--bic-text-color);
  padding: 6px 15px;
  white-space: nowrap;
}

.bic-header-nav ul.menu-list ul.sub-menu li:hover > a,
.bic-header-nav ul.menu-list ul.sub-menu li > a:focus,
.bic-header-nav ul.menu-list ul.sub-menu li[class*="current"] > a {
  color: var(--bic-primary-color);
}

/* Mega menu */

.bic-header-nav ul.menu-list > li.mega-menu {
  position: unset;
}

.bic-header-nav ul.menu-list li.mega-menu .sub-menu {
  padding: 0 !important;
  width: calc(var(--bic-container-width) - var(--bic-grid-gap) * 2);
  left: 50%;
  transform: translate(-50%, 0);
  overflow: hidden;
}

.megamenu-panel {
  display: flex;
}

.megamenu-panel-submenu {
  width: -moz-max-content;
  width: max-content;
  padding: 0.78125vw;
  display: flex;
  flex-flow: column;
  gap: 4px;
  background: #f4f4f4;
}

.megamenu-panel-content {
  width: 100%;
}

.megamenu-panel-content-item {
  display: none;
  padding: 1.04vw;
  gap: 1.5vw;
  opacity: 0;
}

.megamenu-panel-content-item.active {
  display: flex;
  opacity: 1;
}

.megamenu-panel-submenu .btn {
  padding: 0.9375vw 1.04vw;
  background: none;
  border-radius: var(--bic-border-radius);
  box-shadow: none;
  color: var(--bic-link-color);
  text-transform: none;
}

.megamenu-panel-submenu .btn::before {
  display: none;
}

.megamenu-panel-submenu .btn.active {
  background: #fff;
  color: var(--bic-primary-color);
  transform: none !important;
}

.megamenu-panel-content-item-image {
  position: relative;
  width: 18vw;
  height: auto;
  flex: 0 0 auto;
  overflow: hidden;
}

.megamenu-panel-content-item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--bic-border-radius);
}

.megamenu-panel-content-item-content {
  flex-grow: 1;
}

.megamenu-panel-content-item-content ul {
  display: flex;
  gap: 1vw;
  margin-bottom: 1.5vw;
  flex-wrap: wrap;
}

.megamenu-panel-content-item-content ul li {
  width: calc(50% - 0.5vw);
}

.megamenu-panel-content-item-content ul li a {
  display: flex !important;
  gap: 0.625vw;
  align-items: center;
  text-decoration: none;
  padding: 0 !important;
  white-space: normal !important;
}

.megamenu-panel-content-item-content ul li a:hover {
  color: var(--bic-primary-color);
}

.megamenu-panel-content-item-content ul li a .count {
  font-weight: 600;
  position: relative;
  width: 1.25vw;
  height: 1.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bic-primary-color);
  flex: 0 0 auto;
}

.megamenu-panel-content-item-content ul li a .count::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff53001a;
  transform: rotate(45deg);
  border-radius: 8px;
}

.megamenu-panel-content-item-content ul li .view {
  margin-left: auto;
  width: 1.25vw;
  height: 1.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #ddd;
  border: 1px solid #ddd;
  opacity: 0;
  pointer-events: none;
}

.megamenu-panel-content-item-content ul li a:hover .view {
  pointer-events: all;
  opacity: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.megamenu-panel-content-item-content ul.mega-menu-sub {
  flex-direction: column;
  list-style: disc;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 56px;
}

.megamenu-panel-content-item-content ul.mega-menu-sub li {
  width: 100%;
}

.megamenu-panel-content-item-content ul.mega-menu-sub li a {
  font-size: 16px;
  opacity: 0.9;
}

.megamenu-panel-content-item-content .btn {
  border-radius: var(--bic-border-radius);
  padding: 0.78125vw 1.04vw;
  transform: none !important;
  text-transform: none;
  box-shadow: none;
}

.megamenu-panel-content-item-content .btn::before {
  border-radius: var(--bic-border-radius) !important;
}

.megamenu-panel-content-item-content.logo ul li {
  width: calc(13% - 0.5vw);
}

.megamenu-panel-content-item-content.logo ul li a {
  justify-content: center;
  padding: 10px !important;
  background: #fff;
  border-radius: 10px;
  height: 100px;
  width: 100%;
  transition: all 0.5s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.megamenu-panel-content-item-content.logo ul li a:hover {
  transform: scale(1.1);
}

.megamenu-panel-content-item-content.logo ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header search */

.header-search-button {
  --btn-width: 46px;
  --btn-height: 46px;
  flex: 0 0 auto;
  width: var(--btn-width);
  height: var(--btn-height);
  justify-content: center;
  background: var(--bic-primary-color);
  color: #fff !important;
  border-radius: 50%;
}

.header-search-button i {
  display: flex;
}

body.search-open .header-search-button .icon-search {
  display: none;
}

body:not(.search-open) .header-search-button .icon-search-close {
  display: none;
}

.header-search-form {
  position: absolute;
  opacity: 0;
  right: 0;
  top: calc(100% + 15px);
  width: 0;
  pointer-events: none;
  z-index: 5;
  display: block;
  transition: width 0.3s, opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s ease;
}

body.search-open .header-search-form {
  width: 360px;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: visible;
  pointer-events: unset;
}

/* Cta */

.bic-header-col.col-right {
  gap: 15px;
}

/* Menu mobile */

.bic-mbmenu-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.bic-mbmenu-toggle-icon {
  position: relative;
  width: 32px;
  height: 20px;
}

.bic-mbmenu-toggle-icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--bic-primary-color);
  transition: width 0.3s, transform 0.3s ease;
}

.bic-mbmenu-toggle-icon i:nth-child(1) {
  top: 0;
}

.bic-mbmenu-toggle-icon i:nth-child(2) {
  top: 9.25px;
}

.bic-mbmenu-toggle-icon i:nth-child(3) {
  width: 24px;
  bottom: 0;
}

body.menu-open .bic-mbmenu-toggle-icon i:nth-child(1) {
  transform: rotate(45deg);
  top: 9.25px;
}

body.menu-open .bic-mbmenu-toggle-icon i:nth-child(2) {
  width: 0;
  left: 50%;
}

body.menu-open .bic-mbmenu-toggle-icon i:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9.25px;
  width: 100%;
}

.bic-mbmenu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body:not(.menu-open) .bic-mbmenu {
  visibility: hidden;
  opacity: 0;
}

.bic-mbmenu-close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.bic-mbmenu-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 50vw;
  background: #ffffff;
  padding-top: var(--bic-header-height);
  padding-bottom: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width 0.3s, transform 0.3s ease;
}

@media (max-width: 767px) {
  .bic-mbmenu-container {
    max-width: 100%;
  }
}

body:not(.menu-open) .bic-mbmenu-container {
  transform: translateX(-105%);
}

.bic-mbmenu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bic-mbmenu-inner {
  position: relative;
  height: 100%;
  padding: 20px var(--bic-grid-gap);
}

.bic-mbmenu-nav {
  width: 100%;
}

.bic-mbmenu-nav ul {
  margin: 0;
  list-style: none;
}

.bic-mbmenu-nav ul > li > a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--bic-text-color);
  padding: 10px 0;
}

.bic-mbmenu-nav ul > li:not(:last-child) > a {
  border-bottom: 1px solid var(--bic-border-color);
}

.bic-mbmenu-nav ul.menu-list > li:hover > a,
.bic-mbmenu-nav ul.menu-list > li > a:focus,
.bic-mbmenu-nav ul.menu-list > li[class*="current"] > a {
  color: var(--bic-primary-color);
}

.bic-mbmenu-nav ul li a i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 5px;
}

.bic-mbmenu-nav ul li a i::after {
  content: "";
  position: relative;
  -webkit-mask-image: url(../images/icons/icon_chevron_down.svg);
  mask-image: url(../images/icons/icon_chevron_down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: currentColor;
  width: 14px;
  height: 14px;
  display: block;
  margin-left: 6px;
  margin-bottom: 0;
}

.bic-mbmenu-nav ul.menu-list > li .sub-menu {
  position: relative;
  width: 100%;
  padding-left: var(--bic-grid-gap);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.bic-mbmenu-nav ul.menu-list > li[class*="submenu-open"] .sub-menu {
  max-height: 1000px;
}

.bic-mbmenu-nav ul.sub-menu li .sub-menu {
  transition: all 0.3s ease-in-out;
  padding-left: 15px;
}

.bic-mbmenu-nav ul.menu-list > li .sub-menu li a {
  font-size: 16px;
}

@media (min-width: 1025px) {
  .bic-header-nav ul.menu-list li.menu-item.mobile {
    display: none;
  }

  .adt-header-lang .lang_item {
    width: 2.604166667vw !important;
    height: 2.604166667vw !important;
    font-size: 0.9375vw !important;
  }

  .box-single-related .card-item__title {
    font-size: 0.9375vw !important;
  }

  .megamenu-panel-content-item-content ul.mega-menu-sub li a {
    font-size: 0.83333vw !important;
  }

  .megamenu-panel-content-item-content.logo ul li a {
    height: 5.2083333vw;
  }
}

@media (max-width: 1024px) {
  .megamenu-panel {
    display: none;
  }

  .bic-mbmenu-nav ul.menu-list > li .sub-menu li.menu-item.mobile .btn {
    display: none;
  }
}

/*
 * Section
 */

.easy-select {
  --es-dropdown-width: 360px;
  --es-text: var(--bic-text-color);
  --es-text-hover: var(--bic-primary-color);
  --es-border: 1px solid var(--bic-border-color);
  --es-border-hover: 1px solid var(--bic-primary-color);
  --es-radius: var(--bic-border-radius);
}

@media (max-width: 767px) {
  .easy-select {
    width: 100%;
    --es-dropdown-width: 100%;
  }
}

.easy-popup-master {
  --ep-radius: var(--bic-border-radius);
  --ep-close-color: var(--bic-text-color);
  --ep-close-color-hover: #fff;
  --ep-close-width: 30px;
}

span.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.easy-popup-container {
  padding: 0 var(--bic-grid-gap);
}

.page-template-page-contact .es-current {
  border: unset !important;
  border-radius: unset !important;
  overflow: unset !important;
  height: unset !important;
  background: unset !important;
}

.page-template-page-contact .es-option {
  white-space: nowrap;
  padding: 5px 15px;
  height: 60px;
  background: #eef0f2;
}

.page-template-page-contact .easy-select {
  width: 100% !important;
}

.ep-close-button {
  width: 30px;
  height: 30px;
  padding: 0;
  top: 45px;
  right: 15px;
  border-radius: 100%;
  background: #ddd;
}

.easy-popup.ep-has-custom-close-button .ep-close-button:hover,
.ep-close-button:hover {
  background: var(--bic-text-color);
}

.easy-popup-content {
  background: transparent;
  padding: 0;
}

.easy-popup-master {
  --ep-max-width: 800px;
}

.show-desktop {
  display: block;
}

.show-mobile,
.show-tablet {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .show-tablet {
    display: block;
  }
  .show-desktop {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .show-mobile {
    display: block;
  }
}

.container,
.container-xl,
.container-fluid {
  width: 100%;
  padding-left: var(--bic-grid-gap);
  padding-right: var(--bic-grid-gap);
  margin-right: auto;
  margin-left: auto;
}

.container-xl {
  max-width: 100%;
}

.container {
  max-width: var(--bic-container-width);
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc(var(--bic-grid-gap) * -1);
  margin-right: calc(var(--bic-grid-gap) * -1);
  row-gap: calc(var(--bic-grid-gap) * 2);
}

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

.ps-absolute {
  position: absolute !important;
  top: 0;
  left: 0;
}

.ps-sticky {
  position: sticky !important;
  top: 0;
}

.ps-overflow-hidden {
  overflow: hidden;
}

.margin {
  margin: var(--bic-site-gap) 0;
}

.margin-bottom {
  margin-bottom: var(--bic-site-gap);
}

.margin-top {
  margin-top: var(--bic-site-gap);
}

.margin0 {
  margin: 0 !important;
}

.padding {
  padding: var(--bic-site-gap) 0;
}

/* splitting */

.bic-section__title span.char {
  position: relative;
  transform: translate(50px, 0px);
  opacity: 0;
  transition: all 0.3s;
}

.bic-section__title span.char,
.bic-section__title span.word {
  display: inline-block;
}

.sec-ani.show .bic-section__title span.char {
  transform: translate(0px, 0px);
  transition-delay: calc(30ms * var(--char-index));
  opacity: 1;
}

body:not(.home) .padding {
  padding: var(--bic-site-gap) 0;
}

.padding-bottom {
  padding-bottom: var(--bic-site-gap);
}

.padding-top {
  padding-top: var(--bic-site-gap);
}

.padding0 {
  padding: 0 !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-color: var(--bic-primary-color);
  background: var(--bic-primary-color);
}

.bic-swiper-pagination1 {
  position: absolute;
  bottom: 30px;
  margin: 0;
  left: 0;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 30px;
}

.swiper-control-btn {
  --btn-width: 50px;
  --btn-height: 50px;
}

.swiper-control-btn:hover,
.swiper-control-btn:focus,
.swiper-control-btn:active {
  background: var(--bic-primary-color);
  color: #ffffff;
}

.swiper-control-btn {
  border: 0;
}

.sec-head {
  position: relative;
  margin-bottom: clamp(30px, 65px, 65px);
}

.sec-head-title {
  position: relative;
}

.sec-head-title .title {
  color: var(--bic-primary-color);
  font-size: clamp(20px, 32px, 36px);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.sec-head-title .title a {
  color: currentColor;
}

.sec-head-title .subtitle {
  position: relative;
  margin-top: 16px;
  font-weight: 500;
}

.sec-btn {
  margin-top: 50px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-item {
  --btn-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btn-width);
  height: var(--btn-width);
  border: 1px solid var(--bic-border-color);
  color: var(--bic-link-color);
  border-radius: 100%;
  transition: all 0.3s;
}

.social-item:hover {
  background: var(--bic-primary-color);
  border-color: var(--bic-primary-color);
  color: #fff;
}
.social-item svg path {
  fill: currentColor;
}
.social-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/*
 * Layout
 */

/* Layout general */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.image-holder img {
  object-position: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.skeleton-bg {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgd2lkdGg9IjEwMHB4IiBoZWlnaHQ9IjEwMHB4Ij4NCjxjaXJjbGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTA1MjU0IiBzdHJva2Utd2lkdGg9IjEwIiByPSI0NSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY2IDQ0IiBzdHlsZT0iJiMxMDsgICAgLyogc3Ryb2tlLWRhc2hhcnJheTogMTY2IDQ0OyAqLyYjMTA7Ij4NCiAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIi8+DQo8L2NpcmNsZT4NCjwvc3ZnPg==)
    no-repeat center/30px;
}

.image-ratio {
  display: block;
  position: relative;
  background-color: #f2f2f2;
  overflow: hidden;
  padding-top: 68.478%;
}

.image-ratio > a,
.image-ratio > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Layout list */

.page-header {
  position: relative;
}

.page-header__image {
  position: relative;
}

.page-header__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.bic-home-banner__thumbnail::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.bic-home-banner__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}

.bic-home-banner__content .title {
  color: #fff;
}

.bic-home-banner__content .description {
  color: #fff;
  width: 40%;
  margin: auto;
  margin-top: 20px;
}

.page-header-image .page-banner__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.page-banner__content .sec-head {
  margin-bottom: 24px !important;
}

.page-header-image .sec-head-title .title {
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
}

.bic-breadcrumb > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-sep {
  margin: 0 8px;
}

.breadcrumb_last {
  color: var(--bic-primary-color) !important;
}

.page-header-image .bic-breadcrumb span,
.page-header-image .bic-breadcrumb a {
  color: #ffffff;
}

.page-header-image .bic-breadcrumb > span {
  justify-content: center;
}

.page-header2 {
  position: relative;
  background: #ffffff;
  padding: 40px 0;
}

.page-header2 .sec-head {
  margin-bottom: 16px;
}

.bic-outernav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}

.bic-outernav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 9px 18px;
  color: var(--bic-primary-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  border: 1px solid var(--bic-primary-color);
  border-radius: var(--bic-border-radius);
  transition: all 0.3s;
}

.bic-outernav__item:hover,
.bic-outernav__item.active {
  background: var(--bic-gradient-color);
  color: #ffffff;
}

.blog-sticky {
  margin: 0 0 var(--bic-site-gap);
}

.blog-sticky-item .card-item__inner {
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none !important;
  gap: 48px;
}

.blog-sticky-item .card-item__thumbnail,
.blog-sticky-item .card-item__content {
  flex: 0 0 auto;
  width: calc(50% - 24px);
  padding: 0;
}

.blog-sticky-item .card-item__thumbnail {
  border-radius: var(--bic-border-radius);
  aspect-ratio: 4 / 3;
}

.blog-sticky-item .card-item__title {
  font-size: 28px;
}

.blog-sticky-item .card-item-meta {
  margin: 16px 0 22px;
}

/* Single */

/* .single-detail,
.single-comments {
    position: relative;
    overflow: hidden;
    padding: 15px;
    border: 1px solid var(--bic-border-color);
    border-radius: var(--bic-border-radius);
    background: #ffffff;
} */

.single-detail__title .title {
  font-size: 28px;
  color: var(--bic-primary-color);
  font-weight: 600;
  margin-bottom: 24px;
}

.single-detail-meta {
  gap: 24px;
}

.single-detail-meta__item {
  display: flex;
  align-items: center;
  color: #4a5565;
}

.single-detail-meta__item i {
  margin-right: 5px;
}

.single-detail-meta__item svg {
  width: 20px;
  height: 20px;
  color: var(--bic-primary-color);
}

.single-detail__header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bic-border-color);
}

.single-detail__foo {
  margin-top: 40px;
}

.bic-tags__text {
  font-weight: bold;
  margin-right: 15px;
}

.bic-tags__list a {
  display: inline-block;
  padding: 3px 8px;
  margin-right: 5px;
  background: #f2f2f2;
  border: 1px solid var(--bic-border-color);
  border-radius: 4px;
  font-size: 14px;
}

.bic-tags__list a:hover {
  border-color: var(--bic-primary-color);
}

.box-single-related .card-item__title {
  font-size: 18px;
  font-weight: 600;
}

/* Comments.css */

.single-comments {
  margin-top: 40px;
}

.comment-title,
.comment-reply-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

ol.comment-list {
  margin: 0;
}

ol.comment-list,
ol.children {
  list-style: none;
  padding: 0;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--bic-border-color);
}

.comment-item__avatar {
  flex: 0 0 auto;
  width: 46px;
  overflow: hidden;
  border-radius: 100%;
}

.comment-item__content {
  padding-left: 16px;
  flex: 1 0 auto;
}

.comment-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.comment-item__author.vcard .fn {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
}

.comment-item__metadata {
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 600;
}

.comment-item__content .reply {
  margin-top: 10px;
}

.comment-form {
  --bic-grid-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--bic-grid-gap) * -1);
}

.comment-form > p {
  position: relative;
  padding: 0 var(--bic-grid-gap);
}

.comment-form-author,
.comment-form-email {
  order: 1;
  flex: 0 0 auto;
  width: 50%;
}

.comment-form-comment,
.comment-form-cookies-consent,
.comment-form-captcha,
.form-submit {
  order: 2;
  flex: 0 0 auto;
  width: 100%;
}

.logged-in-as a,
.must-log-in a {
  color: var(--bic-primary-color);
}

#cancel-comment-reply-link {
  margin-left: 10px;
}

.comment-form > p.form-submit {
  margin: 0;
}

/* Widgets.css */

.widget-area {
  position: sticky;
  top: calc(var(--bic-header-height) + 32px);
}

.widget {
  position: relative;
  margin-bottom: 30px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bic-primary-color);
  text-transform: none;
  border-bottom: 2px solid;
  padding-bottom: 13px;
  margin-bottom: 24px;
}

.widget ul {
  margin: 0;
  padding: 0;
}

.widget ul li:not(:last-child) {
  margin-bottom: 8px;
}

.widget ul li:hover > a {
  font-weight: 700;
  color: var(--bic-primary-color);
}

/* .widget .card-item__excerpt,
.widget .card-item__link {
    display: none;
} */

/* Card item */

/* .card-list-wrap{
	--bic-grid-gap: 10px;
} */
.project-list-item {
  height: 100%;
}
.card-item__inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  background: #ffffff;
  transition: transform 0.3s;
  border-radius: var(--bic-border-radius);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-item__inner:hover {
  /* transform: scale(1.05); */
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
}

.card-item__thumbnail a:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  transition: background-color 0.45s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-item__inner:hover .card-item__thumbnail a:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.card-item__inner:hover .card-item__thumbnail img {
  transform: scale(1.05);
}

.card-item__content {
  position: relative;
  padding: 24px;
}

.card-item__title {
  font-size: clamp(16px, 20px, 24px);
  font-weight: 600;
  color: var(--bic-primary-color);
  text-transform: none;
  margin: 0 0 12px;
}

.card-item__title a {
  color: currentColor;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-item__inner:hover .card-item__title a,
.card-item__inner:hover .card-item__link {
  color: var(--bic-primary-color);
}

.card-item-meta__item {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 14px, 16px);
  color: #6a7282;
  line-height: 1;
}

.card-item-meta__item i {
  margin-right: 5px;
}

.card-item-meta__item svg {
  width: 16px;
  height: 16px;
}

.card-item__excerpt {
  margin: 10px 0 16px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  min-height: 43px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-item__link {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--bic-primary-color);
}

/* laguage */

a.lang_item.lang_active {
  display: none;
}
.adt-header-lang .lang_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

.adt-header-lang .lang_item:hover {
  border-color: var(--bic-primary-color) !important;
  color: var(--bic-primary-color) !important;
  transition: all 0.3s;
}

.bic-header-sticky .adt-header-lang .lang_item {
  border: 1px solid #000;
  color: #000;
}

/* Pagination */

.bic-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px 0 0;
}

.bic-pagination__item {
  --btn-width: 46px;
  --btn-height: 46px;
  color: var(--bic-text-color);
  font-weight: 700;
  width: var(--btn-width);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bic-border-color);
  border-radius: 8px;
  margin: 0 5px;
  transition: var(--bic-transition);
}

.bic-pagination__item.prev {
  margin: 0;
  margin-right: auto;
}

.bic-pagination__item.next {
  margin: 0;
  margin-left: auto;
}

.bic-pagination__item svg {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.bic-pagination__item.current,
.bic-pagination__item:hover {
  color: #ffffff;
  font-weight: 600;
  background: var(--bic-primary-color);
  border-color: var(--bic-primary-color);
}

.bic-pagination__item.disabled {
  opacity: 0.7;
  cursor: no-drop;
}

/* Searchform */

.searchform {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--bic-border-color);
  border-radius: 46px;
}

.searchform-input[type="search"] {
  color: var(--bic-text-color);
  border: none;
  border-radius: 0;
  padding-right: 60px;
  -webkit-appearance: none;
}

.searchform-btn[type="submit"] {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  right: 3px;
}

/* ContentBody */

.ContentBody ol li,
.ContentBody ul li {
  padding: 0 0 12px 6px;
}

.ContentBody p {
  display: block;
  text-align: justify;
}

.ContentBody ol,
.ContentBody ul {
  margin: 0 0 12px 16px;
  padding-left: 10px;
}

.ContentBody ul {
  list-style: disc;
}

.ContentBody ol {
  list-style-type: decimal;
}

.ContentBody ol ol {
  list-style: upper-alpha;
}

.ContentBody ol ol ol {
  list-style: lower-roman;
}

.ContentBody ol ol ol ol {
  list-style: lower-alpha;
}

.ContentBody ol ol,
.ContentBody ol ul,
.ContentBody ul ol,
.ContentBody ul ul {
  margin-bottom: 0;
}

.ContentBody strong {
  font-weight: 700;
}

.ContentBody cite,
.ContentBody em {
  font-style: italic;
}

.ContentBody cite {
  border: none;
}

.ContentBody big {
  font-size: 20px;
}

.ContentBody blockquote,
.ContentBody blockquote p {
  font-weight: 700;
}

.ContentBody blockquote cite,
.ContentBody blockquote em,
.ContentBody blockquote i {
  font-style: normal;
}

.ContentBody blockquote cite {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #555;
}

.ContentBody pre {
  font-size: 16px;
  margin-bottom: 20px;
  padding: 12px 20px;
  background: #f4f4f4;
}

.ContentBody figure {
  margin: 0 auto 16px;
  text-align: center;
}

.ContentBody figure figcaption {
  padding: 4px;
}

.ContentBody code,
.ContentBody kbd,
.ContentBody samp,
.ContentBody var {
  font-size: 16px;
}

.ContentBody abbr,
.ContentBody acronym,
.ContentBody dfn {
  cursor: help;
  border-bottom: 1px dotted var(--bic-border-color);
}

.ContentBody address {
  display: block;
  margin: 0 0 20px;
}

.ContentBody del,
.ContentBody ins {
  color: #555;
}

.ContentBody ins {
  text-decoration: none;
  border: none;
}

.ContentBody sub,
.ContentBody sup {
  font-size: 10px;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

.ContentBody sup {
  bottom: 12px;
}

.ContentBody sub {
  top: 6px;
}

.ContentBody table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  text-align: left;
}

.ContentBody tr td,
.ContentBody tr th {
  padding: 10px;
  vertical-align: top;
  border: 1px solid var(--bic-border-color);
}

.ContentBody img {
  display: block;
  margin: 0 auto;
  border-radius: var(--bic-border-radius);
  max-width: 100%;
  height: 100%;
}

.ContentBody img.wp-smiley {
  margin: 0;
  padding: 0;
  border: none;
}

.ContentBody img.aligncenter {
  margin: 0 auto 6px;
  display: block;
}

.ContentBody .wp-caption {
  max-width: 100%;
  margin: 0 auto 16px;
}

.ContentBody .wp-caption a {
  cursor: pointer;
}

.ContentBody .wp-caption img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--bic-border-radius);
}

.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
  padding: 8px 8px 8px 30px;
  text-align: left;
  position: relative;
  font-style: italic;
  text-align: center;
  font-weight: 400;
}

.ContentBody br {
  float: none;
  clear: both;
}

.ContentBody hr {
  height: 0;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--bic-border-color);
  background: none;
}

.ContentBody h1,
.ContentBody h2,
.ContentBody h3,
.ContentBody h4,
.ContentBody h5,
.ContentBody h6 {
  line-height: 1.25;
  font-weight: 600;
  font-size: var(--bic-font-size);
}

.ContentBody h1 {
  font-size: 30px;
  line-height: 1.2;
  /* letter-spacing: -1.05px; */
}

.ContentBody h2 {
  line-height: 1.16;
  margin: 20px 0;
  /* letter-spacing: -0.52px; */
}

.ContentBody ul:not(:last-child) {
  margin-bottom: 20px;
}

.ContentBody ul > li {
  padding: 0;
  position: relative;
  text-align: justify;
}

.ContentBody ol > li {
  padding: 0;
}

.ContentBody ol > li:not(:last-child),
.ContentBody ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.ContentBody tr {
  border-top: 1px solid var(--bic-border-color);
  border-bottom: 1px solid var(--bic-border-color);
}

.ContentBody tr:first-child {
  border-top: none;
}

.ContentBody tr:last-child {
  border-bottom: none;
}

.ContentBody tr:nth-child(even) {
  background: var(--bic-border-color);
}

/* Footer */

.bic-footer {
  position: relative;
  background-color: #101010;
  color: #fff;
}

.bic-footer__icon {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
}

.bic-footer__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bic-footer-main {
  position: relative;
  z-index: 2;
}

.ft-group {
  display: flex;
  justify-content: space-between;
}

.bic-footer a {
  color: #fff;
  transition: all 0.3s;
}

.bic-footer a:hover {
  color: var(--bic-primary-color);
  transition: all 0.3s;
}

.bic-footer-main {
  padding: 50px 0 0;
}

.title-ft {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.address-ft {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.name-address {
  font-weight: 600;
  margin-bottom: 10px;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.phone-address {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ft-col-right {
  margin-top: 85px;
}

.menu-ft-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-socials {
  margin-top: 30px;
}

.bic-footer__copyright a {
  color: var(--bic-primary-color);
  font-weight: 600;
}
@media (min-width: 1025px) {
  .bic-footer-main .col-left {
    padding-right: var(--bic-site-gap);
  }

  :root {
    --bic-container-width: 81.25vw !important;
    --bic-site-gap: 4.1667vw !important;
    --bic-font-size: 0.9375vw;
    --bic-grid-gap: 0.78125vw;
    --bic-header-height: 4.1667vw !important;
    --bic-header-logo-width: 13.75vw !important;
  }

  .container-xl {
    max-width: 100%;
  }
  h3, h2{
    font-size:1.25vw ;
  }

  .single h3,.single h2{
    font-size:1.25vw ;
  }

  .button,
  .btn,
  button,
  input[type="button"],
  input[type="submit"] {
    border-radius: 1.5625vw;
    gap: 0.2604vw;
    padding: 0.9375vw 2.0833vw;
  }

  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    height: 2.916667vw;
  }

  .sec-head-title .title {
    font-size: 1.6666vw !important;
  }

  .sec-head {
    margin-bottom: 4.0625vw !important;
  }

  .bic-go-top {
    --btn-width: 2.604166vw !important;
    --btn-height: 2.604166vw !important;
    bottom: 1.5625vw !important;
    right: 1.5625vw !important;
  }

  .swiper-control-btn {
    --btn-width: 2.604166vw;
    --btn-height: 2.604166vw;
  }

  .card-item__title {
    font-size: 1.041667vw !important;
  }

  .card-item__title a {
  }

  .card-item__content {
    padding: 1.25vw;
  }
  .card-item-meta__item {
    font-size: 0.7291666vw;
  }

  .bic-outernav__item {
    padding: 0.4688vw 0.9375vw;
    font-size: 0.83333333vw;
  }

  .bic-outernav {
    gap: 0.625vw;
    margin-bottom: 2.5vw;
  }

  .bic-pagination__item {
    --btn-width: 2.3958vw; /* 46px */
    --btn-height: 2.3958vw; /* 46px */
    width: var(--btn-width);
    height: var(--btn-height);
    border-radius: 0.4167vw; /* 8px */
    margin: 0 0.2604vw; /* 5px */
  }

  .page-header-image .sec-head-title .title {
    font-size: 1.6667vw;
  }

  .single-detail__title .title {
    font-size: 1.4583vw;
    margin-bottom: 1.25vw;
  }
  .widget-title {
    font-size: 1.0417vw;
    padding-bottom: 0.6771vw;
    margin-bottom: 1.25vw;
    border-bottom-width: 0.1042vw;
  }

  .blog-sticky-item .card-item__title {
    font-size: 1.458333vw;
  }

  .social-item {
    --btn-width: 2.34375vw;
  }

  .contact-button svg {
    width: 1.25vw;
    height: 1.25vw;
  }

  .bic-footer-main {
    padding: 3.125vw 0 0 !important;
  }

  .bic-footer__copyright {
    margin-top: 3.125vw !important;
    padding: 1.5625vw !important;
  }

  .ft-col-right {
    margin-top: 4.4270833vw;
  }
}

.bic-footer-col__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc(var(--bic-grid-gap) * -1);
  margin-right: calc(var(--bic-grid-gap) * -1);
  row-gap: calc(var(--bic-grid-gap) * 2);
  justify-content: space-between;
}

.bic-footer-col__inner .widget {
  position: relative;
  padding: 0 var(--bic-grid-gap);
  flex: 0 0 auto;
  width: calc(100% / 2);
}

.bic-footer-col__inner .widget-2 {
  width: 44%;
}

.widget-footer.widget_nav_menu ul {
  list-style: none;
}

.widget-footer.widget_nav_menu ul.menu {
  display: flex;
  justify-content: space-between;
}

.widget-footer.widget_nav_menu ul li a {
  font-size: 16px;
  color: #fff;
}

.widget-footer.widget_nav_menu ul li:not(:last-child) {
  margin-bottom: 16px;
}

.widget-footer.widget_nav_menu ul.menu > li > a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-address-item:not(:last-child) {
  margin-bottom: 30px;
}

.footer-address-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--bic-border-radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
}

.footer-address-item__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-address-item__content p:not(:last-child) {
  margin-bottom: 10px;
}

.bic-footer .social-item {
  background: var(--bic-primary-color);
  color: #fff;
  border: 0;
  transition: all 0.3s;
}

.bic-footer .social-item:hover {
  background: #fff;
  color: var(--bic-primary-color);
  transition: all 0.3s;
}

.bic-footer__copyright {
  margin-top: 50px;
  padding: 25px;
  border-top: 1px solid #4a5565;
}

.footer-socials-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Go top */

.bic-go-top {
  --btn-width: 50px;
  --btn-height: 50px;
  position: fixed;
  cursor: pointer;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bic-gradient-color);
  color: #fff;
  width: var(--btn-width);
  height: var(--btn-height);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  transform: translateX(2vw);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.bic-go-top.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}

/* Loading */

body.loading {
  overflow: hidden;
}

.bic-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

body.loading .bic-loading {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  pointer-events: unset;
}

.bic-loading__icon {
  --btn-width: 60px;
  width: var(--btn-width);
  height: var(--btn-width);
  color: var(--bic-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid #ddd;
  border-top-color: var(--bic-primary-color);
  background: transparent;
  animation: spin 1s linear infinite;
}

/* Animations */

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive.css */

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  :root {
  }

  .btn.btn--primary {
    --btn-height: 60px;
    padding: 12px 18px;
  }

  .blog-item__title {
    font-size: 22px;
  }

  .blog-item__title a {
    min-height: 82px;
  }
}

@media only screen and (min-width: 1537px) and (max-width: 1700px) {
  :root {
    --bic-site-gap: 80px;
  }
}

@media only screen and (min-width: 1441px) and (max-width: 1536px) {
  :root {
    --bic-site-gap: 80px;
    --bic-container-width: 90.25vw !important;
  }
}

@media only screen and (max-width: 1440px) {
  .header-search-button {
    --btn-width: 46px;
    --btn-height: 46px;
  }

  .bic-go-top {
    --btn-width: 46px;
    --btn-height: 46px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  :root {
    --bic-site-gap: 80px;
  }
}
@media only screen and (max-width: 1280px) {
  :root {
    --bic-header-height: 72px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  :root {
    --bic-container-width: 90.25vw !important;
    --bic-site-gap: 80px;
  }

  .bic-header-nav ul.menu-list > li:not(:last-child) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  :root {
    --bic-site-gap: 80px;
  }
  .bic-go-top,
  .floating-container {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .page-header__image {
    position: relative;
    height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --bic-site-gap: 60px;
    --bic-header-height: 64px;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
}

.sec-ani {
  position: relative;
}

@media only screen and (max-width: 767px) {
  :root {
    --bic-site-gap: 46px;
    --bic-header-logo-width: 150px;
  }

  .bic-header-col.col-center {
    justify-content: center;
  }

  .bic-footer__icon {
    width: 100%;
  }

  .page-header__image {
    height: 300px;
  }

  .adt-header-lang .lang_item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .bic-mbmenu-nav ul > li.menu-item.logo li {
    width: calc(100% / 3 - 8px);
    margin: 4px;
    float: left;
  }

  .bic-mbmenu-nav ul > li.menu-item.logo li a {
    border: 1px solid var(--bic-border-color);
    padding: 5px;
    height: 60px;
    border-radius: 3px;
  }

  .bic-mbmenu-nav ul > li.menu-item.logo li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .bic-mbmenu-nav ul > li.menu-item.logo ul.sub-menu {
    padding: 0;
    padding-top: 4px;
  }

  .ContentBody h2 {
    font-size: 18px;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .sec-head-title .prod-related-tag {
    margin-top: 10px;
  }

  .sec-head-title .title {
    font-size: 20px !important;
  }
  .booking-form {
    padding: 0 10px;
  }
  .box-booking .sec-head-title .title {
    text-align: center;
  }
  .box-booking .sec-head-title .subtitle {
    color: var(--bic-primary-color) !important;
    text-align: center;
  }
  .prod-list .card-list-wrap {
    --bic-grid-gap: 5px;
  }

  .bic-footer-col__inner .widget-2,
  .bic-footer-col__inner .widget {
    width: 100% !important;
  }
  .bic-home-banner__content .description {
    width: 90%;
  }

  h3.card-item__title {
    font-size: 16px;
  }

  a.btn.btn-primary {
    padding: 14px 20px;
  }

  .sec-btn {
    margin-top: 30px;
  }

  .form-input input {
    height: 45px;
  }

  .ft-group.col-12.col-lg-5 {
    flex-direction: column;
    gap: 30px;
  }

  .ft-col-right {
    margin-top: 0;
  }

  .phone-address {
    flex-wrap: wrap;
  }

  .phone-address svg,
  .location-address svg {
    display: none;
  }

  .single-detail__title .title {
    font-size: 20px;
  }

  .blog-sticky-item .card-item__inner {
    flex-direction: column;
    gap: 20px;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15) !important;
  }

  .blog-sticky-item .card-item__thumbnail,
  .blog-sticky-item .card-item__content {
    width: 100%;
  }

  .blog-sticky-item .card-item__title {
    font-size: 18px;
  }

  .card-item__content {
    position: relative;
    padding: 20px 15px;
  }

  .bic-outernav__item {
    white-space: nowrap;
  }

  .bic-outernav {
    overflow-x: auto;
  }

  .blog-sticky-item.blog-item .card-item__content {
    padding: 0 15px 20px;
  }
}

/*  */

.product-item .card-item__thumbnail img{
    object-fit: initial !important;
}
