@charset "UTF-8";

/*
 * Font
 */

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

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

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

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

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


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

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

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

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

/*
 * Root
 */

:root {
	--bic-primary-font: "montserrat";
	--bic-secondary-font: "montserrat";
	--bic-font-size: 16px;
	--bic-font-weight: 400;
	--bic-line-height: 1.5;
	--bic-container-width: 1560px;
	--bic-site-gap: 60px;
	--bic-header-height: 80px;
	--bic-header-logo-width: 235px;
	--bic-grid-gap: 15px;
	--bic-primary-color: #e75524;
	--bic-primary-hover-color: #a13d1b;
	--bic-secondary-color: #0d3422;
	--bic-secondary-hover-color: #061a11;
	--bic-heading-color: #0d3422; 
	--bic-text-color: #0d3422;
	--bic-link-color: #0d3422; 
	--bic-link-hover-color: #061a11;
	--bic-border-color: #E9E9E9;
	--bic-border-radius: 10px;
	--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: 600;
}

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: 600;
	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: 600;
	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: 600;
	line-height: 1.35;
	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: 600;
	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: 600;
	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: 600;
}

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: 600;
}

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

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

td {
	padding: 0.6781rem;
}

.aw-table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	scrollbar-width: thin;
	margin-bottom: 1.5rem;
}

.aw-table-responsive table{
	margin-bottom: 0 !important;
}

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 !important;
	top: 0;
	left: 0;
	right: 0;
}

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

.aw-header-main{
	position: relative;
	padding: 0 20px;
	z-index: 10;
	transition: all .3s;
	border-radius: var(--bic-border-radius);
	outline: 1px solid var(--bic-border-color);
}

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

.aw-header .container-fluid{
	padding: 20px;
	transition: all .3s;
}

.aw-header-sticky .container-fluid{
	padding: 0;
}

.aw-header-sticky .aw-header-main{
	border-radius: 0;
}

.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-weight: 600;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	text-transform: uppercase;
}

/* .aw-header-nav ul.menu-list>li>a::before{
	content: "";
	position: absolute;
	left: 0;
	height: 2px;
	bottom: 0;
	width: 0;
	-webkit-transition: width 0.3s ease-in;
	transition: width 0.3s ease-in;
	background: currentColor;
} */

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

.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);
	font-weight: 600;
	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;
	background: var(--bic-primary-color);
	color: #fff !important;
	border-radius: 50%;
	transition: all .3s;
}

.header-search-button:hover{
	background: var(--bic-primary-hover-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: var(--bic-header-height);
	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;
}

.aw-header-right{
	gap: 15px;
}

/* 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: #fff;
	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: flex-start;
	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 var(--bic-border-color);
}

.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{
}

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

	.aw-header {
		position: relative;
	}
}

@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;
	overflow: hidden;
}

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

.swiper-pagination-bullet-active{
	width: 50px;
	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;
	margin-bottom: -6px;
}

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

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

.sec-head-title .subtitle{
	color: var(--bic-primary-color);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}

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

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

.sec-head .sec-btn{
	margin-top: 0;
	margin-left: auto;
}

.sec-head .btn-primary{
	min-height: 42px;
	height: 42px;
	padding: 0 15px;
}

.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: var(--bic-primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	text-align: left;
	border: none;
	padding: 12px 20px;
	min-height: 46px;
}

.btn-primary svg{
	width: 20px;
	height: 20px;
}

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

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

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

	51% {
		opacity: 1;
	}
}

/*
 * Home
 */


.banner-item__image {
	position: relative;
}

/* .banner-item__image img {
    -webkit-transition: -webkit-transform 9s linear;
    transition: -webkit-transform 9s linear;
    transition: transform 9s linear;
    transition: transform 9s linear, -webkit-transform 9s linear;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.banner-item.swiper-slide-active .banner-item__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} */

.teams-btns{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	gap: 30px;
}

.teams-btns .btn-primary{
	background: var(--bic-secondary-color);
	justify-content: center;
	min-width: 240px;
}

.teams-btns .btn-primary:hover, .teams-btns .btn-primary.active{
	background: var(--bic-primary-color);
}

.team-item .card-item__inner {
	padding: 30px;
	border-color: var(--bic-primary-color);
}

.team-item .card-item__thumbnail {
	padding-top: 100%;
	border-radius: 50%;
	border: 1px solid var(--bic-primary-color);
}

.team-item .card-item__content {
	padding: 0;
	text-align: center;
	/*margin-top: 20px;*/
}

.team-item .card-item__title {
	font-size: 18px;
	text-transform: uppercase;
	margin: 20px 0 0;
}

.team-item .card-item__pos {
	color: var(--bic-primary-color);
	font-weight: 600;
	margin-bottom: 20px;
	min-height: 42px;
}

.box-services {
	background: var(--bic-secondary-color);
}

.box-services .sec-head-title .title {
	color: #fff;
}

.service-item.team-item .card-item__title {
	text-transform: none;
}

.service-item.team-item .card-item__title a {

}

.service-item.team-item .card-item__inner {
	padding: 15px 15px 20px 15px;
	border-color: #fff;
}

.service-item.team-item .card-item__thumbnail {
	padding-top: 75%;
	border-radius: var(--bic-border-radius);
}

.service-item .card-item__icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #fff;
	background: var(--bic-primary-color);
	color: #fff;
	font-size: 50px;
	margin: 0 auto;
	margin-top: -15%;
	position: relative;
	z-index: 10;
	margin-bottom: 16px;
	transition: all 0.3s ease-in-out;
}

.service-item .card-item__icon img {
	width: 50px;
	height: 50px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

.box-about .sec-head-title .subtitle {
	color: var(--bic-heading-color);
}

.box-about .sec-head-title .title {
	color: var(--bic-primary-color);
}

.about-list {
	margin: 40px 0;
}

.about-list-item__title {
	color: var(--bic-primary-color);
	font-size: 46px;
	font-weight: 600;
	margin: 0;
}

.about-list-item__excerpt {
	font-size: 20px;
	font-weight: 600;
}

.about-image img {
	border-radius: var(--bic-border-radius)
}

.about-video {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

.about-video .btn-primary {
	width: 46px;
	height: 46px;
	padding: 0;
	justify-content: center;
	border-radius: 50%;
}

.why__image {
	position: relative;
	height: 100%;
	border-radius: var(--bic-border-radius);
	overflow: hidden;
}

.why__image::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(13, 52, 34, 0.00) 63.9%, rgba(13, 52, 34, 0.55) 76.61%, rgba(13, 52, 34, 0.90) 88.03%, #0D3422 100%);
}

.why__image-content {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 40px;
}

.why__image-content__title {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
}

.why-item .card-item__inner {
	padding: 40px;
	border: none;
	background: var(--bic-primary-color);
	color: #fff;
}

.why-list .col-left .why-item:last-child .card-item__inner, .why-list .col-right .why-item:first-child .card-item__inner{
	background: var(--bic-secondary-color);
}

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

.why-item .card-item__title {
	color: #fff !important;
	font-size: 30px;
	font-weight: 600;
	margin: 0;
}

.why__image-content__descript {
	color: #fff;
}

.why-item .card-item__icon {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.why-item .card-item__icon img {
	width: 60px;
	height: 60px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

.box-news:not(.box-promotions, .box-testimonials){
	background: #E8E8E8;
}

.box-promotions .card-item__inner{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border: none;
	padding: 0;
}

.box-promotions .card-item__thumbnail{
	padding: 0;
	flex: 0 0 auto;
	width: 365px;
	height: 250px;
	border-radius: var(--bic-border-radius);
}

.box-promotions .card-item__content{
	flex: 1;
	padding-left: 20px;
}

.box-promotions .card-item__title{
	font-size: 20px;
}

.box-promotions .card-item__title a{
	-webkit-line-clamp: 3;
}

.box-promotions .card-item-meta, .box-testimonials .card-item-meta{
	display: none !important;
}

.box-facilities .card-item__inner{
	border: none;
	padding: 0;
}

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


.box-news .image-holder img,
.box-testimonials  .image-holder img,
.box-testimonials-home .image-holder img,
.box-archive-post .image-holder img{
	border-radius: var(--bic-border-radius);
}
.skeleton-bg {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgd2lkdGg9IjEwMHB4IiBoZWlnaHQ9IjEwMHB4Ij4NCjxjaXJjbGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTA1MjU0IiBzdHJva2Utd2lkdGg9IjEwIiByPSI0NSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY2IDQ0IiBzdHlsZT0iJiMxMDsgICAgLyogc3Ryb2tlLWRhc2hhcnJheTogMTY2IDQ0OyAqLyYjMTA7Ij4NCiAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIi8+DQo8L2NpcmNsZT4NCjwvc3ZnPg==) no-repeat center/30px
}

.image-ratio {
	display: block;
	position: relative;
	background-color: #fff;
	overflow: hidden;
	padding-top: 70%;
	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;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,   
        rgba(0, 0, 0, 0) 30%     
    );
    z-index: 1;
    pointer-events: none;
}


@media (min-width: 1366px){
	.card-item-meta__item {
    font-size: 16px !important;
}
}
.page-header-image .page-banner__content{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 1;
	text-align: center;
}
.page-banner__content .aw-breadcrumb {
	text-align: center;
	margin: 10px auto 0;  
	display: inline-block; 
	float: none;     
}
.page-banner__content .sec-head{
	margin-bottom: 0;
}

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

.aw-breadcrumb > span{
	display: flex;
}

.breadcrumb_sep{
	margin: 0 5px;
}

.breadcrumb_last{
	opacity: .8
}

.page-header-image .aw-breadcrumb span, .page-header-image .aw-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;
	padding: 8px 20px;
	color: var(--bic-text-color);
	font-weight: 600;
	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;
}

.blog-pagination {
	display: flex;
	justify-content: center;
}

/* Single */
@media (max-width: 767px) {
	.box-single-post .breadcrumb_last {
		display: inline-block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		vertical-align: middle;
	}
}
.box-single-post .breadcrumb{
	margin-bottom: 20px;
}

.single-detail, .single-comments{
	position: relative;
	overflow: hidden;
}
.color-primary{
	color: var(--bic-primary-color);
}
.single-detail__title .title{
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 0;
}

.single-detail-meta{
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 15px;
}

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

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

.aw-tags__text{
	font-weight: 600;
	margin-right: 15px;
}

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

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

/* Card item */

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

.card-item__inner{
	display: block;
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--bic-secondary-color);
	border-radius: var(--bic-border-radius);
	transition: transform .3s;
	padding: 15px;
}

.widget_category_post_widget .card-item__inner {
	padding: 0;
}

#sidebar .card-item__inner{
	border: none;
}
#sidebar .image-holder img{
	border-radius: var(--bic-border-radius);
}
/* .card-item__inner:hover {
	box-shadow: 0 3px 14px #1e222d29;
    transform: translateY(-5px) translateZ(0);
} */

.card-item__thumbnail{
	background-color: #f5f5f5;
}

/* .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{
	transform: scale(1.025);
}

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

.card-item__title{
	font-size: var(--bic-font-size);
	font-weight: 600;
	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: 44px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.widget  .card-item__title a {
	min-height: unset;
}

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

.card-item-meta__item{
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
}

.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);
	min-height: 43px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-item__link{
	display: flex;
	align-items: center;
	margin-top: 16px;
	text-transform: none;
	color: var(--bic-primary-color);
	font-weight: 600;
}

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

.card-item__btn .btn-primary{
	min-height: 44px;
	height: 44px;
	padding: 0 15px;
}

.category-dental-guide .box-news.box-testimonials .card-item__excerpt   {
	display: none;
}

/* 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: 600;
	color: var(--bic-text-color);
	text-transform: uppercase;
	border-left: 5px solid var(--bic-primary-color);
	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;
}

.widget-item .card-item__inner{
	display: flex;
}

.widget-item .card-item__thumbnail{
	padding: 0;
	flex: 0 0 auto;
	width: 120px;
	height: 80px;
}

.widget-item .card-item__content{
	flex: 1;
	padding-top: 0;
	padding-left: 15px;
}

.archive .box-archive-post .blog-list .blog-item .card-item__inner {
	border-color: #E8E8E8;
}
section.sec-ani.margin.padding.box-news.box-related-news.aw_slide4.show {
	background-color: #fff;
	padding-bottom: 0;
}

.box-archive-post .widget{
	border-radius: var(--bic-border-radius);
	/*box-shadow: 0px 2px 12px 0px rgba(14, 16, 21, .1);*/
	padding: 15px;
}
.box-archive-post .widget_media_image{
	padding: 0;
}

.box-archive-post .widget_nav_menu ul.menu{
	list-style: none;
	padding: 0;
	margin: 0;
}

.box-archive-post .widget_nav_menu ul.menu li{
	margin: 0;
}

.box-archive-post .widget_nav_menu ul.menu li a{
	display: block;
	font-weight: 600;
	padding: 12px 20px;
	transition: all .3s;
	border-radius: var(--bic-border-radius);
}

.box-archive-post .widget_nav_menu ul.menu li.current-menu-item a, .box-archive-post .widget_nav_menu ul.menu li:hover a{
	background-color: var(--bic-primary-color);
	color: #fff;
}

/* Pagination */

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

.aw-pagi__item {
	--btn-width: 46px;
	--btn-height: 46px;
	color: var(--bic-text-color);
	font-weight: 500;
	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: var(--bic-primary-color);
}

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

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

.post-type-archive-service .card-item__inner {
	border-color: #EBEDFF;
}

.single--tour   .widget-ctf7 .bic-ctf7 .form-submit  p {
	margin-bottom: 0;
}
.single--tour .widget-ctf7 .booking-info {
	display: none;
}

.single--tour  .single-widget-area .widget.widget-ctf7 {
	padding-bottom: 0;
	margin-bottom: 30px;
}

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

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

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

.box-archive-post .archive-right  .card-item__title  {
	font-size: 20px;
}

/* Footer */

.aw-footer{
	position: relative;
	background: var(--bic-secondary-color);
	color: #fff;
}

.aw-footer-main{
	position: relative;
	padding: 50px 0 50px;
}

@media (min-width: 1025px) {
	.aw-footer-main .col-lg-6{
		-ms-flex: 0 0 45%;
		flex: 0 0 45%;
		max-width: 45%;
	}

	.aw-footer-main .col-lg-4{
		-ms-flex: 0 0 38.333333%;
		flex: 0 0 38.333333%;
		max-width: 38.333333%;
	}

}


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

.footer-info {
	position: relative;
	max-width: 445px;
}

.footer-info .aw-header-logo{
	display: flex;
	margin-bottom: 20px;
}

.footer-info .aw-header-logo a{
	height: auto;
}

.footer-info .aw-header-logo img{
	max-width: 345px;
	width: 345px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-contact-item:last-child{
	margin-top: 20px;
}

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

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

.footer-contact-item__content p a{
	color: #fff;
}

.footer-contact-item__content p a:hover{
	color: var(--bic-primary-color)
}

.aw-footer .social-list{
	margin: 20px 0;
	gap: 10px;
	justify-content: flex-start;
}

.aw-footer .social-item{
	background: #fff;
	color: var(--bic-primary-color);
	border-radius: 50%;
}

.aw-footer-foo{
	position: relative;
}

.aw-footer-foo p{
	font-weight: 400;
}

.aw-footer-foo a{
	color: #fff;
}

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

.aw-footer-nav ul{
	margin: 0;
	padding: 0;
}

.aw-footer-nav ul.menu-list{
	list-style: none;
}

.aw-footer-nav ul.menu-list li:not(:last-child){
	margin-bottom: 16px;
}

.aw-footer-nav ul.menu-list > li > a{
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.aw-footer-nav ul.menu-list li{
	color: #fff;
}

.aw-footer-nav ul.menu-list li a{
	position: relative;
	color: currentColor;
}

.aw-footer-nav ul.sub-menu li:hover{
	color: var(--bic-primary-color);
}


/* 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: var(--bic-primary-color);
	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;
	}
}

.single-detail__header.service-header {
	padding-bottom: 0;
	border-bottom: none;
}


/* Responsive.css */

@media only screen and (min-width: 1901px) {

}

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

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

	.box-booking .booking__image img {
		max-height: 450px  !important;
	}

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

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

}

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

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

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

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

	.btn-primary {
		font-size: 15px;
	}

}

@media only screen and (min-width: 1441px) and (max-width: 1536px) {

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

	.aw-header-nav ul.menu-list>li>a {
		font-size: 15px;
		text-transform: initial;
	}

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

	.box-booking .booking__image img {
		max-height: 420px  !important;
	}

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

	.team-item .card-item__pos {
		font-size: 15px;
	}

}

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

	:root {
		--bic-grid-gap: 10px;
		--bic-header-height: 80px;
		--bic-header-logo-width: 150px;
	}

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

}

@media (min-width: 1200px) and (max-width: 1440px){
	.card-item__title a{
		min-height: 40px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {

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

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

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

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

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

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

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

	.btn-primary{
		--btn-height: 62px;
		min-height: 45px;
		font-size: 14px;

		padding: 10px;
	}

	/* Home */
	.why-item .card-item__title {
		font-size: 18px;
	}

	.why-item .card-item__inner {
		padding: 32px;
	}

	.why__image-content__title {
		font-size: 20px;
	}

	.why-item .card-item__icon {
		margin-bottom: 16px;
	}

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

	.service-item .card-item__icon {
		width: 70px;
		height: 70px;
	}

	.service-item .card-item__icon img {
		width: 40px;
		height: 40px;
	}

	.team-item .card-item__title {
		font-size: 15px;
	}

	.box-promotions .card-item__thumbnail {
		width: 250px;
		height: 170px;
	}
	
	.box-promotions .card-item__title {
		font-size: 15px;
	}

	.teams-btns .btn-primary {
		min-width: 180px;
	}

	.box-teams .team-item .card-item__title {
		font-size: 13px;
	}

	.adt-contact-form input.adt-form-input {
		height: 45px !important;
	}

	.adt-contact-form .row {
		row-gap: 10px;
	}

	.adt-contact-form .easy-select {
		--es-height: 45px !important;
	}

	.box-booking .booking__image img {
		max-height: 450px !important;
	}

}
@media only screen and (max-width: 1280px) {
	.aw-header .container-fluid{
		padding: 0;
	}
	.aw-header-main{
		padding: 0 var(--bic-grid-gap);
		border-radius: 0;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {

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

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

	.aw-header-nav ul.menu-list>li>a{
		font-size: 13px;
		text-transform: inherit;
	}

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

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

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

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

	.btn-primary{
		--btn-height: 62px;
		min-height: 40px;
		font-size: 13px;
		padding: 10px;
	}

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

	/* Home */
	.why-item .card-item__title {
		font-size: 18px;
	}

	.why-item .card-item__inner {
		padding: 32px;
	}

	.why__image-content__title {
		font-size: 18px;
	}

	.why-item .card-item__icon {
		margin-bottom: 16px;
	}

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

	.service-item .card-item__icon {
		width: 70px;
		height: 70px;
	}

	.service-item .card-item__icon img {
		width: 40px;
		height: 40px;
	}

	.team-item .card-item__title {
		font-size: 15px;
	}

	.box-promotions .card-item__thumbnail {
		width: 250px;
		height: 170px;
	}
	
	.box-promotions .card-item__title {
		font-size: 15px;
	}

	.teams-btns .btn-primary {
		min-width: 180px;
	}

	.box-teams .team-item .card-item__title {
		font-size: 13px;
	}

	.adt-contact-form input.adt-form-input {
		height: 40px !important;
	}

	.adt-contact-form .row {
		row-gap: 10px;
	}

	.adt-contact-form .easy-select {
		--es-height: 40px !important;
	}

	.box-booking .booking__image img {
		max-height: 350px !important;
	}
	
}

@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;
	}

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

	.about-list-item__title {
		font-size: 34px;
	}

	/* Home */

	.why-item .card-item__title {
		font-size: 24px;
	}

	.why-list .col-center {
		order: -1;
	}

	.about-list-item__excerpt {
		font-size: 16px;
	}

	.single .content-sidebar {
		display: none;
	}

	.archive .content-sidebar {
		display: none;
	}

}

@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{
		font-size: 14px;
		min-height: 44px;
	}

	.aw-footer-main{
		padding-bottom: 15px;
	}

	.aw-footer-main .row{
		row-gap: 30px;
	}
	
	.aw-footer-main .col-right{
		order: 1;
	}

	.aw-footer-main .col-center{
		order: 2;
	}

	.aw-footer-main .col-left{
		order: 3;
	}

	.footer-info .aw-header-logo img{
		max-width: 270px;
		width: 270px;
	}

	.footer-contact-item{
		padding: 10px 15px;
	}

	.footer-contact-item__title{
		font-size: 18px;
		gap: 10px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.footer-contact-item__title svg{
		width: 18px;
		height: 18px;
	}

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

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

	/* Home */


}

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

}

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

	:root {
		--bic-site-gap: 30px;
		--bic-header-logo-width: 180px;
	}

	.page-banner__content .aw-breadcrumb {
		display: none;
	}

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

	.page-header__image img {
		height: 375px;
	}

	.aw-mbmenu-nav ul > li > a {
		font-size: 16px;
	}

	.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: 20px;
	}

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

	.sec-head.d-flex {
		display: block !important;
	}

	.sec-head .sec-btn {
		margin-top: 16px;
	}

	.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: 24px;
	}

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

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

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

	.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 {
		text-align: center;
	}

	/* home */
	.why-item .card-item__title {
		font-size: 18px;
	}

	.why-item .card-item__inner {
		padding: 10px;
	}

	.why__image-content__title {
		font-size: 18px;
		margin-bottom: 0;
	}

	/*.why__image::before {
		background: rgba(0, 0, 0, 0.3);
	}
*/
	.why-item:not(:last-child) {
		margin-bottom: 10px;
	}
	.why-list{
		gap: 10px;
	}
	.why__image-content {
		padding: 15px;
	}
	#sidebar .widget:last-child {
		margin-top: 30px;
	}
	.why-item .card-item__icon {
		margin-bottom: 20px;
	}

	.why-list .col-center {
		order: -1;
	}

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

	.teams-btns {
		gap: 10px;
	}

	.teams-btns .btn-primary {
		min-width: auto;
		padding: 10px;
		text-transform: unset;
	}

	.box_description_tax {
		max-width: 100% !important;
		text-align: justify;
	}

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


@media (max-width: 576px){
	.tour-item  
	.card-item__title a {
		padding-top: 15px;
	}
}
	/* about */

	

	
	.about-list-item__excerpt {
		font-size: 16px;
	}

	/* single */

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


}

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

.box-teams {
	overflow: hidden;
}


#sidebar .widget_category_post_widget {

	box-shadow: unset; 
	padding: 0;
}
#sidebar  .widget_category_post_widget  .card-item__content {
    padding-bottom: 0;
}
#sidebar .card-item-meta {

	display: none;
}


/*single-tour*/
.single-content-default {
	display: flex;
	flex-wrap: wrap;
}
.single-main {
	width: calc(100% / 12 * 8);
}

.single-tour-info {
	display: grid;
	grid-template-columns: 26.25rem 1fr;
	gap: 2rem;
}
.single-tour-info .thumbnail {
	border-radius: var(--bic-border-radius);
	overflow: hidden;
}
.single-tour-info .tour-details {
	margin-top: 1rem;
}
.single-tour-info .tour-details__head {
	display: flex;
	justify-content: space-between;
	padding-bottom: 1.125rem;
	margin-bottom: 2.25rem;
	border-bottom: 1px solid #D9D9D999;
	line-height: 1;
}
.single-tour-info .tour-details__head .title {
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
}
.single-tour-info .tour-details__lists > li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.single-tour-info .tour-details__lists > li:not(:last-child) {
	border-bottom: 1px solid #D9D9D999;
	margin-bottom: .8rem;
	padding-bottom: .8rem;
}
.single-tour-info .tour-details__lists > li svg {
	flex: 0 0 24px;
	max-width: 24px;
}
.single-tour-nav {
	position: sticky;
	z-index: 10;
	top: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 5rem 0;
	padding: 2rem 0;
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
	backdrop-filter: blur(5px);
}
.single-tour-nav .btn:hover, .single-tour-nav .btn.active {
	color: #fff;
	background: var(--bic-primary-color);
}
.single-tour-nav .btn {
	font-size: 1rem;
	font-weight: 500;
	color: var(--bic-secondary-color);
	line-height: 1;
	padding: 1rem;
	border-radius: 5px;
	background: rgba(217, 217, 217, 0.5);
	backdrop-filter: blur(5px);

}

.single-tour-info .tour-details__lists > li.tour-price--sale span.text .sale-price .font--secondary{
	color: var(--bic-primary-color) ;
}
.single-tour-info .tour-details__lists > li.tour-price span.text {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.single-tour-info .tour-details__lists > li.tour-price--sale span.text .sale-price {
	color: var(--bic-primary-color);
}
.single-tour-info .tour-details__lists > li.tour-price--sale span.text .regular-price  .txt_line-through{
	text-decoration: line-through;
}
.single-tour-nav .btn .text {
	line-height: 1;
}
.btn > * {
	position: relative;
	z-index: 2;
}
.single-tour-nav .btn.active:after{
	left: 0;
	width: 100%;
}
.single-tour-item {
	margin-top: 5rem;
}
.single-tour-item h2.title {
	color: var(--bic-primary-color);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 3rem;
	text-transform: uppercase;
}
.single-tour-item-content {
	position: relative;
}
.single-page .item-border {
	background: #fff;
	padding: 3rem 2.4rem;
	border-radius: 2rem;
	border: 1px solid rgba(34, 34, 34, 0.20);
}
.collapse-item__head {
	display: flex
	;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.collapse-item__head .title {
	display: flex
	;
	align-items: center;
	gap: 2rem;
}
.collapse-item__head .title .count{
	color: var(--bic-primary-color);
	font-size: 36px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.collapse-item__head .title .text {
	color: #0D3422;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	margin: 0;
}
.collapse-item__head.active svg {
	transform: rotate(180deg);
}

.collapse-item__head svg {
	display: flex
	;
	transition: all .3s;
}
.collapse.show {
	display: block;
}

.collapse-item__content {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #D9D9D9;
}
.single-tour-item {
	margin-top: 5rem;
}
.single-tour-item.tour-item--price .single-tour-item-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}
.single-page .item-border {
	background: #fff;
	padding: 1rem 1.5rem;
	border-radius: var(--bic-border-radius);
	border: 1px solid rgba(34, 34, 34, 0.20);
}

.single-tour-item-content {
	position: relative;
}

.tour-item-price__table {
	grid-column: var(--grid-column, 1 / -1);
}
.single-tour-reviews.single-tour-item {
	display: none;
}
.single-sidebar {
	width: calc(100% / 12 * 4);
	padding-left: 4.75rem;
}
.single-widget-area .widget:not(:last-child) {
	margin-bottom: 6rem;
}
.widget-ctf7 {
	padding: 1rem;
	border: 1px solid rgba(255, 108, 0, 0.60);
	background: #fff;
}
.widget {
	position: relative;
	border-radius: var(--bic-border-radius);
}
.widget .bic-box-title {
	margin-bottom: 1.875rem;
}
.bic-box-title {
	position: relative;
	margin-bottom: 5rem;
}
.widget-ctf7 h2.title {
	font-size: 1.625rem;
	letter-spacing: 1.3px;
}
.widget h2.title {
	color: var(--bic-primary-color);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 1.875rem;
}
.collapse-item.item-border:not(:last-child) {
	margin-bottom: 1rem;
}
.bic-box-title p {
	margin: 0;
}
.single-tour-item .banner-item {
	display: flex;
	border-radius: var(--bic-border-radius);
	overflow: hidden;
	padding-top: 47.8%;
}
.single-tour-item-content .banner-item img {
	border-radius: var(--bic-border-radius);
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}
.widget-ctf7 .booking-info {
	display: flex
	;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	
}
.widget-ctf7 .booking-info__content p {
	margin-bottom: 1.4rem;
	display: flex;
	justify-content: center;
}
.widget-ctf7 .booking-info__content * {
	text-align: right;
	line-height: 1;
}
.widget-ctf7 .booking-info__content a {
	color: var(--bic-primary-color);
	font-weight: 500;
}
.widget-ctf7 .booking-info__image {
	display: flex
	;
}
.widget {
	position: relative;
	border-radius: var(--bic-border-radius);
}
.widget-post-item:not(:last-child) {
	margin-bottom: 1.5rem  !important;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #D9D9D980;
}
.widget .post-item {
	display: flex
	;
}
.widget .post-item a {
	color: #222;
}
.widget .post-item__thumbnail {
	flex: 0 0 19.6rem;
	max-width: 19.6rem;
	height: 13.4rem;
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}
.widget .post-item__content {
	padding-left: 1.4rem;
	padding-top: 1rem;
}
.widget .post-item__content h3.title {
	color: #303030;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.48px;
	margin-bottom: 0;
}
.theiaStickySidebar:after
{
	content: "";
	display: table;
	clear: both;
}
.widget-ctf7 .bic-ctf7 .form-group textarea.form-field{
	height: 4rem;
	min-height: 4rem;
	overflow: clip;
}
.widget-ctf7 .bic-ctf7 .form-group p {
	margin-bottom: 1rem;
}
.widget-ctf7 .bic-ctf7 .form-group .form-field {
	border-radius: 1rem;
	padding: 1.4rem 2rem;
	background-color: #F6F6F6 !important;
	border: none;
}
.bic-ctf7 .form-group .form-field {
	width: 100%;
	padding: 1.5rem 2rem;
	border-radius: 0.8rem;
	background-color: #fff !important;
}
.widget-ctf7 .bic-ctf7 .form-submit .form-field--btn {
	display: block;
	background-color: var(--bic-primary-color) !important;
	margin-top: 1.875rem;
	padding: 1.125rem 2rem;
	width: 87%;
	max-width: 87%;
	margin-left: auto;
	margin-right: auto;
}
ul.widget-posts__lists {
	list-style: none;
}

.widget .post-item {
	display: flex;
}.widget .post-item a {
	color: #222;
}
.widget .post-item__thumbnail {
	flex: 0 0 12.25rem;
	max-width: 12.25rem;
	height: 8.375rem;
	position: relative;
	overflow: hidden;
	border-radius: var(--bic-border-radius);
}.widget .post-item__content {
	padding-left: 1.4rem;
	padding-top: 1rem;
}
.widget .post-item__content h3.title {
	color: #303030;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.48px;
	margin-bottom: 0;
}

.swiper-control.anduc .swiper-control-btn {
	position: absolute;
	top: 50%;
	transform: translateY( -50%);
	-webkit-transform: translateY( -50%);
	-moz-transform: translateY( -50%);
	-o-transform: translateY( -50%);
}
.single-tour-item .swiper-control.anduc .swiper-prev {
	left: 1.5rem;
}
.single-tour-item .swiper-control.anduc .swiper-next {
	right: 1.5rem;
}


#sidebar .form-group label > span{
	color: #A72F15;
}
.text16{
	font-weight: 600;
	color: var(--bic-text-color);
}

.post-item__content .title{
	font-size: 18px;
	font-weight: 600;
}

ul.tour-details__lists {
	margin-left: 0;
}
.tour-code {
	font-weight: 700;
}
.bic-sc.related-post  .bic-box-title {
	position: relative;
	margin-bottom: 2rem;
}

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

.card-item__inner  .card-item-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.box_description_tax {
	padding-top: 30px;
	max-width: 80%;
	margin: 0 auto;
}

/*archive-post*/

.box-related-news .card-item-meta__item .meta-category,
.box-related-news .card-item-meta__item .card-item__author {
	display: none !important;
}

.box-related-news .card-item-meta__item {
	font-size: 0; 
}

.box-related-news .card-item-meta__item svg,
.box-related-news .card-item-meta__item span {
	font-size: 14px;
}

@media (min-width: 1400px) and (max-width: 1700px){
	.why-item .card-item__title ,
	.why__image-content__title{
		font-size: 18px;
	}
	.why-item .card-item__inner{
		padding: 35px;
	}
}

/*readmore*/
.box_description_tax {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: relative;
}

.box_description_tax::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	height: 55px;
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0));
	pointer-events: none;
	transition: opacity 0.3s;
}

.box_description_tax.expanded::after {
	opacity: 0;
	visibility: hidden;
}

.box_description_tax.expanded {
	-webkit-line-clamp: unset;
	overflow: visible;
}

.toggle-btn {
	margin-top: 8px;
	display: inline-block;
	cursor: pointer;
	font-weight: 500;
	width: 100%;
	text-align: center;
	transition: all .3s;
}

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


@media (max-width: 576px){
	.single-tour-info .tour-details__head .title {
		font-size: 14px;
	}
	.team-single-item .card-item__thumbnail {
		padding-top: 75%;
		border-radius: 0;
	}
	.team-single-item.team-item .card-item__inner{
		padding: 10px;
	}
	
	.box-why  .why-list .why__image-content__title {
		text-align: center;
	}

	.content-sidebar .blog-item  .card-item__content .card-item__title a{
		-webkit-line-clamp: 3;
	}
	.content-sidebar .blog-item  .card-item__content{
		padding: 0 15px;
	}
	.box-promotions .sec-btn{
		margin-top: 0;
	}
	.box-promotions .card-item__thumbnail {
		width:100%
	}

	.single-tour-info .tour-details__head {
		flex-direction: column;
		margin-bottom: 0;
		gap: 10px;
	}
	.single-tour-info .tour-details__head .title,
	.tour-code{
		white-space: normal;
	}
	.single-tour .content-sidebar {
		margin-top: 30px;
	}
	#sidebar .widget_category_post_widget {
		margin-bottom: 0;
	}
	.tour-item .card-item__inner	.image-ratio {
		padding-top: 50%;
	}
	.tour-item .card-item__content {
		padding: 0;
	}
	.tour-item .card-item__title{
		margin-bottom: 0;
	}

}
.single-sidebar .widget .card-item__title a {
	min-height: unset;
	-webkit-line-clamp: 3;
}

@media (min-width: 577px) and (max-width: 1024px){
	.card-item__title a{
		min-height: 40px;
	}

	.box-about .sec-btn {
		justify-content: center;
	}

}

@media (max-width: 992px){
	.box-about .column-reverse {
		flex-direction: column-reverse;
	}
	.box-about .sec-btn {
		justify-content: center;
	}
}

.single-tour-info .tour-details__head .title {
	width: 180px;
	white-space: nowrap;
}
.tour-code {
	white-space:nowrap;
}

@media (min-width:1536px) and (max-width: 1700px){
	.single-tour-info {
		grid-template-columns: 20rem 1fr;
	}
	.single-tour-info .thumbnail img {
		width: 100% !important;
	}


}


.box-facilities .card-item__inner{
	padding: 0;
}


#sidebar .card-item__inner  .card-item__content .card-item__title a {
	-webkit-line-clamp: 3;
}

@media (max-width: 576px){

	.archive .archive-right .blog-list .blog-item .card-item__inner{
		padding: 15px;
	}

	.box-promotions .card-item__content {
    padding-left: 0;
}
}



.why__image-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,    
        rgba(0, 0, 0, 0.6) 30%,  
        rgba(0, 0, 0, 0) 100%     
    );
    z-index: -1;
}



.related-post .image-holder img{
	border-radius: var(--bic-border-radius);
}

@media (min-width: 1200px){
	.bic-sc.related-post {
    padding: 0;
}
}





.blog-item.video .card-item__thumbnail {
  position: relative;
  overflow: hidden;
}

.blog-item.video .card-item__thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
  border-radius:var(--bic-border-radius);
}


.blog-item.video .card-item__thumbnail::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--bic-primary-color);     
  border-radius: 50%;
  z-index: 2;

  /* tạo tam giác trắng bằng mask */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='40,30 40,70 70,50' fill='white'/></svg>") center/50% no-repeat;
  -webkit-mask-composite: destination-out;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='40,30 40,70 70,50' fill='white'/></svg>") center/50% no-repeat;
  mask-composite: subtract;
}


.blog-item.video .card-item__thumbnail:hover ::after{
	cursor: pointer;
}