@charset "UTF-8";

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 300;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ Light.otf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ Regular.otf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ Medium.otf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 600;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ SemiBold.otf)
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ Bold.otf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  font-style: normal;
  font-weight: 800;
  src: url(../static/fonts/SVN-Gilroy/SVN-Gilroy\ XBold.otf) format("truetype");
  font-display: swap;
}

:root {
  --bic-primary-font: "SVN-Gilroy";
  --bic-heading-font: "SVN-Gilroy";
  --bic-container-width: 1560px;
  --bic-col-gap: 15px;
  --bic-site-gap: 80px;
  --bic-header-height: 80px;
  --bic-offcanvas-width: 100%;
  --bic-primary-color: #fdb813;
  --bic-primary-hover-color: #e9a708;
  --bic-secondary-color: #21335f;
  --bic-secondary-hover-color: #142757;
  --bic-gradient-color: linear-gradient(
    99deg,
    #067ee0 0.94%,
    #026abf 48.14%,
    #003d73 98.13%
  );
  --bic-gradient-color2: linear-gradient(99deg, #ffb787 0%, #fa8131 93.92%);
  --bic-text-color: #4a5565;
  --bic-link-color: #1f1f1f;
  --bic-border-color: #e5e5e5;
  --bic-border-radius: 10px;
}

@media (min-width: 576px) {
  :root {
    --bic-offcanvas-width: 432px;
  }
}

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

@keyframes toRightFromLeft {
  49% {
    transform: translate(9px, -9px) scale(0.5);
  }

  50% {
    opacity: 0;
    transform: translate(-9px, 9px) scale(1);
  }

  51% {
    opacity: 1;
  }
}

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

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

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

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--bic-primary-font), sans-serif;
  font-size: 18px;
  color: var(--bic-text-color);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr,
.wp-block-separator {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

a:hover {
  color: var(--bic-primary-color);
  text-decoration: none;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

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

svg {
  overflow: hidden;
  vertical-align: middle;
}

table,
.wp-block-table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

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

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

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 20px;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.screen-reader-text,
.sr-only {
  display: none;
}

/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-family: var(--bic-primary-font);
}

@media (min-width: 992px) {
  html {
    scrollbar-gutter: stable;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  margin-bottom: 20px;
  word-wrap: break-word;
  font-family: var(--bic-primary-font);
  color: var(--bic-text-color);
  font-weight: 700;
  text-transform: none;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  h5,
  .h5 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  h6,
  .h6 {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  h6,
  .h6 {
    font-size: 16px;
  }
}

hr,
.wp-block-separator {
  border: 0;
  border-top: 1px solid var(--bic-border-color);
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-2 {
  overflow: hidden;
  height: 44px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ellipsis-3 {
  overflow: hidden;
  height: 66px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
## Tables
--------------------------------------------------------------*/
table,
.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  text-align: left;
}

table th,
.wp-block-table th,
table td,
.wp-block-table td {
  padding: 10px 15px;
  vertical-align: middle;
  border: none;
  border-top: 1px solid var(--bic-border-color);
}

table thead,
.wp-block-table thead {
  border-bottom: 2px solid var(--bic-border-color);
}

table tfoot,
.wp-block-table tfoot {
  border-top: 2px solid var(--bic-border-color);
}

table tbody + tbody,
.wp-block-table tbody + tbody {
  border-top: 2px solid var(--bic-border-color);
}

table th,
.wp-block-table th,
table td,
.wp-block-table td {
  border: 1px solid var(--bic-border-color);
}

table thead th,
.wp-block-table thead th,
table thead td,
.wp-block-table thead td {
  border-bottom-width: 1px;
}

table:not(
    .has-small-font-size,
    .has-medium-font-size,
    .has-large-font-size,
    .has-x-large-font-size
  )
  th,
.wp-block-table:not(
    .has-small-font-size,
    .has-medium-font-size,
    .has-large-font-size,
    .has-x-large-font-size
  )
  th {
  font-family: var(--bic-primary-font), sans-serif;
  font-weight: 400;
  text-transform: none;
  line-height: normal;
}

table.has-small-font-size th,
.has-small-font-size.wp-block-table th,
table.has-medium-font-size th,
.has-medium-font-size.wp-block-table th,
table.has-large-font-size th,
.has-large-font-size.wp-block-table th,
table.has-x-large-font-size th,
.has-x-large-font-size.wp-block-table th {
  font-size: inherit;
  line-height: 1.2;
}

table[style*="font-style"] th,
[style*="font-style"].wp-block-table th {
  font-style: inherit;
}

table[style*="font-weight"] th,
[style*="font-weight"].wp-block-table th {
  font-weight: inherit;
}

table[style*="line-height"] th,
[style*="line-height"].wp-block-table th {
  line-height: inherit;
}

table[style*="letter-spacing"] th,
[style*="letter-spacing"].wp-block-table th {
  letter-spacing: inherit;
}

table[style*="text-transform"] th,
[style*="text-transform"].wp-block-table th {
  text-transform: inherit;
}

.wp-block-table.is-style-stripes {
  border-bottom: none;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.wp-block-table figcaption {
  padding: 0.75rem 0;
  color: var(--bic-primary-color);
  text-align: left;
}

.wp-block-table figcaption:not(:first-child) {
  margin-top: 0;
}

.bic-table-simple-bordered tr th,
.bic-table-simple-bordered tr td {
  border: none;
  border-top: 1px solid var(--bic-border-color);
}

.bic-table-striped tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

@media (max-width: 575.98px) {
  .bic-table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

@media (max-width: 767.98px) {
  .bic-table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

@media (max-width: 991.98px) {
  .bic-table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

@media (max-width: 1247.98px) {
  .bic-table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

.bic-table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

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

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

/*--------------------------------------------------------------
## Entry
--------------------------------------------------------------*/

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

.ContentBody p {
  display: block;
}

.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,
.ContentBody b {
  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: 400;
  font-size: var(--bic-font-size);
}

.ContentBody blockquote p {
  margin: 0;
}

.ContentBody blockquote p:not(:last-child) {
  padding-bottom: 16px;
}

.ContentBody blockquote p {
  border-left: 3px solid #ddd;
  padding-left: 14px;
}

.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 {
  font-size: 14px;
  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: 10px;
  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: 8px;
}

.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
  font-size: 16px;
  padding: 8px 8px 8px 30px;
  text-align: left;
  color: #555;
  position: relative;
}

.ContentBody .wp-caption .wp-caption-text:before {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  top: 7px;
  left: 10px;
  content: "\2014";
  color: #555;
}

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

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

.ContentBody h1 {
  font-size: 30px;
  line-height: 1.2;
}

.ContentBody h2 {
  font-size: 26px;
  line-height: 1.16;
}

.ContentBody h3 {
  font-size: 24px;
  line-height: 1.35;
}

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

.ContentBody h5,
.ContentBody h6 {
  font-size: 18px;
}

.ContentBody h6 {
  line-height: 1.3;
}

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

.ContentBody ul > li {
  padding: 0;
  position: relative;
}

.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(2n) {
  background: var(--bic-border-color);
}

.alignnone {
  max-width: 100%;
}

.alignleft {
  float: none;
  margin-right: 0;
}

.alignleft:first-child + * {
  margin-top: 0;
}

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 20px;
  }
}

.alignright {
  float: none;
  margin-left: 0;
}

.alignright:first-child + * {
  margin-top: 0;
}

@media (min-width: 576px) {
  .alignright {
    float: right;
    margin-left: 20px;
  }
}

.aligncenter {
  display: block;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.aligncenter .wp-caption-text,
.aligncenter .wp-caption-dd {
  text-align: center;
}

img.alignleft,
img.alignright {
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/
.required {
  color: red;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.bic-button {
  background: var(--bic-primary-color);
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: 0.25s;
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  font-family: var(--bic-primary-font), sans-serif;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  padding: 10px 15px;
  min-height: 46px;
  border-radius: var(--bic-border-radius);
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.bic-button:focus,
.bic-button:hover {
  opacity: 0.9;
  color: #fff;
  outline: none;
}

button:disabled,
button:disabled[disabled],
input[type="button"]:disabled,
input[type="button"]:disabled[disabled],
input[type="reset"]:disabled,
input[type="reset"]:disabled[disabled],
input[type="submit"]:disabled,
input[type="submit"]:disabled[disabled],
.bic-button:disabled,
.bic-button:disabled[disabled] {
  opacity: 0.7;
  color: #fff;
}

button:disabled:hover,
button:disabled[disabled]:hover,
input[type="button"]:disabled:hover,
input[type="button"]:disabled[disabled]:hover,
input[type="reset"]:disabled:hover,
input[type="reset"]:disabled[disabled]:hover,
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled[disabled]:hover,
.bic-button:disabled:hover,
.bic-button:disabled[disabled]:hover {
  opacity: 0.7;
  color: #fff;
}

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"],
select,
textarea {
  display: block;
  width: 100%;
  background-color: #f2f2f2;
  color: var(--bic-text-color);
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid var(--bic-border-color);
  padding: 10px 15px;
  border-radius: var(--bic-border-radius);
  font-family: var(--bic-primary-font), sans-serif;
  text-transform: none;
  width: 100%;
  min-height: 46px;
  margin: 0;
  outline: none;
  appearance: none;
  transition: 0.25s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="url"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="search"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="range"]:focus::placeholder,
input[type="date"]:focus::placeholder,
input[type="month"]:focus::placeholder,
input[type="week"]:focus::placeholder,
input[type="time"]:focus::placeholder,
input[type="datetime"]:focus::placeholder,
input[type="datetime-local"]:focus::placeholder,
input[type="color"]:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
  opacity: 1;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="range"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="color"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--bic-text-color);
}

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

select:not([size]):not([multiple]) {
  height: 46px;
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='currentColor'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='currentColor'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}

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

textarea {
  height: 100px;
  resize: vertical;
  border-radius: var(--bic-border-radius);
}

label {
  font-family: var(--bic-primary-font), sans-serif;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.post-password-form {
  padding: 1rem;
  background: #f2f2f2;
  border-radius: var(--bic-border-radius);
}

@media (min-width: 576px) {
  .post-password-form {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .post-password-form {
    padding: 3rem;
  }
}

.post-password-form label {
  margin-bottom: 0;
  flex: 1;
}

.post-password-form input[type="password"] {
  margin-top: 0.5rem;
  border: 1px solid var(--bic-border-color);
}

.post-password-form input[type="password"]:focus {
  outline: none;
  box-shadow: none;
}

.post-password-form input[type="submit"] {
  margin-left: 0.5rem;
}

.post-password-form > p:first-child {
  margin-bottom: 2rem;
}

.post-password-form > p:last-child {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
:root {
  --swiper-theme-color: var(--bic-primary-color);
}

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

.bic-swiper-pagination1 .swiper-pagination-bullet {
  border-color: #fff;
}

.bic-swiper-pagination1 .swiper-pagination-bullet-active {
  width: 50px;
  background: var(--bic-primary-color);
  border-radius: 30px;
}

.bic-swiper-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  background: #fff;
  border-color: var(--bic-primary-color);
  color: var(--bic-primary-color);
  opacity: 0;
  visibility: hidden;
}

.bic-swiper-btn.swiper-prev {
  left: 15px;
  transform: translateX(-15px);
}

.bic-swiper-btn.swiper-next {
  right: 15px;
  transform: translateX(15px);
}

.bic-swiper-btn .bic-icon {
  font-size: 20px;
  font-weight: 700;
  color: currentColor;
}

.bic-swiper-btn:hover,
.bic-swiper-btn:focus {
  background: var(--bic-primary-color);
  border-color: var(--bic-primary-color);
  color: #fff !important;
}

.swiper:hover .bic-swiper-btn {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/*--------------------------------------------------------------
## Contact Form 7
--------------------------------------------------------------*/
.wpcf7 {
  margin: 0;
  padding: 0;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 .wpcf7-display-none {
  /* support version below 5.4 */
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 10px 15px;
  background: #6cdcff;
  font-size: 14px;
  color: #00526c;
  border-radius: var(--bic-border-radius);
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #d8f6df;
  color: #145523;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background: #ff918a;
  color: #8a0900;
}

.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: #fff4d3;
  color: #a07800;
}

.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7 label .wpcf7-form-control-wrap {
  margin-top: 10px;
}

.wpcf7 input.wpcf7-not-valid {
  border-color: #f00f00;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #f00f00;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 6px;
}

.wpcf7 .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 100;
  border: 1px solid #f00f00;
  background: var(--bic-color-secondary);
  padding: 3px 8px;
}

.wpcf7 .wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 10px;
}

.wpcf7 .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-list-item-label:after {
  content: " ";
}

.wpcf7 .wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: 2px solid var(--bic-border-color);
  border-top-color: var(--bic-primary-color);
  border-radius: 50%;
  position: relative;
  animation: loader-rotate 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 999;
}

.form-actions {
  position: relative;
}

@keyframes loader-rotate {
  0% {
    transform: rotate(0);
  }

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

.wpcf7 form.submitting .wpcf7-spinner,
.wpcf7 .wpcf7-spinner.is-active {
  visibility: visible;
}

.wpcf7 div.ajax-error {
  display: none;
}

.wpcf7 .placeheld {
  color: var(--bic-primary-color);
}

.wpcf7 .wpcf7-recaptcha iframe {
  margin-bottom: 0;
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit {
  vertical-align: middle;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Easy select
--------------------------------------------------------------*/
.easy-select {
  --es-height: 46px;
  --es-text: var(--bic-text-color);
  --es-text-hover: var(--bic-text-color);
  --es-radius: var(--bic-border-radius);
  --es-border: 1px solid var(--bic-border-color);
  --es-border-hover: 1px solid var(--bic-primary-color);
}

/*--------------------------------------------------------------
# Layouts container
--------------------------------------------------------------*/
.bic-container,
.bic-container-fluid {
  width: 100%;
  padding-left: var(--bic-col-gap);
  padding-right: var(--bic-col-gap);
  margin-right: auto;
  margin-left: auto;
}

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

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

.bic-row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.bic-row.no-gutters > .bic-col,
.bic-row.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.bic-col,
.bic-col-1,
.bic-col-10,
.bic-col-11,
.bic-col-12,
.bic-col-2,
.bic-col-3,
.bic-col-4,
.bic-col-5,
.bic-col-6,
.bic-col-7,
.bic-col-8,
.bic-col-9,
.bic-col-auto,
.bic-col-lg,
.bic-col-lg-1,
.bic-col-lg-10,
.bic-col-lg-11,
.bic-col-lg-12,
.bic-col-lg-2,
.bic-col-lg-3,
.bic-col-lg-4,
.bic-col-lg-5,
.bic-col-lg-6,
.bic-col-lg-7,
.bic-col-lg-8,
.bic-col-lg-9,
.bic-col-lg-auto,
.bic-col-md,
.bic-col-md-1,
.bic-col-md-10,
.bic-col-md-11,
.bic-col-md-12,
.bic-col-md-2,
.bic-col-md-3,
.bic-col-md-4,
.bic-col-md-5,
.bic-col-md-6,
.bic-col-md-7,
.bic-col-md-8,
.bic-col-md-9,
.bic-col-md-auto,
.bic-col-sm,
.bic-col-sm-1,
.bic-col-sm-10,
.bic-col-sm-11,
.bic-col-sm-12,
.bic-col-sm-2,
.bic-col-sm-3,
.bic-col-sm-4,
.bic-col-sm-5,
.bic-col-sm-6,
.bic-col-sm-7,
.bic-col-sm-8,
.bic-col-sm-9,
.bic-col-sm-auto,
.bic-col-xl,
.bic-col-xl-1,
.bic-col-xl-10,
.bic-col-xl-11,
.bic-col-xl-12,
.bic-col-xl-2,
.bic-col-xl-3,
.bic-col-xl-4,
.bic-col-xl-5,
.bic-col-xl-6,
.bic-col-xl-7,
.bic-col-xl-8,
.bic-col-xl-9,
.bic-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: var(--bic-col-gap);
  padding-right: var(--bic-col-gap);
}

.bic-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.bic-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.bic-col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.bic-col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.bic-col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.bic-col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.bic-col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.bic-col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.bic-col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.bic-col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.bic-col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.bic-col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.bic-col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.bic-col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .bic-col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .bic-col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .bic-col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .bic-col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .bic-col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bic-col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .bic-col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .bic-col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bic-col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .bic-col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .bic-col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bic-col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .bic-col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .bic-col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bic-col-sm-50 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bic-col-sm-70 {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
  }

  .bic-col-sm-80 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .bic-col-sm-90 {
    flex: 0 0 11.111111%;
    max-width: 11.111111%;
  }

  .bic-col-sm-100 {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .bic-col-sm-110 {
    flex: 0 0 9.090909%;
    max-width: 9.090909%;
  }
}

@media (min-width: 768px) {
  .bic-col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .bic-col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .bic-col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .bic-col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .bic-col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bic-col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .bic-col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .bic-col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bic-col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .bic-col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .bic-col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bic-col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .bic-col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .bic-col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bic-col-md-50 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bic-col-md-70 {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
  }

  .bic-col-md-80 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .bic-col-md-90 {
    flex: 0 0 11.111111%;
    max-width: 11.111111%;
  }

  .bic-col-md-100 {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .bic-col-md-110 {
    flex: 0 0 9.090909%;
    max-width: 9.090909%;
  }
}

@media (min-width: 1025px) {
  .bic-col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .bic-col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .bic-col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .bic-col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .bic-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bic-col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .bic-col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .bic-col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bic-col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .bic-col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .bic-col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bic-col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .bic-col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .bic-col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bic-col-lg-50 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bic-col-lg-70 {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
  }

  .bic-col-lg-80 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .bic-col-lg-90 {
    flex: 0 0 11.111111%;
    max-width: 11.111111%;
  }

  .bic-col-lg-100 {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .bic-col-lg-110 {
    flex: 0 0 9.090909%;
    max-width: 9.090909%;
  }
}

@media (min-width: 1200px) {
  .bic-col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .bic-col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .bic-col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .bic-col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .bic-col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bic-col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .bic-col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .bic-col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bic-col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .bic-col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .bic-col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bic-col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .bic-col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .bic-col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bic-col-xl-50 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bic-col-xl-70 {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
  }

  .bic-col-xl-80 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .bic-col-xl-90 {
    flex: 0 0 11.111111%;
    max-width: 11.111111%;
  }

  .bic-col-xl-100 {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .bic-col-xl-110 {
    flex: 0 0 9.090909%;
    max-width: 9.090909%;
  }
}

.bic-flex-auto {
  flex: auto !important;
}

.bic-flex-one {
  flex: 1 !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1025px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
@font-face {
  font-family: "bic-icons";
  src: url("../static/icon-fonts/icons.ttf") format("truetype"),
    url("../static/icon-fonts/icons.woff") format("woff"),
    url("../static/icon-fonts/icons.svg#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="bic-icon-"],
[class*=" bic-icon-"] {
  font-family: "bic-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bic-icon-new-window:before {
  content: "\e932";
}

.bic-icon-not-found:before {
  content: "\e930";
}

.bic-icon-location-fill:before {
  content: "\e931";
}

.bic-icon-location:before {
  content: "\e92f";
}

.bic-icon-linkedIn:before {
  content: "\e92e";
}

.bic-icon-facebook:before {
  content: "\e91d";
}

.bic-icon-instagram:before {
  content: "\e91e";
}

.bic-icon-link:before {
  content: "\e920";
}

.bic-icon-pinterest:before {
  content: "\e921";
}

.bic-icon-snapchat:before {
  content: "\e923";
}

.bic-icon-tiktok:before {
  content: "\e924";
}

.bic-icon-tumblr:before {
  content: "\e925";
}

.bic-icon-vimeo:before {
  content: "\e926";
}

.bic-icon-youtube .path1:before {
  content: "\e928";
  color: rgb(68, 68, 68);
}

.bic-icon-youtube .path2:before {
  content: "\e929";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.bic-icon-comment-o:before {
  content: "\f0e5";
}

.bic-icon-comments-o:before {
  content: "\f0e6";
}

.bic-icon-mail-reply:before {
  content: "\f112";
}

.bic-icon-reply1:before {
  content: "\f112";
}

.bic-icon-menu1:before {
  content: "\e91f";
}

.bic-icon-filter:before {
  content: "\e915";
}

.bic-icon-arrow-down:before {
  content: "\e914";
}

.bic-icon-arrow-short-left:before {
  content: "\e916";
}

.bic-icon-arrow-short-right:before {
  content: "\e919";
}

.bic-icon-alert:before {
  content: "\e901";
}

.bic-icon-cart:before {
  content: "\e902";
}

.bic-icon-dark-mode:before {
  content: "\e903";
}

.bic-icon-download:before {
  content: "\e905";
}

.bic-icon-info:before {
  content: "\e907";
}

.bic-icon-light-mode:before {
  content: "\e908";
}

.bic-icon-menu:before {
  content: "\e909";
}

.bic-icon-reference:before {
  content: "\e90b";
}

.bic-icon-reply-2:before {
  content: "\e910";
}

.bic-icon-search:before {
  content: "\e911";
}

.bic-icon-success:before {
  content: "\e912";
}

.bic-icon-twitter-x:before {
  content: "\e913";
}

.bic-icon-x:before {
  content: "\e92b";
}

.bic-icon-byuser:before {
  content: "\e942";
}

.bic-icon-reply:before {
  content: "\e940";
}

.bic-icon-arrow-long-left:before {
  content: "\e917";
}

.bic-icon-arrow-long-right:before {
  content: "\e92c";
}

.bic-icon-comments:before {
  content: "\e92d";
}

.bic-icon-timer:before {
  content: "\e91a";
}

.bic-icon-image:before {
  content: "\e92a";
}

.bic-icon-activity:before {
  content: "\e900";
}

.bic-icon-arrow-left:before {
  content: "\e904";
}

.bic-icon-arrow-right:before {
  content: "\e906";
}

.bic-icon-award:before {
  content: "\e90a";
}

.bic-icon-chevron-down:before {
  content: "\e90c";
}

.bic-icon-chevron-left:before {
  content: "\e90d";
}

.bic-icon-chevron-right:before {
  content: "\e90e";
}

.bic-icon-chevron-up:before {
  content: "\e90f";
}

.bic-icon-message-square:before {
  content: "\e918";
}

.bic-icon-music:before {
  content: "\e91b";
}

.bic-icon-play:before {
  content: "\e91c";
}

.bic-icon-watch:before {
  content: "\e922";
}

.bic-icon-zap:before {
  content: "\e927";
}

.bic-icon-eye:before {
  content: "\e9ce";
}

/*--------------------------------------------------------------
# Site
--------------------------------------------------------------*/

body {
  --bic-wpadminbar-height: 0px;
}

@media screen and (min-width: 601px) {
  body.admin-bar {
    --bic-wpadminbar-height: 46px;
  }
}

@media screen and (min-width: 783px) {
  body.admin-bar {
    --bic-wpadminbar-height: 32px;
  }
}

.bic-site-inner {
  display: flex;
  flex-direction: column;
}

.bic-site-inner > * {
  flex: 0 0 auto;
}

.bic-site-inner main {
  flex: 1 0 auto;
  min-height: 50vh;
}

.bic-site-inner main > :not(:first-child) {
  margin-top: var(--bic-site-gap);
}

.bic-site-inner main > :last-child {
  margin-bottom: var(--bic-site-gap);
}

.bic-site-inner main.bic-site-primary--notbanner > :first-child {
  margin-top: var(--bic-site-gap) !important;
}

.bic-site-overlay {
  display: none;
}

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

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

.bic-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;
}

.bic-image-ratio {
  display: block;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding-top: 0;
  transition: all 0.3s;
  width: 100%;
  aspect-ratio: 3/2;
}

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

.bic-button--primary {
  text-transform: none;
  min-height: 56px;
  padding-left: 20px;
  padding-right: 64px;
  border-radius: 99px;
  background: var(--bic-primary-color);
}

.bic-button--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.5);
  transition: none;
}

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

.bic-button--primary .bic-button__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bic-primary-color);
  background: #fff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.bic-button--primary:hover svg {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}

.bic-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

@media (min-width: 1025px) {
  .bic-social {
    justify-content: flex-start;
  }

  .bic-section__head {
    margin-bottom: 2.6041666666vw;
  }
}

.bic-social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--bic-link-color);
  /* width: 40px;
	height: 40px;
    background: #f2f2f2; */
  transition: 0.25s;
}

.bic-social__link:hover {
  color: var(--bic-primary-color);
}

.bic-social__link svg {
  width: 24px;
  height: 24px;
  transition: 0.25s;
  fill: currentColor;
}

.bic-social__link svg path {
  fill: currentColor;
}

.bic-social__link:hover svg,
.bic-social__link:hover path {
  fill: currentColor;
}

.bic-offcanvas {
  transform: translate3d(0, 0, 0);
  position: fixed;
  height: calc(100% - var(--bic-wpadminbar-height));
  top: var(--bic-wpadminbar-height);
  left: calc(var(--bic-offcanvas-width) * -1);
  width: var(--bic-offcanvas-width);
  display: flex;
  flex-direction: column;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  transition: 0.4s;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .bic-offcanvas {
    --bic-offcanvas-width: 600px;
  }

  /*post  */

  .bic-entry-flex {
    width: 100%;
    padding: 0 15px;
  }

  .bic-entry-flex .bic-entry__thumbnail {
    padding-top: 27%;
  }

  .bic-entry-flex .bic-entry__inner {
    flex-direction: row;
  }

  .bic-entry-flex .bic-entry__title {
    font-size: 1.82291666vw;
  }

  .bic-entry-flex a.ellipsis-2 {
    height: auto;
  }

  .bic-entry-flex .bic-entry__link a,
  .bic-entry-flex .bic-entry__excerpt {
    font-size: 0.9375vw;
  }
}

body.open-menu {
  overflow: hidden;
}

body.open-menu .bic-offcanvas {
  transform: translate3d(var(--bic-offcanvas-width), 0, 0);
}

body.open-menu .bic-site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  animation: fade 0.5s;
  z-index: 99;
}

.bic-offcanvas__header {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  padding: 0 var(--bic-col-gap);
  min-height: var(--bic-header-height);
}

.bic-offcanvas .bic-logo {
  display: flex;
}

.bic-offcanvas__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bic-offcanvas__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
}

.bic-offcanvas__toggle .bic-icon {
  font-size: 16px;
  color: var(--bic-link-color);
  transform: translateZ(0);
  transition: 0.25s;
}

@media (hover: hover) {
  .bic-offcanvas__toggle:hover .bic-icon {
    color: var(--bic-primary-color);
    transform: translateZ(0) rotate(180deg);
  }
}

.bic-offcanvas__sidebar {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.bic-offcanvas__inner {
  padding: 0 15px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bic-offcanvas__menu {
  margin-bottom: 20px;
}

.bic-offcanvas__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bic-offcanvas__menu ul li.menu-item-has-children {
  position: relative;
  width: 100%;
}

.bic-offcanvas__menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--bic-link-color);
  transition: 0.25s;
}

.bic-offcanvas__menu ul li a .bic-icon {
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}

.bic-offcanvas__menu ul li.submenu-open > a .bic-icon {
  transform: rotate(-180deg);
}

.bic-offcanvas__menu ul.sub-menu {
  margin: 0;
  list-style: none;
}

.menu-item-object-danh_muc_dich_vu a span {
  display: none !important;
}

.bic-offcanvas__menu ul > li > ul.sub-menu {
  position: relative;
  width: 100%;
  padding-left: var(--bic-col-gap);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.bic-offcanvas__bottombar {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  padding: 20px 15px;
  border-top: 1px solid var(--bic-border-color);
}

.bic-offcanvas__bottombar .bic-offcanvas__button {
  width: 100%;
}

.bic-offcanvas__bottombar .bic-header__custom-button {
  width: 100%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.bic-header-before {
  height: var(--bic-header-height);
}

.bic-header {
  position: fixed;
  top: calc(var(--bic-wpadminbar-height));
  left: 0;
  width: 100%;
  background: #fff;
  transition: all 0.3s linear;
  z-index: 11;
}

.bic-header .bic-container,
.bic-header .bic-container-full {
  position: relative;
}

.bic-header .bic-container-full {
  padding: 0 var(--bic-col-gap);
}

@media (min-width: 1025px) {
  .bic-header .bic-container-full {
    padding: 0 30px;
  }
}

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

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

.bic-header__col > *:not(:first-child) {
  margin-left: 20px;
}

.bic-header__col.bic-col-left {
  flex: auto;
  justify-content: flex-start;
}

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

.bic-header__col.bic-col-right {
  flex: auto;
  justify-content: flex-end;
}

.bic-header .bic-logo {
  margin-bottom: 0;
}

.bic-header__logo {
  display: block;
  color: var(--bic-primary-color);
  white-space: nowrap;
  text-decoration: none;
  transition: none;
}

.bic-header__logo img {
  display: block;
  max-width: inherit;
  max-width: 118px;
  width: 118px;
  height: auto;
  transition: 0.25s;
}

@media (hover: hover) {
  .bic-header__logo img:hover {
    opacity: 0.8;
  }
}

.bic-header__nav {
  align-self: stretch;
}

.bic-header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bic-header__nav ul li {
  position: relative;
  transition: all 0.3s;
}

.bic-header__nav ul li.submenu-visible > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 0;
  transform: translate3d(0, 0, 0);
}

.bic-header__nav ul.menu-list {
  display: flex;
  align-items: center;
  height: var(--bic-header-height);
  gap: 30px;
}

.bic-header__nav > ul > li {
  display: flex;
  height: 100%;
  align-items: center;
}
.bic-header__nav > ul > li.current-post-ancestor > a,
.bic-header__nav > ul > li.current-menu-parent > a,
.bic-header__nav > ul > li.current-menu-item > a {
  padding: 11px 24px;
  background: var(--bic-primary-color);
  border-radius: 30px;
}

.bic-header__nav > ul > li.current_page_item a:hover {
  color: var(--bic-secondary-color);
  transition: all 0.25s;
}

.bic-header__nav ul > li > a {
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  position: relative;
  align-items: center;
  color: #21335f;
  text-decoration: none;
  gap: 5px;
  transition: all 0.25s;
  cursor: pointer;
}

@media (min-width: 1920px) {
}

.bic-header__nav ul > li > a svg {
  width: 20px;
  height: 20px;
}

.bic-header__nav ul > li > a svg path {
  fill: currentColor;
}

.bic-header__nav ul > li:hover > a,
.bic-header__nav ul > li > a:focus {
  color: var(--bic-primary-color);
}

.bic-header__nav ul > li[class*="current"] > a {
  color: var(--bic-secondary-color);
}

.bic-header__nav > ul > li > a[href="#"] {
}

/* .bic-header__nav ul li.menu-item-has-children > a:after {
  content: "\e90e";
  font-family: "bic-icons";
  font-size: 14px;
  line-height: 1;
  color: currentColor;
  transition: 0.25s;
} */

/* .bic-header__nav > ul > li.menu-item-has-children > a:after {
  content: "\e90c";
  margin-top: -3px;
  margin-left: 5px;
} */

@media (hover: hover) {
  .bic-header__nav > ul > li.menu-item-has-children:hover > a:after {
    transform: rotate(-180deg);
  }
}

.bic-header__nav > ul > li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
}

.bic-header__nav ul .sub-menu {
  background-color: #ffffff;
  border-radius: var(--bic-border-radius);
  box-shadow: 0px 2px 16px 0px rgba(14, 16, 21, 0.1);
  border: 1px solid #e5e7eb;
  left: -0.75rem;
  position: absolute;
  padding: 15px 0;
  top: calc(100%);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  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 .sub-menu {
  top: 0;
  left: 100%;
}

@media (hover: hover) {
  .bic-header__nav ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: visible;
    pointer-events: unset;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.bic-header__nav ul .sub-menu li a {
  padding: 8px 15px;
  text-transform: none;
  justify-content: space-between;
}

.bic-header__nav ul .sub-menu li:not(.mega-menu) a {
  width: 100%;
}

.bic-header__nav ul .sub-menu li:hover a {
}

.bic-header__offcanvas-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: 0.25s;
}

.bic-header__offcanvas-toggle .bic-icon {
  font-size: 24px;
}

.bic-header__offcanvas-toggle svg {
  width: 28px;
  height: 28px;
}

.bic-header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  transition: 0.25s;
  cursor: pointer;
  color: var(--bic-primary-color);
  border: 1px solid var(--bic-primary-color);
}

.bic-header__search-toggle .bic-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
}

body.open-search .bic-header__search-toggle .bic-icon {
  font-size: 16px;
}

body.open-search .bic-header__search-toggle .bic-icon::before {
  content: "\e92b";
}

.bic-header__search {
  width: 244px;
  max-width: 244px;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  transition: transform 0.4s;
  padding: 0;
  border-radius: 30px;
}

.bic-search__form .bic-search__group {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bic-border-color);
  border-radius: 30px;
  transition: 0.25s;
  min-height: 48px;
}

.bic-search__form .bic-search__submit {
  flex: 0 0 auto;
  height: 42px;
  min-height: 42px;
  white-space: nowrap;
  border-radius: 10px;
  background: 0;
  color: #000;
}

.bic-search__form .bic-search__input {
  height: 42px;
  min-height: 42px;
  background: transparent;
  border: none;
  padding-left: 0;
  color: rgba(10, 10, 10, 0.5);
}

.bic-header__custom-button {
  height: 46px;
  min-height: 46px;
  padding-right: 54px;
}

.bic-header__custom-button .bic-button__icon {
  width: 36px;
  height: 36px;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
.bic-filter {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.bic-filter > * {
  display: flex;
  align-items: center;
}

.bic-filter-item.bic-col-center {
  flex: 1;
}

.bic-outernav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 20px;
}

.bic-outernav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: var(--bic-text-color);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  transition: all 0.3s;
}

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

.bic-section__head {
  position: relative;
  margin-bottom: 40px;
}

.bic-section__title-sub {
  color: var(--bic-secondary-color);
  margin-bottom: 8px;
}

.bic-section__title {
  font-size: 40px;
  color: var(--bic-secondary-color);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--bic-primary-font);
}

.bic-breadcrumbs {
  position: relative;
  word-wrap: break-word;
  margin-bottom: 10px;
  z-index: 2;
}

.bic-breadcrumbs a,
.bic-breadcrumbs span {
  text-decoration: none;
  color: var(--bic-link-color);
}

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

.bic-breadcrumbs .breadcrumb_last,
.bic-breadcrumbs .last,
.bic-breadcrumbs .aioseo-breadcrumb:last-child {
  opacity: 0.9;
}

.bic-breadcrumbs .bic-separator {
  margin: 0 0.1875rem;
  position: relative;
}

.bic-breadcrumbs .bic-separator:after {
  font-family: "bic-icons";
  content: "\e90e";
  color: var(--bic-link-color);
  vertical-align: bottom;
}

.bic-page-header {
  position: relative;
  margin: 0 20px;
  border-radius: 20px;
}

.bic-page-header--background .bic-page-header__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 51, 95, 0.6);
}

.bic-page-header--background .bic-page-header__content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
}

.bic-page-header__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--bic-link-color);
  margin: 0;
}

.bic-page-header--background .bic-page-header__title,
.bic-page-header--background .bic-breadcrumbs a,
.bic-page-header--background .bic-breadcrumbs span,
.bic-page-header--background .bic-breadcrumbs .bic-separator:after {
  color: #fff;
}

.bic-page-header__archive-description {
  position: relative;
  margin-top: 20px;
}

.bic-entry__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.bic-meta-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 0.9375vw, 16px);
}
.bic-meta-tag a {
  color: var(--bic-primary-color);
  font-weight: 500;
}
.bic-meta-date .bic-icons {
  width: 32px;
  height: 32px;
  background: var(--bic-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.bic-meta-date {
  display: flex;
  align-items: center;
}

.bic-entry__thumbnail {
  border-radius: 5px;
}

.bic-entry__inner:hover .bic-entry__thumbnail img {
  transform: scale(1.1);
}

.bic-entry__thumbnail::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}

.bic-entry__inner:hover .bic-entry__thumbnail::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.bic-entry__content {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 20px;
}

.bic-entry__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--bic-secondary-color);
  text-transform: none;
  margin: 12px 0 !important;
}

.bic-entry__title a {
  color: currentColor;
}

.bic-entry__inner:hover .bic-entry__title {
  color: var(--bic-primary-color);
}

.bic-entry__post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  transition: 0.25s all;
  color: #48494a;
  line-height: 1;
  margin-bottom: 10px;
}

.bic-entry-flex .bic-entry__link a {
  background: var(--bic-primary-color);
  color: var(--bic-secondary-color);
  display: inline-block;
  padding: 12px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 500;
}

.bic-entry-flex .bic-entry__link .bic-icons svg path {
  stroke: var(--bic-secondary-color);
}

.single .bic-entry__header .bic-entry__post-meta {
  margin: 10px 0 0;
}

.single .bic-breadcrumbs span:has(+ .breadcrumb_last) {
  display: none;
}

.single .bic-breadcrumbs .breadcrumb_last {
  display: none;
}

.bic-meta-category .post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bic-entry__post-meta .bic-meta-category .post-categories li {
  position: relative;
  line-height: 1;
}

.bic-entry__post-meta .bic-meta-category .post-categories li a {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bic-primary-color);
  font-weight: 600;
}

.bic-entry__post-meta .bic-meta-date {
}

.bic-entry__excerpt {
  color: #4a5565;
  font-size: 16px;
}

.bic-entry__link {
  position: relative;
  margin-top: 16px;
}

.bic-entry__link a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bic-primary-color);
  font-size: 16px;
}

.bic-entry__link .bic-icons {
}

.bic-entry__link .bic-icons svg {
  width: 20px;
  height: 20px;
}

.bic-entry__link a:hover svg {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}

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

.bic-single .bic-entry__post-meta {
  margin: 20px 0 0;
}

.bic-single .bic-entry__content {
  padding: 0;
}

.bic-entry__footer {
  position: relative;
  margin-top: 30px;
}

.bic-share .bic-social__link {
  width: 46px;
  height: 46px;
  background-color: var(--bic-primary-color);
  color: #fff;
  border-radius: var(--bic-border-radius);
}

.bic-share .bic-social__link:hover {
  background-color: var(--bic-secondary-color);
  color: #fff;
}

.bic-entry__comments {
  margin-top: 30px;
}

.bic-pagination {
  margin-top: 30px;
}

.bic-pglinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.bic-pglink {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: var(--bic-secondary-color);
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  border-radius: 50%;
  transition: all 0.3s;
}

.bic-pglink .bic-icon {
  font-size: 20px;
  font-weight: 700;
}

.bic-pglink.current,
.bic-pglink:not(.disabled):hover {
  border-color: var(--bic-primary-color);
  background: var(--bic-primary-color);
  color: #fff;
}

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

/* .bic-archive-post .bic-entry__inner{
    flex-direction: row;
}

.bic-archive-post .bic-entry__thumbnail{
    padding: 0;
    flex: 0 0 auto;
    width: 30%;
    height: auto;
} */

/* Service Card Styles */
.service-card {
  width: 100%;
  max-width: 490px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  position: relative;
  background: #fff;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card__image-container {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.service-card__image,
.service-card__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__image,
.service-card:hover .service-card__image-container img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(253, 184, 19, 0.85);
  overflow: hidden;
  transition: all 0.6s;
  align-content: center;
  height: 50px;
  max-height: 50px;
}

.service-card__overlay::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border: 2px solid #fff;
  border-radius: 10px;
  margin: auto;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.service-card__read-more {
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  padding-right: 20px;
  position: relative;
  z-index: 22;
  display: none;
}

.service-card__read-more a {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 20px;
  border-radius: 20px;
}

.service-card:hover .service-card__overlay {
  max-height: 100%;
  transition: all 0.6s;
  height: 100%;
}
.service-card:hover .service-card__read-more {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s;
  display: block;
}

.service-card:hover .service-card__description {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s;
  display: block;
}

.service-card:hover .service-card__overlay::before {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s;
}

.service-card__description {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
  color: #000;
  margin: 10px 0 20px;
  padding: 0 20px;
  max-height: 70px;
  overflow: hidden;
  display: none;
}

.service-card__title {
  color: #fff;
  text-align: center;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  height: auto;
  align-content: center;
}

.service-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card__link:hover {
  text-decoration: none;
  color: inherit;
}

section.bic-ani {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card {
    max-width: 100%;
  }

  .service-card__image-container {
    height: 280px;
  }

  .service-card__overlay {
    padding: 15px 20px;
  }

  .service-card__title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .service-card__image-container {
    height: 240px;
  }

  .service-card__overlay {
    padding: 12px 15px;
  }

  .service-card__title {
    font-size: 16px;
  }

  .bic-footer__copyright .d-flex.justify-content-between {
    flex-direction: column;
  }

  .policy {
    display: none !important;
  }

  .bic-footer {
    padding-top: 60px !important;
  }
  .bg-footer__right,
  .bg-footer__top {
    display: none;
  }

  .bic-footer__main-bottom {
    padding-bottom: 30px !important;
  }

  .widget-footer {
    margin-bottom: 10px !important;
  }

  .bic-footer__nav ul > li > a {
    font-size: 16px !important;
  }

  .floating-container {
    display: none !important;
  }

  .bic-entry-flex {
    padding: 0 15px;
  }

  h1.bic-page-header__title {
    font-size: 18px;
  }

  .bic-entry__post-meta-flex {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start !important;
  }

  .bic-single .bic-entry__post-meta-flex > .bic-entry__post-meta {
    gap: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.widget {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.bic-widget-area .widget {
  break-inside: avoid;
}

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

.widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bic-link-color);
  margin-bottom: 20px;
}

.bic-sidebar__area .widget-title {
  position: relative;
  padding-bottom: 12px;
}

.bic-sidebar__area .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s;
}

.bic-sidebar__area .widget:hover .widget-title::before {
  width: 100%;
}

.bic-widget-post:not(:last-child) {
  margin-bottom: 20px;
}

.bic-widget-post .bic-entry__inner {
  padding: 0;
  border: none;
  box-shadow: none;
  flex-direction: row;
}

.bic-widget-post .bic-entry__thumbnail {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  padding: 0;
  border-radius: var(--bic-border-radius);
  border: 1px solid var(--bic-border-color);
}

.bic-widget-post .bic-entry__content {
  flex: 1;
  padding: 10px;
  padding-left: 15px;
}

.bic-widget-post .bic-entry__title {
  margin: 0;
}

.bic-widget-post .bic-entry__post-meta,
.bic-widget-post .bic-entry__excerpt {
  display: none !important;
}

.widget_nav_menu + .widget_nav_menu {
  border-top: 1px solid var(--bic-border-color);
  padding-top: 20px;
  margin-top: 10px;
}

.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--bic-border-radius);
}

.widget_nav_menu ul.menu li:not(:last-child) > a {
  margin: 0;
  border-bottom: 1px solid #f8f8f8;
}

.widget_nav_menu ul > li.menu-item-has-children > span:after {
  font-size: 20px;
}

.widget_nav_menu a {
  display: block;
  font-weight: 700;
  padding: 12px 20px;
  background-color: #f2f2f2;
  transition: all 0.3s;
}

.widget_nav_menu ul.menu li[class*="current"] > a,
.widget_nav_menu ul.menu li:hover a {
  background-color: var(--bic-primary-color);
  color: #fff;
}

.widget_nav_menu .menu-item-has-children {
  position: relative;
  width: 100%;
}

.widget_nav_menu .menu-item-has-children > span {
  position: absolute;
  right: 0;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-left: auto;
  padding-right: 5px;
  cursor: pointer;
}

.widget_nav_menu .menu-item-has-children > span:after {
  font-family: "bic-icons";
  font-size: 20px;
  content: "\e90c";
}

.widget_nav_menu .menu-item-has-children > ul {
  width: 100%;
  order: 3;
}

.widget_nav_menu .menu-item-has-children .menu-item-has-children > span {
  top: 3px;
}

.widget_nav_menu .menu-item-expanded > span:after {
  content: "\e90f";
}

.widget_nav_menu .menu > .menu-item:not(.menu-item-has-children) > a:after {
  visibility: hidden;
}

.widget_nav_menu .sub-menu {
  display: none;
}

.widget_nav_menu .sub-menu a {
  padding: 10px 0 10px 10px;
  line-height: 1;
}

.widget_nav_menu .sub-menu .sub-menu {
  padding: 0 0 0 10px;
}

.widget_nav_menu .menu {
  margin: -10px 0;
}

.widget_nav_menu .menu > .menu-item > .sub-menu {
  padding-bottom: 10px;
}

.widget_nav_menu .menu-item-has-children > a {
  padding-right: 20px;
  width: calc(100% - 20px);
}

/*--------------------------------------------------------------
# Comment
--------------------------------------------------------------*/
.comment-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comment-list > li {
  margin-top: 20px;
}

.comment-list > li.depth-1:not(:first-child) {
  border-top: 1px solid var(--bic-border-color);
  padding-top: 20px;
}

.comment-list > li:first-child {
  margin-top: 20px;
}

.comment-list .comment-body {
  display: flex;
  flex-direction: column;
}

.comment-list .comment-body > .reply {
  display: inline-flex;
  order: 3;
  margin-top: 10px;
}

.comment-list .comment-content {
  font-style: normal;
  color: var(--bic-text-color);
  margin-top: 10px;
}

.comment-list .comment-meta {
  font-size: 14px;
  color: #48494a;
}

.comment-list .comment-edit-link {
  color: var(--bic-link-color);
  transition: 0.25s;
  margin-left: 5px;
  text-transform: none;
}

.comment-list .comment-edit-link:hover {
  color: var(--bic-primary-color);
}

.comment-list .comment-author .says {
  display: none;
}

.comment-list .bypostauthor > .comment-body .comment-author:before {
  font-family: "bic-icons";
  font-size: 20px;
  display: flex;
  align-items: center;
  max-height: 20px;
  margin-right: 5px;
}

.comment-list .byuser .comment-author b {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.comment-list .children {
  margin: 0;
  margin-top: 20px;
  padding-left: 2rem;
  list-style: none;
}

.comment-list .children > li:not(:first-child) {
  margin-top: 20px;
}

@media (max-width: 575.98px) {
  .comment-list .children {
    padding-left: 20px;
  }
}

.comment-list .children .children .children .children .children .children {
  padding-left: 0;
}

@media (min-width: 768px) {
  .comment-list .children .children .children .children .children .children {
    padding-left: 0;
  }
}

.comment-meta {
  line-height: 1.3;
  order: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.comment-meta img {
  width: 46px;
  height: 46px;
  margin-right: 15px;
  border-radius: 50%;
}

.comment-meta:after {
  content: "";
  display: block;
  clear: both;
}

.comment-meta time {
  font-size: inherit;
  color: #444;
}

.comment-meta a {
  display: inline;
  transition: 0.25s;
  text-decoration: none;
  color: #444;
}

.comment-meta a time {
  color: #444;
  transition: 0.25s;
}

.comment-metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-left: 10px;
  margin-top: 2px;
}

@media (max-width: 575.98px) {
  .comment-metadata {
    width: 100%;
    margin-left: 0;
  }
}

.comment-metadata > * {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

@media (min-width: 576px) {
  .comment-metadata > * {
    margin-top: 0;
  }
}

.comment-author {
  display: flex;
  align-items: center;
}

@media (max-width: 575.98px) {
  .comment-author {
    width: 100%;
  }
}

.comment-author .fn {
  display: flex;
  align-items: center;
  color: var(--bic-primary-color);
}

.comment-author .fn a {
  color: currentColor;
}

.comment-content {
  order: 2;
}

.comment-content > * {
  margin-top: 28px;
  margin-bottom: 28px;
}

@media (min-width: 576px) {
  .comment-content > * {
    margin-top: 28px;
    margin-bottom: 28px;
  }
}

.comment-content > *:first-child {
  margin-top: 0;
}

.comment-content > *:last-child {
  margin-bottom: 0;
}

.comment-reply-link {
  display: inline;
  color: #444;
  transition: 0.25s;
  text-decoration: none;
}

.comment-reply-link:hover {
  color: var(--bic-primary-color);
}

.bic-cancel-reply-button {
  display: inline;
}

#cancel-comment-reply-link {
  display: inline;
  color: #444;
  transition: 0.25s;
  text-decoration: none;
  margin-left: 20px;
}

#cancel-comment-reply-link:hover {
  color: var(--bic-primary-color);
}

.comment-respond {
  margin-top: 30px;
  order: 99;
  overflow: hidden;
}

.bic-comments__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--bic-text-color);
  text-transform: none;
  margin-bottom: 20px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}

.comment-form label {
  margin-bottom: 8px;
  color: var(--bic-text-color);
}

.comment.bypostauthor {
  outline: none;
}

.comment-notes,
.comment-form-comment,
.comment-form-cookies-consent,
.logged-in-as {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.comment-notes textarea,
.comment-form-comment textarea,
.comment-form-cookies-consent textarea,
.logged-in-as textarea {
}

.comment-notes a,
.comment-form-comment a,
.comment-form-cookies-consent a,
.logged-in-as a {
  text-decoration: underline;
}

.comment-notes a:hover,
.comment-form-comment a:hover,
.comment-form-cookies-consent a:hover,
.logged-in-as a:hover {
  text-decoration: none;
}

.comment-form-comment {
  order: 1;
}

.comment-form-comment textarea {
  display: block;
  width: 100%;
  height: 100px;
  transition: none;
}

.comment-form-author,
.comment-form-email {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.comment-form-author.comment-form-author,
.comment-form-email.comment-form-author {
  order: 2;
}

.comment-form-author.comment-form-email,
.comment-form-email.comment-form-email {
  order: 3;
}

@media (min-width: 768px) {
  .comment-form-author,
  .comment-form-email {
    flex: 0 0 49%;
    max-width: 49%;
  }
}

.comment-form-author input,
.comment-form-email input {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.25s;
}

@media (hover: hover) {
  .comment-form-author input:hover,
  .comment-form-email input:hover {
    opacity: 0.7;
  }
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  width: 100%;
  border: none;
  background: transparent;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  .comment-form-comment,
  .comment-form-author,
  .comment-form-email {
    margin-bottom: 10px;
  }
}

@media (min-width: 576px) {
  .comment-form-comment,
  .comment-form-author,
  .comment-form-email {
    margin-bottom: 20px;
  }
}

.comment-form-comment input,
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-author textarea,
.comment-form-email input,
.comment-form-email textarea {
  transition: 0.25s;
}

@media (hover: hover) {
  .comment-form-comment input:hover,
  .comment-form-comment textarea:hover,
  .comment-form-author input:hover,
  .comment-form-author textarea:hover,
  .comment-form-email input:hover,
  .comment-form-email textarea:hover {
    opacity: 0.7;
  }
}

.comment-form-cookies-consent {
  order: 5;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 5px;
  align-items: flex-start;
}

.comment-form-cookies-consent label {
  margin: 0;
}

.comment-form-cookies-consent input {
  width: 18px;
  height: 18px;
}

.comment-notes {
  order: 1;
  margin-bottom: 20px;
  color: #444;
}

.comment-awaiting-moderation {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 20px;
}

.logged-in-as,
.form-allowed-tags {
  margin-bottom: 20px;
}

.form-submit {
  order: 6;
  width: 100%;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .form-submit {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .form-submit button {
    width: 100%;
  }
}

.no-comments {
  margin-top: 20px;
  padding: 10px;
}

.logged-in-as a:hover {
  color: var(--bic-primary-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.bic-footer {
  position: relative;
  z-index: 10;
  background: #f2f2f2;
  background: #21335f;
  padding-top: 100px;
  color: #fff;
}

.bic-footer a {
  color: #fff;
}

.bic-footer a:hover {
  color: var(--bic-primary-color) !important;
}

.bic-footer__main-bottom {
  padding-bottom: 50px;
}

.bg-footer__top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 89.90416vw;
  height: 2.34375vw;
}

.bg-footer__right {
  position: absolute;
  top: -9.375vw;
  right: 0;
  width: 9.84375vw;
  height: 9.375vw;
}

.bg-footer__left {
  position: absolute;
  top: 0;
  left: 0;
}

.title_ft {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  line-height: 1;
}

.ft_info {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content_ft {
  margin-bottom: 28px;
}

.icon-left-ft {
  position: absolute;
  left: 0;
  bottom: 0;
}

.icon-left-ft img {
  height: 13.33vw;
  width: 13.33vw;
}

.icon-right-ft {
  position: absolute;
  right: 0;
  top: 0;
}

.icon-right-ft img {
  height: 15.83vw;
  width: 15.83vw;
}

/* 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;
}

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

.wpml-ls-legacy-list-horizontal {
  border: 1px solid transparent;
  padding: 7px;
  clear: both;
  display: flex;
  height: 42px;
  padding: 4px 6px;
  align-items: center;
  gap: var(--stroke-weight-4, 4px);
  flex-shrink: 0;
  border-radius: 33554400px;
  background: var(--color-grey-98, #F9FAFB);
}

.wpml-ls-legacy-list-horizontal>ul {
  padding: 0;
  margin: 0 !important;
  list-style-type: none;
  display: flex;
  gap: 10px;
  align-items: center;
    flex-direction: row-reverse;
}

.wpml-ls-current-language.wpml-ls-item {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: var(--Color-White, #FFF);
  box-shadow: 0 0 0 2px rgba(253, 184, 19, 0.20), 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.wpml-ls-legacy-list-horizontal a {
  display: block;
  text-decoration: none;
  padding: 5px 10px 6px;
  line-height: 1;
  width: 20px;
  height: 20px;
  position: relative;
}


.wpml-ls-legacy-list-horizontal .wpml-ls-flag {
  display: inline;
  vertical-align: middle;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .bic-footer {
    background-size: auto 100%;
  }

  .bic-header__search {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: absolute;
    top: var(--bic-header-height);
    right: var(--bic-col-gap);
    width: 380px;
    max-width: 380px;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    transition: transform 0.4s;
    overflow: hidden;
    box-shadow: 0px 2px 16px 0px rgba(14, 16, 21, 0.1);
    padding: 0;
    border-radius: var(--bic-border-radius);
  }

  body.open-search .bic-header__search {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: unset;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 0.9375vw;
  }
  :root {
    --bic-container-width: 81.25vw;
  }

  .bic-section__title {
    font-size: 2.5vw;
  }

  .mega-menu .sub-menu {
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-42%) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    min-width: 67.916667vw !important;
    padding: 1.40625vw !important;
    gap: 0.9375vw !important;
    border-radius: 0.7942708vw !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    box-shadow: 0 1.302083vw 2.6041667vw -0.625vw rgba(0, 0, 0, 0.25) !important;
  }

  .mega-menu > .sub-menu > li {
    white-space: unset !important;
    font-size: 0.9375vw !important;
    padding: 0.78125vw !important;
    border: 0.052083vw solid #e5e7eb;
    border-radius: 0.625vw !important;
    background: unset !important;
    transition: all 0.3s !important;
  }

  .system-menu > a {
    display: unset !important;
  }

  .mega-menu > .sub-menu > li > a {
    height: 100%;
    display: block;
  }

  .menu-item-object-danh_muc_dich_vu a span {
    font-size: clamp(9px, 0.7291667vw, 14px) !important;
    color: #4a5565 !important;
    margin-top: 0.78125vw !important;
    line-height: 1.25vw !important;
    display: block !important;
    font-weight: 500;
  }

  .system-menu .sub-menu {
    opacity: 1 !important;
    visibility: inherit !important;
    width: auto !important;
    min-width: unset !important;
    display: block !important;
    left: 0 !important;
    transform: unset !important;
    background: unset !important;
    top: 50px !important;
    padding: 0 !important;
    border-radius: unset !important;
    box-shadow: unset !important;
    border: unset !important;
    position: unset !important;
    margin-top: 15px;
  }

  .mega-menu > .sub-menu > li {
    min-height: 11.3541666vw;
    border-radius: 0.625vw !important;
    overflow: hidden;
    transition: all 0.3s;
  }

  .system-menu {
    display: block !important;
    border: 0.052083vw solid #e5e7eb;
    padding: 0.78125vw !important;
  }

  .system-menu > a {
    height: 100% !important;
    border: unset !important;
    padding: 0 !important;
    background: unset !important;
  }

  .system-menu .sub-menu > li > a {
    padding: 0 !important;
    background: unset !important;
    font-size: clamp(9px, 0.7291667vw, 14px) !important;
    border: 0 !important;
    padding-bottom: 10px !important;
    font-weight: 400;
    color: #4a5565 !important;
    transition: all 0.3s;
  }

  .system-menu .sub-menu > li:hover {
    transform: translateX(5px);
    transition: all 0.3s;
  }

  .system-menu .sub-menu > li > a:hover {
    transition: all 0.3s;
    font-weight: 600 !important;
  }

  /* header */

  .bic-header__nav ul.menu-list {
    gap: 1.875vw;
  }

  .bic-search__form .bic-search__group {
    border-radius: 3.125vw;
    transition: 0.25s;
    min-height: 2.5vw;
  }

  .bic-search__form .bic-search__submit {
    height: 2.1875vw;
    min-height: 2.1875vw;
    border-radius: 1.25vw;
  }

  .bic-search__form .bic-search__input {
    height: 2.1875vw;
    min-height: 2.1875vw;
  }

  .bic-header__search {
    width: 15.26041vw;
    max-width: 15.26041vw;
    border-radius: 1.875vw;
  }

  /* news */

  .bic-entry__content {
    padding: 1.04166vw;
  }

  .bic-meta-date .bic-icons {
    width: 1.66663vw;
    height: 1.6666vw;
    margin-right: 0.52083vw;
  }

  .bic-entry__title {
    font-size: 0.9375vw;
  }
  .bic-entry__link a,
  .bic-entry__excerpt {
    font-size: 0.9375vw;
  }

  .bic-entry__link {
    margin-top: 0.9375vw;
  }

  .ellipsis-2 {
    height: 2.29166vw;
  }

  .swiper-control-btn {
    width: 2.3958333vw !important;
    height: 2.3958333vw !important;
  }

  /* footer */

  .bic-footer {
    padding-top: 5.2083vw;
  }

  .bic-footer__main-bottom {
    padding-bottom: 2.60416vw;
  }

  .title_ft {
    font-size: 1.0417vw;
    font-weight: 600;
    margin: 1.25vw 0 0.8333vw;
    line-height: 1;
  }

  .content_ft {
    margin-bottom: 1.4583vw;
  }

  .ft_info {
    margin-bottom: 0.625vw;
    gap: 0.625vw;
  }

  .widget-title {
    font-size: 1.0417vw;
    margin-bottom: 1.0417vw;
  }

  .bic-footer__copyright {
    padding: 1.25vw 0;
  }

  .bic-footer__nav ul > li > a {
    font-size: 0.9375vw !important;
    padding: 0.52083vw 0 !important;
  }

  .bic-header__logo img {
    max-width: 6.19791vw;
    width: 6.19791vw;
  }

  span.icon_ft svg {
    width: 1.0417vw;
    height: 1.0417vw;
    font-size: 1.0417vw;
  }
}

/*.bic-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003E75cc;
}*/

.bic-footer__logo img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.bic-footer__main {
  position: relative;
}

.bic-footer__col > :not(:first-child) {
  margin-top: 30px;
}

.wpcf7-turnstile.cf-turnstile {
  text-align: center;
  margin-top: 20px;
}


@media (min-width: 1025px) {
  .bic-footer__main-bottom > .bic-row {
    row-gap: 0;
  }

  .mega-menu .sub-menu > .current-menu-item {
    background: var(--bic-primary-color) !important;
  }

  .mega-menu .sub-menu > .current-menu-item a {
    color: var(--bic-secondary-color) !important;
  }

  .bic-entry__post-meta {
    font-size: 0.9375vw;
  }

  .mega-menu .sub-menu > li:hover {
    background: var(--bic-primary-color) !important;
    transition: all 0.3s !important;
    border-radius: 10px;
  }

  .mega-menu .sub-menu > li:hover a {
    color: var(--bic-secondary-color) !important;
  }

  .bic-header__nav > ul > li.current-post-ancestor > a,
  .bic-header__nav > ul > li.current-menu-parent > a,
  .bic-header__nav > ul > li.current-menu-item > a {
    padding: 0.57291666vw 1.25vw;
    border-radius: 0.5208vw;
  }

  
.wpml-ls-legacy-list-horizontal {
  border: 1px solid transparent;
  padding: 0.36458333vw;
  clear: both;
  display: flex;
  height: 2.1875vw;
  padding: 0.20833333vw 0.3125vw;
  align-items: center;
  gap: 0.20833333vw;
  flex-shrink: 0;
  border-radius: 33554400px;
  background: var(--color-grey-98, #F9FAFB);
}

.wpml-ls-legacy-list-horizontal>ul {
  padding: 0;
  margin: 0 !important;
  list-style-type: none;
  display: flex;
  gap: 0.52083333vw;
  align-items: center;
    flex-direction: row-reverse;
}

.wpml-ls-current-language.wpml-ls-item {
  display: flex;
  width: 1.66666667vw;
  height: 1.66666667vw;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: var(--Color-White, #FFF);
  box-shadow: 0 0 0 2px rgba(253, 184, 19, 0.20), 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.wpml-ls-legacy-list-horizontal a {
  display: block;
  text-decoration: none;
  padding: 0.26041667vw 0.52083333vw 0.3125vw;
  line-height: 1;
  width: 1.04166667vw;
  height: 1.04166667vw;
  position: relative;
}

}

.bic-footer__heading {
  color: var(--bic-text-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-top: 40px;
}

@media (min-width: 1025px) {
  .bic-footer__heading {
    margin-bottom: 40px;
  }
}

.bic-address-item {
  margin-top: -3px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bic-text-color);
}

.bic-address-item:not(:first-child) {
  margin-top: 20px;
}

.bic-address-item__content,
.bic-address-item__content a {
  color: currentColor;
}

.bic-address-item__content a:hover {
  color: var(--bic-secondary-color);
}

.bic-footer__nav ul {
}

.bic-footer__nav > ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  /* display: flex;
    flex-direction: column;
    column-gap: 60px;
    row-gap: 16px; */
}

/* @media (min-width: 768px) {
    .bic-footer__nav>ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
} */

.bic-footer__nav ul > li {
  position: relative;
}

.bic-footer__nav ul > li > a {
  color: #fff;
  background: transparent !important;
  padding: 10px 0;
  border: 0 !important;
  font-size: 18px;
  font-weight: 400;
}

.bic-footer__nav .widget-title {
  color: #fff;
}
@media (min-width: 1025px) {
  .bic-footer__col.bic-col-right:not(:only-child) {
    text-align: left;
  }
}

.bic-footer__nav ul > li {
  color: #fff;
}

.bic-footer__nav ul > li > a {
  line-height: 1;
  text-transform: none;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: currentColor;
  text-decoration: none;
  gap: 5px;
}

.bic-footer__nav ul > li:hover {
  color: var(--bic-secondary-color);
}

.bic-footer__nav > ul > li > a {
  font-size: 18px;
  margin-bottom: 20px;
}

.bic-footer__nav ul ul.sub-menu li:not(:last-child) {
  margin-bottom: 20px;
}

.bic-footer-form {
  position: relative;
  border-radius: 0 0 30px 30px;
  background: #fff;
  padding: 50px 40px;
  color: var(--bic-text-color);
}

.bic-footer-form__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--bic-text-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.bic-footer-form__description {
  margin-bottom: 50px;
}

.bic-subscribe__form .bic-form-group.bic-row {
  --bic-col-gap: 8px;
}

.bic-subscribe__form .bic-form-input input {
  height: 60px;
  padding-left: 30px;
  border-radius: 99px;
}

.bic-subscribe__form .bic-button--primary {
  width: 100%;
  height: 60px;
  background: var(--bic-gradient-color2);
}

.bic-subscribe__form .bic-button--primary .bic-button__icon {
  width: 50px;
  height: 50px;
}

.wpcf7 .bic-subscribe__form .wpcf7-spinner {
  margin: 0;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 1;
}

.wpcf7 .bic-subscribe__form .wpcf7-not-valid-tip {
  display: none !important;
}

.bic-footer-form .wpcf7 form .wpcf7-response-output {
  font-size: 13px;
  text-align: center;
  border-radius: 99px;
}

.bic-support__form .easy-select,
.bic-support__form .bic-button--primary {
  width: 100%;
}

.bic-acc__form .wpcf7-file {
  display: none;
}

.bic-acc__form .bic-form-label {
  width: 100%;
  min-height: 160px;
  height: 100%;
  cursor: pointer;
  margin: 0;
  padding: 16px;
  text-align: center;
  background: #f2f2f2;
  border: 1px solid var(--bic-border-color);
  border-radius: var(--bic-border-radius);
}

.bic-acc__form .bic-form-label::before {
  content: "+";
  position: absolute;
  font-size: 48px;
  font-weight: 300;
  color: #444;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bic-acc__form .bic-form-label .preview-img {
  position: relative;
  display: block;
}

.bic-acc__form .bic-form-label .preview-img img {
  margin-top: 20px;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  background: #fff;
}

.bic-acc__form .bic-form-label .remove-btn {
  position: absolute;
  top: 30px;
  right: 10px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1px;
  cursor: pointer;
  text-align: center;
}

.bic-acc__form .bic-button--primary {
  width: 100%;
}

.bic-footer__copyright {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #6a7282;
}

.bic-footer__copyright .policy {
  display: flex;
  gap: 24px;
  align-items: center;
}

.bic-footer__copyright a {
  color: #fff;
  font-weight: 500;
}
.copyright a {
  color: var(--bic-primary-color);
}

.bic-footer__copyright a:hover {
  text-decoration: underline;
}

.bic-scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  bottom: 10px;
  right: 1.25vw !important;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  color: var(--bic-primary-color);
  transition: 0.25s;
  width: 46px;
  height: 46px;
  padding: 0;
}

.bic-scroll-top .bic-icon {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 992px) {
  .bic-scroll-top {
    bottom: 30px;
    right: 30px;
  }
}

.bic-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: var(--bic-secondary-color);
}

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 {
  width: 60px;
  height: 60px;
  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;
}

/* Responsive.css */

@media only screen and (min-width: 1901px) {
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  :root {
    --bic-header-height: 80px;
  }

  /*    .bic-header .bic-header__logo img{
        max-width: 180px;
        width: 180px;
    }*/
}

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

  .bic-footer__main .bic-col-left.bic-col-lg-7 {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
  }

  .bic-footer__heading,
  .bic-footer-form__title {
    font-size: 32px;
  }

  .bic-footer-contact-item__content p,
  .bic-footer-contact-item__content a {
    font-size: 20px;
  }
}

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

@media only screen and (max-width: 1440px) {
  :root {
    --bic-grid-gap: 10px;
    --bic-header-height: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  :root {
    --bic-container-width: 1160px;
    --bic-site-gap: 80px;
  }

  /* Home */
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  :root {
    --bic-container-width: 1060px;
    --bic-font-size: 15px;
    --bic-site-gap: 60px;
  }

  /* Home */
}

@media only screen and (max-width: 1024px) {
  :root {
    --bic-site-gap: 60px;
    --bic-font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .bic-section__title {
    font-size: 27px !important;
  }

  .bic-footer__copyright .policy {
    display: none;
  }

  .bic-footer__copyright .d-flex.justify-content-between {
    flex-direction: column;
  }

  .bic-page-header__banner {
    height: 300px;
  }

  h1.bic-page-header__title {
    font-size: 20px;
    font-weight: 600;
  }

  .bg-footer__top {
    top: -7px;
    left: 0;
  }

  .service-card__description {
    max-height: 77px;
  }

  .bic-sidebar-related .bic-entry__thumbnail {
    display: none;
  }
}

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

  .bic-footer__heading {
    line-height: 1.5;
  }
}

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

@media (max-width: 480px) {
  :root {
    --bic-site-gap: 46px;
    --bic-font-size: 15px;
  }

  .bic-header__logo img {
    max-width: 90px;
    width: 90px;
  }

  .logo-ft .bic-header__logo img {
    max-width: 130px;
    width: 130px;
  }
  .bic-header__search-toggle {
    width: 40px;
    height: 40px;
  }

  .bic-footer__heading {
    font-size: 24px;
  }

  .bic-page-header {
    position: relative;
    margin: 10px;
    border-radius: 20px;
  }

  .bic-page-header__title {
    font-size: 24px;
  }

  .bic-page-header__banner {
    max-height: 200px;
    height: 200px;
  }

  .bic-sidebar-related {
    padding: 20px 15px !important;
  }

  .bic-swiper-pagination1 {
    bottom: 15px;
  }

  .bic-sidebar
    .bic-row
    .bic-entry-item
    .bic-entry__inner
    .bic-entry__thumbnail {
    display: none;
  }

  .bic-sidebar .bic-row .bic-entry-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 414px) {
}
