@charset "UTF-8";

/*
 * Font
 */

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 300;
	src: url(../../fonts/Noto_Sans_JP/NotoSansJP-Light.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-Medium.ttf) format("truetype");
	font-display: swap;
}


@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-SemiBold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-Black.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/Roboto_Condensed/RobotoCondensed-BoldItalic.ttf) format("truetype");
	font-display: swap;
}

/*
 * Root
 */

:root {
	--bic-primary-font: "Noto Sans JP";
	--bic-secondary-font: "Roboto Condensed";
	--bic-font-size: 16px;
	--bic-font-weight: 500;
	--bic-line-height: 1.5;
	--bic-container-width: 930px;
	--bic-site-gap: 80px;
	--bic-header-height: 80px;
	--bic-header-logo-width: 225px;
	--bic-grid-gap: 10px;
	--bic-primary-color: #1d2088;
	--bic-primary-hover-color: #1d2088;
	--bic-secondary-color: #00a7ea;
	--bic-secondary-hover-color: #00a7ea;
	--bic-gradient-color: linear-gradient(90deg, #00a7ea 0%, #1d2088 100%);
	--bic-heading-color: #231815;
	--bic-text-color: #231815;
	--bic-link-color: #231815; 
	--bic-link-hover-color: #231815;
	--bic-border-color: #E9E9E9;
	--bic-border-radius: 0;
	--fancybox-accent-color: var(--bic-primary-color);
}

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

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

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

/*
 * Reset
 */

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

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

body {
	margin: 0;
	padding: 0;
}

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

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

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 1em 0;
}

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

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

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

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

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

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

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

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

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

small {
	font-size: 80%;
}

big {
	font-size: 125%;
}

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

sub {
	bottom: -0.25rem;
}

sup {
	top: -0.5em;
}

audio,
video {
	display: inline-block;
}

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

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

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

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

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

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

p:last-child {
	margin: 0;
}

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

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

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

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

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

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

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

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

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

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

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

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

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

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

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

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

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

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

body.rtl {
	text-align: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button,
.btn,
button,
input[type="button"],
input[type="submit"] {
	background-color: var(--bic-primary-color);
	color: #FFF;
	line-height: 1;
	border-radius: var(--bic-border-radius);
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-weight: 700;
	padding: 15px 24px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

ul {
	list-style: inside;
}

ol {
	list-style: decimal;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

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

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

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

td {
	padding: 0.6781rem;
}

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

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

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

/*
 * Header
 */

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

.aw-header-sticky{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

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

.aw-header-main{
	position: relative;
	z-index: 10;
	transition: all .3s;
}

.aw-header-main::before{
	content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, from(#00a7ea), to(#1d2088));
    background: linear-gradient(90deg, #00a7ea 0%, #1d2088 100%);
	transition: all .3s;
}

body.theme-loaded .aw-header-main::before{
	width: 100%;
}

.aw-header-main, body.menu-open .aw-header-main{
	background-color: #fff;
}

.aw-header-main .container-fluid{
	padding: 0 40px;
}

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

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

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

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

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

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

/* Logo */

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

.aw-header-logo img {
	width: var(--bic-header-logo-width);
	max-width: var(--bic-header-logo-width);
	height: auto;
	transition: all .3s;
}

/* Menu */

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

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

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

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

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

.aw-header-nav ul.menu-list>li {
	margin-right: 30px;
}

.aw-header-nav ul.menu-list>li>a {
	position: relative;
	color: var(--bic-text-color);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.9px;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	text-transform: none;
	height: 45px;
}

.aw-header-nav ul.menu-list>li>a::before{
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 2px;
	bottom: 0;
	width: 0;
	-webkit-transition: width 0.3s ease-in;
	transition: width 0.3s ease-in;
	background: -webkit-gradient(linear, left top, right top, from(#00a7ea), to(#1d2088));
	background: linear-gradient(90deg, #00a7ea 0%, #1d2088 100%);
}

.aw-header-nav ul.menu-list>li:hover>a::before,
.aw-header-nav ul.menu-list>li>a:focus::before,
.aw-header-nav ul.menu-list>li[class*="current"]>a::before {
	width: 100%;
}

.aw-header-nav ul.menu-list>li>a svg{
	margin-top: -4px;
	width: 18px;
    height: 18px;
	stroke-width: 1.5px;
}

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

.aw-header-nav ul.menu-list>li>a span.aw-menu-text:after {
	border-bottom: 2px solid;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	transition: width 0.30s;
}

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

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

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

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

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

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

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

/* Header search */

.header-search-button {
	--btn-width: 46px;
	--btn-height: 46px;
	flex: 0 0 auto;
	width: var(--btn-width);
	height: var(--btn-height);
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--bic-border-color);
}

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

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

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

.header-search-form {
	position: absolute;
	opacity: 0;
	right: 0;
	top: 100%;
	width: 0;
	pointer-events: none;
	z-index: 5;
	display: block;
	transition: width 0.30s, opacity .30s ease, visibility .30s ease, transform .30s ease;
}

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

/* Language */

.aw-header-lang ul{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.aw-header-lang ul li a{
	padding: 0;
}

.aw-header-language ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aw-header-language ul li a.lang_active{
	display: none;
}

.aw-header-language ul li a{
	--btn-width: 60px;
    --btn-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--btn-width);
	height: var(--btn-height);
	border-radius: 50%;
	border: 1px solid var(--bic-primary-color);
	color: var(--bic-primary-color);
	font-weight: 500;
}

.aw-header-language ul li a:hover{
	border-color: var(--bic-primary-color);
}

/* Menu mobile */

.aw-mbmenu-toggle{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aw-mbmenu-nav ul > li > a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 18px;
    font-weight: 600;
	text-transform: uppercase;
	color: var(--bic-text-color);
    padding: 14px 0;
}

.aw-mbmenu-nav ul > li > a svg{
	margin-top: -4px;
    width: 20px;
    height: 20px;
}

.aw-mbmenu-nav ul > li:not(:last-child) > a{
	border-bottom: 1px solid #e3b56880;
}

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

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

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

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

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

/*
 * Section
 */

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

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

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

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

.es-option {
    white-space: nowrap;
    padding: 5px 15px;
}

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

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

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

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

.show-desktop{
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin0{
    margin: 0 !important;
}

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

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

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

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

.padding0 {
    padding: 0 !important;
}

.slide-wrap{
	position: relative;
}

.swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	background: transparent;
}

.swiper-pagination-bullet-active{
	width: 100px;
	background: #fff;
	border-radius: 30px;
}

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

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


.sec-head {
	position: relative;
	margin-bottom: 32px;
}

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

.sec-head-title .title{
	color: var(--bic-heading-color);
	font-size: 27px;
	font-weight: 900;
	text-transform: none;
	line-height: 1.4;
	margin: 0;
}

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

.sec-head .sec-descript{
	margin: 0 auto;
	max-width: 1010px;
	margin-top: 40px;
}

.sec-btn{
	display: flex;
	align-items: center;
	margin-top: 30px;
}

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

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

.social-item:hover{
	background: var(--bic-primary-color);
	border-color: var(--bic-primary-color);
	color: #fff;
}

.social-item svg{
	stroke-width: 1.5px;
}

.social-item svg path{
	fill: currentColor;
}

.btn-primary {
    position: relative;
    background: #595757 url(../images/icons/icon_arrow02.svg) no-repeat calc(100% - 11.2px) center/16px !important;
	width: 195px;
    color: #fff;
    display: flex;
    align-items: center;
	justify-content: flex-start;
    gap: 0;
	font-size: 14px;
    font-weight: 500;
    line-height: 2.2;
    text-transform: none;
	text-align: left;
	letter-spacing: 1.12px;
    border: none;
    padding: 0 14px;
}

.btn-primary:hover {
    background-position: calc(100% - 7px) center !important;
}

/*
 * Home
 */


/*
 * Layout
 */

/* Layout general */

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

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

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

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

.image-ratio {
    display: block;
    position: relative;
    background-color: #fff;
    border-radius: var(--bic-border-radius);
    overflow: hidden;
    padding-top: 66.667%;
	transition: all .3s;
}

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

.radius-sm{
	border-radius: var(--bic-border-radius);
}

/* Layout list */

.page-header{
	position: relative;
}

.page-header__image{
	position: relative;
}

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

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

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

/* .page-header-image .sec-head-title .title{
	font-size: 36px;
	color: #FFFFFF;
} */

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

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

.breadcrumb_last{
	opacity: .8
}

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

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

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

.archive-header{
	margin-bottom: 60px;
}

.archive-header .sec-head{
	margin: 0;
}

.archive-header .sec-head-title .title{
	color: var(--bic-primary-color);
	font-size: 36px;
}

.archive-header__icon {
    display: flex;
    justify-content: flex-end;
}

.aw-outernav{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin-bottom: 30px;
}

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

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

/* Single */

.single-detail, .single-comments{
	position: relative;
    overflow: hidden;
}

.single-detail__title .title{
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}

.single-detail-meta__item{
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #B5B5B5;
}

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

.single-detail-meta__item svg{
	width: 16px;
	height: 16px;
}

.single-detail__header{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #b5b5b55c;
}

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

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

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

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

/* Comments.css */

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

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

ol.comment-list {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Widgets.css */

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

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

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

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bic-text-color);
    text-transform: uppercase;
	border-left: 5px solid;
    padding-left: 15px;
    margin-bottom: 30px;
}

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

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

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

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

/* Card item */

.card-list-wrap{
	/* --bic-grid-gap: 10px; */
	row-gap: calc(var(--bic-grid-gap)*2);
}

.card-item__inner{
	position: relative;
    /* overflow: hidden; */
	transition: transform .3s;
}

.card-item__inner:hover {
    transform: translateY(-5px) translateZ(0);
}

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

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

.card-item__inner:hover .card-item__thumbnail img{
	opacity: .7;
}

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

.card-item__title{
	font-size: 18px;
	font-weight: 700;
	color: var(--bic-text-color);
	text-transform: none;
	margin-bottom: 10px;
}

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

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

.card-item-meta__item{
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	color: #B5B5B5;
}

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

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

.card-item__excerpt{
	margin: 10px 0 16px;
	display: block;
    display: -webkit-box;
    max-width: 100%;
	font-size: var(--bic-font-size);
	color: #B5B5B5;
    min-height: 43px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-item__link{
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

.blog-item .card-item__excerpt{
	font-size: 16px;
}

/* Pagination */

.aw-pagi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 0;
}

.aw-pagi__item {
    --btn-width: 50px;
    --btn-height: 50px;
    color: var(--bic-text-color);
    font-weight: 700;
    width: var(--btn-width);
    height: var(--btn-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bic-border-color);
    border-radius: 100%;
    margin: 0 8px;
    transition: all .3s;
}

.aw-pagi__item.prev {
    margin: 0;
    margin-right: auto
}

.aw-pagi__item.next {
    margin: 0;
    margin-left: auto
}

.aw-pagi__item svg {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.aw-pagi__item.current,
.aw-pagi__item:hover {
    color: #FFFFFF;
    font-weight: 700;
    background: var(--bic-primary-color);
    border-color: var(--bic-primary-color)
}

.aw-pagi__item.disabled {
    opacity: .7;
    cursor: no-drop
}

/* Searchform */

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

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

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

/* ContentBody */

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

.ContentBody p {
	display: block;
}

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

.ContentBody ul {
	list-style: disc;
}

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

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

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

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

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

.ContentBody strong {
	font-weight: 600;
}

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

.ContentBody cite {
	border: none;
}

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

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

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

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

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

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

.ContentBody figure figcaption {
	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: var(--bic-border-radius);
	max-width: 100%;
	height: 100%;
}

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

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

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

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

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

.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
	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: 700;
	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: none;
}

.ContentBody h1,
.ContentBody h2,
.ContentBody h3,
.ContentBody h4,
.ContentBody h5,
.ContentBody h6 {
	color: var(--bic-text-color);
	margin-bottom: 20px;
	font-weight: 700;
}

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

.ContentBody h2 {
	font-size: 26px;
	/* letter-spacing: -0.52px; */
}

.ContentBody h3 {
	font-size: 24px;
	/* letter-spacing: -0.84px; */
}

.ContentBody h4 {
	font-size: 20px;
	/* letter-spacing: -0.2px; */
}

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

.ContentBody h6 {
	/* letter-spacing: -0.54px; */
}

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

/* Footer */

.aw-footer{
	position: relative;
}

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

.widget-footer .widget-title{
	color: #FFF;
	font-size: 20px;
	font-weight: 600;
	border: none;
    padding: 0;
    margin-bottom: 20px;
}

.aw-footer .social-item{
	background: transparent;
	color: #fff;
	width: auto;
	height: auto;
	border: none;
}

.aw-footer-foo{
	position: relative;
	margin-top: 10px;
}

.aw-footer-foo p{
	text-align: uppercase;
	font-size: 10px;
	font-family: var(--bic-secondary-font);
	font-weight: 700;
}

.footer-col .social-list{
	margin-top: 40px;
	gap: 30px;
	justify-content: center;
}

.footer-col .footer-col-inner{
	margin: 40px 0 0;
}

.footer-col .footer-col-inner .widget table{
	margin: 0;
}

.footer-col .footer-col-inner .widget table td{
	vertical-align: baseline;
	padding: 0;
	padding-bottom: 8px;
}

.footer-col .footer-col-inner .widget table td:first-child{
	padding-right: 30px;
}

.footer-col .footer-col-inner ul.menu{
	list-style: none;
	display: flex;
    flex-wrap: wrap;
	    justify-content: center;
}

.footer-col .footer-col-inner ul.menu li{
	margin: 0;
}

.footer-col .footer-col-inner ul.menu li:not(:last-child) a{
	margin-right: 6px;
	padding-right: 6px;
}

.footer-col .footer-col-inner ul.menu li:not(:last-child) a::after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 15px;
	background: currentColor;
}

.footer-col .footer-col-inner ul.menu li a{
	position: relative;
	font-size: 12px;
}

.aw-footer-logo{
	background: url(../images/icons/f_line.png) no-repeat center top / 100% 2px;
    margin: 20px 20px 0;
    padding: 20px 0;
}

@media screen and (min-width: 768px) {
    .aw-footer-logo {
        width: calc(100% - 60px);
        margin: 35px auto 0;
        padding: 35px 0;
    }
}

.aw-footer-logo img{
	display: block;
	margin: 0 auto;
	width: 430px;
}

/* Go top */

.aw-top{
	--btn-width: 50px;
    --btn-height: 50px;
    position: fixed;
    cursor: pointer;
    z-index: 99;
    bottom: 30px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
	background: linear-gradient(90deg, #00a7ea 0%, #1d2088 100%);
    color: #fff;
    width: var(--btn-width);
    height: var(--btn-height);
	box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, .15);
    border-radius: 100%;
    transform: translateX(2vw);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

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

/* Loading */

body.loading{
	overflow: hidden;
}

.aw-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 .30s ease, visibility .30s ease, transform .30s ease;
}

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

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

/* Animations */

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

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

/* Responsive.css */

@media only screen and (min-width: 1901px) {
	:root{
		--bic-font-size: 18px;
	}
}

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

    }

    .container-fluid{
        padding: 0 30px;
    }

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

}

@media only screen and (min-width: 1537px) and (max-width: 1700px) {

    :root {
        --bic-container-width: 1260px;
        --bic-site-gap: 80px;
    }

}

@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;
		--bic-header-logo-width: 100px;
	}

	.header-search-button, .aw-header-language ul li a, .aw-pagi__item, .aw-top{
		--btn-width: 46px;
		--btn-height: 46px;
	}

}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
	

    :root {
        --bic-container-width: 1160px;
        --bic-site-gap: 80px;
    }

	.swiper-pagination-bullet-active{
		width: 80px;
	}

	.aw-header-nav ul.menu-list>li{
		margin-right: 30px;
	}

	.sec-head-title .title{
		font-size: 32px;
	}

	.sec-head .sec-descript{
		max-width: 800px;
	}

	.btn-primary{
		--btn-height: 68px;
	}

	.aw-footer-foo{
		padding: 20px 0;
	}

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

	.swiper-pagination-bullet-active{
		width: 60px;
	}

	.aw-header-nav ul.menu-list>li>a{
		font-size: 14px;
	}

	.aw-header-nav ul.menu-list>li>a svg{
		width: 20px;
		height: 20px;
	}

	.aw-header-nav ul.menu-list>li{
		margin-right: 30px;
	}

	.sec-head-title .title{
		font-size: 32px;
	}

	.sec-head .sec-descript{
		max-width: 740px;
	}

	.btn-primary{
		--btn-height: 62px;
	}

	.widget-footer .widget-title{
		font-size: 18px;
	}

	.aw-footer-foo{
		padding: 20px 0;
	}

	/* Home */

	

}

@media only screen and (max-width: 1024px) {

    :root {
        --bic-site-gap: 60px;
		--bic-font-size: 14px;
    }

	.sec-head .sec-descript{
		margin-top: 30px;
	}

	.header-search-button, .aw-header-language ul li a, .aw-pagi__item, .aw-top{
		--btn-width: 40px;
        --btn-height: 40px;
	}

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

	.aw-pagi{
		margin-top: 30px;
	}

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

	.swiper-pagination{
		margin-top: 0;
	}

	.swiper-pagination-bullet-active{
		width: 60px;
	}

	.aw-header-nav ul.menu-list>li>a{
		font-size: 14px;
	}

	.aw-header-nav ul.menu-list>li>a svg{
		width: 20px;
		height: 20px;
	}

	.aw-header-nav ul.menu-list>li{
		margin-right: 30px;
	}

	.sec-head-title .title{
		font-size: 28px;
	}

	.sec-head .sec-descript{
		max-width: 800px;
	}

	.btn-primary{
		--btn-height: 62px;
	}

	.widget-footer .widget-title{
		font-size: 18px;
	}

	.aw-footer-foo{
		padding: 20px 0;
	}

	/* Home */


}

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

    :root {
        --bic-site-gap: 60px;
        --bic-header-height: 68px;
    }

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


	.sec-head-title .title{
		font-size: 24px;
	}

	.sec-head-title .before-title{
		bottom: 0;
    	width: 50%;
	}

	.archive-header{
		margin-bottom: 30px;
	}

	.archive-header .sec-head-title .title{
		font-size: 24px;
	}

	.btn-primary{
		--btn-height: 52px;
	}

	.aw-top{
    	right: 10px;
		bottom: 20px
	}

	/* Home */


}

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

	.aw-footer-foo{
		padding: 15px 0;
	}
}

@media only screen and (max-width: 480px) {

    :root {
        --bic-site-gap: 46px;
		--bic-font-size: 15px;
		--bic-header-logo-width: 85px;
    }

	.swiper-pagination-bullet{
		border-width: 1px;
	}

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

	.aw-header-language ul li a{
		--btn-width: 40px;
		--btn-height: 40px;
		border-width: 1px;
	}

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

	.sec-head-title .before-title{
		width: 100%;
	}

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

	.sec-head-title .title{
		font-size: 24px;
	}

	.btn-primary{
		--btn-width: auto;
    	--btn-height: 54px;
	}

	.aw-pagi{
		margin-top: 30px;
	}

	.aw-pagi__item{
		--btn-width: 40px;
    	--btn-height: 40px;
	}

	.page-header-image .page-banner__content .sec-head-title .title{
		font-size: 28px;
	}

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

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

	.blog-item .card-item__excerpt{
		font-size: var(--bic-font-size);
	}

	.footer-col .social-list{
		margin-top: 20px;
	}

	.footer-col .footer-col-inner{
		margin: 0px 0 30px;
	}

	.widget-footer .widget-title{
		font-size: 18px;
		margin-bottom: 16px;
	}

	.footer-col .footer-col-inner .widget table td:first-child{
		padding-right: 20px;
	}

	.footer-col .footer-col-inner ul.menu{
		display: flex;
    	flex-wrap: wrap;
	}

	.footer-col .footer-col-inner ul.menu li{
		flex: 0 0 auto;
		width: calc(100% / 3)
	}

	.aw-footer-foo{
		padding: 10px 0;
	}

}

@media only screen and (max-width: 414px) {
	.sec-head-title .title, .archive-header .sec-head-title .title{
		font-size: 20px;
	}
}