@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 200;
  src: url('/assets/fonts/montserrat/ExtraLight.woff2') format('woff2');
  font-display: swap;
}

/* Light */
@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/montserrat/Light.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: normal;
  src: url('/assets/fonts/montserrat/Regular.woff2') format('woff2');
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/montserrat/Medium.woff2') format('woff2');
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/montserrat/SemiBold.woff2') format('woff2');
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 800;
  src: url('/assets/fonts/montserrat/Bold.woff2') format('woff2');
  font-display: swap;
}


/* ExtraBold */
@font-face {
  font-family: 'MontserratArm';
  font-style: normal;
  font-weight: 900;
  src: url('/assets/fonts/montserrat/ExtraBold.woff2') format('woff2');
  font-display: swap;
}



@font-face {
  font-family: 'turn';
  src: url('/assets/fonts/turn.eot');
  src: url('/assets/fonts/turn.eot?#iefix') format('embedded-opentype'),
    url('/assets/fonts/turn.woff') format('woff'),
    url('/assets/fonts/turn.ttf') format('truetype'),
    url('/assets/fonts/turn.svg#turn') format('svg');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(226.7deg 90.24% 59.8%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(201.18deg 7.17% 53.53%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*RESET*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

main {
  display: block;
  clear: both;
}

thead {
  font-weight: 600;
}

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

body {
  line-height: 1;
}

header ol,
header ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

input,
select,
button,
textarea {
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-size: 14px;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

a {
  color: #05264E;
}

a:hover {
  color: #5166f7;
}

a *:hover {
  color: #5166f7;
}

li.hr span {
  width: 100%;
  height: 1px;
  background-color: #e4e4e4;
  margin: 20px 0;
  display: block;
}

p {
  color: #4F5E64;
}

/*--- Common Classes---------------------*/
::-moz-selection {
  background: #05264E;
  /* WebKit/Blink Browsers */
  color: #fff;
}

::selection {
  background: #05264E;
  /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: #05264E;
  /* Gecko Browsers */
  color: #fff;
}

::-moz-placeholder {
  color: #A0ABB8;
  opacity: 1;
}

::placeholder {
  color: #A0ABB8;
  opacity: 1;
}

:-ms-input-placeholder,
::-webkit-input-placeholder {
  color: #A0ABB8;
  opacity: 1;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none;
}

/* turn icons start  */
[class*='turn-']:before {
  display: inline-block;
  font-family: 'turn';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.turn-verified:before {
  content: '\0041';
}

/* turn icons end */

.hover-up {
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.hover-up:hover {
  transform: translateY(-3px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.form-control {
  border: 1px solid #E0E6F7;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 11px 15px 13px 15px;
  width: 100%;
  color: #05264e;
}

.form-control::-moz-placeholder {
  color: #A0ABB8;
}

.form-control::placeholder {
  color: #A0ABB8;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 18px;
  color: #A0ABB8;
}

.form-icons {
  padding-left: 41px;
}

.text-white {
  color: #ffffff;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

*:hover {
  transition-duration: 0.2s;
}

.section-box {
  display: inline-block;
  width: 100%;
  overflow: visible;
}

.text-shadow {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.img-responsive {
  max-width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4F5E64;
  line-height: 26px;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-size: 14px;
}

.select2-search.select2-search--dropdown {
  padding: 0;
  margin-bottom: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: thin solid #E0E6F6;
  border-radius: 4px;
  height: 40px;
  padding-left: 15px;
}

.select2-dropdown {
  border-color: #ffffff;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
  border: thin solid #ececec;
  padding: 15px;
  margin-top: 10px;
  border-radius: 4px;
  min-width: 320px;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.2);
}

.select-style .select2-selection--single .select2-selection__rendered {
  color: #474c51;
}

.select-style .select2 {
  border: 1px solid #E0E6F7;
  border-radius: 4px;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  width: 100% !important;
}

.select-style .select2 .select2-selection__arrow {
  background: url(../imgs/template/icons/arrow-down.svg) no-repeat right 10px center;
  top: 11px;
  width: 26px;
  opacity: 0.5;
}

.select-style .select2 .select2-selection__arrow b {
  display: none !important;
}

.select-style-icon .select2 {
  padding-left: 33px;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu.show {
  border: thin solid #B4C0E0;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  background-color: #ffffff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.dropdown .dropdown-menu.show .dropdown-item {
  padding: 10px 20px;
  color: #4F5E64;
  font-size: 14px;
}

.dropdown .dropdown-menu.show .dropdown-item.active {
  text-decoration: none;
  background-color: #EFF2FB;
}

.dropdown .dropdown-menu.show .dropdown-item:active {
  text-decoration: none;
  background-color: #EFF2FB;
}


h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #05264E;
}

h2,
.h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #05264E;
}

h3,
.h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  color: #05264E;
}

h4,
.h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #05264E;
}

h5,
.h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #05264E;
}

h6,
.h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #05264E;
}


.font-lg,
.font-md,
.font-sm,
.font-xs,
.font-xxs {
  font-style: normal;
  font-weight: 400;
}

.font-lg {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.font-md {
  font-size: 16px !important;
  line-height: 24px !important;
}

.font-sm {
  font-weight: 500;
  font-size: 14px !important;
  line-height: 22px !important;
}

.font-xs {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 18px !important;
}

.font-xxs {
  font-size: 10px !important;
  line-height: 16px;
}

.font-bold {
  font-weight: bold;
}

.font-regular {
  font-weight: 400;
}

.color-text-paragraph {
  color: #4F5E64;
}

.color-text-paragraph-2 {
  color: #66789C;
}

.color-text-mutted {
  color: #A0ABB8;
}

.color-white {
  color: #ffffff !important;
}

.color-orange {
  color: #F58A3C !important;
}

.text-14 {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}

.text-32 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
}

.text-52 {
  font-size: 52px;
  line-height: 66px;
  font-weight: 800;
  color: #05264E;
  overflow: hidden;
  text-wrap: wrap;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
}

.color-brand-1 {
  color: #05264E !important;
}

.color-brand-2 {
  color: #5166f7;
}

.f-18 {
  font-size: 18px;
}

iframe {
  width: 100%;
}


.bg-9 {
  background-color: #EFF7FF !important;
}


a,
button,
img,
input,
span,
h4 {
  transition: all 0.3s ease 0s;
}

body {
  color: #05264E;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.display-1,
.display-2,
.heading-lg,
.heading-sm-1 {
  color: #05264E;
}

.btn {
  border-radius: 8px;
  padding: 13px 25px;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s;
}

.btn.btn-default {
  color: #ffffff;
  background-color: #5166f7;
  line-height: 26px;
  padding: 10px 25px;
}

.btn.btn-default:hover {
  background-color: #05264E;
  transform: translateY(-2px);
  transition: 0.2s;
}

.btn-grey {
  padding: 17px 20px;
  gap: 10px;
  background: #E0E6F7;
  border-radius: 8px;
  color: #5166f7;
  font-size: 14px;
  line-height: 14px;
}

.btn-grey-small {
  background-color: #EFF3FC;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 5px;
  color: #4F5E64 !important;
}

.btn-grey-small:hover {
  color: #5166f7 !important;
}

.btn-grey-big {
  padding: 17px 21px;
  gap: 10px;
  background: #E0E6F7;
  border-radius: 4px;
  color: #05264E;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.btn-grey-big:hover {
  color: #5166f7;
}

.btn-apply {
  background-color: #5166f7;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
}

.btn-apply:hover {
  background-color: #05264E;
  color: #ffffff;
}

.swal2-popup.swal2-toast .swal2-title {
  line-height: 1.1;

}

.btn-apply-icon {
  background-image: url(../imgs/template/icons/apply.svg);
  background-position: 15px 11px;
  background-repeat: no-repeat;
  padding-left: 40px;
}

.btn-apply-big {
  background-color: #5166f7;
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 4px;
}

.btn-apply-big.btn-apply-icon {
  padding-left: 50px;
  background-position: 21px 17px;
}

.btn-apply-big:hover {
  color: #fff;
  background-color: #05264E;
}


.btn-preview-icon {
  background-image: url(../imgs/page/candidates/preview.svg);
  background-position: 35px 14px;
  background-repeat: no-repeat;
  padding: 14px 30px 14px 55px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  min-width: 180px;
}

.btn-tag {
  padding: 3px 10px;
  background: #E0E6F7;
  border-radius: 5px;
  color: #5166f7;
  min-width: 42px;
  font-size: 12px;
  line-height: 18px;
}

.btn-brand-1 {
  padding: 18px 25px;
  background: #05264E;
  color: #ffffff;
  border-radius: 4px;
}

.btn-brand-1:hover {
  background-color: #5166f7;
  color: #ffffff;
}


.btn-send-message {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  padding: 15px 28px 15px 60px;
  background: #5166f7 url(../imgs/page/company/icon-email.svg) no-repeat 25px 15px;
  border-radius: 4px;
}

.btn-send-message:hover {
  background-color: #05264E;
  color: #ffffff;
}

.btn-border {
  border: 1px solid #B4C0E0;
  padding: 10px 23px 10px 23px;
  border-radius: 10px;
  background: #ffffff;
  color: #4F5E64;
  font-size: 16px;
  line-height: 26px;
  transition-duration: 0.2s;
  font-weight: bold;
}

.btn-border:hover {
  color: #ffffff;
  background-color: #05264E;
  transition-duration: 0.2s;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 20px;
  vertical-align: middle;
}

.btn-sm img {
  float: left;
  margin: 0px 10px 0px 0px;
}

.btn-xm-cus {
  padding: 8px 16px;
}


.btn-link {
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #05264E;
  text-decoration: underline;
}

.btn-link:hover {
  color: #5166f7;
}

.btn-arrow-right {
  background: url(../imgs/page/homepage2/arrow-right.svg) no-repeat right 15px top 3px;
  color: #5166f7;
  padding: 0px 40px 0px 0px;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
}

/*button switch*/
.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 30px;
  vertical-align: middle;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(186, 186, 186, 0.3);
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 5px;
  bottom: 5px;
  background-color: #9777fa;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: rgba(81, 146, 255, 0.3);
}

input:focus+.slider {
  box-shadow: 0 0 1px #05264E;
}

input:checked+.slider:before {
  transform: translateX(34px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*End button Switch On Off*/
span.btn {
  cursor: unset;
}

.social-login {
  min-height: 53px;
  border-radius: 4px;
  border: 1px solid #e0e6f6;
  width: 100%;
  line-height: 16px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.social-login img {
  margin-right: 4px;
}

.social-login:hover {
  color: #5166f7;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.cb-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 1px solid #5166F7;
  border-radius: 7px;
}

.cb-container input:checked~.checkmark {
  border: 2px solid #5166f7;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cb-container input:checked~.checkmark:after {
  display: block;
}

.cb-container .checkmark:after {
  left: 0px;
  top: -1px;
  width: 21px;
  height: 22px;
  border-radius: 5px;
  background: #5166f7 url(../imgs/template/icons/tick.svg) no-repeat center;
}

.custom-checkbox-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
  width: 100%;
}

.custom-checkbox-label input[type="checkbox"] {
  display: none;
}

.custom-checkmark {
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox-label input[type="checkbox"]:checked+.custom-checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #5166f7;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-label input[type="checkbox"]:checked+.custom-checkmark {
  background-color: #e6ecff;
  border-color: #5166f7;
}

.category-label-text {
  flex-grow: 1;
  margin-right: 10px;
}


/*COMPONENTS -> FORM*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=date],
input[type=time],
input[type=tel] {
  border: 1px solid #E0E6F7;
  border-radius: 4px;
  height: 50px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 14px;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=tel]:focus {
  border: 1px solid #EFF2FB;
}

select {
  width: 100%;
  background: transparent;
  border: 0px solid #B4C0E0;
  box-shadow: none;
  font-size: 16px;
  color: #4F5E64;
}

option {
  background: #fff;
  border: 0px solid #626262;
  padding-left: 10px;
  font-size: 16px;
}

textarea {
  border: 1px solid #E0E6F6;
  border-radius: 10px;
  height: 50px;
  box-shadow: none;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  width: 100%;
  min-height: 250px;
}

textarea:focus {
  background: transparent;
  border: 1px solid #B4C0E0;
}

/*contact form*/

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  background: #fff;
  border: 1px solid #E0E6F6;
  height: 53px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.form-group input:focus {
  border-color: #B4C0E0;
}

.form-group input.form-icons {
  padding-left: 42px;
}

label {
  margin-bottom: 5px;
}

.mt-6 {
  margin-top: 6px !important;
}

.modal-lg {
  max-width: 600px;
}

.modal-xl {
  max-width: 1140px;
}

.modal-content .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.box-swiper {
  position: relative;
}

.box-swiper .swiper-container {
  position: relative;
}

.box-swiper .swiper-container .item-logo {
  border: 1px solid rgba(6, 18, 36, 0.1);
  padding: 22px 18px;
  display: flex;
  width: 100%;
  text-align: left;
  border-radius: 12px;
  margin-bottom: 15px;
  background-color: #ffffff;
  height: 120px;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.box-swiper .swiper-container .item-logo img {
  max-width: 100%;
}

.box-swiper .swiper-container .item-logo:hover {
  border: 1px solid #B4C0E0;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.box-swiper .swiper-container .item-logo .image-left {
  min-width: 50px;
  padding-right: 10px;
}

.box-swiper .swiper-container .item-logo .text-info-right h4 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 3px;
  font-weight: 500;
}

.box-swiper .swiper-container .item-logo .text-info-bottom {
  position: relative;
  width: 100%;
}

.box-swiper .swiper-button-next:after,
.box-swiper .swiper-button-prev:after {
  content: "";
}

.box-swiper .swiper-button-next {
  background: url(../imgs/slider/swiper/next.svg) no-repeat 0px 0px;
}

.box-swiper .swiper-button-next:hover {
  background: url(../imgs/slider/swiper/next-active.svg) no-repeat 0px 0px;
}

.box-swiper .swiper-button-prev {
  background: url(../imgs/slider/swiper/prev.svg) no-repeat 0px 0px;
}

.box-swiper .swiper-button-prev:hover {
  background: url(../imgs/slider/swiper/prev-active.svg) no-repeat 0px 0px;
}

.box-swiper .swiper-button-next,
.box-swiper .swiper-button-prev {
  width: 40px;
}

.box-swiper .swiper-button-next {
  left: auto;
  right: -65px;
}

.box-swiper .swiper-button-prev {
  left: -65px;
}

.box-swiper .swiper-button-next.swiper-button-disabled,
.box-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  transform: translateY(-28%);
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  color: #000;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-pagination {
  text-align: center;
  width: 100%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  display: none;
}

.swiper-pagination-bullet {
  margin: 10px;
}

/*Style of the location of the div that wraps the custom pager*/
.swiper-pagination-custom {
  bottom: -5px;
}

.swiper-pagination-customs {
  background: #B4C0E0;
  border-radius: 50%;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  margin-left: 4px;
  margin-right: 4px;
}

/*Customize the style representation when pager is activated*/
.swiper-pagination-customs-active,
.swiper-pagination-customs:hover {
  background: #5166f7;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-bottom: -1px;
  margin-left: 3px;
  margin-right: 3px;
}

.style-nav-top .swiper-button-next {
  top: -30px;
  right: -5px;
  left: auto;
}

.style-nav-top .swiper-button-prev {
  top: -30px;
  right: 45px;
  left: auto;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #5166f7;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet-active:hover {
  background-color: #5166f7;
  opacity: 1;
}

.btn-primary-shadow {
  text-align: center;
  cursor: pointer;
  color: #5166f7;
  background: rgba(81, 102, 247, 0.1);
  border-radius: 12px;
  padding: 8px 24px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  font-weight: bold;
}

.btn-primary-shadow:hover {
  background: rgba(81, 102, 247, 0.2);
  color: #5166f7;
}

.reviews-count-total {
  vertical-align: top;
  margin-left: 8px;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}

.ui-widget.ui-widget-content {
  border: 0px solid #EBEBEB;
}

.card-time {
  font-size: 12px;
  color: #A0ABB8;
  display: inline-block;
  padding: 0px 15px 0px 15px;
  background: url(../imgs/template/icons/time.svg) no-repeat 0px 5px;
}

.card-briefcase {
  font-size: 12px;
  color: #A0ABB8;
  display: inline-block;
  padding: 0px 15px 0px 15px;
  background: url(../imgs/template/icons/briefcase.svg) no-repeat 0px 6px;
}

.card-location {
  font-size: 12px;
  color: #000;
  display: inline-block;
  padding: 0px 0px 0px 20px;
  background: url(../imgs/template/icons/location.svg) no-repeat 0px 6px;
  line-height: 24px;
  text-decoration: underline;
}

.card-grid-2 {
  border-radius: 8px;
  border: 1px solid #E0E6F7;
  overflow: hidden;
  /* margin-bottom: 24px; */
  position: relative;
  background: #F8FAFF;
  height: 100%
}

.card-grid-2 i.turn-verified {
  font-size: 20px;
  color: #A0ABB8;
  margin-left: 5px;
}

.card-grid-2 i.fi-rr-marker {
  margin-left: 0;
}

.card-grid-2 .btn-apply-now {
  color: #5166f7;
}

.card-grid-2:hover {
  border-color: #B4C0E0;
  background-color: #ffffff;
}

.card-grid-2:hover .btn-apply-now {
  color: #ffffff;
  background-color: #5166f7;
}

.card-grid-2 a {
  text-decoration: none;
  color: #05264E;
}

.card-grid-2 a:hover {
  color: #5166f7;
}

.card-grid-2 .card-grid-2-image-rd {
  padding: 0px 15px 0px 0px;
  display: inline-block;
  width: 30%;
  min-width: 115px;
  max-width: 115px;
}

.card-grid-2 .card-grid-2-image-rd figure {
  position: relative;
  display: inline-block;
}

.card-grid-2 .card-grid-2-image-rd figure img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

.card-grid-2 .card-grid-2-image-rd.online figure::before {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: 13px;
  right: 9px;
  background: #00c070;
}

.card-grid-2.grid-bd-16 {
  background-color: #ffffff;
  border-radius: 16px;
}

.card-grid-2.grid-bd-16 .lbl-hot {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  height: 24px;
  background: #5166f7;
  border-radius: 5px;
  color: #ffffff;
  min-width: 42px;
  font-size: 12px;
  line-height: 18px;
}

.card-grid-2.grid-bd-16 .card-block-info .card-text-price {
  font-size: 16px;
  line-height: 26px;
}

.card-grid-2 .card-grid-2-image {
  position: relative;
  padding: 10px;
}

.card-grid-2 .card-grid-2-image .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 12;
}

.card-grid-2 .card-grid-2-image figure {
  display: block;
}

.card-grid-2 .card-grid-2-image figure img {
  width: 100%;
  border-radius: 12px;
}

.card-grid-2 .card-block-info {
  display: inline-block;
  width: 100%;
  padding: 0 15px 15px 15px;
}

.card-grid-2 .card-block-info .card-2-img-text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 4px 0px 4px 40px;
  font-size: 14px;
  max-width: 90%;
  min-height: 44px;
}

.card-grid-2 .card-block-info .card-2-img-text .card-grid-2-img-small {
  background: #e4e4e4;
  border-radius: 50%;
  padding: 5px;
  height: 32px;
  width: 32px;
  float: left;
  margin-right: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  line-height: 30px;
}

.card-grid-2 .card-block-info .card-2-img-text span {
  display: inline-block;
  color: #05264E;
  font-size: 14px;
}

.card-grid-2 .card-block-info .card-2-img-text img {
  max-width: 100%;
}

.card-grid-2 .card-block-info .card-text-price {
  color: #5166f7;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.card-grid-2 .card-block-info .card-text-price span {
  font-size: 14px;
  color: #4F5E64;
  font-weight: 400;
}

.card-grid-2 .card-block-info .card-2-bottom {
  position: relative;
}

.card-grid-2 .card-block-info .card-2-bottom .btn-grey-small {
  margin-right: 5px;
}

.card-grid-2 .card-block-info .card-2-bottom .btn-tags-sm {
  margin-bottom: 5px;
}

.card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover {
  padding: 15px 33px;
  border: thin solid #B4C0E0;
  font-size: 14px;
}

.card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover:hover {
  color: #ffffff;
}

.card-grid-2 .card-block-info .card-grid-2-img-medium {
  padding-left: 55px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  color: #151515;
  line-height: 17px;
}

.card-grid-2 .card-block-info .card-grid-2-img-medium .card-grid-2-img-small {
  background-color: #5aa6ff;
  height: 44px;
  width: 44px;
  border-radius: 8px;
}

.card-grid-2 .card-block-info .card-profile {
  text-align: center;
}

.card-grid-2 .card-block-info .card-profile strong {
  font-size: 18px;
  color: #05264E;
  line-height: 18px;
  font-weight: bold;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  display: block;
  padding-bottom: 5px;
}

.card-grid-2 .card-block-info .card-profile strong:hover {
  color: #05264E;
}

.card-grid-2 .card-block-info .card-profile>span {
  color: #4F5E64;
}

.card-grid-2 .card-block-info .card-profile .rate-reviews-small span {
  display: inline-block;
  vertical-align: middle;
}

.card-grid-2 .card-block-info .card-profile .rate-reviews-small span img {
  height: 13px;
  display: flex;
}

.card-grid-2 .employers-info {
  border-top: 1px solid #E0E6F7;
  padding-top: 20px;
}

.card-grid-2 .flash {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 25px;
  width: 25px;
  background: url(../imgs/template/icons/flash.svg) no-repeat 0px 0px;
}

.card-grid-2 .flash-distance {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  background: #5166f7;
}

.card-grid-2 .flash-distance-2 {
  position: absolute;
  right: 0;
  color: #fff;
  text-align: center;
  background: #5166f7;
  padding: 0 10px;
  bottom: 0;
  border-top-left-radius: 15px;
}

.card-grid-2 .flash-distance-rel {

  color: #fff;
  text-align: center;
  background: #5166f7;
}

.card-grid-2 .card-grid-2-image-left {
  padding: 15px;
  display: flex;
  position: relative;
}

.card-grid-2 .card-grid-2-image-left .image-box {
  min-width: 52px;
  padding-right: 15px;
  position: relative;
}

/* ============================================
   SERVICE DETAIL GALLERY - MODERN & USER FRIENDLY
   ============================================ */

/* Gallery Wrapper */
.sd-gallery-wrapper {
  position: relative;
  width: 100%;
}

/* Main Slider */
.sd-main-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f9fa;
}

.sd-main-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.sd-main-slider img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

/* Image Link */
.sd-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  cursor: zoom-in;
}

.sd-image-link:hover img {
  transform: scale(1.05);
}

/* Zoom Overlay */
.sd-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  z-index: 1;
}

.sd-zoom-overlay i {
  font-size: 36px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.sd-image-link:hover .sd-zoom-overlay {
  opacity: 1;
}

.sd-image-link:hover .sd-zoom-overlay i {
  transform: scale(1);
}

/* Navigation Arrows */
.sd-nav-next,
.sd-nav-prev {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.sd-nav-next::after,
.sd-nav-prev::after {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
}

.sd-nav-next:hover,
.sd-nav-prev:hover {
  background: #5166f7;
  box-shadow: 0 6px 20px rgba(81, 102, 247, 0.4);
}

.sd-nav-next:hover::after,
.sd-nav-prev:hover::after {
  color: white;
}

.sd-nav-next.swiper-button-disabled,
.sd-nav-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Image Counter */
.sd-counter {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sd-current {
  font-size: 18px;
  font-weight: 700;
  color: #5166f7;
}

.sd-divider {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
}

.sd-total {
  color: rgba(255, 255, 255, 0.9);
}

/* Thumbnail Slider */
.sd-thumb-slider {
  margin-top: 12px;
  overflow: visible;
  padding: 4px 0;
}

.sd-thumb-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.sd-thumb-slider .swiper-slide {
  width: 100px !important;
  height: auto;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.sd-thumb-slider .swiper-slide:hover {
  opacity: 0.8;
}

.sd-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.sd-thumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #f8f9fa;
  box-sizing: border-box;
}

.sd-thumb-slider .swiper-slide-thumb-active .sd-thumb-wrap {
  border-color: #5166f7;
  box-shadow: 0 4px 12px rgba(81, 102, 247, 0.3);
}

.sd-thumb-wrap img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sd-thumb-slider .swiper-slide:hover .sd-thumb-wrap img {
  transform: scale(1.05);
}

.card-grid-2 .card-grid-2-image-left .right-info .name-job {
  font-size: 18px;
  line-height: 26px;
  color: #05264E;
  font-weight: bold;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


.card-grid-2 .card-grid-2-image-left .right-info .name-job:hover {
  color: #5166f7;
}

.card-grid-2 .card-grid-2-image-left .right-info .location-small {
  background: url(../imgs/template/icons/location.svg) no-repeat 0px 5px;
  display: block;
  padding: 0px 0px 0px 20px;
  font-size: 12px;
  color: #A0ABB8;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.card-image-top {
  border: 1px solid #E0E6F7;
  padding: 12px 12px 20px 12px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.card-image-top .image {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  height: 261px;
  width: 100%;
  border-radius: 10px;
  background-color: #B4C0E0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0px;
}

.card-image-top .image .lbl-hot {
  position: absolute;
  top: 20px;
  left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  height: 24px;
  background: #E0E6F7;
  border-radius: 5px;
  color: #5166f7;
  min-width: 42px;
}

.card-image-top .image img {
  border-radius: 0px;
  width: 100%;
}

.card-image-top .informations {
  position: relative;
  padding: 0 5px;
}

.card-image-top .informations h5 {
  margin-bottom: 5px;
}

.card-image-top:hover {
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.card-grid-3 {
  border-radius: 8px;
  border: 1px solid #E0E6F7;
  overflow: hidden;
  position: relative;
  background: #F8FAFF;
  height: 100%
}

.card-grid-3 .right-info {
  padding: 10px 18px 0;
}

.card-grid-3:hover {
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  border-color: #B4C0E0;
}

.card-grid-3 a {
  text-decoration: none;
}

.card-grid-3 .card-grid-3-image {
  position: relative;
  padding: 10px;
}

.card-grid-3 .card-grid-3-image figure {
  display: block;
}

.card-grid-3 .card-grid-3-image figure img {
  width: 100%;
  border-radius: 13px;
}

.card-grid-3 h5 a {
  color: #05264E;
}

.card-grid-3 h5 a:hover {
  color: #5166f7;
}

.card-grid-3 .card-block-info {
  display: inline-block;
  width: 100%;
  padding: 0px 18px 2px 18px;
}

.card-grid-3 .card-block-info h5 {
  font-size: 16px;
  line-height: 22px;
}

.card-grid-3 .actions,
.card-grid-2 .actions {
  border-top: 1px solid #eaeaea;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 900;
}

.card-grid-3 .name-job {
  font-weight: 600;
}

.card-grid-3 .card-block-info .card-block-rating span {
  display: inline-block;
  margin: 0px 2px;
}

.card-grid-3 .card-block-info .card-2-img-text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 4px 0px 4px 40px;
  font-size: 14px;
}

.card-grid-3 .card-block-info .card-2-img-text .card-grid-2-img-small {
  background: #e4e4e4;
  border-radius: 50%;
  padding: 5px;
  height: 32px;
  width: 32px;
  float: left;
  margin-right: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  line-height: 30px;
}

.card-grid-3 .card-block-info .card-2-img-text span {
  display: inline-block;
  color: #05264E;
  font-size: 14px;
}

.card-grid-3 .card-block-info .card-2-img-text img {
  max-width: 100%;
}

.card-grid-3 .card-block-info .card-time {
  font-size: 14px;
  display: inline-block;
  padding: 0px 15px 0px 25px;
  background: url(../imgs/template/icons/time.svg) no-repeat 0px 3px;
}

.card-grid-3 .card-block-info .card-text-price {
  color: #5166f7;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.card-grid-3 .card-block-info .card-text-price span {
  font-size: 14px;
  color: #4F5E64;
  font-weight: 400;
}

.card-grid-3 .card-block-info .card-2-bottom {
  position: relative;
}

.card-grid-3 .card-block-info .card-2-bottom .img-rounded {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: 6px 10px 0px 0px;
  vertical-align: middle;
  display: inline-block;
}

.card-grid-3 .card-block-info .card-2-bottom .info-right-img {
  line-height: 22px;
}

.card-grid-3 .card-block-info .card-2-bottom .info-right-img .font-sm {
  line-height: 18px !important;
}

.card-grid-3 .card-block-info .card-profile strong {
  font-size: 18px;
  color: #05264E;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-weight: bold;
  display: block;
}

.card-grid-3 .card-block-info .card-profile span {
  font-size: 16px;
  color: #4F5E64;
}

.new-card-block.card-block-info h5 a {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #023a51;
}

.card-grid-3-image-new-style img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.right-side-items .card-grid-3-image-new-style img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  max-height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.article-link {
  position: relative;
  height: 100%;
  display: block;
  min-height: 400px;
}

.article-link img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 380px;

  object-fit: cover;
  border-radius: 6px
}

.article-titles {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  bottom: 20px;
  padding: 0 30px;
}

.article-titles a {
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  background-image: -ms-linear-gradient(transparent 95%, currentColor 1px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: 0 -1px;
  transition: all .6s cubic-bezier(.45, 0, .14, 1.03);
}

.article-titles a h2 {
  font-size: 26px;
  line-height: 30px;
  background: rgba(200, 207, 255, 0.9);
  border-radius: 6px;
  color: #000;
  padding: 10px;
}

.card-grid-3 .card-grid-3-image-circle {
  padding-top: 35px;
}

.card-grid-3 .card-grid-3-image-circle figure img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* CIN */
.box-radius-8 {
  border-radius: 8px;
  background-color: #FFF6F1;
  padding: 30px;
  display: flex;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  border: 1px solid #E0E6F7;
}

.box-radius-8 .image {
  display: inline-block;
  min-width: 176px;
  padding-right: 25px;
}

.box-radius-8 .text-info {
  display: inline-block;
  width: 100%;
}

/* CIN END */


.mt--30 {
  margin-top: -30px;
}

.content-job-inner {
  padding: 40px;
}

/* CIN */
.box-image-job {
  position: relative;
  text-align: center;
}

.box-image-job figure {
  display: block;
}

.box-image-job figure img {
  max-width: 80%;
}

.box-image-job .job-top-creator {
  max-width: 290px;
  background-color: #ffffff;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  border-radius: 20px;
  padding: 5px;
  position: absolute;
  bottom: -100px;
  left: -100px;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.box-image-job .job-top-creator-head {
  background-color: #EFF3FC;
  border-radius: 20px;
  padding: 18px 45px 21px 45px;
}

.box-image-job .job-top-creator ul {
  display: block;
  padding: 24px 20px 0px 20px;
  margin: 0px;
  list-style: none;
}

.box-image-job .job-top-creator ul li {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
}

.box-image-job .job-top-creator ul li figure {
  float: left;
  display: block;
}

.box-image-job .job-top-creator ul li figure img {
  width: 60px;
  height: 50px;
  border-radius: 50%;
}

.box-image-job .job-top-creator ul li .job-info-creator {
  display: block;
  padding-left: 60px;
}

.box-image-job .job-top-creator ul li .job-info-creator strong {
  display: block;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
}

.box-image-job .job-top-creator ul li .job-info-creator span {
  color: #4F5E64;
  font-size: 14px;
}

/* CIN END */

.text-mutted {
  font-size: 16px;
  color: #4F5E64;
  line-height: 16px;
}

.company-profile-menu-icon {
  width: 26px;
  vertical-align: middle;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
}

span.company-menu-item-name {
  width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

/*page loading*/
.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  transition: 0.6s;
  margin: 0 auto;
}

.preloader img {
  max-width: 250px;
}

.breacrumb-cover {
  background-color: #F8FAFF;
  background-image: url(../imgs/page/blog/bg-breadcrumb.png);
  background-position: top center;
  padding: 50px 0;
}

.breadcrumbs {
  background-color: #ffffff;
  border-radius: 6px;
  display: inline-block;
  padding: 7px 15px;
}

.breadcrumbs li {
  color: #66789C;
  font-size: 14px;
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.breadcrumbs li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: url(../imgs/template/icons/arrow-breadcrumb.svg) no-repeat center;
}

.breadcrumbs li a {
  font-size: 14px;
  color: #66789C;
  text-decoration: none;
  line-height: 14px;
  display: block;
}

.breadcrumbs li a:hover {
  color: #05264E;
}

.breadcrumbs li:last-child::before {
  color: #66789C;
}

.breadcrumbs li:first-child::before {
  display: none;
}

.breadcrumbs li:first-child {
  padding-left: 0px;
}

.breadcrumbs .home-icon {
  background: url(../imgs/page/blog/home.svg) no-repeat;
  padding: 0px 0px 0px 20px;
}

.banner-hero-2 {
  padding: 30px 0 60px;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.banner-hero .banner-inner .banner-imgs {
  padding: 65px 0px 0px 0px;
  position: relative;
  height: 100%;
  min-height: 540px;
}

.banner-hero .banner-inner .banner-imgs .block-1 {
  position: absolute;
  top: 10%;
  left: -150px;
}

.banner-hero .banner-inner .banner-imgs .block-2 {
  position: absolute;
  bottom: 0%;
  right: 120px;
}

.banner-hero .banner-inner .banner-imgs .block-3 {
  position: absolute;
  top: 21%;
  right: 220px;
}

.banner-hero .banner-inner .banner-imgs .block-4 {
  position: absolute;
  bottom: 8%;
  left: -80px;
}

.banner-hero .block-banner {
  position: relative;
  z-index: 12;
  padding: 50px 180px 80px 192px;
}

.banner-hero .block-banner .form-find {
  background: transparent;
  display: inline-block;
  width: 100%;
  padding: 10px 10px;
}

.banner-hero .block-banner .form-find form {
  display: flex;
  width: 100%;
}

.banner-hero .block-banner .form-find .btn-find {
  min-width: 122px;
  padding-left: 34px;
  padding-right: 15px;
  background-image: url(../imgs/page/homepage1/search-icon.svg);
  background-repeat: no-repeat;
  background-position: left 19px top 18px;
}

.banner-hero .block-banner .form-find .select2 {
  border: 0px solid rgba(26, 15, 9, 0.1);
  border-radius: 0px;
  padding: 10px 20px 10px 0;
  display: inline-block;
  width: 100% !important;
  margin-right: 10px;
  position: relative;
  max-width: 280px;
}

.banner-hero .block-banner .form-find .select2 .select2-selection__arrow {
  background: url(../imgs/template/icons/arrow-down.svg) no-repeat right 10px center;
  top: 11px;
  width: 26px;
}

.banner-hero .block-banner .form-find .select2 .select2-selection__arrow b {
  display: none !important;
  background-color: #9777fa;
}

.banner-hero .block-banner .form-find .box-industry {
  width: 100%;
  max-width: 280px;
}

.banner-hero .block-banner .form-find .input-industry {
  background: url(../imgs/template/icons/icon-job.svg) no-repeat left 18px center;
}

.banner-hero .block-banner .list-tags-banner {
  position: relative;
}

.banner-hero .block-banner .list-tags-banner a {
  color: #4F5E64;
  font-size: 14px;
  margin-left: 2px;
  text-decoration: underline;
}

.banner-hero .block-banner .list-tags-banner strong {
  font-weight: 700;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-size: 14px;
  color: #4F5E64;
}

.banner-hero .heading-banner {
  font-size: 22px;
  line-height: 30px;
  color: #05264E;
}

.banner-hero .color-brand-2 {
  color: #5166f7;
  position: relative;
}

.banner-hero .heading-banner-2 {
  color: #05264E;
  font-size: 48px;
  line-height: 60px;
  color: #05264E;
}

.banner-hero .color-brand-2::after {
  content: "";
  background-color: #5166f7;
  height: 25px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -6px;
  z-index: -1;
  opacity: 0.1;
}

.banner-hero .banner-description {
  position: relative;
  font-size: 16px;
  color: #4F5E64;
  font-weight: 500;
}

.banner-hero.banner-image-single {
  padding: 20px 0px 20px 0px;
}

.banner-hero.banner-image-single img {
  width: 100%;
  border-radius: 16px;
  width: 100%;
  max-height: 300px;
  border-radius: 16px;
  object-fit: cover;
}

.service-page .banner-hero.banner-image-single img {
  max-height: 230px;
  object-fit: contain;
}

.banner-hero.banner-company {
  padding: 40px 20px 60px 20px;
  background: #F2F6FD;
  border-radius: 16px;
  position: relative;
}

.banner-hero.banner-company .block-banner {
  padding: 0px 0px 0px 0px;
}

.banner-hero.banner-single {
  padding: 40px 20px 60px 20px;
  background: #F2F6FD;
  border-radius: 16px;
  position: relative;
}

.banner-hero.banner-single::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 5px;
  height: 170px;
  width: 213px;
  background: url(../imgs/page/job-single/right-job-head.svg) no-repeat left bottom;
  background-size: contain;
}

.banner-hero.banner-single::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: -3px;
  height: 170px;
  width: 218px;
  background: url(../imgs/page/job-single/left-job-head.svg) no-repeat left bottom;
  background-size: contain;
  display: inline;
  top: auto;
  right: auto;
}

.banner-hero.hero-2 {
  position: relative;
  width: 100%;
  padding: 80px 0px 80px 0px;
  max-width: 100%;
  background: url(../imgs/page/homepage2/banner.png) no-repeat top center;
  background-size: cover;
}

.banner-hero.hero-2::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #05264E;
  opacity: 0.8;
  z-index: 1;
}

.banner-hero.hero-2 .banner-inner {
  z-index: 2;
  position: relative;
  max-width: 975px;
  margin: auto;
  width: 100%;
}

.banner-hero.hero-2 .banner-inner .block-banner {
  padding: 0px;
  text-align: center;
}

.banner-hero.hero-2 .banner-inner .block-banner .list-tags-banner strong,
.banner-hero.hero-2 .banner-inner .block-banner .list-tags-banner a {
  color: #ffffff;
}

.banner-hero.hero-2 .banner-inner .block-banner .list-tags-banner strong {
  margin-right: 10px;
}

.banner-hero.hero-2 .banner-inner .block-banner .form-find .select2 {
  text-align: left;
}

.banner-hero.hero-3 {
  background: #5166f7;
}

.banner-hero.hero-3::before {
  display: none;
}

.col-center {
  float: none;
  margin: 0 auto;
}

@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes hero-thumb-sm-animation {
  0% {
    transform: translateY(-20px) translateX(50px);
  }

  100% {
    transform: translateY(-20px) translateX(0px);
  }
}

@keyframes hero-thumb-sm-2-animation {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0px);
  }
}

.input-turn,
input.input-turn {
  background: #f2f3f4;
  border-radius: 6px !important;
  border-color: transparent;
  border: 1px solid transparent;
  height: 50px;
  box-shadow: none;
  /* padding-left: 20px; */
  font-size: 14px;
  width: 100%;
}

.shape-1 {
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.shape-2 {
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

.shape-3 {
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}

.header {
  padding: 23px 0;
  float: left;
  width: 100%;
}

.header .main-header {
  display: flex;
  align-items: center;
}

.header .main-header .header-right {
  display: inline-block;
  min-width: 345px;
  text-align: right;
}

.header .main-header .header-nav {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.header .main-header .header-left {
  display: flex;
  align-items: center;
}

.header .main-header .header-left .header-logo {
  margin-right: 0;
  max-width: 175px;
  width: 139px;
}

.header-logo img {
  height: 36px;
}

.header .nav-main-menu {
  display: inline-block;
  width: auto;
  padding: 0px;
  text-align: left;
  vertical-align: middle;
}

.header .main-menu li {
  float: left;
  padding: 10px 22px;
  position: relative;
}

.header .main-menu li.dashboard a {
  border: 1px dashed #5166f7;
  padding: 5px 8px;
  border-radius: 4px;
}

.header .main-menu li.has-children>a::after {
  content: "\f151";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1 !important;
  font-size: 18px;
  opacity: 1;
  margin-left: 4px;
  position: absolute;
  top: 1px;
  right: -19px;
  color: #A0ABB8;
}

.header .main-menu li.hr {
  padding: 0px 22px;
}

.header .main-menu li.hr span {
  background-color: #E0E6F6;
  height: 1px;
  width: 100%;
  display: block;
  margin: 5px 0;
}

.header .main-menu li a {
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #05264E;
  display: block;
  padding: 0px;
  text-decoration: none;
  position: relative;
}

.header .main-menu li a:hover,
.header .main-menu li a.active {
  color: #5166f7;
}

.header .main-menu li a:hover::before,
.header .main-menu li a.active::before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #5166f7;
  position: absolute;
  bottom: -10px;
  left: 0px;
}

.header .main-menu li a i {
  font-size: 10px;
  opacity: 0.5;
  margin-left: 3px;
}

.header .main-menu li ul {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.2s;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 999;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  background-color: #ffffff;
  padding: 10px 0px 15px 0;
}

.header .main-menu li ul li {
  width: 100%;
  padding: 0px;
}

.header .main-menu li ul li a,
.header .main-menu li ul li button {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  color: #253D4E;
  position: relative;
  padding: 15px;
  transition: 0.3s;
}

.header .main-menu li ul li a:hover,
.header .main-menu li ul li a.active,
.header .main-menu li ul li button:hover,
.header .main-menu li ul li button.active {
  padding-left: 25px;
  transition: 0.5s;
}

.header .main-menu li ul li a:hover::after,
.header .main-menu li ul li a.active::after,
.header .main-menu li ul li button:hover::after,
.header .main-menu li ul li button.active::after {
  opacity: 1;
  transition-duration: 0.3s;
}

.header .main-menu li ul li a:hover::before,
.header .main-menu li ul li a.active::before,
.header .main-menu li ul li button:hover::before,
.header .main-menu li ul li button.active::before {
  display: none;
}

.header .main-menu li ul li button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.header .main-menu li ul li ul {
  top: 0px;
  left: 100%;
}

.header .main-menu li:hover>ul {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.header .main-menu li:hover>ul li {
  width: 100%;
}

.header .text-link-bd-btom {
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #05264E;
  display: inline-block;
  position: relative;
  text-decoration-line: underline;
}

.header .text-link-bd-btom:hover {
  color: #5166f7;
}

.header .block-signin .btn-shadow {
  box-shadow: 0px 18px 40px rgba(25, 15, 9, 0.1);
}


.perfect-scroll {
  height: 100vh;
  width: 300px;
  position: relative;
}

.body-overlay-1 {
  background: transparent;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  cursor: crosshair;
  z-index: 997;
}

.mobile-menu-active .body-overlay-1 {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-active {
  overflow: hidden;
}

.mobile-header-active {
  overflow-y: scroll;
  overflow-x: hidden;
}

.mobile-header-wrapper-style {
  position: fixed;
  top: 0px;
  width: 100%;
  min-height: 100vh;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  z-index: 1000;
}

.mobile-menu-wrap {
  padding-bottom: 40px;
}

.mobile-header-wrapper-style.sidebar-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 34px 30px 30px 30px;
  background-color: #ffffff;
  align-items: center;
  align-self: center;
  border-bottom: thin solid #E0E6F6;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
  display: block;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
  width: 100px;
}


.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
  display: block;
  position: relative;
  padding: 13px 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
  display: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand {
  right: 0;
  position: absolute;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  font-size: 12px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 38px;
  top: 5px;
  color: #05264E;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
  font-size: 18px;
  opacity: 0.9;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #05264E;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
  margin-right: 5px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
  padding: 10px 0 0 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
  padding: 10px 0;
  border-bottom: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand {
  top: 0px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
  padding-left: 13px;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a::before {
  opacity: 1;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #253D4E;
  padding-left: 10px;
  position: relative;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 5px;
  height: 5px;
  background-color: #E0E6F6;
  border-radius: 50%;
  opacity: 0.7;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
  margin-top: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active {
  padding-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover>a {
  color: #05264E;
  padding-left: 3px;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
  padding: 5px 15px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #E0E6F7;
  margin: 17px 0 30px 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
  position: relative;
  margin-bottom: 13px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
  margin-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #05264E;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
  color: #05264E;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
  font-size: 14px;
  color: #05264E;
  margin-right: 8px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
  margin-top: 5px;
  display: none;
  background-color: transparent;
  box-shadow: none;
  padding: 10px 0 0 0;
  width: 100%;
  z-index: 11;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
  padding-bottom: 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
  padding-bottom: 0px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
  color: #05264E;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover>a {
  color: #05264E;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
  font-size: 12px;
  color: #4F5E64;
}

.burger-icon-v2 {
  display: none;
}

.burger-icon {
  position: absolute;
  width: 24px;
  height: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 7px;
  right: 15px;
  display: none;
  z-index: 10;
}

.burger-icon>span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}

.burger-icon>span.burger-icon-top {
  top: 2px;
}

.burger-icon>span.burger-icon-bottom {
  bottom: 2px;
}

.burger-icon>span.burger-icon-mid {
  top: 9px;
}

.burger-icon.burger-close {
  z-index: 999;
}

.burger-icon.burger-close>span.burger-icon-top {
  display: none;
  opacity: 0;
}

.burger-icon.burger-close>span.burger-icon-mid {
  top: 8px;
  transform: rotate(45deg);
}

.burger-icon.burger-close>span.burger-icon-bottom {
  bottom: 10px;
  transform: rotate(-45deg);
}

.burger-icon>span::before,
.burger-icon>span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #333;
}

.burger-icon.burger-icon-white>span::before,
.burger-icon.burger-icon-white>span::after {
  background-color: #4F5E64;
}

.mobile-search form {
  background-color: #f2f3f4;
  border-radius: 8px;
  height: 44px;
  padding: 0px 15px 0px 44px;
  position: relative;
}

.mobile-search form input {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 43px;
}

.mobile-search form i {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 18px;
  color: #4F5E64;
}

.mobile-account {
  margin: 15px 0;
  padding: 30px 0 20px 0;
  border-top: thin solid #E0E6F6;
}

.mobile-account h6 {
  font-weight: 600;
  font-size: 18px;
}

.mobile-account ul li {
  padding: 13px 0;
}

.mobile-account ul li a {
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #253D4E;
  transition-duration: 0.2s;
}

.mobile-account ul li:hover a {
  padding-left: 3px;
  transition-duration: 0.2s;
  color: #05264E;
}

.nav li {
  list-style: none;
}

.top-bar {
  background: #011226;
  padding: 12px 0
}

.top-bar .top-menu ul {
  margin: 0;
}

.top-bar .top-menu li {
  display: inline-block;
  margin-right: 20px;
  list-style: none;
}

.top-bar .top-menu li a {
  color: #cdd2d8;
}

.banner-self {
  position: relative;
}

.banner-mobile .banner-self {
  display: none;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
}

.search-header-container .location_search {
  position: relative;
}

.search-header-container .location_search input {
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-radius: 0;
  padding-left: 30px;
}

.search-header-container .find_me_btn_v2 {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #7483f6;
}

.search-header-container .box-industry {
  background: #ffffff;
  border-radius: 9px;
  border: 3px solid rgba(200, 207, 255)
}

.search-header-container .select2-container--default .select2-selection--single .select2-selection__rendered,
.search-header-container .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #011226;
  margin-top: 12px;
}

.search-header-container .btn-action {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.search-header-container .action-btn {
  font-size: 18px;
  padding: 0 18px;
}

.action-bg {
  background: #f5655d;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #5166f7;
}

.btn-lg {
  font-size: 16px;
  font-weight: 600;
}

.btn-light-purple {
  background-color: #7483f6;
  color: #fff;
}

header.header_v2 {
  background: #5166f7;
}

.lang-dd .dropdown-menu .dropdown-item {
  cursor: pointer;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
  justify-content: space-between;
  align-content: center;
}

.lang-dd .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.header.header_v2 .main-header .header-left .header-logo {
  width: auto;
}

.sidebar-title {
  border-bottom: thin solid #E0E6F6;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.search-form form {
  position: relative;
}

.search-form form input {
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 64px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.search-form form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 20px;
  height: 100%;
  padding: 0 24px;
  background-color: transparent;
  color: #242424;
}

.banner-search-btn {
  background: #f5655d;
  color: #fff;
  height: 50px;
}

.banner-search-btn span {
  display: none;
}

.post-list-small-item {
  transition-duration: 0.2s;
}

.post-list-small-item:hover {
  transition-duration: 0.2s;
  transform: translateY(-3px);
}

.post-list-small-item figure img {
  max-width: 85px;
  border-radius: 5px;
}

.post-list-small-item .post-meta {
  font-size: 13px;
}

.post-list-small-item .post-meta img {
  max-width: 30px;
  border-radius: 50%;
  margin-right: 5px;
}

.post-list-small-item h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}

.post-list-small-item:not(:last-child) {
  margin-bottom: 15px;
}

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

.bh_head {
  display: flex;
  align-items: center;
}

.bh_head i {
  font-size: 30px;
  background: #f3f3f3;
  padding: 10px;
  margin-right: 20px;
}

footer {
  background: #f5f7fa;
  padding-top: 40px;
}

.footer .footer-col-1 {
  flex: 0 0 auto;
  width: 24%;
}

.footer .footer-col-2 {
  flex: 0 0 auto;
  width: 14%;
}

.footer .footer-col-3 {
  flex: 0 0 auto;
  width: 14%;
}

.footer .footer-col-4 {
  flex: 0 0 auto;
  width: 14%;
}

.footer .footer-col-5 {
  flex: 0 0 auto;
  width: 14%;
}

.footer .footer-col-6 {
  flex: 0 0 auto;
  width: 20%;
}

.footer .menu-footer {
  display: inline-block;
}

.footer .menu-footer li {
  list-style: none;
  margin-bottom: 4px;
}

.footer .menu-footer li a {
  color: #4F5E64;
  font-size: 14px;
  text-decoration: none;
  transition-duration: 0.2s;
}

.footer .menu-footer li a:hover {
  color: #05264E;
  transition-duration: 0.2s;
  padding-left: 3px;
}

.footer .icon-socials {
  display: inline-block;
  background-color: #fff;
  border-radius: 12px;
  height: 42px;
  position: relative;
  transition: all .2s ease;
  width: 42px;
  margin-right: 10px;
}

.footer .icon-socials:hover {
  transform: translateY(-3px);
  transition-duration: 0.2s;
}

.footer .icon-socials i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
}

.footer .icon-socials:hover i {
  color: #fff
}

.footer .icon-socials.fb:hover {
  background-color: #316FF6;
}

.footer .icon-socials.insta:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.footer .icon-socials.tw:hover {
  background: linear-gradient(45deg, #1da1f2, #1da1f2, #1da1f2, #1da1f2, #1da1f2);
  color: #fff;
}

.footer .icon-socials.yt:hover {
  background: #ff0000;
}

.footer .icon-socials.reddit:hover {
  background: #ff4500;
}

.footer .icon-socials.tt:hover {
  background: #000;
}


.footer .footer-bottom {
  border-top: 1px solid #E0E6F7;
  padding: 30px 0px;
  color: #4F5E64;
  font-size: 14px;
}

.footer .footer-bottom strong {
  color: #05264E;
  font-weight: bold;
}

.footer .footer-bottom a {
  text-decoration: none;
}

.login-register .nav-tabs li a:hover,
.login-register .nav-tabs li a.active {
  font-size: 16px;
}

.branch-flex .branch a {
  font-size: 16px;
}

.service-card-ba .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.service-card-ba .actions form button:hover,
.service-card-ba .actions form button:active,
.service-card-ba .actions form button:focus {
  background: transparent;
}

#scrollUp {
  width: 48px;
  height: 48px;
  color: #ffffff;
  right: 30px;
  bottom: 30px;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  z-index: 999 !important;
  border: 0;
  background-color: #fff;
  transition-duration: 0.2s;
  background-color: #5166f7;
  background-image: url(../imgs/template/icons/go-top.svg);
  background-repeat: no-repeat;
  background-position: center;
}

#scrollUp i {
  display: none;
  line-height: 42px !important;
  font-size: 20px;
  color: #fff;
}

#scrollUp:hover {
  transform: translateY(-3px);
  transition-duration: 0.2s;
}

.banner_upload_preview img {
  width: 300px !important;
}

/*LAYOUT -> SPACING**/
.p-30 {
  padding: 30px !important;
}


.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}


.pt-50 {
  padding-top: 50px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

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

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}


.pl-30 {
  padding-left: 30px !important;
}


.pl-40 {
  padding-left: 40px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

/***************************
    Page section margin
****************************/


.mt-5 {
  margin-top: 5px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}


.mt-40 {
  margin-top: 40px !important;
}


.mt-50 {
  margin-top: 50px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

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

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}


.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}


.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}


.mr-30 {
  margin-right: 30px !important;
}


.text-lg {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.card-style-1 {
  border-radius: 16px;
  background-color: #ffffff;
  padding: 22px 19px;
  margin-bottom: 30px;
  border: 1px solid #E0E6F7;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}

.card-style-1 .card-image {
  min-width: 55px;
  width: 10%;
  text-align: center;
  padding-right: 20px;
  line-height: 40px;
}

.card-style-1 .card-image img {
  vertical-align: middle;
  display: inline-block;
}

.card-style-1 .card-info {
  width: 100%;
}

.card-style-1 .card-info .card-title {
  display: flex;
}

.card-style-1 .card-info .card-title .status {
  margin-left: 15px;
}

.card-style-1 .card-info .card-title .status.up {
  /* background: url(../imgs/page/dashboard/up.svg) no-repeat left center; */
  display: inline-block;
  padding: 0px 0px 0px 30px;
  color: #3AAB67;
}

.card-style-1 .card-info .card-title .status.down {
  display: inline-block;
  padding: 0px;
  color: #E45959;
}

/*Page contact*/
.leaflet-map {
  height: 528px;
  width: 100%;
}

.bg-img-about {
  background: url(../imgs/page/about/img-about.png) no-repeat top center;
  background-size: cover;
  position: relative;
}

.bg-img-about .container {
  z-index: 2;
  position: relative;
}

.bg-img-about::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: url(/assets/blank.jpeg) repeat-x bottom left;
  background: rgba(0, 0, 0, .6);
}

.bg-img-about h2,
.bg-img-about p {
  color: #ffffff;
}

.box-info-contact {
  background-color: #F2F6FD;
  padding: 50px 40px 20px 40px;
  display: inline-block;
  width: 100%;
}

.archive-header {
  position: relative;
  top: -200px;
  margin-bottom: -200px;
  display: table;
  width: 100%;
}

.archive-header h3 {
  font-size: 46px;
}

.archive-header .post-meta .author img {
  max-width: 30px;
  border-radius: 50%;
  margin-right: 5px;
}


.single-body figure img {
  border-radius: 15px;
}

.single-body p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #05264E;
  line-height: 1.5;
  font-weight: 400;
}


.single-body h2 {
  margin-top: 1.72em;
  font-size: 26px;
}

.single-body h3 {
  margin-top: 1.72em;
  font-size: 22px;
}


.single-body h4,
.single-body h5 {
  margin-top: 1.72em;
  font-size: 18px;
}


.single-body .excerpt p {
  font-size: 22px;
  line-height: 1.5;
  color: #05264E;
}

.single-body blockquote {
  font-style: italic;
  background: #eaeaea;
  padding: 15px;
  border-radius: 8px;
}

.single-body blockquote p {
  font-size: 24px;
  line-height: 32px;
  color: #7e7e7e;
  margin-bottom: 0;
}

.single-body.article-body li {
  font-size: 18px;
}

.single-body.article-body a {
  color: #5166f7;
  text-decoration: underline;
}

.single-body.article-body table.table tr th:first-child {
  min-width: 60px;
  width: auto;
}

.single-body.article-body table.table tr th:last-child {
  min-width: 100px;
  width: auto;
}

.single-body.article-body table td {
  border: 1px dashed;
}

.author span {
  color: #253D4E;
}

.single-body.article-body em {
  font-style: italic;
}

.box-white {
  background: #ffffff;
  padding: 50px 0px;
}

.img-middle {
  float: left;
  margin-top: 2px;
}

.max-width-single {
  max-width: 733px;
  width: 100%;
  margin: auto;
}

.nav-tavs-profile {
  padding-right: 30px;
}

.nav-tavs-profile ul li {
  width: 100%;
}

.nav-tavs-profile ul li a {
  display: block;
  text-align: left;
  font-size: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
  background-position: 17px center;
  padding-left: 20px;
  box-shadow: 0px 2px 4px -5px rgb(10, 42, 105);
}

.nav-tavs-profile ul li a i {
  color: #578bff;
  width: 12px;
  text-align: center;
  margin-right: 5px;
}

.map {
  height: 400px;
  width: 100%;
}


.link-red {
  color: #E45959;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
}

.bg-white {
  background: #ffffff;
}

.join-btn {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
}

.content_typography p {
  color: #05264e;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 0.94em;
}

.content_typography ul,
.content_typography ol {
  padding-left: 35px;
  margin: 15px 0;
}

.content_typography ul li,
.content_typography ol li {
  margin-bottom: 10px;
  color: #05264e;
  font-size: 18px;
  line-height: 1.5;
}

.content_typography h2 {
  margin-top: 1.72em;
  font-size: 26px;
  line-height: 33px;
}

.content_typography h3 {
  margin-top: 1.72em;
  font-size: 22px;
  line-height: 30px;
  color: #05264E;
}

.content_typography h4 {
  color: #05264E;
  margin-top: 1.72em;
  line-height: 22px;
  font-size: 18px;
}

.content_typography h5,
.content_typography h6 {
  font-size: 16px;
  color: #05264E;
  margin-top: 1.72em;
  line-height: 22px;
}


.single-apply-jobs {
  display: inline-block;
  width: 100%;
  padding: 30px 0px 30px 0px;
  border-top: 1px solid rgba(6, 18, 36, 0.1);
  margin-top: 50px;
}

.sidebar-border,
.sidebar-shadow {
  border: 1px solid #E0E6F7;
  padding: 25px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 40px;
}

.sidebar-border .sidebar-heading,
.sidebar-shadow .sidebar-heading {
  display: inline-block;
  width: 100%;
}

.sidebar-border .sidebar-heading .avatar-sidebar figure,
.sidebar-shadow .sidebar-heading .avatar-sidebar figure {
  float: left;
}

.sidebar-border .sidebar-heading .avatar-sidebar figure img,
.sidebar-shadow .sidebar-heading .avatar-sidebar figure img {
  width: 85px;
  height: 85px;
  border-radius: 16px;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info {
  display: block;
  padding-left: 100px;
  position: relative;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-company,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-company {
  font-size: 18px;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  line-height: 18px;
  font-weight: bold;
  display: block;
  padding-top: 5px;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-website-text,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-website-text {
  font-size: 10px;
  line-height: 18px;
  color: #05264E;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-toggle::after,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-toggle::after {
  display: none;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu {
  min-width: unset;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
  border: thin solid #E0E6F7;
}

.sidebar-border .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu a,
.sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu a {
  font-size: 14px;
  color: #253D4E;
}

.sidebar-shadow {
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.box-map {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 16px;
}

.box-map-business {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 16px;
  min-height: 300px;
  height: 100%;
}


.job-overview {
  border: thin solid #E0E6F7;
  border-radius: 8px;
  padding: 20px 30px 30px 30px;
  margin-bottom: 50px;
}

.job-overview .sidebar-icon-item {
  font-size: 18px;
  color: #a0abb8;
  min-width: 20px;
}

.job-overview .sidebar-text-info {
  display: flex;
}

.job-overview .sidebar-text-info .small-heading {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.d-middle {
  vertical-align: middle;
}

.d-baseline {
  vertical-align: baseline;
}

.card-grid-2 .image-box .card_service_verified {
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 8px;
  background: #fff;
  border-radius: 50%;
}

.branch-deeplink {
  font-weight: 600 !important;
  cursor: pointer;
}

.box-border-single-v2 {
  display: inline-block;
  width: 100%;
}

.box-border-single {
  padding: 20px;
  display: inline-block;
  width: 100%;
  border: 1px solid #E0E6F7;
  border-radius: 8px;
}

.box-improve {
  border: 1px solid #E0E6F7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.box-improve img {
  width: 100%;
  object-fit: cover;
  height: 100%
}

.home-blog .box-improve img {
  height: 250px;
  object-fit: cover;
}

.home-blog .flex-text {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.business_some {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}

.business_some a {
  font-size: 18px;
}

.business_some a:not(.btn) {
  background: #ffffff;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.business_some a:not(.btn) i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.business_some a:hover:not(.btn) i {
  color: #000000;
}

.banner-single .block-banner {
  padding: 0px 0px 0px 0px;
  max-width: 850px;
  margin: auto;
}


.box-border {
  border: 1px solid #E0E6F7;
  border-radius: 4px;
  display: inline-block;
  padding: 1px 0px 3px 15px;
  vertical-align: sub;
}

.paginations {
  margin: 20px 0px 50px 0px;
}

.paginations .pager {
  padding: 0px;
}

.paginations .pager li {
  display: inline-block;
  vertical-align: middle;
  min-width: 30px;
  text-align: center;
  padding: 0 2px;
}

.paginations .pager li a {
  display: block;
  font-weight: 600;
  color: #A0ABB8;
  line-height: 26px;
  text-decoration: none;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.paginations .pager .page-numbers {
  display: inline-block;
  background: #f0f0f0;
  padding: 3px 5px;
  border-radius: 12px;
}

.paginations .pager li a:hover {
  color: #05264E;
}

.paginations .pager li.active {
  background: #5166f7;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 6px;
}

.paginations .pager li .pager-prev {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background: #f0f0f0;
  font-size: 14px;
}

.paginations .pager li .pager-prev:hover {
  background: #5166f7;
}

.paginations .pager li .pager-next {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background: #f0f0f0;
  font-size: 14px;
}

.paginations .pager li .pager-next i,
.paginations .pager li .pager-prev i {
  vertical-align: middle;
}

.paginations .pager li .pager-next:hover {
  background: #5166f7;
}


.text-small {
  font-size: 14px;
  line-height: 22px;
  color: #4F5E64;
  font-weight: 500;
}

.float-right {
  float: right;
}

.list-checkbox {
  display: inline-block;
  width: 100%;
  padding: 15px 0px 10px 0px;
}

.list-checkbox li {
  position: relative;
  display: inline-block;
  width: 100%;
}

.category_attr_divider {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
  overflow: hidden;
}

.category_attr_divider .badge {
  text-wrap: balance;
}

.list-checkbox li .number-item {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translateY(-50%);
  padding: 4px 5px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 7px;
  background: #E0E6F7;
  color: #5166f7;
}

.list-checkbox .has_child {
  padding-left: 15px;
}

.content-page .card-grid-2 .card-block-info {
  padding: 0 15px 15px 15px;
  position: relative;
}

.content-page .card-grid-2 .card-block-info .btn-dots-abs-right {
  top: 0px;
  right: 15px;
}

.content-page .card-grid-2 .card-block-info .btn-dots-abs-right::after {
  display: none;
}

.content-page .card-grid-2:hover {
  border-color: #B4C0E0;
}

.sidebar-shadow.none-shadow {
  padding: 0px 20px 0px 0px;
  border: 0px;
  border-radius: 0px;
}

.display-list .flash {
  top: 32px;
}

.content-page .display-list .card-grid-2 .card-block-info {
  padding-top: 0px;
}

.content-page .display-list .card-grid-2 .card-block-info .card-text-price {
  font-size: 16px;
  line-height: 26px;
  padding-top: 8px;
  display: inline-block;
}

.content-page .display-list .card-grid-2 .card-block-info .card-text-price span {
  font-size: 12px;
  line-height: 12px;
}

.box-company-profile {
  max-width: 90%;
  display: table;
  table-layout: fixed;
  margin: auto;
  width: 100%;
  padding: 20px 0px 0px 0px;
  position: relative;
}

.image-compay {
  position: absolute;
  top: -80px;
  left: 0px;
}

.image-compay img {
  width: 100%;
  border-radius: 16px;
}


.login-register-cover {
  border-bottom: 1px solid #E0E6F6;
  position: relative;
}

.login-register-cover .img-1 {
  position: absolute;
  right: 10%;
  top: 20%;
  width: unset;
}

.divider-text-center {
  position: relative;
  text-align: center;
}

.divider-text-center::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: #E0E6F6;
  top: 50%;
  left: 0;
  z-index: 1;
}

.divider-text-center span {
  display: inline-block;
  background-color: #fff;
  padding: 0 15px;
  z-index: 2;
  position: relative;
}

.login-register input {
  height: 53px;
  line-height: 53px;
  font-size: 14px;
}

.bg-homepage1 {
  background-image: url(../imgs/page/homepage1/bg-banner.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
  min-height: 640px;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  right: 0;
}

.nav-tabs {
  border: 0px;
  display: inline-block;
  margin: 0px;
  padding: 0px;
}

.nav-tabs li {
  display: inline-block;
}

.nav-tabs li a {
  display: inline-block;
  margin: 0px 5px;
  box-shadow: 0px 2px 4px -5px rgb(10, 42, 105);
  align-items: center;
  padding: 13px 17px;
  width: auto;
  background: #ffffff;
  border: 1px solid #E0E6F7;
  border-radius: 8px;
  font-family: 'Montserrat', 'MontserratArm', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  margin-bottom: 10px;
}

.nav-tabs li a:hover,
.nav-tabs li a.active {
  color: #5166f7;
  border-color: #5166f7;
  box-shadow: 0px 2px 4px -5px rgb(10, 42, 105);
}

.nav-tabs li a img {
  vertical-align: sub;
  width: auto;
  height: 18px;
  margin: 0px 6px 0px 0px;
}

.box-image-job {
  position: relative;
}

.box-image-job figure img {
  border-radius: 32px;
}

.box-image-job .img-job-1 {
  position: absolute;
  top: -70px;
  left: -120px;
}

.box-image-job .img-job-2 {
  position: absolute;
  bottom: -31px;
  right: -70px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  max-width: 380px;
  width: 100%;
}

.overflow-visible {
  overflow: visible !important;
}

.content-job-inner {
  padding-left: 60px;
}

.swiper-style-2 {
  position: relative;
}

.swiper-style-2 .item-5 {
  float: left;
  width: 20%;
  padding: 0px 12px;
}

.swiper-style-2.swiper-container .item-logo {
  width: 100%;
}

.box-swiper .swiper-button-next-1 {
  top: -30px;
  right: 5px;
  left: auto;
}

.box-swiper .swiper-button-prev-1 {
  top: -30px;
  right: 55px;
  left: auto;
}


.swiper-group-5 .swiper-pagination {
  margin-top: 15px;
  position: relative;
}

.swiper-group-5 .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  opacity: 0.5;
}

.swiper-group-5 .swiper-pagination .swiper-pagination-bullet-active,
.swiper-group-5 .swiper-pagination .swiper-pagination-bullet-active:hover {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  margin: -1px 3px 0;
  opacity: 1;
}

.img-rounded {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: 0px 10px 0px 0px;
  vertical-align: middle;
  display: inline-block;
}

.lh-14 {
  line-height: 14px !important;
}


.box-checkbox {
  padding: 0px 0px 0px 30px;
  background: url(../imgs/page/homepage3/check-box.svg) no-repeat 0px 4px;
}

.img-job-search {
  max-width: 90%;
}

.box-search-2 {
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

.box-search-2 .block-banner {
  padding: 0px;
}

.box-search-2 .block-banner .form-find .select2 {
  max-width: 350px;
}

.box-search-2 .block-banner .form-find .select2:after {
  right: auto;
  left: -3px;
}

.banner-homepage5 .banner-inner .row .block-banner {
  padding-right: 70px;
  padding-top: 90px;
}

.banner-homepage5 .banner-imgs {
  min-height: 550px;
  width: 100%;
  position: relative;
}

.banner-homepage5 .banner-imgs::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../imgs/page/homepage5/bg-banner.png) no-repeat top center;
  background-size: contain;
  content: "";
  z-index: 1;
}

.banner-homepage5 .banner-imgs .banner-1 {
  position: absolute;
  z-index: 2;
  top: 30px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  max-width: 356px;
  margin: auto;
  max-height: 356px;
}

.banner-homepage5 .banner-imgs .banner-2 {
  position: absolute;
  z-index: 2;
  max-width: 192px;
  top: 30px;
  left: 0px;
}

.banner-homepage5 .banner-imgs .banner-3 {
  position: absolute;
  z-index: 2;
  max-width: 165px;
  bottom: 0px;
  left: 0px;
}

.banner-homepage5 .banner-imgs .banner-4 {
  position: absolute;
  z-index: 2;
  max-width: 145px;
  top: 30px;
  right: 80px;
}

.banner-homepage5 .banner-imgs .banner-5 {
  position: absolute;
  z-index: 2;
  max-width: 131px;
  top: 300px;
  right: 30px;
}

.banner-homepage5 .banner-imgs .banner-6 {
  position: absolute;
  z-index: 2;
  max-width: 120px;
  bottom: -30px;
  right: 170px;
}

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

.number-element {
  color: #5166f7;
  background-color: #EFF2FB;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-block;
  line-height: 110px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.step-1 {
  position: relative;
}

.step-1::before {
  content: "";
  width: 100%;
  height: 59px;
  position: absolute;
  top: 45px;
  left: 68%;
  background: url(../imgs/page/homepage5/step1.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}

.step-2 {
  position: relative;
}

.login-register-separator {
  border-right: 1px solid #E0E6F6;
}

.step-2::before {
  content: "";
  width: 100%;
  height: 59px;
  position: absolute;
  top: 45px;
  left: 68%;
  background: url(../imgs/page/homepage5/step1.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}


.banner-homepage6 {
  background-color: #fbfbfd !important;
}

.block-banner .location_search {
  display: inline-block;
  width: 100%;
  position: relative;
}

.block-banner .location_search .find_me_btn {
  position: absolute;
  top: 12px;
  right: 13px;
  font-size: 10px;
  background: #109d59;
  padding: 0px 4px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.block-banner .location_search .find_me_btn_v2 {
  position: absolute;
  top: 12px;
  right: 13px;
  font-size: 10px;
  padding: 0px 4px;
  border-radius: 6px;
  color: #5166f7;
  cursor: pointer;
  font-size: 18px;
}

.service_detail_title {
  font-size: 28px;
  line-height: 32px;
}

.filter-label-modern {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.search-filter {
  z-index: 10;
  position: fixed;
  top: 0;
  right: -420px;
  max-width: 420px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fff;
  transition: right .3s ease 0s;
  padding: 20px;
}

.search-filter.open {
  z-index: 301;
  opacity: 1;
  display: block;
  right: 0;

}

.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.close_btn {
  font-size: 30px;
  cursor: pointer;
}

.category_items {
  height: 350px;
  margin-bottom: 20px;
  overflow-y: scroll;
}

.filter .filter__list::-webkit-scrollbar {
  width: 6px;
}

.filter .filter__list::-webkit-scrollbar-thumb {
  height: 30px;
  background-color: #d3d4dd;
  border-radius: 3px;
}

.filter .filter__list::-webkit-scrollbar-track {
  background-color: transparent;
}

.filter_container h6 small {
  border-bottom: 1px dashed;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  color: #d50a0a;
  border-color: initial;
  font-size: 14px;
  line-height: 20px;
  margin-right: auto;
  margin-left: 12px;
}

.filter_container .keyword_search {
  padding: 6px 12px;
  height: 36px;
  background-color: #fff;
  transition: background-color .3s ease 0s, border-color .3s ease 0s;
  border: 1px solid #e0e6f7;
  border-radius: 4px;
  height: 50px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 14px;
}

.filter_container>form {
  position: relative;
}

.filter_button {
  position: sticky;
  bottom: 0;
  box-shadow: 1px 0px 8px 20px #fff;
  color: #5166f7;
  background: #e4e6f9;
  width: 100%;
  font-weight: bold;
  font-size: 17px;
}

.filter_container .list-checkbox {
  /* border: 1px solid #f1f1f5; */
  border-radius: 6px;
  padding: 15px 0px 10px 3px;
}

.button-keyword-search {
  background: #fff;
  padding: 0 18px;
  font-size: 17px;
  border: 1px solid #e0e6f7;
  border-left: none;
}

.filter_head {
  margin-bottom: 20px;
}

.btn-find {
  cursor: pointer !important;
}

.slidecontainer {
  width: 100%;
}

.rng-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 15px;
  background: #f1f1f5;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.rng-slider:hover {
  opacity: 1;
}

.rng-slider:before {
  display: none;
}

.rng-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: #ff6b35;
  cursor: pointer;
}

.rng-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: #ff6b35;
  cursor: pointer;
}

/* Divider Section Header */
.divider-section-header {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0 20px 0;
}

.divider-section-header::before,
.divider-section-header::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.divider-section-header:not(:empty)::before {
  margin-right: 15px;
}

.divider-section-header:not(:empty)::after {
  margin-left: 15px;
}

.divider-section-header span {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-scroll {
  overflow: hidden !important;
}

.article-post h1 {
  font-size: 26px;
  line-height: 35px;
}

.blog-search-bar form input {
  height: 48px;
}

.blog-search-bar {
  max-width: 350px;
  float: right;
}

.app-download-link img {
  height: 50px;
  margin-bottom: 10px;
  margin-right: 10px;
  background: #fff;
  border-radius: 7px;
}

.app-download-link .android {
  margin-right: 10px;

}

.select2-results__options .parent-category {
  font-weight: bold;
}

.company-profile-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: -70px;
  z-index: 10;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.company-image-container {
  display: flex;
}

.company-image-container .info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;

}

.with_reserve {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
}

.branch .copy-icon {
  cursor: pointer;
  margin-left: 10px;
}

.branch .copy-icon:hover {
  color: #5166f7;
}

.company-image-container .info-container h1.business_title {
  font-size: 24px;
  line-height: 30px;
}

.custom-size-check-sm .form-check-input {
  width: 1rem;
  height: 1rem;
  margin-right: 10px;
}

.custom-size-check-md .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
}

.custom-size-check-xl .form-check-input {
  width: 2rem;
  height: 2rem;
  margin-right: 10px;
}

/* Adjust label sizes if necessary */
.custom-size-check-sm .form-check-label {
  font-size: 0.75rem;
}

.custom-size-check-md .form-check-label {
  font-size: 14px;
  margin-left: 10px;
  line-height: 18px;
  font-weight: 500;
}

.custom-size-check-xl .form-check-label {
  font-size: 1.25rem;
}

.filter_category_attr {
  background: #f8f9fa;
  margin: 0 -20px;
  padding: 10px 20px;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 14px;
}

.df-item {
  margin-top: 15px;
}

.df-item .title {
  margin-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  padding-bottom: 8px;
}

.df-item .custom-size-check-md {
  margin-bottom: 15px;
}

.df-items {
  padding-left: 10px;
}

.company-image-container .b-logo {
  width: 140px;
  height: 140px;
  background: #fff;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.review_modal_warning {
  font-size: 17px;
  text-align: center;
  padding: 30px 0;
}

.service_image_slider img {
  height: 400px !important
}

.service_image_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 26px;
}

.service_image_slider .owl-nav button {
  border: 1px solid #5166f7 !important;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s;
}

.service_image_slider .owl-nav button:hover {
  background: rgba(255, 255, 255, 1) !important;
}

.service_image_slider .owl-nav .owl-prev {
  position: absolute;
  left: 20px;
}

.service_image_slider .owl-nav .owl-next {
  position: absolute;
  right: 20px;
}

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

.service_image_slider img,
.service_image_thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.service_image_thumbnails .swiper-slide {
  width: 60px;
  height: 60px;
  margin-right: 5px;
  cursor: pointer;
  margin-right: 10px;
}

.service_image_thumbnails {
  overflow: hidden;
}

.service_image_thumbnails .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  transition: all 0.3s ease;
}

.service_image_thumbnails .swiper-slide {
  opacity: 0.6;
  /* Dim inactive thumbnails */
  transition: all 0.3s ease;
}

.branchSwiper {
  padding-bottom: 30px;
}


.branchSwiper .swiper-pagination {
  bottom: 5px;
  left: 0 !important;
  width: auto !important;
  right: 0;
  margin: 0 auto;
}

.branchSwiper .swiper-pagination-bullet {
  width: auto;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, .2);
  border-radius: 10px;
  padding: 0 9px;
}

.branchSwiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #5166f7;
}

.branchSwiper .overview-info .branch {
  margin-bottom: 2px;
}

.branchSwiper .head {
  background: #f9f9f8;
  padding: 5px 15px;
  border-radius: 8px;
  font-weight: 500;
}

.branch-custom-button {
  border: none;
  border-radius: 5px;
}

.review-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.wh_accordion button {
  padding: 0 !important;

}

.wh_accordion .accordion-collapse {
  padding: 0 !important;
}

.se_ca_in_bu {
  background: #f9f6f6;
  border-radius: 6px;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.zero_rating>* {
  color: #eaeaea !important;
}

.nothing-found-icon {
  width: 120px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
}

.se_ca_in_bu img {
  width: 100%;
  object-fit: cover;
  height: 150px;
  border-radius: 6px;
}

.se_ca_in_bu h3 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

#categorySearchModal {
  z-index: 100000000000;
}

.custom-category-accordion {
  width: 100%;
}

.custom-category-item {
  border: none;
  margin-bottom: 5px;
}

.custom-category-accordion .custom-category-item {
  border-bottom: 1px solid #eaeaea;
}

.custom-category-accordion .custom-category-item:last-child {
  border-bottom: none;
}

.custom-category-header {
  padding: 10px 0;
  cursor: pointer;
}

.custom-category-header-search-state {
  padding: 10px 10px;
  cursor: pointer;
  background: #edeffe;
  color: #5166f7;
  border-radius: 8px;
}

.custom-category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.custom-category-text {
  margin-right: 10px;
  font-weight: 600;
}

.custom-category-toggle {
  background: rgba(224, 230, 247, 0.4);
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 10px;
  flex-shrink: 0;
}

.custom-category-content {
  user-select: none;
}

.custom-category-toggle i {
  transition: transform 0.3s ease;
}

.custom-category-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.custom-category-body {
  padding-left: 10px;
}

.categorySearchModalInputContainer {
  height: 100%;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
  padding: 0 5px 0 5px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.categorySearchModalInputTitle {
  padding: 0 15px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.search-header-container .input_search input:placeholder-shown {
  background: rgb(242, 243, 244)
}

.search-header-container .input_search input:placeholder-shown+button {
  opacity: 0;
}

.search-header-container .input_search {
  position: relative;
}

.search-header-container .input_search input {
  border-radius: 9px;
}

.search-header-container .input_search .mobile_like_srch_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile_like_srch_btn {
  background: rgb(81, 102, 248);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 14px;
}

.categorySearchModalInputTitle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: rgb(81, 102, 248);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding-top: 2px;
}

.banner-search-section .categorySearchModalInputContainer {
  min-height: 44px;
}

.search-header-container .input-group input,
.search-header-container .input-group button {
  border-radius: 9px;
}

.bg-light-grey {
  background: #fafafa
}

.login-option-container,
.payment_method_select {
  border: 1px solid #e0e6f7;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  text-align: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-option-container input,
.payment_method_select input {
  width: 0px;
  height: 0px;
  position: absolute;
  left: 0;
  visibility: hidden;
}

.login-option-container .icon,
.payment_method_select .icon {
  font-size: 50px;
  margin-bottom: 10px;
}

.payment_method_select .icon {
  margin-top: 10px;
}

.login-option-container .title,
.payment_method_select .title {
  font-size: 18px;
  transition: all 0.3s;
}

.login-option-container .icon,
.payment_method_select .icon {
  transition: all 0.3s;
}

.login-option-container:hover .icon,
.login-option-container input:checked~.icon,
.payment_method_select:hover .icon,
.payment_method_select input:checked~.icon {
  color: #5166f7
}

.login-option-container input:checked~.lr-checkmark {
  display: block;
}

.lr-checkmark {
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
}

.payment_method_select .lr-checkmark {
  display: block;
  top: -3px;
  right: 0;
}

.payment_method_select input:checked~.lr-checkmark .on {
  color: #5166f7;
  display: block;
}

.payment_method_select input:checked~.lr-checkmark .off {
  display: none;
}

.payment_method_select input:not(:checked)~.lr-checkmark .off {
  color: #bbbbbb;
  display: block;
}

.payment_method_select input:not(:checked)~.lr-checkmark .on {
  display: none;
}

.payment_method_select img {
  width: 130px;
}

.payment_method.active {
  border-color: #109d59;
}

.accordion-body p {
  color: #05264e
}

.accordion-body ul,
.accordion-body ol {
  padding-left: 40px;
  color: #05264e;
  margin: 10px 0;
}

/* experiment for header search */
.header-search .mobile_label,
.banner-search-section {
  display: none;
}

.header-search .desktop_label {
  display: block;
}

.upgrade_content {
  margin-top: 10px;
}

.upgrade_content p {
  color: #05264e;
  font-size: 16px;
  line-height: 24px;
}

.input_search {
  position: relative;
}

.input_search::before {
  content: "\f002";
  /* FontAwesome search icon (Unicode) */
  font-family: "Font Awesome 5 Free";
  /* FontAwesome font */
  font-weight: 900;
  /* Necessary for the correct icon */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aaa;
}

.input_search input {
  padding-left: 35px;
}

.user_location_info strong {
  cursor: pointer;
}

.filterCount {
  position: relative;
}

.filterCountText {
  position: absolute;
  top: -18px;
  right: -24px;
  background: #dc3545;
  color: #fff;
  min-width: 20px;
  /* Minimum width for single-digit numbers */
  height: 20px;
  /* Fixed height to keep it circular for small content */
  padding: 0 6px;
  /* Horizontal padding for larger numbers */
  border-radius: 50%;
  /* Rounding for smaller numbers */
  font-size: 12px;
  line-height: 20px;
  /* Vertically center text */
  text-align: center;
  /* Horizontally center text */
  white-space: nowrap;
  /* Prevents the text from wrapping */
}

.review_photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.review-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  /* Optional: add rounded corners */
}

.mfp-bg {
  z-index: 1055 !important;
  /* One level above Bootstrap modals (z-index 1050) */
}

.mfp-wrap {
  z-index: 1060 !important;
  /* Ensure the popup itself is above the modal backdrop */
}

.wapp_viber {
  font-size: 25px;
}

.wapp_viber_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.new-tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #dde8f3;
}

.new-tabs ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.new-tabs a {
  font-size: 16px;
  padding: 8px 16px;
}

.new-tabs a.active {
  color: #5166f7;
  border-bottom: 2px solid #5166f7;
  font-weight: bold;
}

.new-tabs a.active i {
  color: #5166f7;
}

#accordionFilters .accordion-button {
  padding: 5px 0 5px 0 !important;
  font-size: 16px;
}

#accordionFilters .accordion-collapse,
#accordionFilters .accordion-body {
  padding: 0
}

.address-distance {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  align-items: flex-end;
}

.address_wrp {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.address-distance .separator {
  margin: 0 5px;
  flex-shrink: 0;
}

.address-distance .distance_wpr {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 12px;
  color: #5166f7;
}

.rating-distance-wrapper .sr_single_star {
  font-size: 14px;
  font-weight: bold;
}

.rating-distance-wrapper .sr_single_star span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 26, 52, 0.6) !important;
  border: none;
}

.rating-distance-wrapper .sr_single_star span i {
  color: rgba(0, 26, 52, 0.6)
}

.section-title {
  color: #3e495f;
  font-size: 22px;
  line-height: 24px;

}

.elep_service_title {
  max-width: calc(100% - 20px);
  display: inline-block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px;
  vertical-align: middle;
}

.elep_service_title+i {
  height: 14px;
  display: inline-block;
}

.see_all_block .see_all_block_item {
  font-size: 22px;
  font-weight: 600;
}

.see_all_block {
  border: 1px solid #e3e9f8;
  background: #f8faff;
  display: flex;
  border-radius: 8px;
  height: 100%;

  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.leaflet-control-attribution {
  opacity: 1;
}

.leaflet-control-attribution a {
  display: none;
}


/* experiment for header search */
@media (max-width: 1399px) {
  .banner-homepage5 .banner-imgs .banner-1 {
    max-width: 256px;
    max-height: 256px;
  }

  .banner-homepage5 .banner-imgs .banner-2 {
    max-width: 152px;
    max-height: 152px;
  }

  .banner-homepage5 .banner-imgs .banner-3 {
    max-width: 132px;
    max-height: 132px;
  }

  .banner-homepage5 .banner-imgs .banner-4 {
    max-width: 115px;
    max-height: 115px;
    bottom: 20px;
  }

  .banner-homepage5 .banner-imgs .banner-5 {
    max-width: 95px;
    max-height: 95px;
  }

  .banner-homepage5 .banner-imgs .banner-6 {
    max-width: 85px;
    max-height: 85px;
    bottom: 10px;
  }

  .company-image-container .info-container h1.business_title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1200px) {
  .swiper-style-2 .item-5 {
    width: 25%;
  }

  .header .main-header .header-right {
    display: none;
  }

  .header .container {
    position: relative;
  }

  .burger-icon {
    display: inline-block;
  }

  .header .nav-main-menu {
    display: none;
  }

  .box-image-job .img-job-1 {
    top: -40px;
    left: -50px;
    width: 240px;
  }

  .box-image-job .img-job-2 {
    bottom: -80px;
    right: -20px;
    width: 240px;
  }

  .content-job-inner {
    padding-left: 20px;
    padding-top: 10px;
  }

  .bg-homepage1 {
    background-size: auto;
  }

  .company-image-container .info-container h1.business_title {
    padding-top: 10px;
  }

  .block-signin {
    display: none;
  }

  .burger-icon-v2 {
    position: relative;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    color: #fff;
    font-size: 34px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
  }

  .burger-icon-v2.close {
    color: #000
  }

  .mobile-header-head {
    padding: 15px 0;
  }

  .border-bottom {
    border-bottom: 1px solid #f1f2f6;
  }

  .border-top {
    border-bottom: 1px solid #f1f2f6;
  }

  .banner-hero .heading-banner {
    font-size: 18px;
    line-height: 24px;
  }

  .blog-img {
    max-height: 350px;
  }
}

@media (min-width: 991px) {
  .categorySearchModalInputContainer {
    min-height: 44px;
  }

  .block-banner .location_search {
    margin-left: 10px;
    margin-right: 10px
  }

  .home-page-search {
    display: none;
  }

  .right-side-items {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media (max-width: 991.98px) {
  .header-search .input_search {
    display: none;
  }

  .banner-self {
    display: none;
  }

  .banner-mobile .banner-self {
    display: block;
  }

  .banner-mobile {
    background: #eff1ff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
  }

  span.company-menu-item-name {
    width: 160px;
  }

  .w-lg-50 {
    width: 100%;
  }

  .card-image-top .image {
    height: 161px;
  }

  .swiper-style-2 .item-5 {
    width: 33.33%;
  }

  .footer .footer-col-1,
  .footer .footer-col-2,
  .footer .footer-col-3,
  .footer .footer-col-4,
  .footer .footer-col-5,
  .footer .footer-col-6 {
    width: 33.33%;
    margin-bottom: 20px;
  }

  .header {
    padding: 10px 0
  }

  .header .main-header .header-left .header-logo {
    margin-right: 10px;
  }

  .top-bar {
    display: none;
  }

  /* experiment for header search */
  .header-search .input-keysearch,
  .header-search .action-btn {
    display: none;
  }



  .header-search .mobile_label,
  .banner-search-section {
    display: block;
  }

  .header-search .desktop_label {
    display: none;
  }

  .header-search .box-industry {
    height: 40px;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important
  }

  .header-search.home_page {
    display: none;
  }

  /* experiment for header search */
  .header .main-header .header-nav {
    width: 60%;
  }

  .img-job-1,
  .img-job-2 {
    display: none;
  }

  .content-job-inner {
    padding-top: 40px;
  }


  .mt-md-0 {
    margin-top: 0 !important;
  }

  .pl-lg-15 {
    padding-left: 15px !important;
  }

  .header-right {
    padding-right: 50px;
  }

  .banner-hero {
    max-width: 100%;
    padding: 0;
    padding-top: 20px
  }

  .banner-hero-2 {
    padding: 10px 0 30px;
  }

  .banner-hero.hero-1 {
    background: #f2f6fd;
  }

  .banner-hero.hero-1 .block-banner {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    max-width: 720px;
    overflow: hidden;
  }

  .banner-hero.hero-1::before {
    width: 100%;
    border-radius: 0;
    left: 0;
  }

  .banner-hero.hero-1 .banner-imgs {
    display: none;
  }

  .banner-hero.hero-1 h1 {
    font-size: 32px;
  }

  .card-grid-2 h5 {
    font-size: 18px;
  }

  .box-image-job .job-top-creator {
    left: 10px;
  }

  .nav.nav-right {
    margin-top: 30px;
  }

  .mt-lg-30 {
    margin-top: 30px !important;
  }

  .bg-banner-about.banner-home-3 {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }

  .bg-banner-about.banner-home-3 .banner-hero {
    max-width: 720px;
  }

  .bg-banner-about.banner-home-3 .banner-hero .block-banner {
    padding-top: 0;
  }

  .bg-banner-about.banner-home-3 .banner-hero .block-banner h2.heading-banner {
    font-size: 36px;
    line-height: 1.2;
  }

  .bg-banner-about.banner-home-3::before,
  .bg-banner-about.banner-home-3::after {
    opacity: 0.1;
  }

  .banner-hero.banner-homepage-3 {
    padding-top: 0;
    margin-bottom: 50px;
  }

  .banner-hero.banner-homepage-3 h1 {
    font-size: 48px;
  }

  .banner-hero.banner-homepage-3 .block-banner {
    padding-right: 80px;
    background: #F8FAFF;
  }

  .banner-hero.banner-homepage-3 .banner-imgs {
    display: none;
  }



  .heading-main-info .btn-default {
    margin: 15px 0;
  }

  .archive-header h3 {
    font-size: 36px;
    width: 100% !important;
  }

  .mb-md-30 {
    margin-bottom: 30px !important;
  }

  .mt-md-50 {
    margin-top: 50px !important;
  }

  .mt-md-30 {
    margin-top: 30px !important;
  }

  .mt-md-0 {
    margin-top: 0px !important;
  }

  .mb-md-0 {
    margin-bottom: 0px !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .pl-md-15 {
    padding-left: 15px !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .section-title-large {
    font-size: 48px;
  }

  .leaflet-map {
    height: 328px;
    width: 100%;
  }



  .banner-hero .box-search-2 .block-banner {
    padding-top: 0px;
    padding-bottom: 0px;
    overflow: visible;
  }


  .step-1::before {
    display: none;
  }

  .step-2::before {
    display: none;
  }

  .box-step {
    margin-bottom: 50px;
  }

  .banner-hero.banner-homepage5 {
    background-color: #ffffff;
  }

  .company-image-container .info-container h1.business_title {
    font-size: 18px;
    line-height: 20px;
    padding-top: 10px;
  }

  .business_page .banner-hero.banner-image-single img {
    max-height: 180px;
  }

  .attribute_wrapper .form-check {
    display: block;
  }

  .openFilterBtn {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 20;
    box-shadow: 0px 0px 6px #969696;
  }

  .service_image_thumbnails .swiper-slide {
    width: 44px;
    height: 44px;
  }

  .btn-primary-shadow.btn-primary-shadow-static {
    background: #edefff !important;
  }

  .btn-primary-shadow.btn-primary-shadow-static:hover {
    background: #e4e6fc;
  }

  .article-titles a h2 {
    font-size: 20px;
    line-height: 24px;
  }


  .content_typography p {
    color: #05264e;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0.84em;
  }

  .content_typography ul li,
  .content_typography ol li {
    margin-bottom: 10px;
    color: #05264e;
    font-size: 16px;
    line-height: 1.5;
  }

  .content_typography h2 {
    margin-top: 1.22em;
    font-size: 20px;
    line-height: 28px;
  }

  .content_typography h3,
  .content_typography h4,
  .content_typography h5,
  .content_typography h6 {
    margin-top: 1.22em;
    font-size: 18px;
    line-height: 28px;
    color: #05264E;
  }

}

@media (max-width: 767.98px) {
  .categorySearchModalInputTitle::after {
    content: "\f054";
  }

  .banner-search-btn span {
    display: inline-block;
    margin-left: 10px;
    font-weight: 600;
  }

  .banner-search-btn {
    width: 100%;
  }

  .block-banner .location_search {
    margin-top: 10px;
    margin-bottom: 10px
  }

  .banner-search-btn {
    margin-top: 10px;
  }

  .swiper-style-2 .item-5 {
    width: 50%;
  }

  .footer .footer-col-1,
  .footer .footer-col-2,
  .footer .footer-col-3,
  .footer .footer-col-4,
  .footer .footer-col-5,
  .footer .footer-col-6 {
    width: 50%;
  }


  .card-image-top .image {
    height: 250px;
  }

  .card-image-top .image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .box-swiper .swiper-button-next-1,
  .box-swiper .swiper-button-prev-1 {
    display: none;
  }

  .style-nav-top .swiper-button-next,
  .style-nav-top .swiper-button-prev {
    top: 10px;
  }

  .banner-hero .block-banner .form-find .select2,
  .banner-hero .block-banner .form-find .box-industry {
    max-width: 100%;
  }

  .banner-hero .block-banner .form-find {
    padding: 0;
    margin-top: 40px !important;
  }

  .banner-hero .block-banner .form-find form {
    display: block;
  }

  .banner-hero .block-banner .form-find .select2::after {
    display: none;
  }

  .pl-15.mb-15.mt-30 {
    margin-top: 0px !important;
  }

  .author-bio {
    display: block;
  }

  .max-width-single .post-meta {
    display: block !important;
  }

  .max-width-single .post-meta .date {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-top: 5px;
  }

  .max-width-single .post-meta .author {
    width: 100%;
    display: inline-block !important;
    margin-right: 0px !important;
  }

  .archive-header .post-meta .author img {
    vertical-align: middle;
  }

  .archive-header {
    top: -120px;
    margin-bottom: -120px;
  }

  .box-white {
    padding: 30px 0px;
  }



  h2 {
    font-size: 25px;
    line-height: 34px;
  }

  h3 {
    font-size: 22px;
    line-height: 30px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .section-title-large {
    font-size: 42px;
  }

  .banner-hero .block-banner {
    padding: 0;
  }

  .header .main-header .header-right {
    display: none;
  }


  .nav.nav-right {
    margin-top: 30px;
  }

  .box-head-single h3 {
    font-size: 36px;
    line-height: 1.2;
  }

  .social-share {
    margin-top: 25px;
  }

  .social-share .btn-sm {
    padding: 10px 15px;
    vertical-align: middle;
  }

  .job-overview {
    padding: 25px !important;
  }

  .banner-hero .block-banner.form-none-shadow .form-find {
    margin-top: 0px !important;
  }

  .banner-homepage5 .banner-inner .row .block-banner {
    padding-right: 0px;
  }

  .banner-hero .block-banner .form-find .btn-find {
    background-position: left 19px top 14px;
  }

  h3 {
    font-size: 20px;
  }

  .search-filter {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: right .3s ease 0s;
  }

  .search-filter.open {
    z-index: 301;
    opacity: 1;
    display: block;
    right: 0;
  }

  .article-post h1 {
    font-size: large;
    line-height: normal;
  }

  .article-body.single-body p,
  .article-body.single-body p span {
    font-size: 16px;
    margin-bottom: 15px;
    color: #05264E;
    line-height: 1.5;
    font-weight: 400;
  }

  .cus_widget_1 h4 {
    font-size: 19px;
  }

  .company-profile-header {
    display: flex;
    flex-direction: column;
  }

  .company-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .company-image-container .info-container,
  .company-image-container .info-container h1.business_title {
    margin-bottom: 10px;
  }

  .business_some {
    margin-bottom: 20px;
  }

  .categorySearchModalInputContainer {
    max-width: 100%;
  }

  .banner-search-section .input_area_sm {
    margin-top: 10px
  }
}

@media (min-width: 576px) {
  .select2-dropdown {
    width: 420px !important;
  }
}

@media (max-width: 575.98px) {
  .header .main-header .header-left .header-logo {
    max-width: 145px;
  }

  .header-logo img {
    max-height: 30px;
    vertical-align: top;
  }

  .banner-hero .banner-description {
    font-size: 14px;
  }

  .service_detail_title {
    font-size: 18px;
    line-height: 22px;
  }

  .service_detail_title+h5,
  .service_detail_title+h5+.rating-wrapper {
    display: inline-block;
  }

  .service_detail_title+h5+.rating-wrapper {
    display: block;
  }

  .footer .footer-col-1,
  .footer .footer-col-2,
  .footer .footer-col-3,
  .footer .footer-col-4,
  .footer .footer-col-5,
  .footer .footer-col-6 {
    width: 100%;
  }



  .sub-menu form button {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: #253D4E;
    padding-left: 10px;
    position: relative;
    transition-duration: 0.2s;
    border: 0;
    background: transparent;
    font-weight: 600;
  }


  .section-box.mt-70,
  .section-box.mt-80,
  .section-box.mt-100,
  .section-box.mt-40 {
    margin-top: 30px !important;
  }


  .banner-hero.hero-1 h1 {
    font-size: 18px;
    line-height: 27px;
  }

  .text-52 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    color: #05264E;
    text-overflow: ellipsis;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .mt-sm-15 {
    margin-top: 15px !important;
  }

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .pt-sm-15 {
    padding-top: 15px;
  }

  .swiper-group-6 {
    max-height: 140px;
  }

  .box-swiper .swiper-container .item-logo {
    box-shadow: none;
  }

  .footer ul.mt-40 {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
  }

  .bg-banner-about.banner-home-3 {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .bg-banner-about.banner-home-3 .banner-hero .block-banner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .card-job-top--info-heading {
    margin-bottom: 10px;
  }

  .card-job-top--price {
    margin-top: 15px;
    display: block;
  }




  .box-mw-60 {
    max-width: 100% !important;
  }

  .banner-hero.banner-homepage-3 .block-banner {
    padding: 30px 15px;
  }


  .nav-right li {
    margin-bottom: 15px;
  }



  .box-filters .list-tags-job {
    display: none;
  }


  .box-shadow-bdrd-15.box-filters {
    padding-bottom: 30px;
  }

  .social-share .btn-sm {
    padding: 10px 11px;
  }

  .card-employers .col-sm-6 {
    width: 50%;
  }

  .archive-header h3 {
    font-size: 32px;
    line-height: 1.2;
  }


  .single-body blockquote {
    padding: 15px 20px;
    border-radius: 5px;
    margin: 15px auto;
    font-size: 18px;
    max-width: 100%;
  }

  .single-body blockquote p {
    font-size: 18px;
    line-height: 1.5;
  }

  .bg-banner-about {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 15px 15px 40px 15px;
  }

  .bg-banner-about .heading-lg {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-title-large {
    font-size: 38px;
  }


  .banner-homepage5 .banner-inner .row .block-banner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .blog-search-bar {
    float: none;
  }

  .company-image-container .b-logo {
    width: 100px;
    height: 100px;
  }

  .service_image_slider img {
    height: 280px !important
  }

  .review-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 10px;

  }


  .login-option-container .title {
    font-size: 16px;
    line-height: 18px;
  }
}

@media (max-width: 484.98px) {
  .swiper-style-2 .item-5 {
    width: 100%;
  }


  .paginations .pager li .pager-prev {
    margin-right: 0px;
  }

  .paginations .pager li .pager-next {
    margin-left: 0px;
  }

  .paginations .pager li a {
    line-height: 24px;
    font-size: 16px;
  }

  .box-radius-8 {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .box-radius-8 .image {
    min-width: 100%;
    padding-right: 0px;
    text-align: center;
    margin-bottom: 15px;
  }

  h2 {
    font-size: 20px;
    line-height: 28px;
  }

  h3,
  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .company-image-container .info-container h1.business_title {
    font-size: 16px;
    line-height: 18px;
    padding-top: 0;
  }

  /* experiment for header search */
  .main-header .header-left {
    margin-right: 10px;
    flex-shrink: 0;
  }

  /* 
  .header.header_v2 .main-header .header-left .header-logo {
    width: 65px;
  } */

  .header-search .box-industry {
    height: 40px;
    font-size: 11px;
  }

  .main-header .header-nav {
    flex: 2;
    min-width: 20px;
  }

  .main-header .burger-icon-v2 {
    justify-content: end;
    display: flex;
    margin-left: 15px;
    flex-shrink: 0;
  }

  .main-header .box-industry {
    width: 100%;
  }

  .header-search .mobile_label {
    font-size: 10px;
    text-align: left;
  }

  .header-search .categorySearchModalInputContainer {
    padding: 0 10px 0 5px;
  }

  /* experiment for header search */


}

@media (max-width: 374.98px) {
  .image-profile {
    max-width: 100%;
    width: 100%;
  }

}

@media (min-width: 1400px) {
  .container.wide {
    max-width: 1544px;
  }

  .header .main-header .header-nav.mx-auto {
    width: 40% !important;
  }
}

/*OTHER SCREEN*/
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .header-right {
    display: none;
  }

  .header .main-header .header-nav.mx-auto {
    width: 50%;
  }
}

/*# sourceMappingURL=style.css.map */
.category_carousel_icon {
  width: 42px;
  height: 42px;
}

.nav-right-side-menu {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* File Upload Start */
.custom-file-input {
  opacity: 0;
  position: absolute;
  height: 0px;
  width: 0px;
}

.custom-file-label {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  border: 2px dashed #eaeaea;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 20px;
  float: left;
}

.custom-file img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  float: left;
  border-radius: 10px;
}

.service_time_input .input-group-text {
  padding: 0 5px;
}

.service_time_input .input-group-text select {
  height: 100%;
  cursor: pointer;
}

.custom-file-label img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}

.custom-file-label span {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  text-align: center;
  line-height: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.7);
}

.custom-file-label:hover img {
  transition: all ease-in-out 0.1s;
  opacity: 1;
}

/* File Upload End */
.show_all_addresses {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

.card-grid-2 .image-box img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.card-grid-2 .right-info {
  max-width: 310px;
}

.footer-social a {
  color: #3286e0;
  font-size: 22px;
}

.table-border {
  border-bottom: 1px solid #eaeaea;
}

.bg-success {
  background-color: #16c784 !important;
}

.attr_option_item_general {
  color: #000;
  background: transparent !important;
  font-size: 16px !important;
  line-height: 18px !important;
  font-weight: normal !important;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid rgba(238, 238, 238, 0.631);
  padding: 6px 0;
}

.attr_option_item_success i {
  color: #16c784 !important;
  padding-right: 10px;
}

.attr_option_item_danger i {
  color: #dc3545 !important;
  padding-right: 10px;
}

.attr_option_item_neutral {
  color: #d0d0d0 !important;
}

.btn-success {
  color: #fff;
  background-color: #068958 !important;
  border-color: #068958 !important;
}

.btn-primary {
  color: #fff;
  background-color: #5165f6;
  border-color: #5165f6;
}

.user-info-sidebar {
  border: 1px solid #b4c0e0;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 16px;
}

.user-info-sidebar img.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50px;
}

.location-check-btn {
  font-size: 25px;
  padding-top: 12px;
  margin-right: 20px;
  cursor: pointer;
}

.gradient-element {
  animation: random-color 2s infinite;
}

@keyframes random-color {
  0% {
    color: black;
  }

  100% {
    color: rgb(floor(random() * 256),
        floor(random() * 256),
        floor(random() * 256));
  }
}

.overview-info span {
  font-size: 16px;
  color: #05264e;
  line-height: 24px;
  font-weight: 300;
  padding-right: 24px;
}

.overview-info span.formatted-phone {
  font-weight: 700;
  padding-right: 0px;
}

.overview-info .wapp_viber {
  text-align: center;
}

.overview-info .wapp_viber span {
  vertical-align: top;
  font-weight: 700;
  font-size: 14px;
  padding-right: 0px;
}

.overview-wh-btn {
  font-size: 16px;
  color: #05264e;
  line-height: 24px;
  font-weight: 300;
  padding-right: 24px;
}

.overview-info {
  font-weight: 600;
}

.keep_space_w_border {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea
}

.tab-icon-color {
  color: #66789C;
  margin-right: 5px;
}

.border-none {
  border: 0px;
}

.service_content {
  overflow: hidden;
  overflow-wrap: anywhere;
  color: #05264E;
  font-size: 16px;
}

.star-rating {
  height: 20px;
  position: relative;
  width: 100px;
}

.star-rating:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI0Mi4wNDgyNSIgaGVpZ2h0PSI0MC4yIiB2aWV3Qm94PSIwLDAsNDIuMDQ4MjUsNDAuMiI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxOC45Njc1OSwtMTU4LjkpIj48ZyBkYXRhLXBhcGVyLWRhdGE9InsmcXVvdDtpc1BhaW50aW5nTGF5ZXImcXVvdDs6dHJ1ZX0iIGZpbGw9IiM3ZjhjOGQiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJidXR0IiBzdHJva2UtbGluZWpvaW49Im1pdGVyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1kYXNoYXJyYXk9IiIgc3Ryb2tlLWRhc2hvZmZzZXQ9IjAiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48cGF0aCBkPSJNMjYwLjIsMTc2LjdsLTguMiw4bDEuOCwxMS4zYzAuMiwxIC0wLjIsMiAtMSwyLjZjLTAuNCwwLjMgLTEsMC41IC0xLjUsMC41Yy0wLjQsMCAtMC44LC0wLjEgLTEuMiwtMC4zbC0xMC4xLC01LjNsLTEwLjIsNS4zYy0wLjQsMC4yIC0wLjgsMC4zIC0xLjIsMC4zYy0wLjUsMCAtMSwtMC4yIC0xLjUsLTAuNWMtMC44LC0wLjYgLTEuMiwtMS42IC0xLC0yLjZsMS45LC0xMS4ybC04LjIsLThjLTAuOCwtMC43IC0xLC0xLjcgLTAuNywtMi43YzAuMywtMSAxLjEsLTEuNyAyLjEsLTEuOGwxMS4zLC0xLjZsNS4xLC0xMC4zYzAuNSwtMC45IDEuNCwtMS41IDIuNCwtMS41YzEsMCAyLDAuNiAyLjQsMS41bDUuMSwxMC4zbDExLjMsMS42YzEsMC4yIDEuOCwwLjggMi4xLDEuOGMwLjMsMC45IDAsMiAtMC43LDIuNnoiLz48L2c+PC9nPjwvc3ZnPg==");
  background-repeat: repeat-x;
  background-size: 20px;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.star-rating>span {
  display: block;
  text-indent: -10000px;
  width: 100px;
  height: 20px;
  position: absolute;
  overflow: hidden;
}

.star-rating>span:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI0Mi4wNDgyNSIgaGVpZ2h0PSI0MC4yIiB2aWV3Qm94PSIwLDAsNDIuMDQ4MjUsNDAuMiI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxOC45Njc1OSwtMTU4LjkpIj48ZyBkYXRhLXBhcGVyLWRhdGE9InsmcXVvdDtpc1BhaW50aW5nTGF5ZXImcXVvdDs6dHJ1ZX0iIGZpbGw9IiNmNWI3MDAiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJidXR0IiBzdHJva2UtbGluZWpvaW49Im1pdGVyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1kYXNoYXJyYXk9IiIgc3Ryb2tlLWRhc2hvZmZzZXQ9IjAiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48cGF0aCBkPSJNMjYwLjIsMTc2LjdsLTguMiw4bDEuOCwxMS4zYzAuMiwxIC0wLjIsMiAtMSwyLjZjLTAuNCwwLjMgLTEsMC41IC0xLjUsMC41Yy0wLjQsMCAtMC44LC0wLjEgLTEuMiwtMC4zbC0xMC4xLC01LjNsLTEwLjIsNS4zYy0wLjQsMC4yIC0wLjgsMC4zIC0xLjIsMC4zYy0wLjUsMCAtMSwtMC4yIC0xLjUsLTAuNWMtMC44LC0wLjYgLTEuMiwtMS42IC0xLC0yLjZsMS45LC0xMS4ybC04LjIsLThjLTAuOCwtMC43IC0xLC0xLjcgLTAuNywtMi43YzAuMywtMSAxLjEsLTEuNyAyLjEsLTEuOGwxMS4zLC0xLjZsNS4xLC0xMC4zYzAuNSwtMC45IDEuNCwtMS41IDIuNCwtMS41YzEsMCAyLDAuNiAyLjQsMS41bDUuMSwxMC4zbDExLjMsMS42YzEsMC4yIDEuOCwwLjggMi4xLDEuOGMwLjMsMC45IDAsMiAtMC43LDIuNnoiLz48L2c+PC9nPjwvc3ZnPg==");
  background-repeat: repeat-x;
  background-size: 20px;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  right: 0;
  text-indent: 10000px;
  top: 0;
}

.sr_single_star {
  font-size: 18px;
}

.sr_single_star i {
  color: #fca95d;
  margin-right: 5px;
}

.sr_single_star span {
  margin-left: 10px;
  border-bottom: 1px dashed;
  border-color: rgba(134, 134, 149, .4);
  color: #05264E;
  font-size: 14px;
  cursor: pointer;
}

.inactive-star {
  color: #d5d5d5 !important
}

.service_attrs_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.service_attrs_wrapper .option-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  column-gap: normal;
}

.box-nav-tabs {
  padding-top: 4px;
  overflow: hidden;
}

.box-nav-tabs a.active {
  border-color: #5166F7;
  background: #5166F7;
  color: #fff;
}

.box-nav-tabs a.active i {
  color: #fff;
}

.preview_gallery_img img {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
}

/* /////// */

.dropzone,
.dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  background: white;
  padding: 20px 20px;
  border: 2px dashed #eaeaea;
  border-radius: 10px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 3em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: #8392ab;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;

}

.dropzone .dz-details {
  padding: 0;
  margin-top: 40px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;

}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
  color: #ff2a2a
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(52, 71, 103, 0.9);
  line-height: 150%;
  padding-bottom: 0;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(1px);
  filter: blur(1px);
  cursor: pointer;
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 53%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: none;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 150px !important;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.category_page_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.category_page_title h1 {
  font-size: 22px;
  line-height: 30px;
}

.category_page_title .result_page_distance_map {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: normal;
}

.result_page_distance_map {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Table Start */
.table-wrapper {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.table-title {
  padding-bottom: 15px;
  background: #2b4576;
  color: #fff;
  padding: 16px 30px;
  border-radius: 3px 3px 0 0;
}

.table-title h5 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 24px;
}

.table-title .btn-group {
  float: right;
}

.table-title .btn {
  color: #fff;
  float: right;
  font-size: 13px;
  border: none;
  min-width: 50px;
  border-radius: 2px;
  border: none;
  outline: none !important;
  margin-left: 10px;
}

.table-title .btn i {
  float: left;
  font-size: 21px;
  margin-right: 5px;
}

.table-title .btn span {
  float: left;
  margin-top: 2px;
}

table.table tr th,
table.table tr td {
  border-color: #e9e9e9;
  padding: 12px 15px;
  vertical-align: middle;
}

table.table tr th:first-child {
  width: 60px;
}

table.table tr th:last-child {
  width: 100px;
}

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

table.table-striped.table-hover tbody tr:hover {
  background: #f5f5f5;
}

table.table th i {
  font-size: 13px;
  margin: 0 5px;
  cursor: pointer;
}

table.table td:last-child i {
  opacity: 0.9;
  font-size: 22px;
  margin: 0 5px;
}

table.table td a {
  font-weight: bold;
  color: #566787;
  display: inline-block;
  text-decoration: none;
  outline: none !important;
}

table.table td a:hover {
  color: #2196F3;
}

table.table td a.edit {
  color: #FFC107;
}

table.table td a.delete {
  color: #F44336;
}

table.table td i {
  font-size: 19px;
}

table.table .avatar {
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

span.category_search_parent_name {
  display: block;
  color: #0c0c0c;
  font-size: 9px;
  line-height: 12px;
}

.category_search_name_wrapper {
  line-height: 18px;
}

/* Table End */


.stars {
  position: relative;
  padding: 0 2px;
  white-space: nowrap;
  display: inline-block;
}

.stars svg {
  fill: gold;

}

.star-cover {
  background: white;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: color;
  position: absolute;
  top: 0;
  right: 0;
}

.search-form-banner {
  position: relative;
}

.sidebar_category_container ul {
  padding-left: 20px;
}

.star-rating-user-dashboard {
  position: absolute !important;
  right: 10px !important;
}

/* NAV MENU IN ADMIN */
#mobile_expand_btn {
  position: absolute;
  top: -20px;
  background: #fff;
  width: 60px;
  height: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0px -3px 5px 1px #eaeaea;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  cursor: pointer;
}

.nav__menu.expanded #mobile_expand_btn i {
  rotate: 180deg;
}

.nav__menu.expanded {
  height: 280px;
  padding: 30px 20px;
}

.nav__menu.expanded .nav__list {
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}

.nav__item {
  list-style: none;
}

.nav__menu.expanded .nav__list .nav__item {
  margin: 7px 0;
}

.nav__menu.expanded .nav__list .nav__item .nav__link {
  flex-direction: row;
}

.nav__menu.expanded .nav__list .nav__item .nav__link img {
  height: 20px !important;
  width: 23px;
}

.nav__menu.expanded .nav__list .nav__item .nav__name {
  display: block;
  font-size: 14px;
  width: auto;
  margin-left: 20px;
}

#nav-menu .nav__link.active-link i {
  font-size: 26px;
  color: #578bff
}

#nav-menu .nav__link i {
  font-size: 26px;
  color: #9ea9cc;
  text-align: center;
  width: 26px
}

.about_service ol,
.about_service ul {
  padding: 20px 0 20px 30px;

}

.about_service ol li p strong {
  display: block;
}

.filter_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card-grid-flip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #ffffff;
  overflow: hidden;
  position: relative;
  background: #f8faff;
  padding: 10px 15px 10px 15px;
  box-shadow: 3px 3px 0px 0 #eff2f9;
}

.card-grid-flip .image-box {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.card-grid-flip .image-box img {
  height: 20px;
  width: 20px;
  object-fit: cover;
}

.card-grid-flip .image-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e0e6f7;
}

.card-grid-flip .image-row .right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 5px;
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card-grid-flip .address_info {
  cursor: pointer;
  display: block;
  margin-top: 5px;
}

.card-grid-flip .address_info .location-small {
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
  width: 100%;
  display: block;
}

.card-grid-flip .stars {
  line-height: 12px;
}

.card-grid-flip .name-job {
  line-height: 15px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-grid-flip .card_divider {
  margin: 5px 0 10px 0;
  height: 1px;
  width: 100%;
  background: #E0E6F7;
}

.card-grid-flip .rating-distance-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  line-height: 12px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.card-grid-flip .rating-distance-wrapper .flash-distance-2 {
  padding: 2px 3px;
  color: #000;
  border-radius: 6px;
  /* border-bottom: #5166f7 solid; */
  background: #fff;
  color: #5166f7
}

.dd_category_img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: text-bottom;
}

.setting_lang_option {
  font-size: 26px;
}

.filter_wrapper .button-keyword-search {
  z-index: 0;
}

.topup_balance {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.payment_method {
  border: 1px solid #b4c0e0;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
}

.payment_method img {
  width: 130px;
}

.payment_method.active {
  border-color: #109d59;
}

table.border-table tr {
  border-bottom: 1px solid #eaeaea;
}

.transaction_detail {
  cursor: pointer;
  text-align: center;
}

.sc_action_btn {
  color: red;
  display: inline-block;
  border: 0;
  background: transparent;
  padding-bottom: 10px;
  margin-top: 0px;
  padding-left: 0;
  line-height: inherit;
}

.sc_action_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.service_card_with_action_wrapper {
  display: flex;
  flex-direction: column;
}

.current_date {
  color: #16c784 !important
}

.wh_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.card_v6 .service_title {
  font-size: 16px;
  line-height: 18px;
}

.card_v6 .rating {
  font-size: 14px;
  line-height: 18px;
}

.card_v6 .sr_single_star i {
  font-size: 14px;
}

.card_v6 .company_name {
  font-size: 14px;
  font-weight: 600;
}

.card_v6.card-grid-2 i.turn-verified {
  font-size: 14px;
}

.alert-warning {
  color: #000;
  background-color: #f8b15d;
  border-color: #f8b15d;
}

.alert-danger {
  color: #ffffff;
  background-color: rgb(192 15 15);
  border-color: rgb(192 15 15);
  font-weight: bold;
}

.alert-success {
  color: #000;
  background-color: #0ac97f;
  border-color: #0ac97f;
}

.alert-info {
  color: #ffffff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.sub-service-cat-item {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #05264E;
}

.sub-service-cat-item .text-danger+span {
  color: #6c757d
}

.review-reply-wrapper {
  padding: 0 15px;
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
}

.review_reply_container {
  margin-bottom: 15px;
}

.review_reply_container .head_part {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.review_reply_container .info_part {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.review_reply_container .head_part img {
  width: 20px;
  height: 20px;
  object-fit: cover
}

.review_wrapper {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #E0E6F7;
}

.review_container .head_part {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;

}

.review_container .info_part {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.review_container .head_part img {
  width: 40px;
  height: 40px;
  object-fit: cover
}

.hint_box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
}

.hint_box .hint_title {
  font-size: 14px;
  font-weight: 700;
  color: #828282;
  padding-right: 10px;
}

.hint_box .hint_content p {
  display: flex;

}

.hint_box .hint_content p i {
  font-size: 25px;
  padding-right: 10px;
}

.hint_box .hint_content p i.fa-location-crosshairs {
  color: #0d6efd
}

.hint_box .hint_content p i.fa-location-dot {
  color: #e94234;
  padding-left: 3px;
  padding-right: 12px;
}

.service-card-srch.featured {
  border: 1px solid #5166f7;
}

/* NAV MENU IN ADMIN END */
@media (max-width:520px) {

  .business_some {
    flex-wrap: wrap;
    margin-top: 15px
  }

  .business_some_centered .business_some {
    justify-content: center;
  }

  .business_some a {
    margin-right: 10px;
  }

  .business_some:not(:has(:not(:empty))) {
    margin: 0;
  }

  .star-rating {
    float: none !important;
    margin: 0 auto;
  }

  .tab-mobile-header {
    width: 100% !important;
  }

  .tab-w-mobile-view {
    display: block;
  }

  .table-title .btn {
    float: none;
    margin-top: 20px;
  }

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

  .search-form-banner .location-check-btn {
    position: absolute;
    top: 45px;
    right: 0;
    font-size: 19px;
    padding-top: 15px;
    margin-right: 14px;
  }

  .result_page_distance_map {
    font-size: 14px;
    line-height: 16px;
  }
}

.service_attributes_wrapper .title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #05264E;
}

.info-subtitle {
  color: #000;
  font-size: 15px;
}

.service_detail_subtitle {
  font-size: 16px;
  color: #05264e;
  line-height: 22px;
  border-top: 1px solid rgb(235, 235, 235);
  border-bottom: 1px solid rgb(235, 235, 235);
  padding: 10px 0;
  margin: 15px 0
}

.service_detail_subtitle a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.service_detail_subtitle a .name-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;

}

.service_detail_subtitle a .name-wrapper .second-line {
  color: rgb(20, 20, 20);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  margin-top: -6px;
}

.service_detail_subtitle img.blogo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

@media (min-width: 1199px) and (max-width: 1399px) {

  header ul.main-menu>li:nth-child(3),
  header ul.main-menu>li:nth-child(5) {
    display: none;
  }
}

/* Mobile Internal Menu */
@media (min-width: 1199px) {
  .mobile-lang-switcher {
    display: none;
  }

}


@media (max-width: 1199px) {
  .mobile-lang-switcher {
    position: absolute;
    top: -3px;
    right: 60px;
  }

  .banner-homepage5 .banner-inner .row .block-banner {
    padding: 30px 100px;
  }
}

@media (min-width: 991px) {
  .nav__menu {
    display: none;
  }

  .header .main-header .header-nav.mx-auto {
    width: 50%;
  }
}

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

  .category_page_title,
  .filter_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .nav-tavs-profile {
    display: none;
  }

  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 55px;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
    z-index: 9999;
  }

  .mobile-lang-switcher {
    position: absolute;
    top: -3px;
    right: 60px;
  }

  .banner-homepage5 .banner-inner .row .block-banner {
    padding: 30px 20px;
  }


  .content_typography h4,
  .content_typography h5,
  .content_typography h6 {
    font-size: 16px;
    color: #05264E;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 20px;
  }

  .new-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 5px;
    border-bottom: 2px solid #dde8f3;
  }

  .new-tabs ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .new-tabs ul li {
    display: inline-flex;
    flex-shrink: 0;
  }

  .new-tabs a {
    font-size: 14px;
    padding: 4px 0;
  }

  .new-tabs ul li a {
    transition: background-color 0.3s;
  }

  .new-tabs ul li a.active {
    border-bottom: none
  }

  .new-tabs::-webkit-scrollbar {
    height: 5px;
    /* Custom scrollbar height */
  }

  .new-tabs::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
  }

  .right-side-items .card-grid-3-image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
  }

}

.no-results-found {
  border: 1px solid rgba(81, 102, 247, 0.4);
  border-radius: 9px;
  padding: 15px;
  margin-top: 30px;
}

.pac-container {
  z-index: 10000;
}

.nav__list,
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: 10px;
  width: 60px;
  /* you can adjust this width as needed */
  word-wrap: break-word;
  font-size: 10px;
  width: 60px;
  text-align: center;
  line-height: 8px;
  display: none;
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

.wh-front-container {
  margin-top: 15px;
}

.custom-select2-container {
  color: #000000;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 2px;
  font-weight: 400 !important;
  font-size: 12px;
  opacity: 0.3;
  border-bottom: 1px solid #7f7f7f;
}

.article-body ul,
.article-body ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

#categorySearchModalLabel {
  font-size: 12px;
}

#categorySearchModalKeywordInput {
  border: 3px solid rgb(200, 207, 255);
  border-radius: 6px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}

.hovering-label {
  font-size: 12px;
  position: absolute;
  color: #a8a9aa;
  z-index: 7;
  line-height: 14px;
  top: -11px;
  left: 7px;
  padding: 1px 5px;
  font-weight: normal;
  background: #f1f1f5;
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
  text-decoration: underline;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

.accordion-item .accordion-button {
  border-color: #f2f2f2 !important;
  background: transparent;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
  font-weight: 600;
  color: #000;
  font-size: 20px;
}

.accordion-item .accordion-button::after {
  background-color: #f5f8ff;
  padding: 20px;
  background-position: center;
  border-radius: 50%;
}

.accordion-item .accordion-collapse {
  font-size: 18px;
  color: #777 !important;
  border-color: #f2f2f2 !important;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 40px 0;
}


/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media (max-width:385px) {
  .filter_wrapper .search-bar {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }

}

.big-switch {

  height: 2em;
}

.big-switch::before {
  width: calc(2em - 4px);
  top: 2px;
  left: 2px;
}

.form-switch .form-check-input.big-switch {
  width: 4em;
}

.bh_switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.form-check.form-switch.big-form-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form-switch .big-switch-label {
  margin-bottom: 0 !important;
}

.big-switch-label {
  margin-left: 10px;
}

.hours-container .closed {
  display: none;
}

.hours-container.disabled .closed .closed_container {
  background-color: #eaeaea;
  color: #999;
  cursor: not-allowed;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hours-container.disabled .closed {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hours-container.disabled .bh_input_from,
.hours-container.disabled .bh_input_to {
  display: none;
}

.time-open {
  color: #5bc694 !important;
}

.time-closed {
  color: #eb2222 !important;
}

.new-address-badge-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 8px
}

.branch .phone-number-container {
  border-radius: 6px;
  padding-top: 10px;
}

.branch .phone-wrap {
  padding: 5px 0
}

.branch .phone-wrap a {
  font-size: 16px;
  font-weight: 400;
  color: #3C3C3C;
}

.branch .phone-wrap i.copy-icon {
  color: #686868;
}

.new-address-badge-container .badge {
  margin-left: 8px
}

.bg-primary-shadow-badge {
  background-color: rgba(81, 102, 247, .1);
  color: #0d6efd !important;
}

.selected-category {
  padding: 8px 13px;
  border-radius: 20px;
  background-color: rgba(81, 102, 247, .1);
  font-size: 12px;
  font-weight: 600;
  color: #5166f7;
}

.selected-categories {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* smooth scroll on iOS */
  scrollbar-width: none;
  /* Firefox */
  user-select: none;
}

.selected-categories::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}


.overview-info .branch {
  background: #f9f9f8;
  border-radius: 8px;
}

.overview-info .branch .top-part {
  padding: 15px 15px 0 15px;
}

.wh_accordion button {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.branch-flex .branch {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.business_hours_dd_btn {
  background: none;
  border: none;
  font-size: 24px;
}

.business_hours_dd {
  padding: 15px !important;
  width: 220px !important;
}

.business_hours_dd li {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.business_hours_dd li span {
  padding: 0;
}

.service-card-srch .card-grid-2 h6 {
  /* line-height: ; */
}

.service-card-srch .card-block-info a {
  font-size: 15px;
  font-weight: 600;
  display: block;
  line-height: 18px;
}

.service-card-srch .service_title {
  padding-bottom: 7px;
}

.card-grid-2.service-card-srch .card-grid-2-image-left .right-info .name-job {
  font-size: 14px;
  line-height: 16px;
}

.card-grid-2.service-card-srch .stars {
  position: relative;
  padding: 0 2px;
  white-space: nowrap;
  display: block;
  line-height: 16px;
}

.addr-item {
  border-radius: 8px;
  border: 1px solid #E0E6F7;
  padding: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.service-card-srch.scsv2 .image-box img {
  width: 30px;
  height: 30px;
}

.service-card-srch.scsv2 .image-box img.card_service_verified {
  width: 15px;
  height: 15px;
}

.service-card-srch.scsv2 .card-grid-2-image-left {
  padding-bottom: 5px;
}

.card-grid-2.service-card-srch.scsv2 .card-grid-2-image-left .right-info .name-job {
  font-size: 12px;
}

.card-grid-2.service-card-srch.scsv2 .wh-front-container {
  padding-left: 15px;

}

.card-grid-2.service-card-srch.scsv2 .card-grid-2-image-left .image-box {
  min-width: 45px;
  padding-right: 0;
  position: relative;
}

.divider-line-padding {
  padding: 0 15px;
  margin-bottom: 10px;
}

.divider-line {
  height: 1px;
  background: #eaeaea;
}

.map_addr_info_container .addr-item {
  cursor: pointer;
}

.call-to-action-btn {
  background: #109d59 !important;
  font-weight: bold !important;
}


.danger-btn {
  background-color: #cf2a2a !important;
}

.chat-container {
  padding: 9px 0;
  border-top: 1px solid #EBEBEB;
  margin-top: 7px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.chat-container .title {
  font-size: 14px;
}

.chat-container .chat-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.chat-container .chat-icons a {
  margin-left: 10px;
}

.branch .wh-branch-container {
  background-color: #f4f3f1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: 5px;
  padding: 5px 15px;
}

@media(max-width:992px) {
  .branch-flex .branch {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .addr-item {
    width: 100%;
  }

  .home-page-search .form-find .box-industry {
    border: 3px solid rgba(200, 207, 255);
    background-color: #fff;
    margin-top: 8px;
  }

  .home-page-search .form-find .box-industry .categorySearchModalInputTitle span {
    color: #000 !important
  }

  .home-page-search .form-find button.banner-search-btn {
    margin-top: 8px;
  }


}

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

  .business_hours_container .bh_head h4 {
    font-size: 16px;
  }

  .business_hours_container .bh_head p {
    font-size: 11px;
    line-height: 12px;
  }

  .bh_switcher {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }

  .bh_switcher .texts p {
    font-size: 11px;
    line-height: 12px;
  }

  .hour_input_area .switcher {
    width: 100%;
    margin-bottom: 17px;
  }

  .btn-apply-big,
  .btn-grey-big {
    padding: 9px 16px;
    border-radius: 4px;
  }



  .btn-apply-big.btn-apply-icon {
    background-position: 20px 8px;
  }

  .preview_gallery_img img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
  }

  .gallery_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
  }

  .label-in-service {
    width: 280px;
  }
}

@media screen and (max-width: 390px) {
  .mbw100btn {
    width: 100%;
  }

  .overview-info span {
    font-size: 14px;
    padding-right: 0;
  }

  .overview-info span.formatted-phone {
    font-weight: 700;
    font-size: 16px;
  }

  .wh-front-container {
    width: 100%;
  }

  .wh-front-container h5 {
    font-size: 16px;
    margin-top: 20px;
  }
}

.tox-promotion-link {
  display: none !important;
}

@media (min-width: 991px) and (max-width: 1400px) {
  .banner_upload_preview img {
    width: 56% !important;
  }
}

@media (max-width: 500px) {
  .banner-homepage5 .banner-inner .row .block-banner {
    padding: 0
  }





  .content_typography h2 {
    margin-top: 1.22em;
    font-size: 18px;
    line-height: 22px;
  }

  .content_typography h3,
  .content_typography h4,
  .content_typography h5,
  .content_typography h6 {
    margin-top: 1.22em;
    font-size: 18px;
    line-height: 28px;
    color: #05264E;
  }

}

@media (max-width: 410px) {
  /* .select2-container {
    left: 10px !important;
  } */

  .search-form-banner .box-industry {
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
  }

}

/* Search Controls */
.search-controls {
  background: linear-gradient(to right, #fafbfc 0%, #ffffff 100%);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-radius: 10px;
  border: 1px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-summary {
  flex: 1;
}

.summary-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  margin-bottom: 12px;
}

.applied-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  transition: all 0.2s ease;
}

.filter-item:hover {
  border-color: #9ca3af;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 13px;
}

.filter-item.distance .filter-icon {
  background: #dbeafe;
  color: #1e40af;
}

.filter-item.keyword .filter-icon {
  background: #fef3c7;
  color: #92400e;
}

.filter-item.category .filter-icon {
  background: #e9d5ff;
  color: #6b21a8;
}

.filter-value {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.filters-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #1f2937;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filters-btn:hover {
  background: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filters-btn:active {
  transform: translateY(0);
}

.btn-icon {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.btn-label {
  font-size: 14px;
}

.active-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
  padding: 0 7px;
  margin-left: 4px;
}

/* Pulse animation for mobile filter button */
@keyframes filterButtonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 6px 16px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .search-controls {
    padding: 18px 20px;
  }

  .search-summary {
    flex: 1;
    min-width: 0;
  }

  .summary-label {
    font-size: 11px;
  }

  .applied-filters {
    flex-wrap: wrap;
  }

  .filter-item {
    padding: 7px 14px;
    gap: 8px;
  }

  .filter-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .filter-value {
    font-size: 13px;
  }

  .filters-btn {
    padding: 11px 20px;
    gap: 10px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .sd-main-slider img {
    height: 300px;
  }

  .sd-nav-next,
  .sd-nav-prev {
    width: 40px;
    height: 40px;
  }

  .sd-nav-next::after,
  .sd-nav-prev::after {
    font-size: 16px;
  }

  .sd-counter {
    padding: 8px 16px;
    font-size: 13px;
    bottom: 15px;
    left: 15px;
  }

  .sd-current {
    font-size: 16px;
  }

  .sd-thumb-slider .swiper-slide {
    width: 80px !important;
  }

  .sd-thumb-wrap img {
    height: 60px;
  }

  .sd-thumb-slider {
    padding: 3px 0;
  }

  .search-controls {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .search-summary {
    padding: 16px;
    background: linear-gradient(to right, #fafbfc 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid #e8eaed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .summary-label {
    font-size: 11px;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .applied-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .applied-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-item {
    padding: 6px 12px;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .filter-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .filter-value {
    font-size: 13px;
  }

  .filters-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    width: auto;
    background: #1f2937;
    animation: filterButtonPulse 2.5s ease-in-out infinite;
  }

  .filters-btn:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 6px 16px rgba(0, 0, 0, 0.2);
    animation: none;
  }
}

@media (max-width: 480px) {
  .sd-main-slider img {
    height: 250px;
    border-radius: 12px;
  }

  .sd-image-link {
    border-radius: 12px;
  }

  .sd-nav-next,
  .sd-nav-prev {
    width: 36px;
    height: 36px;
  }

  .sd-nav-next::after,
  .sd-nav-prev::after {
    font-size: 14px;
  }

  .sd-counter {
    padding: 6px 12px;
    font-size: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 20px;
  }

  .sd-current {
    font-size: 14px;
  }

  .sd-thumb-slider .swiper-slide {
    width: 70px !important;
  }

  .sd-thumb-wrap {
    border-radius: 8px;
    border-width: 2px;
  }

  .sd-thumb-wrap img {
    height: 50px;
  }

  .sd-thumb-slider {
    padding: 2px 0;
  }

  .search-controls {
    padding: 0 0;
    max-width: 100%;
    overflow: hidden;
  }

  .search-summary {
    padding: 14px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .summary-label {
    font-size: 10px;
    margin-bottom: 8px;
    padding-top: 0;
  }

  .applied-filters {
    gap: 8px;
    margin: 0 -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .filter-item {
    padding: 5px 10px;
    gap: 6px;
  }

  .filter-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .filter-value {
    font-size: 12px;
  }

  .filters-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
    gap: 8px;
  }

  .btn-icon {
    font-size: 14px;
  }

  .active-count {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* ========================================
   Mobile Floating Contact Box Styles
   ======================================== */

/* Hide floating contact on desktop */
.mobile-contact-floating {
  display: none;
}

@media (max-width: 768px) {

  /* Hide desktop branch carousel on mobile */
  /* .branchSwiper {
    display: none !important;
  } */

  /* Floating Contact Button */
  .mobile-contact-floating {
    display: block !important; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1; 
    padding: 12px 16px;
    padding-bottom: 12px; /* Fallback */
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    -webkit-animation: slideUpBounce 0.6s ease-out;
    animation: slideUpBounce 0.6s ease-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    pointer-events: auto; /* Ensure it's clickable */
    background: transparent; /* Ensure no hidden backgrounds */
  }

  .mobile-contact-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    color: #fff;
    background: linear-gradient(135deg, #0BB244 0%, #084e20 100%);
    background-color: #0BB244; /* Fallback */
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(81, 102, 247, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  .mobile-contact-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-transition: left 0.6s ease;
    transition: left 0.6s ease;
  }

  .mobile-contact-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
  }

  .mobile-contact-trigger:active {
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
    box-shadow: 0 3px 12px rgba(81, 102, 247, 0.4), 0 1px 4px rgba(0, 0, 0, 0.15);
  }

  .mobile-contact-trigger i {
    font-size: 20px;
    -webkit-animation: subtleBounce 3s ease-in-out infinite;
    animation: subtleBounce 3s ease-in-out infinite;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  }

  /* Shine animation on hover - using hover on trigger directly for better compatibility */
  .mobile-contact-trigger:hover::before {
    left: 100%;
  }

  @-webkit-keyframes subtleBounce {
    0%,
    100% {
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }

    5% {
      -webkit-transform: translateY(-3px) scale(1.05);
      transform: translateY(-3px) scale(1.05);
    }

    10% {
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes subtleBounce {
    0%,
    100% {
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }

    5% {
      -webkit-transform: translateY(-3px) scale(1.05);
      transform: translateY(-3px) scale(1.05);
    }

    10% {
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes shine {
    from {
      left: -100%;
    }

    to {
      left: 100%;
    }
  }

  @-webkit-keyframes slideUpBounce {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      opacity: 0;
    }

    60% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
      opacity: 1;
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes slideUpBounce {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      opacity: 0;
    }

    60% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
      opacity: 1;
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  /* Bottom Sheet Styles */
  .contact-bottom-sheet {
    position: fixed;
    inset: 0;
    z-index: 10000; /* Higher than floating button (9999) */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .contact-bottom-sheet.active {
    pointer-events: all;
    opacity: 1;
  }

  .bottom-sheet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .contact-bottom-sheet.active .bottom-sheet-overlay {
    opacity: 1;
  }

  .bottom-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 80vh;
    background: white;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.15);
  }

  .contact-bottom-sheet.active .bottom-sheet-content {
    transform: translateY(0);
  }

  /* Bottom Sheet Header */
  .bottom-sheet-header {
    position: relative;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 0 auto 16px;
  }

  .bottom-sheet-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #05264e;
    text-align: center;
  }

  .sheet-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
  }

  .sheet-close:active {
    background: #e8e8e8;
    transform: translateY(-50%) scale(0.95);
  }

  .sheet-close i {
    font-size: 18px;
    color: #666;
  }

  /* Bottom Sheet Body */
  .bottom-sheet-body {
    overflow-y: auto;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }

  /* Contact Branch Item */
  .contact-branch-item {
    margin-bottom: 0;
  }

  .branch-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    background: #f9f9f8;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .branch-location i {
    color: #5166F7;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .branch-location .location-text {
    color: #05264e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }

  .branch-location .distance-info {
    color: #888;
    font-size: 13px;
    font-weight: 400;
    margin-top: 2px;
  }

  /* Contact Action Buttons */
  .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .contact-action-btn:active {
    transform: scale(0.98);
    background: #f9f9f9;
  }

  .contact-action-btn i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-action-btn>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .action-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .action-value {
    font-size: 16px;
    color: #05264e;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Phone Button */
  .phone-btn i {
    background: #e8f5e9;
    color: #22A900;
  }

  .phone-btn:active {
    border-color: #22A900;
  }

  /* WhatsApp Button */
  .whatsapp-btn i {
    background: #e8f8f0;
    color: #25D366;
  }

  .whatsapp-btn:active {
    border-color: #25D366;
  }

  /* Viber Button */
  .viber-btn i {
    background: #f3f1f9;
    color: #665CAC;
  }

  .viber-btn:active {
    border-color: #665CAC;
  }

  /* Mobile Working Hours */
  .mobile-working-hours {
    margin-top: 16px;
    background: white;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
  }

  .wh-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .wh-summary:active {
    background: #f9f9f9;
  }

  .wh-current {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  .wh-current i {
    color: #5166F7;
    font-size: 16px;
  }

  .wh-current span {
    font-size: 14px;
    color: #05264e;
    font-weight: 500;
  }

  .wh-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .wh-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .wh-badge.wh-open {
    background: #e8f5e9;
    color: #22A900;
  }

  .wh-badge.wh-closed {
    background: #ffebee;
    color: #d32f2f;
  }

  .wh-toggle-icon {
    color: #888;
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .wh-details {
    border-top: 1px solid #f0f0f0;
    padding: 12px 16px;
    background: #fafafa;
  }

  .wh-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }

  .wh-day.wh-today {
    color: #5166F7;
    font-weight: 600;
  }

  .wh-day-name {
    font-size: 14px;
    color: #05264e;
  }

  .wh-day.wh-today .wh-day-name {
    color: #5166F7;
  }

  .wh-day-hours {
    font-size: 14px;
    color: #666;
  }

  .wh-day.wh-today .wh-day-hours {
    color: #5166F7;
    font-weight: 600;
  }

  .wh-day-closed {
    color: #999 !important;
    font-style: italic;
  }

  .wh-day-closed i {
    font-size: 12px;
    margin-right: 4px;
  }

  /* Contact Divider */
  .contact-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e8e8e8 50%, transparent);
    margin: 24px 0;
  }

  /* Add padding to body content to account for floating button */
  body {
    padding-bottom: 80px;
  }

  /* Scrollbar styling for bottom sheet */
  .bottom-sheet-body::-webkit-scrollbar {
    width: 4px;
  }

  .bottom-sheet-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .bottom-sheet-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
  }
}

/* Desktop - ensure no changes */
@media (min-width: 769px) {

  .mobile-contact-floating,
  .contact-bottom-sheet {
    display: none !important;
  }
}

/* ===================================
   BUSINESS DETAIL PAGE - MODERN STYLES
   =================================== */

/* Banner Enhancements */
.bd-banner-modern {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.bd-banner-modern img {
  transition: transform 0.3s ease;
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.bd-banner-modern:hover img {
  transform: scale(1.02);
}

.bd-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

/* Profile Header */
.bd-profile-header {
  background: white;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.bd-profile-header:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bd-logo-wrapper {
  position: relative;
  margin-right: 20px;
}


.bd-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bd-rating {
  margin-top: 8px;
}

.bd-star-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
  border: 1px solid #fca95d33;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bd-star-badge:hover {
  background: linear-gradient(135deg, #ffecd6 0%, #fff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 169, 93, 0.2);
}

.bd-star-badge i {
  color: #fca95d;
  font-size: 16px;
}

.bd-star-badge strong {
  color: #1a1a1a;
  font-size: 18px;
}

.bd-star-badge .bd-review-count {
  color: #666;
  font-size: 14px;
}

.bd-social-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Content Section */
.bd-content-section {
  padding: 20px 0;
}

/* Section Headers */
.bd-section-header {
  margin-bottom: 32px;
}

.bd-section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  margin-top: 0;
}

.bd-section-icon {
  font-size: 24px;
  color: #5166f7;
  background: rgba(81, 102, 247, 0.1);
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  line-height: 1;
}

.bd-section-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-section-header .bd-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.bd-section-subtitle {
  color: #666;
  font-size: 16px;
  margin: 8px 0 0 60px;
}

/* Section Dividers */
.bd-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 50px 0;
}

/* About Section */
.bd-about {
  padding: 20px 0;
}

.bd-description {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  line-height: 1.8;
  color: #333;
}

.bd-description p {
  margin-bottom: 16px;
}

/* Gallery Section */
.bd-gallery {
  padding: 20px 0;
}

.bd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.bd-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.bd-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bd-gallery-item:hover img {
  transform: scale(1.1);
}

.bd-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(81, 102, 247, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bd-gallery-item:hover .bd-gallery-overlay {
  opacity: 1;
}

.bd-gallery-overlay i {
  color: white;
  font-size: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bd-banner-modern img {
    height: 200px;
  }

  .bd-profile-header {
    padding: 20px;
  }

  .bd-title {
    font-size: 22px;
  }

  .bd-section-header .bd-section-title {
    font-size: 24px;
  }

  .bd-section-subtitle {
    margin-left: 0;
    margin-top: 8px;
  }

  .bd-section-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .bd-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .bd-divider {
    margin: 30px 0;
  }

  .bd-service-title {
    font-size: 16px;
  }

  .bd-description {
    padding: 20px;
  }

}

@media (max-width: 500px) {
  .bd-section-header .bd-section-title {
    margin: 0;
    font-size: 18px;
  }
}

/* ============================================
   MODERN SERVICE CARD - REDESIGNED UI/UX
   ============================================ */

.service-card-modern {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E8ECF4;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5166f7, #6B7FFF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card-modern:hover {
  border-color: #5166f7;
  box-shadow: 0 12px 32px rgba(81, 102, 247, 0.12);
  transform: translateY(-4px);
}

.service-card-modern:hover::before {
  transform: scaleX(1);
}

/* Service Header */
.service-card-header {
  margin-bottom: 16px;
}

.service-title {
  margin: 0 0 8px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #05264E;
}

.service-title-link {
  color: #05264E;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.service-title-link:hover {
  color: #5166f7;
}

.service-rating-wrapper {
  display: flex;
  align-items: center;
}

/* Business Info Section */
.service-card-business {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #F0F3F8;
  border-bottom: 1px solid #F0F3F8;
  margin-bottom: 16px;
  flex-grow: 1;
}

.business-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.business-avatar-link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #F8FAFF;
  transition: transform 0.2s ease;
}

.business-avatar-link:hover {
  transform: scale(1.05);
}

.business-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.verified-badge-wrapper {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.verified-badge-icon {
  width: 16px;
  height: 16px;
}

.business-info-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-name {
  color: #05264E;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.business-name:hover {
  color: #5166f7;
}

.business-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B7A8F;
  flex-wrap: wrap;
}

.hours-time {
  font-weight: 500;
  color: #4A5568;
}

.hours-separator {
  color: #CBD5E0;
}

.hours-status {
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hours-status.status-open {
  color: #059669;
  background: #D1FAE5;
}

.hours-status.status-closed {
  color: #DC2626;
  background: #FEE2E2;
}

/* Footer Section */
.service-card-footer {
  margin-top: auto;
}

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B7A8F;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 4px 0;
}

.location-text:hover {
  color: #5166f7;
}

.location-text:hover .location-icon {
  stroke: #5166f7;
  transform: translateY(-1px);
}

.location-icon {
  flex-shrink: 0;
  stroke: #A0ABB8;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.show_all_addresses {
  font-weight: 500;
  color: #5166f7;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.show_all_addresses:hover {
  color: #3D4FD9;
  text-decoration-style: solid;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card-modern {
    padding: 16px;
    border-radius: 12px;
  }

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

  .service-card-business {
    gap: 10px;
    padding: 12px 0;
  }

  .business-avatar-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .business-name {
    font-size: 14px;
  }

  .business-hours {
    font-size: 12px;
  }

  .hours-status {
    font-size: 11px;
    padding: 2px 6px;
  }

  .location-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-card-modern {
    padding: 14px;
  }

  .service-title {
    font-size: 15px;
  }

  .business-avatar-link {
    width: 38px;
    height: 38px;
  }

  .verified-badge-wrapper {
    width: 18px;
    height: 18px;
  }

  .verified-badge-icon {
    width: 14px;
    height: 14px;
  }
}

/* Hover Up Animation Enhancement */
.service-card-modern.hover-up {
  will-change: transform;
}

/* ============================================
   SERVICE CARD V2 - MODERN REDESIGN
   ============================================ */

.service-card-v2-modern {
  background: #FAFBFC;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Gradient Border on Hover */
.service-card-v2-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5166f7, #6B7FFF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card-v2-modern:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.service-card-v2-modern:hover::before {
  transform: scaleX(1);
}

/* Featured Service - Subtle Styling */
.service-card-v2-modern.is-featured {
  background: linear-gradient(180deg, #FAFBFC 0%, #F0F4FF 100%);
  position: relative;
}

.service-card-v2-modern.is-featured:hover {
  background: linear-gradient(180deg, #ffffff 0%, #E5EDFF 100%);
}

.service-card-v2-modern.is-featured::before {
  background: linear-gradient(90deg, #5166f7, #6B7FFF);
  height: 4px;
}

/* Header Section */
.sc2-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc2-service-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #05264E;
}

.sc2-title-link {
  color: #05264E;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.sc2-title-link:hover {
  color: #5166f7;
}

/* Location & Distance Row */
.sc2-location-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sc2-location-wrapper {
  flex: 1;
  min-width: 0;
}

.sc2-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #59534f;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease;
  word-break: break-word;
}

.sc2-location:hover {
  color: #5166f7;
}

.sc2-location:hover .sc2-location-icon {
  stroke: #5166f7;
}

.sc2-location-icon {
  flex-shrink: 0;
  stroke: #A8A29E;
  transition: all 0.2s ease;
}

.sc2-location.show_all_addresses {
  font-weight: 500;
  color: #5166f7;
}

.sc2-location.show_all_addresses:hover {
  text-decoration: underline;
}

.sc2-distance {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #F0F4FF;
  border-radius: 5px;
  border: 1px solid #D6E0FF;
  font-size: 12px;
  font-weight: 600;
  color: #5166f7;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sc2-distance:hover {
  background: #E5EDFF;
  border-color: #C7D7FE;
}

.sc2-distance-icon {
  flex-shrink: 0;
  stroke: #5166f7;
}

/* Meta Section (Rating & Hours) */
.sc2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0 0 0;
  border-top: 1px solid #F0F3F8;
  flex-wrap: wrap;
}

.sc2-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #FFFBEB;
  border-radius: 5px;
  border: 1px solid #FDE68A;
  font-size: 13px;
  font-weight: 600;
  color: #05264E;
  transition: all 0.2s ease;
}

.sc2-rating:hover {
  background: #FEF3C7;
  border-color: #FCD34D;
  box-shadow: 0 2px 4px rgba(251, 191, 36, 0.1);
}

.sc2-star-icon {
  flex-shrink: 0;
  fill: #FBBF24;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.2));
  transition: transform 0.2s ease;
}

.service-card-v2-modern:hover .sc2-star-icon {
  transform: rotate(15deg) scale(1.1);
}

.sc2-rating.no-rating {
  background: linear-gradient(135deg, #F3F4F6 0%, #F9FAFB 100%);
  border-color: #E5E7EB;
}

.sc2-rating.no-rating:hover {
  background: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
}

.sc2-rating.no-rating .sc2-star-icon {
  fill: #9CA3AF;
  filter: none;
}

.sc2-rating.no-rating .sc2-rating-value {
  color: #6B7280;
}

.sc2-rating-value {
  font-weight: 700;
  color: #B45309;
  font-size: 13px;
}

.sc2-reviews-count {
  font-size: 11px;
  color: #78716C;
  font-weight: 500;
}

.sc2-hours {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #78716C;
}

.sc2-hours-time-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
}

.sc2-clock-icon {
  flex-shrink: 0;
  stroke: #A8A29E;
  width: 12px;
  height: 12px;
}

.sc2-hours-time {
  font-weight: 500;
  color: #59534f;
  font-size: 12px;
}

.sc2-hours-status {
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sc2-hours-status.status-open {
  color: #059669;
  background: #D1FAE5;
}

.sc2-hours-status.status-closed {
  color: #DC2626;
  background: #FEE2E2;
}

/* Business Section */
.sc2-business {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid #F0F3F8;
}

.sc2-business-avatar {
  flex-shrink: 0;
}

.sc2-avatar-link {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  overflow: hidden;
  background: #F8FAFF;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sc2-avatar-link:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(81, 102, 247, 0.15);
}

.sc2-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sc2-business-info {
  flex: 1;
  min-width: 0;
}

.sc2-business-name {
  color: #6B7A8F;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  transition: color 0.2s ease;
}

.sc2-business-name:hover {
  color: #5166f7;
}

.sc2-individual-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: #E0E7FF;
  color: #4338CA;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sc2-verified-badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card-v2-modern {
    padding: 16px;
    border-radius: 12px;
    gap: 14px;
  }

  .sc2-service-title {
    font-size: 16px;
  }

  .sc2-location-distance {
    gap: 10px;
  }

  .sc2-location,
  .sc2-distance {
    font-size: 12px;
  }

  .sc2-meta {
    gap: 12px;
    padding: 10px 0;
  }

  .sc2-rating {
    font-size: 14px;
    padding: 5px 10px;
  }

  .sc2-rating-value {
    font-size: 15px;
  }

  .sc2-reviews-count {
    font-size: 12px;
  }

  .sc2-hours {
    font-size: 12px;
  }

  .sc2-avatar-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .sc2-business-name {
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  .service-card-v2-modern {
    padding: 14px;
    gap: 12px;
  }

  .sc2-service-title {
    font-size: 15px;
  }

  .sc2-location,
  .sc2-distance {
    font-size: 12px;
  }

  .sc2-distance {
    padding: 3px 8px;
  }

  .sc2-meta {
    gap: 8px;
    flex-wrap: wrap;
  }

  .sc2-rating {
    font-size: 13px;
    padding: 4px 8px;
  }

  .sc2-rating-value {
    font-size: 14px;
  }

  .sc2-reviews-count {
    font-size: 11px;
  }

  .sc2-hours {
    font-size: 11px;
  }


  .sc2-hours-status {
    padding: 2px 6px;
    font-size: 10px;
  }

  .sc2-avatar-link {
    width: 30px;
    height: 30px;
  }

  .sc2-business-name {
    font-size: 13px;
  }

  .sc2-individual-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* Hover Up Animation */
.service-card-v2-modern.hover-up {
  will-change: transform;
}