:root {
  /**
     @Font-Family Declaration
   */
  --mbs-ff-body: 'Bai Jamjuree', sans-serif;
  --mbs-ff-heading: 'Bai Jamjuree', sans-serif;
  --mbs-ff-fontawesome: "Font Awesome 6 Free";
  /**
     @Font-weight Declaration
   */
  --mbs-fw-normal: normal;
  --mbs-fw-thin: 100;
  --mbs-fw-elight: 200;
  --mbs-fw-light: 300;
  --mbs-fw-regular: 400;
  --mbs-fw-medium: 500;
  --mbs-fw-sbold: 600;
  --mbs-fw-bold: 700;
  --mbs-fw-ebold: 800;
  --mbs-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --mbs-fs-body: 16px;
  --mbs-fs-p: 16px;
  --mbs-fs-h1: 38px;
  --mbs-fs-h2: 34px;
  --mbs-fs-h3: 22px;
  --mbs-fs-h4: 20px;
  --mbs-fs-h5: 18px;
  /**
     @Color Declaration
   */
  --mbs-color-common-white: #ffffff;
  --mbs-color-common-black: #121616;
  --mbs-color-text-body: #364e52;
  --mbs-color-text-body-2: #a9b8b8;
  --mbs-color-text-body-3: #67787a;
  --mbs-color-text-body-4: #18292c;
  --mbs-color-theme-primary: #d61f3c;
  --mbs-color-theme-bg: #d8e5e5;
  --mbs-color-grey-1: #f6f7fa;
  --mbs-color-grey-2: #fbfbfb;
  --mbs-color-border-1: #c9d1d1;
  --mbs-color-border-2: #313d3d;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-main,
html {
  position: relative;
}

body {
  font-family: var(--mbs-ff-body);
  font-size: var(--mbs-fs-body);
  font-weight: normal;
  color: var(--mbs-color-text-body);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mbs-ff-heading);
  color: var(--mbs-color-common-black);
  margin-top: 0px;
  font-weight: var(--mbs-fw-medium);
  line-height: 1.2;
  letter-spacing: -0.03em;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--mbs-fs-h1);
  line-height: 1.108;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }

  .sec-heading .sec-title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }

  .sec-heading .sec-title {
    font-size: 34px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h1 {
    font-size: 45px;
  }

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

h2 {
  font-size: var(--mbs-fs-h2);
  line-height: 1.125;
}



@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--mbs-fs-h3);
  line-height: 1.25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: var(--mbs-fs-h4);
  line-height: 1.333;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: var(--mbs-fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--mbs-fs-h6);
  line-height: 1.444;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}


a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: var(--mbs-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
  outline: none;
  background-color: var(--mbs-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--mbs-fs-body);
  border: 1px solid var(--mbs-color-grey-1);
  color: var(--mbs-color-text-body);
  padding: 12px 15px;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  background: var(--mbs-color-grey-1);
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: var(--mbs-color-theme-primary) var(--mbs-color-common-white);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--mbs-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--mbs-color-text-body);
  font-size: var(--mbs-fs-body);
  opacity: 1;
}

*::-moz-placeholder {
  color: var(--mbs-color-text-body);
  font-size: var(--mbs-fs-body);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--mbs-color-text-body);
  font-size: var(--mbs-fs-body);
  opacity: 1;
}

*::-ms-input-placeholder {
  color: var(--mbs-color-text-body);
  font-size: var(--mbs-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--mbs-color-text-body);
  font-size: var(--mbs-fs-body);
  opacity: 1;
}

b,
strong {
  font-weight: 600;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.section-gap {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-gap-page {
  padding-top: 20px;
  padding-bottom: 120px;
}

.product-gap {
  padding-top: 20px;
  padding-bottom: 0px;
}

.block-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-gap-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.gap-top,
.section-top-gap {
  padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .gap-top,
  .section-top-gap {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .gap-top,
  .section-top-gap {
    padding-top: 70px;
  }
}

.gap-bottom,
.section-bottom-gap {
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .gap-bottom,
  .section-bottom-gap {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .gap-bottom,
  .section-bottom-gap {
    padding-bottom: 70px;
  }
}

.section-gap-x {
  margin-left: 50px;
  margin-right: 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap-x {
    margin-left: 0;
    margin-right: 0;
  }
}

.section-separator {
  border-top: 1px dashed var(--mbs-color-border-1);
}

.sticky-lg-top {
  top: 30px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body:has(.sticky) .sticky-lg-top {
  top: 115px;
}

.grey-bg {
  background-color: var(--mbs-color-grey-1);
}

.page-bg {
  background-color: var(--mbs-color-grey-1);
}

/**
  Buttons CSS
*/
.mbs-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
  font-weight: var(--mbs-fw-sbold);
  padding: 0 0 0 25px;
  text-align: center;
  border-radius: 0;
  line-height: 20px;
  z-index: 2;
  overflow: hidden;
  background-color: var(--mbs-color-theme-primary);
}

.mbs-primary-btn .btn-text {
  color: var(--mbs-color-common-white);
  overflow: hidden;
  padding-right: 15px;
}

.mbs-primary-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.mbs-primary-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background-color: var(--mbs-color-common-black);
}

.mbs-primary-btn .btn-icon i {
  color: var(--mbs-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mbs-primary-btn.btn-dark {
  background-color: var(--mbs-color-common-black);
}

.mbs-primary-btn.btn-dark .btn-icon {
  background-color: var(--mbs-color-common-white);
}

.mbs-primary-btn.btn-dark .btn-icon i {
  color: var(--mbs-color-common-black);
}

.mbs-primary-btn.transparent-btn {
  background-color: transparent;
  border: 1px solid var(--mbs-color-border-1);
}

.mbs-primary-btn.transparent-btn .btn-text {
  color: var(--mbs-color-common-black);
}

.mbs-primary-btn.transparent-btn:hover {
  border-color: var(--mbs-color-common-black);
}

.mbs-primary-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.mbs-primary-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}


.text-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  font-size: 16px;
  font-weight: var(--mbs-fw-sbold);
  text-align: center;
  line-height: 20px;
  z-index: 2;
}

.text-btn .btn-text {
  color: var(--mbs-color-common-black);
  overflow: hidden;
}

.text-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.text-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}

.text-btn .btn-icon i {
  color: var(--mbs-color-common-black);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.text-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}


.text-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
  background-color: var(--mbs-color-common-white);
  position: relative;
  z-index: 1000;
}

.header-area.header-1 {
  margin-bottom: 15px;
}

.header-area.header-1 .header-wrapper {
  padding: 0 18px;
  background-color: var(--mbs-color-common-white);
}

.header-area.header-2.header-absolute {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 30px;
  left: 15px;
  width: calc(100% - 60px);
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}

.header-area.header-2.header-absolute .search-popup {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-area.header-2.header-absolute .search-popup .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.header-area.header-2.header-absolute .search-popup .search-box input[type=text] {
  background-color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.header-2.header-absolute {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
}

.header-area.header-2 .header-wrapper {
  padding: 0 8px;
}

.header-area.header-3.header-absolute {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  background-color: #ffffff;
  z-index: 999;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.header-3.header-absolute {
    width: 100%;
  }
}

.header-area.header-3 .header-wrapper {
  padding: 0 12px;
}

.header-area.header-duplicate {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.header-area.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: sticky 0.6s;
  animation: sticky 0.6s;
  border-bottom: none;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 5%);
  opacity: 1;
  visibility: visible;
  background-color: var(--mbs-color-common-white);
  display: block;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.sticky {
    width: 100%;
  }
}

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

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 0 8px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 0 4px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 15px 0px;
  }
}

.header-top {
  background-color: var(--mbs-color-theme-primary);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 12px;
  margin-bottom: 15px;
}

.header-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top-content .topbar-text {
  color: var(--mbs-color-common-white);
  padding: 13px 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.header-top-content .topbar-text i {
  color: var(--mbs-color-common-white);
  font-size: 20px;
}

.header-top-content .topbar-text a {
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header-top-content .topbar-text a::after {
  content: "\e913";
  font-size: 21px;
  line-height: 1.2;
  font-family: "Phosphor" !important;
  font-weight: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--mbs-color-common-white);
}

.header-top-content .topbar-text a:hover {
  opacity: 0.7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-content .topbar-text {
    font-size: 15px;
  }

  .header-top-content .topbar-text i {
    font-size: 18px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .topbar-text {
    font-size: 15px;
    padding: 10px 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-top-content .topbar-text i {
    font-size: 18px;
  }
}

.header-top-content .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-top-content .header-info .info-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 15px;
  border-left: 1px dashed rgba(255, 255, 255, 0.15);
}

.header-top-content .header-info .info-item:last-child {
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .header-info .info-item:last-child {
    display: none;
  }
}

.header-top-content .header-info .info-item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--mbs-color-common-white);
}

.header-top-content .header-info .info-item a {
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .header-info .info-item {
    border: 0;
    padding: 0 10px 10px 10px;
  }
}

.header-top-content .header-info .social-links ul li a {
  width: 22px;
  height: 22px;
  font-size: 14px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}


.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-wrapper {
    padding: 15px 5px;
  }
}

.site-logo .logo {
  display: inline-block;
  width: 100%;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  transform: perspective(1000px) translateZ(0);
}

.site-logo .logo:hover {
  transform: perspective(1000px) translateZ(50px) scale(1.05) rotate(-10deg) translateY(10px);
  filter: brightness(1.1);
  z-index: 10;
}

.site-logo .logo img {
  max-width: 185px;
}

.menu-area {
  gap: 25px;
}

.header-sticky.sticky .site-logo .logo:hover {
  transform: none;
  filter: brightness(1);
}

.mbs-mobile-menu {
  display: none !important;
}

.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.mainmenu ul>li {
  position: relative;
  z-index: 1;
}

.mainmenu ul>li>a {
  position: relative;
  font-size: 16px;
  color: var(--mbs-color-common-black);
  display: block;
  padding: 37px 0;
  font-weight: var(--mbs-fw-medium);
  line-height: 1;
}

.mainmenu ul>li.menu-item-has-children>a,
.mainmenu ul>li.has-dropdown>a {
  padding-right: 20px;
}

.mainmenu ul>li.menu-item-has-children>a::after,
.mainmenu ul>li.has-dropdown>a::after {
  content: "\e929";
  font-family: "Phosphor";
  color: inherit;
  font-size: 12px;
  position: absolute;
  top: 40px;
  right: 0;
}

.mainmenu ul>li.menu-item-has-children:hover>a::after,
.mainmenu ul>li.has-dropdown:hover>a::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mainmenu ul>li.current-menu-ancestor a,
.mainmenu ul>li.current-menu-item a,
.mainmenu ul>li:hover a {
  color: var(--mbs-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor a::after,
.mainmenu ul>li.current-menu-item a::after,
.mainmenu ul>li:hover a::after {
  color: var(--mbs-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor a::before,
.mainmenu ul>li.current-menu-item a::before,
.mainmenu ul>li:hover a::before {
  opacity: 1;
  visibility: visible;
}

.mainmenu ul>li>.sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  top: 100%;
  left: 0;
  z-index: 99;
  text-align: left;
  background-color: var(--mbs-color-common-white);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mainmenu ul>li>.sub-menu>li {
  display: block;
  width: 100%;
}

.mainmenu ul>li>.sub-menu>li>a {
  position: relative;
  padding: 10px 20px;
  display: block;
  color: var(--mbs-color-text-body);
}

.mainmenu ul>li>.sub-menu>li>a::before {
  display: none;
}

.mainmenu ul>li>.sub-menu>li:last-child {
  padding-bottom: 0;
}

.mainmenu ul>li>.sub-menu>li.menu-item-has-children>a::after,
.mainmenu ul>li>.sub-menu>li.has-dropdown>a::after {
  content: "\e930";
  top: 10px;
  right: 15px;
  color: var(--mbs-color-text-body);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a,
.mainmenu ul>li>.sub-menu>li:hover>a {
  color: var(--mbs-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::before,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::before,
.mainmenu ul>li>.sub-menu>li:hover>a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::after,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::after,
.mainmenu ul>li>.sub-menu>li:hover>a::after {
  color: var(--mbs-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>.sub-menu {
  left: 100%;
  top: -10px;
}

.mainmenu ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: inherit;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 16px;
  }
}

.menu-product-search-link {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 400px;
  overflow: hidden;
  padding: 35px 45px 35px 30px;
  border-left: 2px solid var(--mbs-color-grey-1);
  width: 37.5%;
  flex: 0 0 37.5%;
  position: relative;
}

.menu-product-search .heading-wrap-content {
  gap: 5px;
  margin-bottom: 8px !important;
}

.menu-product-search .mps-content {
  padding-top: 28px;
  flex: 1;
}

.menu-product-search .heading-wrap-content .sec-heading {
  max-width: max-content;

}

.menu-product-search .sec-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.125;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  display: block;
  color: var(--mbs-color-common-black);
}

.menu-product-search p {
  color: var(--mbs-color-text-body);
  position: relative;
  z-index: 99;
}

.menu-product-search {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.menu-product-search .mps-icon {
  flex: 0 0 auto;
  font-size: 84px;
  margin-top: -20px;
  color: var(--mbs-color-common-black);
}

@media screen and (max-width: 1299px) {
  .menu-product-search .mps-icon {
    display: none;
  }

  .menu-product-search .mps-content {
    padding-top: 0px;
  }
}

.header-search {
  line-height: 1;
  position: relative;
}

.header-search .search {
  color: var(--mbs-color-common-black);
  font-size: 20px;
  line-height: 1;
  width: 45px;
  height: 45px;
  margin-top: -2px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-search .search i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search .search {
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
}

.header-search .search.search-hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.header-search .search-close-btn {
  color: var(--mbs-color-common-black);
  font-size: 20px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--mbs-color-grey-1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.header-search .search-close-btn i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search .search-close-btn {
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
}

.header-search .search-close-btn.close-show {
  opacity: 1;
  visibility: visible;
}

.header-contact {
  font-size: 20px;
  line-height: 1;
  color: var(--mbs-color-common-black);
  gap: 8px;
}

.header-contact .call-text {
  font-weight: var(--mbs-fw-sbold);
  position: relative;
}

.header-contact .call-text::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.header-contact:hover .call-text::after {
  -webkit-animation: linehover 0.8s linear;
  animation: linehover 0.8s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-contact {
    font-size: 18px;
  }
}

.header-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  z-index: 1002;
  border-left: 1px solid #333;
  margin-left: 18px;
  padding-left: 18px;
}

.header-right-item .mbs-primary-btn .btn-icon {
  width: 38px;
  height: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-item .mbs-primary-btn .btn-icon {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-item {
    gap: 12px;
  }
}

.menu-bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.menu-bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--mbs-color-common-black);
  border-radius: 10px;
  margin-right: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-bar span:last-child,
.menu-bar span:first-child {
  width: 25px;
}

.menu-bar.mobile-menu-bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--mbs-color-theme-primary);
  border-radius: 4px;
}

.menu-bar.mobile-menu-bar span {
  background-color: var(--mbs-color-common-white);
}

.menu-bar:hover span {
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu-bar {
    margin-left: 0;
  }
}

.header-2.header-absolute .mainmenu>ul>li>a {
  color: var(--mbs-color-common-white);
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-2.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-2.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
  color: currentColor;
  top: 35px;
}

.header-2.header-absolute .mainmenu>ul>li:hover>a,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a {
  color: var(--mbs-color-text-body-2);
}

.header-2.header-absolute .mainmenu>ul>li:hover>a::after,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a::after {
  color: currentColor;
}

.header-2.header-absolute .menu-bar span {
  background-color: var(--mbs-color-common-white);
}

.header-3.header-absolute .mainmenu>ul>li>a {
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-3.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-3.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
  color: currentColor;
  top: 35px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.mbs-footer-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.footer-main-area {
  position: relative;
  padding: 100px 0 90px 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-main-area {
    padding: 70px 0;
  }
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 25px;
}

.award-logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
}

.award-logo-area .award-logo {
  max-width: 96px;
}

.footer-widget .footer-text {
  max-width: 280px;
  width: 100%;
}

.footer-widget .footer-text p {
  margin-top: 28px;
  margin-bottom: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .footer-text p {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .footer-text {
    max-width: 100%;
  }
}

.footer-widget .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 33px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .title {
    margin-bottom: 18px;
  }
}

.footer-widget.footer-col-1 .footer-text p {
  color: var(--mbs-color-text-body-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget.footer-col-1 {
    margin-bottom: 10px;
  }
}

.social-links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.social-links ul li a i {
  color: var(--mbs-color-theme-bg);
}

.social-links ul li a:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.social-links ul li a:hover i {
  color: var(--mbs-color-common-white);
}

.social-links ul li::after {
  display: none;
}

.social-links.style-2 ul li a {
  background-color: var(--mbs-color-common-white);
  opacity: 0.4;
}

.social-links.style-2 ul li a i {
  color: var(--mbs-color-theme-primary);
}

.social-links.style-2 ul li a:hover {
  opacity: 1;
}


.social-links.style-3 ul li a i {
  color: #7d7d7d;
}


.social-links.style-3 ul li a:hover i {
  color: var(--mbs-color-common-white);
}

.widget-nav-menu {
  padding-left: 40px;
}

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

.widget-nav-menu ul li {
  padding: 6px 0;
}

.widget-nav-menu ul li:first-child {
  padding-top: 0;
}

.widget-nav-menu ul li a {
  color: var(--mbs-color-text-body);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.widget-nav-menu ul li a .badge {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-radius: 50px;
  padding: 3px 6px 4px;
}

.widget-nav-menu ul li a:hover {
  color: var(--mbs-color-theme-primary);
  padding-left: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-nav-menu {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-nav-menu {
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-nav-menu {
    margin-top: 30px;
  }
}

.widget-nav-menu.footer-col-3,
.widget-nav-menu.footer-col-2 {
  -webkit-padding-start: 115px;
  padding-inline-start: 115px;
}

.widget-nav-menu.footer-col-3 .title,
.widget-nav-menu.footer-col-2 .title {
  color: var(--mbs-color-common-white);
}

.widget-nav-menu.footer-col-3 ul li a,
.widget-nav-menu.footer-col-2 ul li a {
  color: var(--mbs-color-text-body-2);
}

.widget-nav-menu.footer-col-3 ul li a:hover,
.widget-nav-menu.footer-col-2 ul li a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {

  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    -webkit-padding-start: 70px;
    padding-inline-start: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    margin-top: 30px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.widget-nav-menu.footer-col-3 {
  -webkit-padding-start: 120px;
  padding-inline-start: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu.footer-col-3 {
    -webkit-padding-start: 80px;
    padding-inline-start: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-nav-menu.footer-col-3 {
    margin-top: 30px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.widget-subscribe {
  max-width: 350px;
  width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.widget-subscribe .title {
  margin-bottom: 25px;
  font-weight: var(--mbs-fw-medium);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-subscribe {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe {
    max-width: 100%;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    margin-top: 30px;
  }
}

.subscribe-form {
  position: relative;
}

.subscribe-form input[type=email] {
  height: 64px;
  padding: 15px 60px 15px 25px;
  border: 0;
  border-radius: 10px;
}

.subscribe-form input[type=checkbox] {
  position: relative;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--mbs-color-common-black);
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.subscribe-form input[type=checkbox]::before {
  content: "\e911";
  font-size: 10px;
  line-height: 1;
  font-family: "Phosphor" !important;
  color: var(--mbs-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.subscribe-form input[type=checkbox]:checked {
  background-color: var(--mbs-color-common-black);
}

.subscribe-form input[type=checkbox]:checked::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.subscribe-form button {
  position: absolute;
  width: 64px;
  height: 64px;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: var(--mbs-color-theme-primary);
}

.subscribe-form button i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.subscribe-form button:hover i,
.subscribe-form button:focus i {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.subscribe-form button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 24px;
  border-left: 1px solid var(--mbs-color-border-1);
}

.subscribe-form label {
  color: var(--mbs-color-text-body);
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe-form label a {
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
  margin-left: 4px;
}

.subscribe-form label a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .subscribe-form {
    margin-top: 18px;
  }
}

.copyright-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0 10px;
  z-index: 99;
  position: relative;
}

.copyright-content-area .footer-contact ul {
  list-style: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
}

.copyright-content-area .footer-contact ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  color: var(--mbs-color-text-body);
}

.copyright-content-area .footer-contact ul li a .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--mbs-color-theme-primary);
  font-size: 28px;
  line-height: 1;
}

.copyright-content-area .footer-contact ul li a .icon i {
  color: var(--mbs-color-common-white);
}

.copyright-content-area .footer-contact ul li a .text {
  position: relative;
}

.copyright-content-area .footer-contact ul li a .text::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--mbs-color-text-body);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.copyright-content-area .footer-contact ul li a:hover .text::before {
  width: 100%;
  left: 0;
  right: auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .footer-contact {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .social-links ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .social-links {
    width: 100%;
  }
}

.copyright-content-area .copyright-text p {
  margin: 0;
  color: #7d7d7d;
}

.copyright-content-area .copyright-text a {
  color: var(--mbs-color-common-black);
}

.copyright-content-area .copyright-text a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .copyright-text {
    width: 100%;
    text-align: center;
  }
}

.copyright-content-area .copyright-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.copyright-content-area .copyright-menu ul li {
  position: relative;
  margin-right: 15px;
  padding-right: 10px;
  z-index: 1;
}

.copyright-content-area .copyright-menu ul li::before {
  content: "";
  background: var(--mbs-color-border-2);
  position: absolute;
  width: 1px;
  height: 11px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.copyright-content-area .copyright-menu ul li:hover a {
  color: var(--mbs-color-common-white);
}

.copyright-content-area .copyright-menu ul li a {
  font-size: 16px;
  font-weight: var(--mbs-fw-regular);
  color: #7d7d7d;
}

.copyright-content-area .copyright-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.copyright-content-area .copyright-menu ul li:last-child::before {
  display: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .copyright-menu {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area {
    gap: 18px;
  }
}

.mbs-copyright-area {
  padding-bottom: 30px;
}

.mbs-copyright-area .copyright-content-area {
  border-top: 1px solid var(--mbs-color-border-1);
  border-bottom: 1px solid var(--mbs-color-border-1);
  padding: 20px 0;
}

.mbs-footer-section.footer-2 {
  background-color: var(--mbs-color-common-black);
  padding-top: 100px;
}

.mbs-footer-section.footer-2 .footer-col-1 {
  position: relative;
}

.mbs-footer-section.footer-2 .footer-col-1::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -50px;
  width: 350px;
  height: 300px;
  border-radius: 50%;
  background: var(--mbs-color-theme-primary);
  -webkit-filter: blur(50px);
  filter: blur(50px);
  opacity: 0.15;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-footer-section.footer-2 {
    padding-top: 60px;
  }
}

.footer-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px 50px;
  border-radius: 12px;
}

.footer-subscribe .subscribe-form {
  width: 49%;
}

.footer-subscribe .subscribe-form input[type=email] {
  color: var(--mbs-color-text-body-2);
  background-color: transparent;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px 205px 5px 30px;
}

.footer-subscribe .subscribe-form input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.footer-subscribe .subscribe-form input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-2);
}

.footer-subscribe .subscribe-form input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.footer-subscribe .subscribe-form input[type=email]::-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.footer-subscribe .subscribe-form input[type=email]::placeholder {
  color: var(--mbs-color-text-body-2);
}

.footer-subscribe .subscribe-form button {
  width: auto;
  height: auto;
  top: 6px;
  right: 8px;
  font-size: 16px;
  font-weight: var(--mbs-fw-sbold);
}

.footer-subscribe .subscribe-form button::before {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-subscribe .subscribe-form {
    width: 70%;
    margin-top: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-subscribe .subscribe-form {
    width: 100%;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-subscribe {
    padding: 30px 20px;
  }
}

.subscribe-logo {
  max-width: 225px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .subscribe-logo {
    max-width: 160px;
  }
}

.widget-contact {
  -webkit-padding-start: 76px;
  padding-inline-start: 76px;
}

.widget-contact .title {
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-contact {
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-contact {
    margin-top: 30px;
    -webkit-padding-start: 70px;
    padding-inline-start: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-contact {
    margin-top: 30px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.footer-contact-info {
  max-width: 230px;
  width: 100%;
}

.footer-contact-info .contact-item {
  margin-bottom: 14px;
}

.footer-contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-info .contact-item span {
  color: var(--mbs-color-text-body-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.footer-contact-info .contact-item span i {
  font-size: 20px;
  color: var(--mbs-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.footer-contact-info .contact-item a {
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 3px;
}

.footer-contact-info .contact-item a:hover {
  color: var(--mbs-color-theme-primary);
}

.footer-marquee {
  border-top: 1px dashed var(--mbs-color-border-2);
  border-bottom: 1px dashed var(--mbs-color-border-2);
}

.footer-marquee .marquee-text {
  opacity: 0.2;
}

.footer-marquee .marquee-text:hover {
  opacity: 0.7;
}

.mbs-copyright-area-2 .copyright-content-area {
  padding: 25px 0;
}

.mbs-copyright-area-2 .copyright-text p {
  color: var(--mbs-color-text-body-2);
}

.mbs-copyright-area-2 .copyright-text a {
  color: var(--mbs-color-common-white);
}

.mbs-copyright-area-2 .copyright-text a:hover {
  color: var(--mbs-color-theme-bg);
}

.mbs-footer-section.footer-style {
  background-color: var(--mbs-color-common-black);
  position: relative;
  z-index: 1;
  padding-top: 0;
  margin-bottom: 10px;
}

.mbs-footer-section.footer-style:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 250px 250px;
  border-color: transparent transparent #ffffff transparent;
}

.mbs-footer-section.footer-style .footer-main-area {
  padding-top: 120px;
  padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-footer-section.footer-style .footer-main-area {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-footer-section.footer-style .footer-main-area {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.footer-bottom-area {
  padding-bottom: 50px;
}

.footer-bottom-info {
  border-top: 1px solid var(--mbs-color-border-2);
  border-bottom: 1px solid var(--mbs-color-border-2);
  padding-top: 90px;
  padding-bottom: 90px;
  margin-top: 90px;
  margin-bottom: 5px;
}

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

.copyright.copyright-kodes .img-kodes {
  height: 50px;
  width: 90px;
  position: relative;
}

.copyright.copyright-kodes .img-kodes:hover {
  opacity: 0.5;
}

.widget-subscribe-2 {
  max-width: 850px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 12px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

.widget-subscribe-2 .title {
  color: var(--mbs-color-common-white);
  max-width: 250px;
  width: 100%;
  margin-bottom: 25px;
  font-weight: var(--mbs-fw-medium);
}

.widget-subscribe-2 .subscribe-form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget-subscribe-2 .subscribe-form input[type=email] {
  background-color: transparent;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=email]::-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=email]::placeholder {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form button::before {
  border-color: var(--mbs-color-common-black);
}

.widget-subscribe-2 .subscribe-form input[type=checkbox] {
  border: 1px solid var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type=checkbox]::before {
  color: var(--mbs-color-common-black);
}

.widget-subscribe-2 .subscribe-form input[type=checkbox]:checked {
  background-color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-common-white);
}

.widget-subscribe-2 .subscribe-form label {
  color: var(--mbs-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form label a {
  color: var(--mbs-color-common-white);
}

.widget-subscribe-2 .subscribe-form label a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe-2 .subscribe-form {
    margin-top: 0;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-subscribe-2 {
    max-width: 760px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-subscribe-2 {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe-2 {
    max-width: 100%;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    margin-top: 30px;
    padding: 30px 20px;
    gap: 0;
  }
}

.mbs-copyright-area-3 {
  background-color: var(--mbs-color-theme-primary);
}

.mbs-copyright-area-3 .copyright-content-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 0;
}

.mbs-copyright-area-3 .copyright-text p {
  color: var(--mbs-color-common-white);
}

.mbs-copyright-area-3 .copyright-text a {
  color: var(--mbs-color-common-white);
}

.mbs-copyright-area-3 .copyright-text a:hover {
  color: var(--mbs-color-theme-bg);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search-popup {
  background: var(--mbs-color-grey-1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 50px 0;
  -webkit-transform: translateY(calc(-100% - 800px));
  -ms-transform: translateY(calc(-100% - 800px));
  transform: translateY(calc(-100% - 800px));
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  z-index: 10;
}

.search-popup .search-close {
  position: absolute;
  top: 36px;
  right: 36px;
}

.search-popup .search-close .search-close-btn {
  font-size: 24px;
  color: var(--mbs-color-common-black);
}

.search-popup .search-close .search-close-btn svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.search-popup .search-close .search-close-btn svg path {
  fill: var(--mbs-color-common-black);
}

.search-popup .search-close .search-close-btn svg:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.search-popup .search-close .search-close-btn svg:hover path {
  fill: var(--mbs-color-theme-primary);
}

.search-popup.search-opened {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.search-popup.search-opened .search-form .search-input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search-popup.search-opened .search-form .search-input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search-popup .logo {
  max-width: 150px;
  width: 100%;
  position: absolute;
  left: 36px;
  top: 36px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .search-popup {
    display: none;
  }
}

.mbs-search-wrapper {
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mbs-search-wrapper .search-form {
  width: 100%;
}

.mbs-search-wrapper .search-form form .search-input {
  position: relative;
  z-index: 1;
}

.mbs-search-wrapper .search-form form .search-input .search-box {
  position: relative;
  z-index: 1;
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text] {
  width: 100%;
  height: 65px;
  font-size: 20px;
  font-family: var(--mbs-ff-body);
  color: var(--mbs-color-text-body);
  border-color: var(--mbs-color-border-1);
  background: var(--mbs-color-common-white);
  padding: 16px 90px 16px 24px;
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-webkit-input-placeholder {
  font-size: 20px;
  color: var(--mbs-color-text-body);
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-moz-placeholder {
  font-size: 20px;
  color: var(--mbs-color-text-body);
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]:-ms-input-placeholder {
  font-size: 20px;
  color: var(--mbs-color-text-body);
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-ms-input-placeholder {
  font-size: 20px;
  color: var(--mbs-color-text-body);
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::placeholder {
  font-size: 20px;
  color: var(--mbs-color-text-body);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-webkit-input-placeholder {
    font-size: 20px;
  }

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-moz-placeholder {
    font-size: 20px;
  }

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text]:-ms-input-placeholder {
    font-size: 20px;
  }

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::-ms-input-placeholder {
    font-size: 20px;
  }

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text]::placeholder {
    font-size: 20px;
  }
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]:focus {
  border-color: var(--mbs-color-theme-primary);
}

.mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus+button,
.mbs-search-wrapper .search-form form .search-input .search-box input[type=text]:focus+button {
  border-color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .mbs-search-wrapper .search-form form .search-input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
  .mbs-search-wrapper .search-form form .search-input .search-box input[type=text] {
    font-size: 20px;
  }
}

.mbs-search-wrapper .search-form form .search-input .search-box button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 60px;
  font-size: 25px;
  color: var(--mbs-color-common-black);
  width: 100%;
  height: 100%;
}

.mbs-search-wrapper .search-form form .search-input .search-box button:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-search-wrapper .search-form form .search-input .search-box button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  height: 30px;
  border-left: 1px solid var(--mbs-color-border-1);
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 999;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.search-popup-overlay.search-popup-overlay-open {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* !END: Theme Search CSS */
/* !START: hamburger CSS */
.hamburger-area {
  position: fixed;
  right: -635px;
  top: 0;
  width: 600px;
  height: 100%;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 99999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.hamburger-area::-webkit-scrollbar {
  display: none;
}

.hamburger-area.opened {
  right: 0px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hamburger-area.opened {
    right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hamburger-area {
    top: 0;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 575px) {
  .hamburger-area {
    width: 100%;
  }
}

.hamburger-bg {
  background-color: var(--mbs-color-grey-1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hamburger-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  overflow: auto;
  height: 100%;
}

.hamburger-wrapper::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--mbs-color-theme-primary);
  -webkit-filter: blur(50px);
  filter: blur(50px);
  opacity: 0.26;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}


.hamburger-wrapper .hamburger-inner .hamburger-top {
  background: #ffffff;
  padding: 40px 50px;
}


.hamburger-top .hamburger-title {
  position: relative;
  padding-left: 18px;
}

.hamburger-top .hamburger-title i {
  font-size: 36px;
  position: absolute;
  top: -17px;
  left: -22px;
  transform: scaleX(-1);
}

.hamburger-text-area .hamburger-search-area .hamburger-title {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}


.hamburger-top {
  margin-bottom: 40px;
}

.hamburger-close-btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--mbs-color-common-black);
}

@media (max-width: 575px) {
  .hamburger-close-btn {
    font-size: 30px;
  }
}

.hamburger-close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--mbs-color-theme-bg);
}

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

.hamburger-search select,
.hamburger-search .nice-select,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger-search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 40px 0 16px;
  background: var(--mbs-color-common-white);
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--mbs-ff-body);
  color: var(--mbs-color-text-body);
  border: 1px solid var(--mbs-color-border-1);
}

.hamburger-search select::-webkit-input-placeholder,
.hamburger-search .nice-select::-webkit-input-placeholder,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.hamburger-search input::-webkit-input-placeholder {
  color: var(--mbs-color-text-body);
}

.hamburger-search select::-moz-placeholder,
.hamburger-search .nice-select::-moz-placeholder,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.hamburger-search input::-moz-placeholder {
  color: var(--mbs-color-text-body);
}

.hamburger-search select:-ms-input-placeholder,
.hamburger-search .nice-select:-ms-input-placeholder,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.hamburger-search input:-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.hamburger-search select::-ms-input-placeholder,
.hamburger-search .nice-select::-ms-input-placeholder,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger-search input::-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.hamburger-search select::placeholder,
.hamburger-search .nice-select::placeholder,
.hamburger-search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger-search input::placeholder {
  color: var(--mbs-color-text-body);
}

.hamburger-search button {
  position: absolute;
  height: 58px;
  width: 58px;
  top: 50%;
  right: 0;
  font-size: 24px;
  color: var(--mbs-color-common-black);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 1px solid var(--mbs-color-border-1);
}

.hamburger-search button:hover {
  color: var(--mbs-color-theme-primary)
}


.hamburger-menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.hamburger-menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hamburger-menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}

.hamburger-menu .mean-nav>ul {
  display: block !important;
}

.hamburger-menu .mean-nav>ul>li:first-child>a {
  border-top: none;
}

.hamburger-menu .mean-nav ul li {
  position: relative;
}

.hamburger-menu .mean-nav ul li a {
  color: var(--mbs-color-common-black);
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: var(--mbs-ff-body);
  text-transform: capitalize;
  padding: 20px 25px;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  border-bottom: 1px dashed var(--mbs-color-border-1);
}

.hamburger-menu .mean-nav ul li a:hover {
  color: var(--mbs-color-theme-primary);
}

.hamburger-menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 15px;
  top: 12px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}


.hamburger-menu .mean-nav ul li a.mean-expand i {
  font-size: 15px;
}

.hamburger-menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--mbs-color-theme-primary);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hamburger-menu .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hamburger-menu .mean-nav ul li .sub-menu li {
  padding-left: 0px;
  position: relative;
}



.hamburger-menu .mean-nav ul li.dropdown-opened>a {
  color: var(--mbs-color-theme-primary);
}

.mbs-offcanvas-area {
  position: fixed;
  right: -635px;
  top: 0;
  width: 600px;
  height: 100%;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 99999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.mbs-offcanvas-area::-webkit-scrollbar {
  display: none;
}

.mbs-offcanvas-area.opened {
  right: 0px;
}

.offcanvas-text {
  margin-bottom: 40px;
}

.offcanvas-text p {
  color: var(--mbs-color-text-body-2);
  margin-bottom: 0;
}

.hamburger-search-area {
  padding: 10px 50px 20px;
}

.hamburger-title {
  color: var(--mbs-color-common-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}



.hamburger-infos .contact-info {
  display: flex;
  flex-direction: column;
}

.hamburger-infos .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 50px;
  border-bottom: 1px dashed var(--mbs-color-border-1);
}

.hamburger-infos .contact-info .contact-icon {
  font-size: 32px;
  position: relative;
  top: -2px;
  color: var(--mbs-color-common-black);
}

.hamburger-infos .contact-info .contact-details {
  display: flex;
  flex-direction: column;
}


.hamburger-infos .contact-info .contact-link {
  text-decoration: none;
  font-size: 14px;
}

.hamburger-infos .contact-info .contact-link:hover {
  text-decoration: none;
}

.hamburger-infos .contact-info .contact-item:hover .contact-number {
  color: var(--mbs-color-common-black);
}

.hamburger-infos .contact-info .contact-item:hover .contact-icon {
  color: var(--mbs-color-text-body-2);
}

.hamburger-infos .contact-info .contact-item:hover .subtitle {
  color: var(--mbs-color-text-body-2);
}

.hamburger-infos .contact-info .contact-number {
  font-size: 18px;
  font-weight: 500;
  color: var(--mbs-color-text-body-2);
}

.hamburger-logo .mobile-logo {
  display: inline-block;
  max-width: 145px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--mbs-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}

.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.menu-bar button span:nth-child(3) {
  width: 30px;
}

.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  -webkit-transition: height 400ms;
  transition: height 400ms;
}

.menu-bar.style-2 button span {
  background: var(--mbs-color-common-black);
}

.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .menu-bar {
    margin-left: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-backdrop-filter: blur(1.2px);
  backdrop-filter: blur(1.2px);
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: hamburger CSS */
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--mbs-color-common-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 180px;
  position: relative;
  width: 180px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--mbs-color-theme-primary) transparent var(--mbs-color-theme-primary);
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mbs-loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 130px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mbs-loading-logo img {
  max-width: 130px;
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* !END: Preloader CSS */
/**----------------------------------------
START: Error 404 CSS
----------------------------------------*/
.mbs-error-section {
  padding: 150px 0 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-error-section {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-error-section {
    padding: 70px 0;
  }
}

.mbs-error-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.mbs-error-content .error-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 45px;
}

@media (max-width: 575px) {
  .mbs-error-content .error-img {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

.mbs-error-content .error-title {
  font-size: var(--mbs-fs-h1);
  margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-error-content .error-title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-error-content .error-title {
    font-size: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-error-content .error-title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-error-content .error-title {
    font-size: 55px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-error-content .error-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .mbs-error-content .error-title {
    font-size: 40px;
  }
}

.mbs-error-content .error-desc {
  max-width: 600px;
  margin: 20px auto 0;
}

.mbs-error-content .error-btn {
  margin-top: 35px;
}

@media (max-width: 575px) {
  .mbs-error-content .error-btn {
    margin-top: 25px;
  }
}

/* !END: Error 404 CSS */
/**----------------------------------------
START: Back to top CSS
----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 35px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}


@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}

.back-to-top-btn {
  color: var(--mbs-color-common-black);
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.back-to-top-btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 26px;
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-radius: 50%;
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 100px;
}

.back-to-top-wrapper.back-to-top-btn-show:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}



.chat-bubble-wrapper {
  position: fixed;
  right: 35px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chat-bubble-wrapper {
    right: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .chat-bubble-wrapper {
    right: 15px;
  }
}

.chat-bubble-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 26px;
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-radius: 50%;
  text-decoration: none;
  position: relative;
}

.chat-bubble-btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--mbs-color-common-white);
}

.chat-bubble-btn:hover span,
.chat-bubble-btn:hover span i {
  color: var(--mbs-color-common-white);
}

.chat-bubble-text {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--mbs-color-common-white);
  color: var(--mbs-color-common-black);
  padding: 25px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 5%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  z-index: 100;
}

.chat-bubble-header {
  font-weight: var(--mbs-fw-sbold);
  margin: 0;
  font-size: 20px;
}

.chat-bubble-subheader {
  margin: 0;
  font-size: 16px;
  color: var(--mbs-color-heading-secondary);
}

.chat-bubble-wrapper.chat-bubble-show {
  visibility: visible;
  opacity: 1;
  bottom: 35px;
}

.chat-bubble-wrapper.chat-bubble-show:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.chat-bubble-wrapper.chat-bubble-show:hover .chat-bubble-text {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .chat-bubble-wrapper.chat-bubble-show {
    right: 30px;
    bottom: 30px;
  }

  .back-to-top-wrapper {
    right: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .chat-bubble-wrapper.chat-bubble-show {
    bottom: 30px;
  }

  .chat-bubble-wrapper.chat-bubble-show:hover .chat-bubble-text {
    right: 60px;
  }

}

/* !END: Back to top CSS */
/**----------------------------------------
START: Heading CSS
----------------------------------------*/
.sec-heading {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  width: 100%;
  margin-bottom: 52px;
}

.sec-heading .sec-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.sec-heading .sec-title span {
  font-weight: 400;
  color: var(--mbs-color-text-body-2);
}

.sec-heading .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: var(--mbs-color-common-black);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--mbs-fw-bold);
  border: 1px dashed var(--mbs-color-border-1);
  padding: 2px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.sec-heading .sub-title i {
  color: var(--mbs-color-theme-primary);
  font-size: 22px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading .sub-title {
    margin-bottom: 15px;
  }
}

.sec-heading .sub-title.text-white {
  border-color: rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading .sub-title {
    font-size: 13px;
  }
}

.sec-heading.style-2 .sec-title span {
  color: var(--mbs-color-text-body-2);
}

.sec-heading.style-2 .sub-title {
  color: var(--mbs-color-theme-primary);
  background-color: var(--mbs-color-common-white);
  border: 0;
  padding: 7px 10px;
}

.sec-heading.style-3 .sub-title {
  color: var(--mbs-color-theme-primary);
  padding: 0;
  border: 0;
}

.sec-heading.style-4 .sub-title {
  color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

.heading-wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}

.heading-wrap-content .sec-heading {
  max-width: 500px;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-bottom: 0;
}

.heading-wrap-content .desc {
  max-width: 425px;
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .heading-wrap-content .desc {
    max-width: 100%;
  }
}

.heading-wrap-content .btn-wrap {
  max-width: 220px;
}



.sec-heading-wrap .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: var(--mbs-color-common-black);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--mbs-fw-bold);
  border: 1px dashed var(--mbs-color-border-1);
  padding: 2px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.sec-heading-wrap .sub-title i {
  color: var(--mbs-color-theme-primary);
  font-size: 22px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading-wrap .sub-title {
    margin-bottom: 15px;
  }
}

.content-wrap .sec-heading {
  max-width: 550px;
  margin: 0 0 20px 0;
}

.content-wrap .mbs-primary-btn {
  margin-top: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .content-wrap .mbs-primary-btn {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .content-wrap .desc br {
    display: none;
  }
}

.title-anim>div {
  overflow: hidden;
}

.mbs-text-invert>div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--mbs-color-common-black)), color-stop(50%, var(--mbs-color-text-body-2)));
  background-image: linear-gradient(to right, var(--mbs-color-common-black) 50%, var(--mbs-color-text-body-2) 50%);
}

.line {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--mbs-color-common-black)), to(var(--mbs-color-text-body-2)));
  background-image: linear-gradient(90deg, var(--mbs-color-common-black) var(--highlight-offset), var(--mbs-color-text-body-2) var(--highlight-offset));
}

/* !END: Heading CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.mbs-banner-section {
  position: relative;
}

.banner-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 792px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area {
    min-height: 700px;
  }
}

.banner-left-box {
  background-color: var(--mbs-color-common-black);
  border-radius: 12px;
  padding: 70px;
  width: calc(50% - 15px);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.banner-left-box::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--mbs-color-theme-primary);
  -webkit-filter: blur(65px);
  filter: blur(65px);
  opacity: 0.26;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-left-box {
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box {
    padding-left: 50px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-left-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 60px 0;
  }
}

.banner-content {
  max-width: 635px;
  width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.banner-content .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--mbs-color-common-white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--mbs-fw-bold);
  border: 1px dashed var(--mbs-color-border-2);
  padding: 6px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.banner-content .sub-title i {
  color: var(--mbs-color-theme-primary);
  font-size: 22px;
}

.banner-content .banner-title {
  color: var(--mbs-color-common-white);
  line-height: 1.135;
  margin-bottom: 15px;
}

.banner-content .banner-title span {
  display: inline-block;
  color: var(--mbs-color-theme-primary);
  font-weight: var(--mbs-fw-medium);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-content .banner-title {
    font-size: 68px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-title {
    font-size: 58px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .banner-title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-title {
    font-size: 45px;
  }
}

.banner-content .banner-link {
  font-size: 75px;
  color: var(--mbs-color-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  padding: 10px 30px 15px 0;
  border-right: 1px dashed var(--mbs-color-border-2);
}

.banner-content .banner-link span {
  overflow: hidden;
}

.banner-content .banner-link i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transform: rotate(-45deg) translateX(0);
  -ms-transform: rotate(-45deg) translateX(0);
  transform: rotate(-45deg) translateX(0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-shadow: -120px 0 0;
}

.banner-content .banner-link:hover i {
  -webkit-transform: rotate(-45deg) translateX(120px);
  -ms-transform: rotate(-45deg) translateX(120px);
  transform: rotate(-45deg) translateX(120px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-link {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .banner-link {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-link {
    font-size: 45px;
  }
}

.banner-content .banner-desc-area {
  max-width: 475px;
  width: 100%;
  border-top: 1px dashed var(--mbs-color-border-2);
  border-bottom: 1px dashed var(--mbs-color-border-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 0;
  margin-top: 40px;
  -webkit-margin-end: 57px;
  margin-inline-end: 57px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.banner-content .banner-desc-area .banner-desc {
  padding-left: 44px;
}

@media (max-width: 575px) {
  .banner-content .banner-desc-area .banner-desc {
    padding-left: 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-desc-area {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-desc-area {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 480px) {
  .banner-content .banner-desc-area {
    margin-right: 0;
  }
}

.banner-content .banner-desc {
  color: var(--mbs-color-text-body-2);
  font-size: 18px;
  line-height: 1.444;
  max-width: 517px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
(max-width: 575px) {
  .banner-content .banner-desc {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content {
    max-width: 565px;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

.banner-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.banner-shape img {
  width: 100%;
  height: 100%;
}

.banner-scroll {
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 5;
}

.banner-scroll .scroll-down {
  color: var(--mbs-color-common-white);
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.banner-scroll .scroll-down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.banner-scroll .scroll-down:hover {
  opacity: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-scroll {
    left: 23px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-scroll {
    left: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-scroll {
    bottom: 150px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-scroll {
    display: none;
  }
}

.banner-right-box {
  width: 50%;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-right-box {
    width: 100%;
  }
}

.banner-right-box .box-area {
  max-width: 261px;
}

@media (max-width: 575px) {
  .banner-right-box .box-area {
    max-width: 200px;
  }
}

.customers-box {
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  padding: 30px 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-box {
    padding: 25px 18px 20px;
  }
}

.customers ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
}

.customers ul li {
  line-height: 1;
  margin-left: -15px;
}

.customers ul li img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px var(--mbs-color-common-white);
  box-shadow: 0 0 0 2px var(--mbs-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .customers ul li img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .customers ul li img {
    width: 40px;
    height: 40px;
  }
}

.customers ul li:first-child {
  margin-left: 0;
}

.customers ul li:last-child span {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  -webkit-box-shadow: 0 0 0 2px var(--mbs-color-common-white);
  box-shadow: 0 0 0 2px var(--mbs-color-common-white);
}

.customers ul li:last-child span i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .customers ul li:last-child span {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .customers ul li:last-child span {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .customers ul li {
    margin-left: -16px;
  }
}

.customers-number {
  color: var(--mbs-color-common-black);
  font-size: 58px;
  line-height: 0.8;
  letter-spacing: -1.2px;
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-sbold);
  padding: 45px 0 13px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .customers-number {
    font-size: 50px;
    padding: 25px 0 13px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-number {
    font-size: 40px;
    padding: 20px 0 10px 0;
  }
}

.customers-text {
  color: var(--mbs-color-text-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: var(--mbs-fw-regular);
}

.mbs-banner-section-2 {
  background-color: var(--mbs-color-theme-bg);
  padding-top: 125px;
  padding-bottom: 55px;
  margin-top: 65px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.mbs-banner-section-2 .banner-content-2 {
  max-width: 450px;
  padding: 40px 0;
}

.mbs-banner-section-2 .banner-content-2 .sub-title {
  font-size: 14px;
  font-weight: var(--mbs-fw-bold);
  color: var(--mbs-color-theme-primary);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 15px;
}

.mbs-banner-section-2 .banner-content-2 .sub-title i {
  font-size: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-banner-section-2 .banner-content-2 .banner-title {
    line-height: 1.25;
  }
}

.mbs-banner-section-2 .banner-content-2 .title-video {
  max-width: 148px;
  border-radius: 6px;
  vertical-align: top;
  margin-top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  position: relative;
}

.mbs-banner-section-2 .banner-content-2 .title-video i {
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--mbs-color-common-white);
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.mbs-banner-section-2 .banner-content-2 .title-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0.25;
}

.mbs-banner-section-2 .banner-content-2 .title-video:hover i {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.mbs-banner-section-2 .banner-content-2 .title-video:hover::after {
  opacity: 0.4;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-banner-section-2 .banner-content-2 .title-video {
    max-width: 110px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-banner-section-2 .banner-content-2 .title-video {
    max-width: 95px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-banner-section-2 .banner-content-2 .title-video {
    max-width: 100px;
    margin-top: 7px;
  }
}

.mbs-banner-section-2 .banner-content-2 .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.mbs-banner-section-2 .banner-content-2 .btn-area .number {
  color: var(--mbs-color-common-black);
  font-size: 20px;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  gap: 8px;
}

.mbs-banner-section-2 .banner-content-2 .btn-area .number i {
  font-size: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.mbs-banner-section-2 .banner-content-2 .btn-area .number span {
  position: relative;
}

.mbs-banner-section-2 .banner-content-2 .btn-area .number span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--mbs-color-common-black);
}

.mbs-banner-section-2 .banner-content-2 .btn-area .number:hover span::after {
  -webkit-animation: linehover 0.8s linear;
  animation: linehover 0.8s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-banner-section-2 .banner-content-2 {
    padding-top: 0;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-banner-section-2 .banner-content-2 {
    padding-top: 0;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
  }
}

.mbs-banner-section-2 .banner-img-area {
  position: relative;
  z-index: 1;
  max-width: 704px;
  width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: -30px;
  margin-inline-end: -30px;
}

.mbs-banner-section-2 .banner-img-area::before {
  content: "";
  background-color: var(--mbs-color-common-white);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 343px;
  z-index: -1;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-banner-section-2 .banner-img-area::before {
    height: 290px;
  }
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img-area::before {
    height: 260px;
  }
}

.mbs-banner-section-2 .banner-img-area .banner-author {
  position: absolute;
  left: 88px;
  bottom: 224px;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
}

.mbs-banner-section-2 .banner-img-area .banner-author .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
  position: relative;
}

.mbs-banner-section-2 .banner-img-area .banner-author .title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--mbs-color-theme-primary);
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: pulse3 1.5s linear infinite;
  animation: pulse3 1.5s linear infinite;
}

.mbs-banner-section-2 .banner-img-area .banner-author .designation {
  font-size: 14px;
  color: var(--mbs-color-text-body);
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-banner-section-2 .banner-img-area .banner-author {
    left: 60px;
    bottom: 180px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-banner-section-2 .banner-img-area .banner-author {
    left: 40px;
    bottom: 150px;
  }
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img-area .banner-author {
    left: 20px;
    bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-banner-section-2 .banner-img-area {
    margin-right: -20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-banner-section-2 .banner-img-area {
    margin-right: 0;
  }
}

.mbs-banner-section-2 .banner-img {
  max-width: 507px;
  width: 100%;
  position: relative;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img>img {
    min-height: 440px;
  }
}

.mbs-banner-section-2 .banner-img .brand-name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  font-weight: var(--mbs-fw-sbold);
  font-size: 120px;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
  line-height: 0.9;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img .brand-name {
    font-size: 100px;
  }
}

@media (max-width: 430px) {
  .mbs-banner-section-2 .banner-img .brand-name {
    font-size: 90px;
  }
}

.mbs-banner-section-2 .banner-img .growth-box {
  width: 198px;
  height: 209px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img .growth-box {
    width: 165px;
    height: 175px;
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .mbs-banner-section-2 .banner-img .growth-box {
    width: 145px;
    height: 155px;
    left: 10px;
    bottom: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-banner-section-2 .banner-img {
    max-width: 460px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-banner-section-2 .banner-img {
    max-width: 400px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-banner-section-2 .banner-img {
    max-width: calc(100% - 110px);
  }
}

@media (max-width: 575px) {
  .mbs-banner-section-2 .banner-img {
    max-width: calc(100% - 90px);
    min-height: 440px;
  }
}

.mbs-banner-section-2 .banner-scroll .scroll-down {
  color: var(--mbs-color-common-black);
  opacity: 1;
}

.mbs-banner-section-2 .banner-scroll .scroll-down span {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-banner-section-2 {
    margin-top: 94px;
  }
}

.marquee-vr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.marquee-vr .text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  white-space: nowrap;
  -webkit-animation: marquee 15s linear infinite;
  animation: marquee 15s linear infinite;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.marquee-vr .text .icon {
  margin: 40px 0;
}

/* !END: Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.mbs-choose-section {
  overflow: hidden;
}

.mbs-choose-section .sec-heading {
  max-width: 550px;
}

.mbs-choose-section.choose-3 .sec-heading {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.choose-box {
  height: 100%;
  background-color: var(--mbs-color-common-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.choose-box .choose-link {
  display: flex;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.choose-box .choose-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px 0px;
}

.choose-box .choose-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--mbs-color-theme-primary);
  font-size: 36px;
  line-height: 1;
  gap: 10px;
}

.choose-box .choose-icon i {
  line-height: 1;
  display: inline-flex;
}

.choose-box .title {
  margin: 0;
  font-size: 20px;
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
}

.choose-box:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}




.choose-box .desc {
  margin-bottom: 0;
}

.choose-box .text-btn {
  margin-top: auto;
  padding-top: 27px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.choose-box:hover {
  background-color: var(--mbs-color-theme-primary);
}

.choose-box:hover .choose-icon {
  color: var(--mbs-color-common-white);
}

.choose-box:hover .btn-icon {
  background-color: var(--mbs-color-common-black);
}

.choose-box:hover .btn-text,
.choose-box:hover .desc,
.choose-box:hover .title {
  color: var(--mbs-color-common-white);
}



.choose-box.style-2 {
  padding: 40px 28px;
}

.choose-box.style-2 .choose-icon {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box.style-2 .choose-icon {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box.style-2 {
    padding: 30px 15px;
  }
}

.work-experience-area {
  max-width: 570px;
}

.work-experience-area .sec-heading {
  margin-bottom: 65px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-experience-area .sec-heading {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .work-experience-area .sec-heading {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .work-experience-area {
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.experience-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  border-top: 1px dashed rgba(0, 0, 0, 0.16);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
}

.experience-wrap .year-count {
  color: var(--mbs-color-theme-primary);
  font-size: 404px;
  line-height: 0.75;
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-light);
  letter-spacing: -8.08px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 17px 30px 38px 0;
  border-right: 1px dashed rgba(0, 0, 0, 0.16);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .experience-wrap .year-count {
    font-size: 335px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .experience-wrap .year-count {
    font-size: 250px;
  }
}

@media (max-width: 575px) {
  .experience-wrap .year-count {
    font-size: 210px;
  }
}

.experience-wrap .experience-text {
  padding-left: 32px;
  padding-bottom: 35px;
}

.experience-wrap .experience-text .title {
  max-width: 110px;
  font-size: 16px;
  font-weight: var(--mbs-fw-sbold);
  font-family: var(--mbs-ff-body);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0;
}

.experience-wrap .experience-text span {
  color: var(--mbs-color-theme-primary);
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.experience-wrap .experience-text span i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media (max-width: 575px) {
  .experience-wrap .experience-text {
    padding-left: 20px;
  }
}

/* !END: Choose CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.mbs-client-section {
  position: relative;
}

.mbs-client-section .client-container {
  padding: 0;
  overflow: hidden;
}

.mbs-client-section-2 {
  background-color: var(--mbs-color-theme-primary);
  border-radius: 12px;
  padding: 30px 5px;
  margin-top: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-client-section-2 {
    padding: 18px 5px;
  }
}

.client-section-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-section-gap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-section-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.client-section-gap-2 {
  padding: 100px 0;
  margin: 120px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-section-gap-2 {
    padding: 80px 0;
    margin: 90px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .client-section-gap-2 {
    padding: 65px 0;
    margin: 70px 0;
  }
}

@media (max-width: 575px) {
  .client-section-gap-2 {
    padding: 60px 0;
    margin: 50px 0;
  }
}

.client-content {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--mbs-color-border-1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.client-content .sec-title {
  max-width: 200px;
  width: 100%;
  letter-spacing: 0;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .client-content .sec-title {
    font-size: 18px;
  }
}

.client-content span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.client-content .client-numbers {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  line-height: 1.2;
  border-radius: 50px;
  padding: 0 5px;
}

.client-content .client-text {
  color: var(--mbs-color-text-body-3);
  position: relative;
}

.client-content .client-text::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: auto;
  width: 100%;
  border-bottom: 1px solid rgba(12, 30, 33, 0.2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-content {
    width: 260px;
    height: 260px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-content {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 575px) {
  .client-content {
    width: 190px;
    height: 190px;
  }
}

.client-content.style-2 {
  max-width: 440px;
  width: 100%;
  display: block;
  margin: 0 auto 60px;
  height: auto;
  border-radius: 40px;
  position: unset;
  background: transparent;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  padding: 0 15px 4px;
}

.client-content.style-2 .sec-title {
  max-width: 100%;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.6px;
}

.client-content.style-2 .client-numbers {
  color: var(--mbs-color-theme-primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.client-content.style-2 .client-text::after {
  display: none;
}

@media (max-width: 575px) {
  .client-content.style-2 {
    width: calc(100% - 30px);
    margin: 0 auto 40px;
  }
}

.client-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.client-slider-1 {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.client-slider-1::before,
.client-slider-1::after {
  content: "";
  position: absolute;
  width: 448px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(233, 237, 237)), to(rgba(233, 237, 237, 0)));
  background-image: linear-gradient(90deg, rgb(233, 237, 237) 0%, rgba(233, 237, 237, 0) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 200px;
  }
}

@media (max-width: 575px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 100px;
  }
}

.client-slider-1::after {
  left: auto;
  right: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(233, 237, 237)), to(rgba(233, 237, 237, 0)));
  background-image: linear-gradient(-90deg, rgb(233, 237, 237) 0%, rgba(233, 237, 237, 0) 100%);
}

.client-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-item {
    padding-right: 20px;
  }
}

.client-logo {
  width: 284px;
  height: 120px;
  background-color: var(--mbs-color-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  border-radius: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo {
    width: 220px;
    height: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-logo {
    width: 190px;
    height: 70px;
    padding: 20px;
  }
}

.client-slider-2 .client-logo {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-slider-2 .client-logo img {
  opacity: 0.85;
}

/* !END: Client CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-img-area {
  position: relative;
  -webkit-margin-end: -8px;
  margin-inline-end: -8px;
}

.about-img-area .about-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-img-area .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .about-img-area .box-area {
    max-width: 230px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-img-area {
    margin-top: 15px;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.about-img-area.style-2 {
  max-width: 591px;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.about-img-area.style-2 .box-area {
  max-width: 343px;
  background-color: var(--mbs-color-theme-bg);
}

.about-img-area.style-2 .box-area::after,
.about-img-area.style-2 .box-area::before {
  background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23d8e5e5"></path></svg>');
}

@media (max-width: 575px) {
  .about-img-area.style-2 .box-area {
    max-width: 270px;
  }
}

.about-img-area.style-2 .box-area.style-2 {
  background: transparent;
  padding: 0 0 15px 15px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
}

.about-img-area.style-2 .box-area.style-2::after,
.about-img-area.style-2 .box-area.style-2::before {
  display: none;
}

.about-img-area.style-2 .box-area.style-2 .progress-box {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.about-img-area.style-2 .box-area.style-2 .progress-box .mbs-progress-percent,
.about-img-area.style-2 .box-area.style-2 .progress-box .mbs-progress-title,
.about-img-area.style-2 .box-area.style-2 .progress-box .title {
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-img-area.style-2 {
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-area {
    height: 100%;
  }
}

.box-area {
  background: var(--mbs-color-grey-1);
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 241px;
  width: 100%;
  padding: 15px 15px 0 0;
  border-top-right-radius: 12px;
}

.box-area::after,
.box-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: -13px;
  width: 13px;
  height: 13px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ecf0f0"></path></svg>');
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.box-area::after {
  left: auto;
  top: auto;
  right: -13px;
  bottom: 0;
}

.experience-box {
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  padding: 28px 25px;
}

.experience-box .sub-title {
  color: var(--mbs-color-theme-primary);
  font-weight: var(--mbs-fw-medium);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .experience-box {
    padding: 25px 18px 20px;
  }
}

.about-content-area.style-1 {
  background-color: var(--mbs-color-common-white);
  border-radius: 12px;
  padding: 30px;
  min-height: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area.style-1 {
    min-height: 300px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-1 {
    padding: 30px 20px;
    min-height: 300px;
  }
}

.about-content-area .sec-heading {
  margin-bottom: 30px;
}

.about-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.about-bottom-area .client-review-cont {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 10px;
  padding: 30px;
}

.about-bottom-area .client-review-cont .rating-area {
  margin-bottom: 12px;
}

.about-bottom-area .client-review-cont .star-ratings {
  font-size: 16px;
  letter-spacing: 4px;
  -webkit-text-stroke: 1px var(--mbs-color-common-white);
}

.about-bottom-area .client-review-cont .star-ratings .fill-ratings {
  color: var(--mbs-color-common-white);
}

.about-bottom-area .client-review-cont .desc {
  margin-bottom: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-bottom-area .client-review-cont .desc {
    margin-bottom: 20px;
  }
}

.about-bottom-area .client-review-cont .quote-icon {
  font-size: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .about-bottom-area .client-review-cont .quote-icon {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-bottom-area .client-review-cont {
    padding: 30px 15px;
  }
}

@media (max-width: 575px) {
  .about-bottom-area .client-review-cont {
    padding: 15px;
  }
}

.about-bottom-area .client-info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-bottom-area .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about-bottom-area .client-info .title {
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-white);
  line-height: 1;
  margin-bottom: 6px;
}

.about-bottom-area .client-info .designation {
  font-size: 14px;
  color: var(--mbs-color-theme-bg);
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.video-img {
  max-width: 224px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0.25;
}

.video-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .video-img {
    max-width: 180px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .video-img {
    max-width: 100px;
  }
}

.video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  color: var(--mbs-color-common-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.video-btn span {
  font-size: 15px;
  margin-left: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.video-btn:hover {
  color: var(--mbs-color-common-white);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-content-area-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 85px;
}

.about-content-area-2 .about-content {
  max-width: 550px;
  margin-left: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area-2 .about-content {
    max-width: 440px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area-2 .about-content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 .about-content {
    width: calc(100% - 130px);
    margin-left: 0;
  }
}

.about-content-area-2 .sec-heading {
  margin-bottom: 27px;
}

.about-content-area-2 .video-img {
  max-width: 120px;
}

.about-content-area-2 .video-img::before {
  opacity: 0.15;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 .video-img {
    max-width: 100px;
  }
}

.about-content-area-2 .video-btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area-2 {
    gap: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 {
    gap: 20px;
  }
}

.customers-box.style-2 {
  background-color: var(--mbs-color-theme-primary);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.customers-box.style-2 .customers-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: -1;
}

.customers-box.style-2 ul li span {
  background-color: var(--mbs-color-common-black);
}

.customers-box.style-2 .customers-text {
  max-width: 250px;
  font-size: 24px;
  line-height: 1.333;
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-white);
}

.customers-box.style-2 .star-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 120px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-box.style-2 {
    min-height: 315px;
  }
}

.countup-item.style-2 {
  width: 100%;
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  padding: 28px 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  text-align: left;
}

.countup-item.style-2 .count-inner {
  padding-top: 90px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .countup-item.style-2 .count-inner {
    padding-top: 60px;
  }
}

.countup-item.style-2 .count-text {
  color: var(--mbs-color-text-body);
  font-weight: var(--mbs-fw-medium);
}

.countup-item.style-2 .inline-content {
  color: var(--mbs-color-common-black);
  margin: 11px 0 10px;
}

.countup-item.style-2 .inline-content .odometer {
  color: var(--mbs-color-common-black);
}

.countup-item.style-2 .inline-content .odometer .odometer-digit,
.countup-item.style-2 .inline-content .odometer span {
  color: var(--mbs-color-common-black);
}

.countup-item.style-2 .count-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mbs-color-grey-1);
  font-size: 48px;
  color: var(--mbs-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}

.countup-item.style-2 .steps {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--mbs-color-text-body);
  font-size: 20px;
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
}

@media (max-width: 575px) {
  .countup-item.style-2 .steps {
    right: 20px;
  }
}

@media (max-width: 575px) {
  .countup-item.style-2 {
    padding: 25px 20px;
  }
}

.mbs-about-section-2 {
  background-color: var(--mbs-color-theme-bg);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.progress-box {
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  padding: 28px 30px 35px;
}

.progress-box .title {
  font-weight: var(--mbs-fw-sbold);
}

@media (max-width: 575px) {
  .progress-box {
    padding: 20px 18px 25px;
  }
}

.mission-vision-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--mbs-color-common-white);
  border-radius: 12px;
  padding: 25px 20px 30px 26px;
}

.mission-vision-box .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .mission-vision-box {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.about-btn-area {
  margin-top: 15px;
}

.about-btn-area .mbs-primary-btn {
  width: 100%;
  border-radius: 10px;
  padding: 13px;
}

.about-btn-area .mbs-primary-btn .btn-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.mbs-product-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mbs-product-section .swiper {
  overflow: unset;
}

.mbs-product-section .sec-heading {
  max-width: 550px;
}

.mbs-product-section .sec-heading .sub-title {
  color: var(--mbs-color-common-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.mbs-product-section .sec-heading.style-2 {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.mbs-product-section .sec-heading.style-2 .sub-title {
  color: var(--mbs-color-theme-primary);
  background-color: var(--mbs-color-common-black);
}

.mbs-product-section.product-3 {
  background: transparent;
}

.mbs-product-section.product-3 .sec-heading .sub-title {
  color: var(--mbs-color-theme-primary);
}

.mbs-product-section.product-4 {
  background: transparent;
}

.bg-shape-2,
.bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 370px;
  width: 100%;
  z-index: -1;
  mix-blend-mode: difference;
  pointer-events: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .bg-shape-2,
  .bg-shape-1 {
    max-width: 260px;
  }
}

.bg-shape-2 {
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
}

.product-item {
  background: var(--mbs-color-common-white);
  padding: 40px 30px 45px;
  margin-bottom: 30px;
  position: relative;
}

.product-item:last-child {
  margin-bottom: 0;
}

.product-item .product-icon {
  font-size: 70px;
  width: 80px;
  height: 80px;
  background: linear-gradient(-45deg, rgba(30, 138, 138, 0.3) 0%, rgba(30, 138, 138, 0) 50%, rgba(30, 138, 138, 0.3) 100%);
  border-radius: 50%;
  border: 1px solid rgba(30, 138, 138, 0.15);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.product-item .product-icon i {
  color: var(--mbs-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item .product-icon {
    font-size: 50px;
    width: 65px;
    height: 65px;
  }
}

.product-item .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 20px;
  -webkit-transition: none;
  transition: none;
}

.product-item .title a:hover {
  color: var(--mbs-color-theme-primary);
}

.product-item .desc {
  margin-bottom: 0;
}

.product-item .text-btn {
  margin-top: 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item {
    padding: 30px 20px;
  }
}

.product-item.style-1 {
  border: 0;
  padding: 0;
  background-color: var(--mbs-color-common-white);
  position: relative;
  overflow: hidden;
  height: 650px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.product-item.style-1:hover {
  -webkit-transform: translateY(-35px) !important;
  -ms-transform: translateY(-35px) !important;
  transform: translateY(-35px) scale(1.05) !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0 60px 40px -7px;
  z-index: 5;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.product-item.style-1:hover .product-content .title a {
  color: var(--mbs-color-common-white) !important;
}

.product-item.style-1::before {
  content: "";
  opacity: 0;
  background: var(--mbs-color-common-black);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.product-item.style-1:hover::before {
  opacity: 1;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}



.product-item.style-1 .product-img {
  position: relative;
  height: 550px;
  padding: 25px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  background-color: #fff;
  z-index: 2;
}

.product-item.style-1 .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.product-item.style-1 .product-icon {
  position: absolute;
  top: 35px;
  left: 30px;
  z-index: 2;
}

.product-item.style-1:hover .product-img {
  height: 410px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  background-color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-1 .product-icon {
    font-size: 60px;
    width: 70px;
    height: 70px;
  }
}

.product-item.style-1 .product-content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.product-item.style-1 .product-content .title {
  margin-bottom: 15px;
  font-size: var(--mbs-fs-h3);
  line-height: 1.333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item.style-1 .product-content .title a {
  color: var(--mbs-color-common-black);
}

.product-item.style-1 .product-content .title a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-1 .product-content .title {
    font-size: 19px;
  }
}

.product-item.style-1 .product-content .desc {
  color: var(--mbs-color-text-body-2);
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: none;
  transition: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-1 .product-content {
    padding: 25px 20px;
  }
}

@media (max-width: 575px) {
  .product-item.style-1 .product-content {
    padding: 15px 20px;
  }
}

.product-item.style-1 .text-btn {
  position: absolute;
  left: auto;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: none;
  transition: none;
}



@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-1 .text-btn {
    left: 20px;
  }
}

@media (max-width: 575px) {
  .product-item.style-1 .text-btn {
    left: 15px;
  }
}


.product-item.style-1:hover .product-icon {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.product-item.style-1:hover .product-content {
  padding-bottom: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .product-item.style-1:hover .product-content {
    padding-bottom: 80px;
  }
}

.product-item.style-1:hover .desc {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.product-item.style-1:hover .text-btn {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .product-item.style-1:hover .text-btn {
    bottom: 30px;
  }
}

@media (max-width: 575px) {
  .product-item.style-1 {
    height: 400px;
  }
}

.product-item.style-2 {
  background-color: transparent;
  border: 1px dashed var(--mbs-color-border-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 65px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item.style-2 .product-content,
.product-item.style-2 .title-area {
  width: 48%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .product-item.style-2 .product-content,
  .product-item.style-2 .title-area {
    width: 100%;
  }
}

.product-item.style-2 .product-icon {
  margin-bottom: 33px;
}

.product-item.style-2 .product-icon i {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.product-item.style-2 .title {
  color: var(--mbs-color-common-white);
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-2 .title {
    margin-bottom: 25px;
  }
}

.product-item.style-2 .desc {
  color: var(--mbs-color-text-body-2);
  margin-bottom: 22px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-2 .desc {
    margin-bottom: 16px;
  }
}

.product-item.style-2 .list-items li {
  color: var(--mbs-color-text-body-2);
}

.product-item.style-2:hover {
  background-color: var(--mbs-color-common-black);
  border-color: var(--mbs-color-common-black);
}

.product-item.style-2:hover .product-icon i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-2 {
    padding: 40px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-2 {
    padding: 30px 15px;
  }
}

.product-item.style-3 {
  margin-bottom: 20px;
  padding: 40px 60px 40px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-item.style-3:hover {
  background-color: var(--mbs-color-theme-primary);
}

.product-item.style-3:hover .title {
  color: var(--mbs-color-common-white);
}

.product-item.style-3:hover .product-icon {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

.product-item.style-3:hover .product-icon i {
  color: var(--mbs-color-common-white);
}

.product-item.style-3:hover .desc {
  color: var(--mbs-color-grey-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-item.style-3 {
    padding: 40px 40px 40px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-3 {
    padding: 30px 20px;
  }
}

.product-item.style-4 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-item.style-4 .product-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-item.style-4 .product-icon {
    margin-bottom: 75px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-4 .product-icon {
    width: 80px;
    height: 80px;
    font-size: 60px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-4 .product-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
  }
}

.product-item.style-4 .title {
  max-width: 275px;
}

.product-item.style-4:hover {
  background-color: var(--mbs-color-theme-primary);
}

.product-item.style-4:hover .product-icon {
  background: var(--mbs-color-common-white);
}

.product-item.style-4:hover .desc,
.product-item.style-4:hover .title {
  color: var(--mbs-color-common-white);
}

.product-item.style-4:hover .desc a,
.product-item.style-4:hover .title a {
  color: var(--mbs-color-common-white);
}

.product-item.style-4:hover .text-btn .btn-text {
  color: var(--mbs-color-common-white);
}

.product-item.style-4:hover .text-btn .btn-icon {
  background-color: var(--mbs-color-common-black);
}

.list-items {
  list-style: none;
}

.list-items li {
  color: var(--mbs-color-text-body);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  margin-bottom: 7px;
}

.list-items li:last-child {
  margin-bottom: 0;
}

.list-items li i {
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--mbs-color-theme-primary);
  margin-top: 6px;
}

.product-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.product-content-wrap .product-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  gap: 20px;
}

.product-content-wrap .product-title .product-icon {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.product-content-wrap .product-title .product-icon i {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-content-wrap .product-title .product-icon {
    font-size: 60px;
    width: 70px;
    height: 70px;
  }
}

.product-content-wrap .product-title .title {
  -webkit-transition: none;
  transition: none;
  margin-bottom: 0;
}

.product-content-wrap .product-title .title a:hover {
  color: var(--mbs-color-common-white);
}

.product-content-wrap .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-content-wrap .product-content .desc {
  max-width: 360px;
  width: 100%;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-content-wrap .product-content .desc {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-content-wrap .product-content {
    width: 100%;
    margin-top: 20px;
    padding-left: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-content-wrap .product-content {
    margin-top: 20px;
    padding-left: 80px;
  }
}

.product-reveal-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 291px;
  height: 303px;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.6s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
}

.product-reveal-bg:first-child {
  margin-top: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product-reveal-bg {
    width: 260px;
    height: 270px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-reveal-bg {
    display: none;
  }
}

.product-item:first-child .product-reveal-bg {
  margin-top: 40px;
}

.product-item:last-child .product-reveal-bg {
  margin-top: -40px;
}

.product-item:hover .product-reveal-bg {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.product-btn-area {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-product-section .content-wrap {
    margin-bottom: 50px;
  }
}

.bg-shape-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 915px;
  z-index: -1;
}

/* !END: Services CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.mbs-marquee-section {
  background-color: var(--mbs-color-theme-primary);
  position: relative;
  padding-top: 33px;
  padding-bottom: 37px;
  border-radius: 12px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-marquee-section {
    padding-top: 22px;
    padding-bottom: 16px;
  }
}

.marquee-slider {
  padding-bottom: 10px;
}

.marquee-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.marquee-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee-item .marquee-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--mbs-color-common-white);
  font-size: 136px;
  font-weight: var(--mbs-fw-sbold);
  font-family: var(--mbs-ff-heading);
  line-height: 1.2;
  margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item .marquee-text {
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-text {
    font-size: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .marquee-item .marquee-text {
    font-size: 50px;
    -webkit-text-stroke: 1px var(--mbs-color-common-white);
  }
}

.marquee-item .marquee-img {
  position: relative;
  top: 4px;
  color: var(--mbs-color-theme-primary);
  height: 98px;
  border-radius: 4px;
  overflow: hidden;
}

.marquee-item .marquee-img img {
  height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item .marquee-img {
    height: 75px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-img {
    height: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .marquee-item .marquee-img {
    height: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item {
    gap: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 575px) {
  .marquee-item {
    gap: 20px;
    padding-right: 20px;
  }
}

/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.mbs-info-section {
  position: relative;
}

.mbs-info-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mbs-info-section .sec-text {
  max-width: 550px;
  margin-left: 0;
  margin-right: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-info-section .sec-text {
    max-width: 380px;
  }
}

.mbs-info-section .infobox-navigation {
  gap: 20px;
  margin-bottom: 27px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mbs-info-section .infobox-navigation {
    margin-bottom: 20px;
  }
}

.mbs-info-section-2 {
  overflow: hidden;
}

.mbs-info-section-2 .container-fluid,
.mbs-info-section-2 .infobox-wrapper {
  padding: 0;
}

.mbs-info-section-2 .sec-heading {
  max-width: 550px;
}

.mbs-info-section-3 {
  background-color: var(--mbs-color-common-black);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-info-section-3 .container-fluid {
    padding-right: 0;
  }
}

.mbs-info-section-3 .sub-title {
  color: var(--mbs-color-theme-primary);
  border: 0;
  padding: 0;
}

.mbs-info-section-3 .sec-title {
  color: var(--mbs-color-common-white);
}

.mbs-info-section-3 .slider-next,
.mbs-info-section-3 .slider-prev {
  border-color: var(--mbs-color-border-2);
}

.mbs-info-section-3 .slider-next .anim-icon i,
.mbs-info-section-3 .slider-prev .anim-icon i {
  color: var(--mbs-color-common-white);
}

.infobox-wrapper {
  padding: 0 15px;
}

@media (max-width: 575px) {
  .infobox-wrapper {
    padding: 0;
  }
}

.infobox-area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  position: relative;
}

.infobox-area .infobox-item {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  min-height: 550px;
  grid-column: span 1/span 3;
}


.infobox-area .infobox-item:hover .infobox-content .categories a {
  background-color: var(--mbs-color-theme-primary);
}

.infobox-area .infobox-item p {
  position: absolute;
  bottom: -300px;
  color: var(--mbs-color-text-body-2);
}

.infobox-area .infobox-item:before {
  content: "";
  opacity: 0;
  background: #000000;
  background: -webkit-linear-gradient(2deg, rgba(0, 0, 0, 1) 19%, rgba(255, 255, 255, 0) 85%);
  background: -moz-linear-gradient(2deg, rgba(0, 0, 0, 1) 19%, rgba(255, 255, 255, 0) 85%);
  background: linear-gradient(2deg, rgba(0, 0, 0, 1) 19%, rgba(255, 255, 255, 0) 85%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FFFFFF", GradientType=0);
  position: absolute;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
}

.infobox-area .infobox-item:hover:before {
  opacity: 1;
  transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
}

.infobox-area .infobox-item:hover p {
  position: relative;
  bottom: 0px;
}

.infobox-area .infobox-item:first-child,
.infobox-area .infobox-item:last-child {
  grid-column: span 2/span 3;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .infobox-area .infobox-item:first-child,
  .infobox-area .infobox-item:last-child {
    grid-column: span 3/span 5;
  }
}

.infobox-area .infobox-item .infobox-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.infobox-area .infobox-item .infobox-img::before {
  opacity: 0.25;
}

.infobox-area .infobox-item .infobox-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .infobox-area .infobox-item .infobox-content {
    padding: 20px;
  }
}

.infobox-area .infobox-item .infobox-content .title {
  color: var(--mbs-color-common-white);
  max-width: 245px;
  width: 100%;
  margin-bottom: 0;
  font-size: var(--mbs-fs-h3);
  line-height: 1.333;
  margin-bottom: 10px;
}

.infobox-area .infobox-item .infobox-content .title a {
  color: var(--mbs-color-common-white);
}

.infobox-area .infobox-item .infobox-content .title a:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infobox-area .infobox-item .infobox-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media (max-width: 575px) {
  .infobox-area .infobox-item .infobox-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

.infobox-area .infobox-item .infobox-content .infobox-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}

.infobox-area .infobox-item .infobox-content .categories a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--mbs-color-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.infobox-area .infobox-item .infobox-content .categories a:hover {
  background-color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .infobox-area .infobox-item .infobox-content {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .infobox-area .infobox-item .infobox-content {
    padding: 25px 20px;
  }
}

.infobox-area .infobox-item:hover .infobox-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.infobox-area .infobox-item:hover .infobox-btn {
  opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .infobox-area .infobox-item {
    min-height: 450px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .infobox-area .infobox-item {
    min-height: 450px;
    grid-column: span 2/span 5;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .infobox-area .infobox-item {
    min-height: 350px;
    grid-column: 1/3;
  }
}

.infobox-area .infobox-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 0;
}

.infobox-area .infobox-btn i {
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-normal);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.infobox-area .infobox-btn:hover {
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
}

.infobox-area .infobox-btn:hover i {
  color: var(--mbs-color-common-white);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infobox-area .infobox-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .infobox-area .infobox-btn {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .infobox-area {
    gap: 20px;
  }

  .page-business .infobox-area {
    gap: 2px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .infobox-area {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
  }

  .page-business .infobox-area {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .infobox-area {
    min-height: 350px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.infobox-item {
  background-color: var(--mbs-color-common-white);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.infobox-item .infobox-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.infobox-item .infobox-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.infobox-item .infobox-img::before {
  content: "";
  background: var(--mbs-color-common-black);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.16;
  pointer-events: none;
  z-index: 2;
}

.infobox-item .infobox-content {
  padding: 25px 20px 25px 30px;
}

.infobox-item .infobox-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}

.infobox-item .title {
  max-width: 245px;
  width: 100%;
  margin-bottom: 0;
}

.infobox-item .title a:hover {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .infobox-item .title {
    width: calc(100% - 60px);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .infobox-item .title {
    max-width: 100%;
    width: calc(100% - 60px);
  }
}

.infobox-item .categories a {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--mbs-color-text-body);
  border-color: var(--mbs-color-border-1);
}

.infobox-item:hover .infobox-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.infobox-item:hover .infobox-btn {
  opacity: 1;
}

.infobox-btn {
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.infobox-btn i {
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-bold);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.infobox-btn:hover i {
  color: var(--mbs-color-theme-primary);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.categories a {
  background-color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
  line-height: 1;
  color: var(--mbs-color-text-body);
  font-weight: var(--mbs-fw-medium);
  padding: 2px 7px 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--mbs-color-border-1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.categories a:hover {
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.infobox-slider .infobox-item {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.infobox-slider .infobox-item .infobox-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.infobox-slider .infobox-item .infobox-content {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: inherit;
  width: 100%;
  padding: 0 20px;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.infobox-slider .infobox-item .infobox-content .categories {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.infobox-slider .infobox-item .infobox-content .categories a {
  color: var(--mbs-color-text-body-2);
  background-color: rgba(255, 255, 255, 0.1);
}

.infobox-slider .infobox-item .infobox-content .categories a:hover {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
}

.infobox-slider .infobox-item .infobox-content .title {
  color: var(--mbs-color-common-white);
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .infobox-slider .infobox-item .infobox-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infobox-slider .infobox-item .infobox-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media (max-width: 575px) {
  .infobox-slider .infobox-item .infobox-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

.infobox-slider .infobox-item .infobox-content .infobox-text {
  display: block;
  margin-top: 15px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .infobox-slider .infobox-item .infobox-content {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .infobox-slider .infobox-item .infobox-content {
    padding: 25px 20px;
  }
}

.infobox-slider .infobox-item .infobox-content .infobox-btn {
  background-color: transparent;
  border: 0;
  opacity: 1;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  width: 60px;
  height: 60px;
  font-size: 52px;
  margin: 35px auto 0;
}

.infobox-slider .infobox-item .infobox-content .infobox-btn i {
  color: var(--mbs-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.infobox-slider .infobox-item .infobox-content .infobox-btn:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .infobox-slider .infobox-item .infobox-content {
    opacity: 1;
    visibility: visible;
  }
}

.infobox-slider .infobox-item:hover .infobox-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.infobox-slider .infobox-item:hover .infobox-img::before {
  opacity: 0.6;
}

.infobox-slider .infobox-item:hover .infobox-content {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .infobox-slider .infobox-item {
    min-height: 450px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infobox-slider .infobox-item {
    min-height: 400px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .infobox-slider .infobox-item {
    min-height: 330px;
  }
}

.infobox-slider-2 .infobox-item {
  background-color: var(--mbs-color-common-black);
}

.infobox-slider-2 .infobox-item .title {
  color: var(--mbs-color-common-white);
  margin-bottom: 0;
}

.infobox-slider-2 .infobox-item .title a {
  display: inline;
}

.infobox-slider-2 .infobox-item .title a:hover {
  color: var(--mbs-color-theme-primary);
}

.infobox-slider-2 .infobox-item .categories a {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--mbs-color-text-body-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.infobox-slider-2 .infobox-item .categories a:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.infobox-slider-2 .infobox-item .infobox-btn i {
  color: var(--mbs-color-common-white);
}

.infobox-slider-2 .infobox-item .infobox-btn:hover i {
  color: var(--mbs-color-theme-primary);
}

/* !END: Project CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.mbs-testimonial-section {
  background-color: var(--mbs-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
}

.mbs-testimonial-section .sec-heading-wrap {
  padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-testimonial-section .sec-heading-wrap {
    padding-top: 100px;
  }
}

.testimonial-wrapper {
  position: relative;
  height: 100%;
}

@media (max-width: 575px) {
  .testimonial-wrapper {
    -webkit-margin-end: -12px;
    margin-inline-end: -12px;
  }
}

.testimonial-slider .testimonial-item {
  background-color: var(--mbs-color-common-white);
  border: 2px solid var(--mbs-color-common-white);
  padding: 45px 26px 35px;
  height: 100%;
  border-radius: 12px;
}

.testimonial-slider .testimonial-item .quote-icon {
  color: var(--mbs-color-theme-primary);
  font-size: 46px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.testimonial-slider .testimonial-item .rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--mbs-color-theme-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-img img {
  width: 33px;
  height: 33px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-text {
  color: var(--mbs-color-text-body-2);
  font-size: 14px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-text strong {
  font-size: 16px;
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-black);
}

.testimonial-slider .testimonial-item .desc {
  font-size: 18px;
  line-height: 1.444;
  padding-top: 23px;
  padding-bottom: 22px;
}

.testimonial-slider .testimonial-item .desc p {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 16px;
  }
}

.testimonial-slider .testimonial-item .testimonial-author .title {
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item {
    padding: 35px 23px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider .testimonial-item {
    padding: 30px 20px;
  }
}

.testimonial-slider .swiper-slide-active .testimonial-item {
  border-color: var(--mbs-color-theme-primary);
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px dashed var(--mbs-color-border-1);
}

.testimonial-author .author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.testimonial-author .author-img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author .author-img {
    width: 50px;
    height: 50px;
  }
}

.testimonial-author .title {
  margin-bottom: 0;
  line-height: 1;
}

.testimonial-author .designation {
  font-size: 14px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.testimonial-author .quote-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--mbs-color-theme-primary);
  font-size: 43px;
}

.testimonial-author .quote-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author .quote-icon {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author {
    padding-top: 20px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 3px;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--mbs-color-theme-primary);
}

.star-ratings .fill-ratings {
  color: var(--mbs-color-theme-primary);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}

.star-ratings .fill-ratings span {
  display: inline-block;
  margin: 0;
}

.star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: transparent;
}

.mbs-testimonial-section-2 {
  overflow: hidden;
}

@media (max-width: 575px) {
  .mbs-testimonial-section-2 .testimonial-wrapper {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.testimonial-img-area {
  position: relative;
}

.testimonial-img-area .testimonial-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-img-area .testimonial-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-img-area .testimonial-img img {
    -o-object-fit: unset;
    object-fit: unset;
  }
}

.testimonial-img-area .testimonial-img .sec-heading {
  position: absolute;
  top: 40px;
  left: 30px;
  width: 60%;
  z-index: 2;
}

.testimonial-img-area .testimonial-img .sec-heading .sec-title {
  color: var(--mbs-color-common-white);
}

.testimonial-img-area .testimonial-img .sec-heading .sec-title span {
  color: var(--mbs-color-text-body-3);
}

.testimonial-img-area .testimonial-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0.25;
}

.testimonial-img-area .box-area {
  max-width: 239px;
  bottom: 0;
  right: 0;
  left: inherit;
  padding: 15px 0 0 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

.testimonial-img-area .box-area::before {
  left: inherit;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.testimonial-img-area .box-area::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

@media (max-width: 575px) {
  .testimonial-img-area .box-area {
    max-width: 215px;
  }
}

.rating-box {
  background-color: var(--mbs-color-theme-primary);
  border-radius: 10px;
  padding: 18px 25px 25px;
}

.rating-box .rating-area {
  margin-bottom: 8px;
}

.rating-box .star-ratings {
  -webkit-text-stroke: 1px var(--mbs-color-common-white);
}

.rating-box .star-ratings .fill-ratings {
  color: var(--mbs-color-common-white);
}

.rating-box .rating-text {
  color: var(--mbs-color-common-white);
}

.rating-box .title {
  font-size: 74px;
  line-height: 1;
  color: var(--mbs-color-common-white);
  margin-bottom: 58px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .rating-box .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}

.rating-box .number {
  color: var(--mbs-color-common-white);
  font-size: 20px;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.1;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 575px) {
  .rating-box .number {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .rating-box {
    padding: 20px 18px 25px;
  }
}

.testimonial-slider-2 {
  height: 100%;
}

.testimonial-slider-2 .testimonial-item {
  background-color: var(--mbs-color-common-white);
  padding: 60px 50px;
  height: 100%;
  border-radius: 12px;
}

.testimonial-slider-2 .testimonial-item .quote-icon {
  color: var(--mbs-color-theme-primary);
  font-size: 63px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item .quote-icon {
    font-size: 45px;
  }
}

.testimonial-slider-2 .testimonial-item .desc {
  font-size: 22px;
  line-height: 1.444;
  padding-top: 30px;
  padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-2 .testimonial-item .desc {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item .desc {
    font-size: 16px;
    padding-top: 20px;
  }
}

.testimonial-slider-2 .testimonial-item .testimonial-author .author-img {
  width: 80px;
  height: 80px;
}

.testimonial-slider-2 .testimonial-item .testimonial-author .title {
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 35px 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 30px 20px;
  }
}

.testimonial-slider-2 .swiper-pagination-area {
  position: absolute;
  left: inherit;
  bottom: 60px;
  right: 45px;
  z-index: 10;
  max-width: 200px;
  width: auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .swiper-pagination-area {
    bottom: 30px;
  }
}

.mbs-testimonial-section-3 {
  overflow: hidden;
}

.testimonial-wrapper-2 {
  background-color: var(--mbs-color-theme-bg);
  border-radius: 12px;
  margin-top: 20px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.testimonial-wrapper-2 .sec-title {
  max-width: 290px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 1px dashed var(--mbs-color-border-1);
  background-color: var(--mbs-color-grey-1);
  border-radius: 40px;
  padding: 2px 22px 4px;
  position: relative;
  top: -19px;
  font-weight: var(--mbs-fw-sbold);
}

.testimonial-wrapper-2 .sec-title span {
  color: var(--mbs-color-theme-primary);
}

.testimonial-wrapper-2 .client-thumb {
  max-width: 270px;
  margin: 0 auto;
  padding-top: 50px;
}

.testimonial-wrapper-2 .client-thumb .thumb-item {
  margin-bottom: 14px;
}

.testimonial-wrapper-2 .client-thumb .thumb-img {
  width: 82px;
  height: 82px;
  background-color: var(--mbs-color-theme-bg);
  border-radius: 50%;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.testimonial-wrapper-2 .client-thumb .thumb-img img {
  mix-blend-mode: luminosity;
}

.testimonial-wrapper-2 .client-thumb .author-header {
  width: 140px;
  text-align: center;
  margin-top: 15px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.testimonial-wrapper-2 .client-thumb .author-header .title {
  font-size: 20px;
  line-height: 1;
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active .thumb-img {
  border-color: var(--mbs-color-theme-primary);
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active .author-header {
  opacity: 1;
  visibility: visible;
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active img {
  mix-blend-mode: unset;
}

.support-section {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.2s ease;
  background-color: var(--mbs-color-grey-1);
  padding: 0 20px;
  position: relative;
}

.support-section.active {
  max-height: 1000px;
  opacity: 1;
  padding: 40px 20px 0px 20px;
  z-index: 9999;
  2
}

.support-section .sec-heading h1 {
  font-weight: 600;
  font-size: 34px;
}

.support-section .sec-heading strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.108;
  color: var(--mbs-color-common-black);
  letter-spacing: -0.03em;
  margin-bottom: .5rem;
  display: block;
  margin-top: 0px;
}

.support-close-btn {
  width: 55px;
  height: 55px;
  background: var(--mbs-color-theme-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 26px;
  position: relative;
  bottom: -25px;
}


.support-close-btn i {
  position: relative;
  left: 1px;
  top: 2px;
  font-size: 26px;
}

.support-close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}




@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .client-thumb {
    padding-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-item {
  background-color: var(--mbs-color-common-white);
  border-radius: 12px;
  position: relative;
  margin: 17px 220px 0;
  padding: 40px 38px;
}

.testimonial-wrapper-2 .testimonial-item::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background-color: var(--mbs-color-common-white);
}

.testimonial-wrapper-2 .testimonial-item .desc {
  font-size: 26px;
  line-height: 1.385;
  text-align: center;
}

.testimonial-wrapper-2 .testimonial-item .desc p {
  margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 160px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 120px 0;
    padding: 35px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 15px 0;
    padding: 30px 20px;
  }
}

.testimonial-wrapper-2 .testimonial-navigation {
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.testimonial-wrapper-2 .slider-prev {
  margin-top: -52px;
  margin-left: -24px;
  background-color: #ecf0f0;
}

.testimonial-wrapper-2 .slider-next {
  background-color: #ecf0f0;
  margin-top: -52px;
  margin-right: -24px;
}

.testimonial-wrapper-2:hover .testimonial-navigation {
  opacity: 1;
  visibility: visible;
}

.testimonial-wrapper-2 .quote-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 299px;
  color: var(--mbs-color-theme-primary);
  opacity: 0.1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.testimonial-wrapper-2 .quote-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .quote-icon {
    font-size: 190px;
  }
}

.testimonial-wrapper-2 .bg-shape-2,
.testimonial-wrapper-2 .bg-shape-1 {
  max-width: 280px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 {
    padding-bottom: 60px;
  }
}

.slider-navigation {
  gap: 13px;
}

.slider-next,
.slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background-color: transparent;
  border: 1px solid var(--mbs-color-border-1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.slider-next .anim-icon,
.slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.slider-next .anim-icon i,
.slider-prev .anim-icon i {
  position: relative;
  top: 0;
  color: var(--mbs-color-common-black);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.slider-next .anim-icon i:last-child,
.slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
  color: var(--mbs-color-common-black);
}

.slider-next:hover,
.slider-prev:hover {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
}

.slider-next:hover .anim-icon i:first-child,
.slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}

.slider-next:hover .anim-icon i:last-child,
.slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .slider-next,
  .slider-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}

.slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 55px;
}

.swiper-pagination-area.white-pagination .swiper-pagination-bullet {
  background-color: var(--mbs-color-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  background-color: var(--mbs-color-common-black);
  border-radius: 30px;
  opacity: 0.15;
  position: relative;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.swiper-pagination-bullet-active {
  width: 64px;
  opacity: 1;
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/


.faq-img-area {
  max-width: 585px;
  position: relative;
}

.faq-img-area .faq-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.faq-img-area .faq-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.faq-img-area .faq-img .title {
  position: absolute;
  top: 40px;
  left: 30px;
  max-width: 400px;
  color: var(--mbs-color-common-white);
  z-index: 2;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .faq-img-area .faq-img .title {
    max-width: 280px;
  }
}

.faq-img-area .faq-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0.25;
}

.faq-img-area .box-area {
  max-width: 239px;
  bottom: 0;
  right: 0;
  left: inherit;
  padding: 15px 0 0 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

.faq-img-area .box-area::before {
  left: inherit;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-img-area .box-area::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

@media (max-width: 575px) {
  .faq-img-area .box-area {
    max-width: 215px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-img-area {
    max-width: 100%;
  }
}

.call-box {
  background-color: var(--mbs-color-theme-primary);
  border-radius: 10px;
  padding: 25px 20px 30px;
}

.call-box .call-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  font-size: 20px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin-bottom: 9px;
}

@media (max-width: 575px) {
  .call-box .call-icon {
    font-size: 18px;
    height: 45px;
    width: 45px;
  }
}

.call-box .title {
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-sbold);
  max-width: 145px;
  margin-bottom: 29px;
}

@media (max-width: 575px) {
  .call-box .title {
    margin-bottom: 18px;
  }
}

.call-box .number {
  color: var(--mbs-color-common-white);
  font-size: 20px;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.call-box .number span {
  position: relative;
}

.call-box .number span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.call-box .number:hover span::after {
  -webkit-animation: linehover 0.8s linear;
  animation: linehover 0.8s linear;
}

@media (max-width: 575px) {
  .call-box .number {
    font-size: 18px;
  }
}

.call-box:hover .call-icon {
  -webkit-animation: bellshake 0.5s linear;
  animation: bellshake 0.5s linear;
}

@media (max-width: 575px) {
  .call-box {
    padding: 20px 18px 25px;
  }
}

.mbs-faq .accordion-item {
  margin-bottom: 2px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  position: relative;
}

.mbs-faq .accordion-item:last-child {
  margin-bottom: 0;
}

.mbs-faq .accordion-item .faq-title {
  text-align: left;
  padding: 27px 60px 27px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transition: none;
  transition: none;
}

.mbs-faq .accordion-item .faq-title h3 {
  font-size: 18px;
  color: var(--mbs-color-common-black);
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mbs-faq .accordion-item .faq-title::after {
  content: "\e3d4";
  color: var(--mbs-color-common-black);
  font-size: 20px;
  font-family: "Phosphor" !important;
  font-weight: normal;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-faq .accordion-item .faq-title {
    padding: 20px 40px 20px 0;
  }
}

.mbs-faq .accordion-item .accordion-body {
  padding: 0;
  padding-bottom: 25px;
  margin-top: 15px;
  color: var(--mbs-color-text-body);
}

.mbs-faq .accordion-item .accordion-body b,
.mbs-faq .accordion-item .accordion-body strong,
.mbs-faq .accordion-item .accordion-body a {
  font-weight: 600;
}

.mbs-faq .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

.mbs-faq .accordion-item.active .faq-title {
  border-bottom: 1px dashed var(--mbs-color-border-1);
}

.mbs-faq .accordion-item.active .faq-title::after {
  content: "\e32a";
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-faq .accordion-item {
    padding: 0 20px;
  }
}


.mbs-faq.style-2 .accordion-item.active {
  background-color: var(--mbs-color-theme-primary);
}

.mbs-faq.style-2 .accordion-item.active .faq-title {
  color: var(--mbs-color-common-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.mbs-faq.style-2 .accordion-item.active .faq-title::after {
  color: var(--mbs-color-common-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.mbs-faq.style-2 .accordion-item.active .accordion-body p {
  color: var(--mbs-color-common-white);
}

/* !END: Faq CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.mbs-news-section .row>*:nth-child(1) {
  padding-right: 2px;
}

.mbs-news-section .row>*:nth-child(2) {
  padding-right: 0;
  padding-left: 0;
}

/* 3. kutu: Sol padding 0 */
.mbs-news-section .row>*:nth-child(3) {
  padding-left: 2px;
}


.mbs-news-section-2 .sec-heading-wrap .sub-title {
  color: var(--mbs-color-theme-primary);
  background-color: var(--mbs-color-common-white);
  border: 0;
  padding: 7px 10px;
}

.mbs-news-section-3 {
  background-color: var(--mbs-color-theme-bg);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.mbs-news-section-3 .sec-heading {
  max-width: 550px;
}

.blog-item {
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.blog-item .blog-thumb {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.blog-item .blog-thumb::before {
  content: "";
  background-color: var(--mbs-color-common-black);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.blog-item .blog-thumb img {
  width: 100%;
  min-height: 285px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .blog-item .blog-thumb {
    height: 240px;
  }

  .blog-item .blog-thumb img {
    min-height: 240px;
  }
}

.blog-item .blog-content {
  background-color: var(--mbs-color-common-white);
  padding: 25px 25px 50px 25px;
  height: 100%;
}

.blog-item .blog-content .title {
  font-size: var(--mbs-fs-h3);
  font-weight: var(--mbs-fw-sbold);
  line-height: 1.333;
  margin: 0;
}

.blog-item .blog-content .title a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 85%;
  display: inline;
  /* Mevcut hover efekti için inline korunur */
  transition: background-size 0.3s ease-in-out;
}

.blog-item .blog-content .title a:hover {
  background-size: 100% 2px;
}

.line-dot {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* JavaScript tarafından eklenecek kırpılmış metin için stil */
.blog-item .blog-content .title a.clamped {
  display: inline;
  /* inline davranışı korunur */
  position: relative;
  /* Üç nokta için */
}

.blog-item .blog-content .desc {
  margin-top: 15px;
}

.blog-item .blog-content .desc:last-of-type {
  margin-bottom: 0;
}

.blog-item .blog-content .text-btn {
  margin-top: 15px;
}

.blog-item .blog-content .categories a:hover {
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.blog-item:hover .blog-thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-item.style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--mbs-color-common-white);
  height: 100%;
}

.blog-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.blog-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.blog-item.style-2 .blog-thumb {
  width: 47%;
  border-radius: 10px;
}

.blog-item.style-2 .blog-content {
  width: 100%;
  height: auto;
  padding: 45px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-item.style-2 .blog-content p {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-item:hover .blog-content .text-btn {
  bottom: 0;
}

.blog-item .blog-content h2.title,
.blog-item .blog-content h3.title,
.blog-item .blog-content h4.title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
  font-weight: 500;
}

.blog-item .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item.end-news .blog-content h3.title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.blog-item.end-news .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



.blog-item.end-news .blog-thumb {
  min-height: 360px;
  max-height: 420px;
}

.blog-item.end-news .blog-thumb img {
  min-height: 360px;
}






.blog-item .blog-content .text-btn {
  width: 100%;
  background: var(--mbs-color-common-black);
  position: absolute;
  bottom: -50px;
  padding: 8px 0;
  left: 0;
}

.blog-item .blog-content .text-btn .btn-text,
.blog-item .blog-content .text-btn .btn-icon i {
  color: var(--mbs-color-common-white);
}

.news-list-page.pr-det .blog-item .blog-thumb img {
  object-fit: scale-down;
  background: #fff;
}

.news-list-page.pr-det .blog-item .blog-content>strong {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--mbs-fw-medium);
  padding: 4px 18px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  background-color: #f0f0f0;
  color: var(--mbs-color-common-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.news-list-page.pr-det .blog-item:hover .blog-content>strong {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.news-list-page.pr-det .blog-item .blog-thumb {
  height: 360px;
}

.news-list-page.pr-det .blog-item .blog-thumb::before {
  opacity: 0.1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item.style-2 .blog-content .title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item.style-2 .blog-content {
    padding: 30px 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-item.style-2 .blog-content {
    padding: 25px 20px;
  }
}

.blog-item.style-3 {
  border: 0;
  padding: 0;
  position: relative;
}

.blog-item.style-3 .blog-thumb::before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(12, 30, 33)), to(rgba(12, 30, 33, 0)));
  background: linear-gradient(0deg, rgb(12, 30, 33) 0%, rgba(12, 30, 33, 0) 100%);
  opacity: 1;
}

.blog-item.style-3 .blog-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 28px;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.blog-item.style-3 .blog-content .title a {
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-item.style-3 .blog-content .title {
    font-size: 19px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item.style-3 .blog-content {
    padding: 25px 20px;
  }
}

@media (max-width: 575px) {
  .blog-item.style-3 .blog-content {
    padding: 18px 15px;
  }
}

.blog-item.style-3 .blog-meta .categories a {
  color: var(--mbs-color-text-body-2);
  border-color: transparent;
}

.blog-item.style-3 .blog-meta .categories a:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.blog-item.style-3 .blog-meta span {
  color: var(--mbs-color-text-body-2);
}

.blog-item.style-3 .blog-meta span a {
  color: var(--mbs-color-grey-1);
}

.blog-item.style-3 .text-btn {
  position: absolute;
  margin: 0;
  left: 30px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.blog-item.style-3 .text-btn .btn-text {
  color: var(--mbs-color-common-white);
}

.blog-item.style-3 .text-btn .btn-icon {
  background-color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item.style-3 .text-btn {
    left: 20px;
  }
}

@media (max-width: 575px) {
  .blog-item.style-3 .text-btn {
    left: 15px;
  }
}

.blog-item.style-3:hover::before {
  height: 100%;
}

.blog-item.style-3:hover .blog-content {
  padding-bottom: 90px;
}

@media (max-width: 575px) {
  .blog-item.style-3:hover .blog-content {
    padding-bottom: 70px;
  }
}

.blog-item.style-3:hover .text-btn {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

@media (max-width: 575px) {
  .blog-item.style-3:hover .text-btn {
    bottom: 25px;
  }
}

.blog-date {
  position: absolute;
  left: 15px;
  top: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 6px;
  z-index: 2;
}

.blog-date .date {
  display: block;
  font-family: var(--mbs-ff-heading);
  font-size: 32px;
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-medium);
  letter-spacing: -0.96px;
  margin-bottom: 8px;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 14px;
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-bold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1;
}

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-meta span {
  color: var(--mbs-color-text-body-3);
  line-height: 1;
}

.blog-meta span a {
  color: var(--mbs-color-common-black);
}

.blog-meta span a:hover {
  color: var(--mbs-color-theme-primary);
}

@media (max-width: 575px) {
  .blog-meta {
    margin-bottom: 15px;
  }
}

.blog-post-wrapper .blog-item {
  margin-bottom: 40px;
}

.blog-post-wrapper .blog-item .blog-thumb {
  border-radius: 12px;
}

.blog-post-wrapper .blog-item .blog-content {
  background-color: transparent;
  padding: 25px 0 0 0;
}

.blog-post-wrapper .blog-item .blog-meta {
  margin-bottom: 12px;
}

.mbs-pagination {
  margin-top: 50px;
}

.mbs-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.mbs-pagination ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--mbs-color-border-1);
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-black);
}

.mbs-pagination ul li .page-numbers i {
  line-height: 1;
  color: var(--mbs-color-common-black);
}

.mbs-pagination ul li .page-numbers:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-theme-primary);
}

.mbs-pagination ul li .page-numbers:hover i {
  color: var(--mbs-color-common-white);
}

.mbs-pagination ul li .page-numbers.current {
  background-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-common-black);
}

.mbs-pagination ul li .page-numbers.current i {
  color: var(--mbs-color-common-white);
}

.mbs-pagination ul li .page-numbers.next {
  font-size: 22px;
}

/* !END: Blog CSS */
/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.mbs-cta-section {
  margin-bottom: -195px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mbs-cta-section {
    margin-bottom: -150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-cta-section {
    margin-bottom: -135px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-cta-section {
    margin-bottom: -320px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-cta-section {
    margin-bottom: -270px;
  }
}

.cta-area {
  background-color: var(--mbs-color-theme-primary);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cta-area .cta-content {
  width: 50%;
  margin: 0;
  padding: 44px 15px 60px 55px;
}

.cta-area .cta-content .title {
  font-size: 74px;
  line-height: 1.12;
  color: var(--mbs-color-common-white);
  margin-bottom: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-area .cta-content .title {
    font-size: 62px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-area .cta-content .title {
    font-size: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-content .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-area .cta-content .title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .cta-area .cta-content .title {
    font-size: 43px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-area .cta-content {
    padding: 34px 15px 45px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .cta-area .cta-content {
    width: 100%;
    padding: 34px 30px 45px 30px;
  }
}

.cta-area .cta-img {
  width: 50%;
}

.cta-area .cta-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .cta-area .cta-img {
    width: 100%;
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Countup CSS
----------------------------------------*/
.mbs-countup-section {
  position: relative;
  z-index: 2;
  margin-bottom: -122px;
}

.countup-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--mbs-color-theme-primary);
  border-radius: 12px;
}

.countup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25%;
  padding: 68px 50px 74px 50px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .countup-item {
    padding: 55px 30px 60px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .countup-item {
    width: 50%;
    padding: 45px 30px 50px 30px;
  }
}

@media (max-width: 575px) {
  .countup-item {
    width: 100%;
    padding: 38px 0 45px 0;
    text-align: center;
  }

  .countup-item:last-child {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .countup-item:nth-child(2) .count-separator {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

  .countup-item:nth-child(4),
  .countup-item:nth-child(3) {
    padding-top: 0;
  }
}

.inline-content {
  font-size: 74px;
  line-height: 1;
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-common-white);
  font-family: var(--mbs-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: -1.48px;
}

.inline-content .odometer {
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-common-white);
  font-family: var(--mbs-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inline-content .odometer .odometer-digit,
.inline-content .odometer span {
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-common-white);
  font-family: var(--mbs-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: bottom;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inline-content {
    font-size: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .inline-content {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .inline-content {
    font-size: 55px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.count-text {
  color: var(--mbs-color-common-white);
  display: block;
}

.count-separator {
  position: absolute;
  width: 10px;
  height: 90px;
  top: 50%;
  right: -5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.15;
}

@media (max-width: 575px) {
  .count-separator {
    top: inherit;
    bottom: 0;
    right: 50%;
    -webkit-transform: translate(0, 50%) rotate(90deg);
    -ms-transform: translate(0, 50%) rotate(90deg);
    transform: translate(0, 50%) rotate(90deg);
  }
}

/* !END: Countup CSS */
/**----------------------------------------
START: Working process CSS
----------------------------------------*/
.mbs-working-process {
  background-color: var(--mbs-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.mbs-working-process .sec-heading-wrap .sub-title {
  color: var(--mbs-color-theme-primary);
  background-color: var(--mbs-color-common-white);
  border: 0;
  padding: 7px 10px;
}

.mbs-working-process .content-wrap {
  margin-bottom: 45px;
}

.working-process-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.process-item {
  max-width: 422px;
  width: 100%;
  background-color: var(--mbs-color-common-white);
  padding: 25px 28px 40px 28px;
  position: relative;
  border-radius: 10px;
}

.process-item:not(:last-child)::after {
  content: "\e916";
  font-size: 24px;
  line-height: 1;
  color: var(--mbs-color-theme-primary);
  font-family: "Phosphor" !important;
  font-weight: normal;
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--mbs-color-common-white);
  border: 7px solid var(--mbs-color-theme-bg);
  top: 50%;
  right: -34px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: none;
  transition: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item:not(:last-child)::after {
    font-size: 20px;
    width: 50px;
    height: 50px;
    right: -30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item:not(:last-child)::after {
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    -ms-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
    top: inherit;
    right: inherit;
    bottom: -40px;
    left: 50%;
  }
}

.process-item .process-step {
  font-size: 120px;
  color: var(--mbs-color-theme-primary);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mbs-color-theme-primary)), color-stop(90%, var(--mbs-color-common-white)));
  background: linear-gradient(180deg, var(--mbs-color-theme-primary) 0%, var(--mbs-color-common-white) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item .process-step {
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item .process-step {
    font-size: 80px;
    margin-bottom: 20px;
  }
}

.process-item .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item .title {
    margin-bottom: 10px;
  }
}

.process-item .desc {
  margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-item {
    max-width: 362px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item {
    max-width: 302px;
    padding: 35px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item {
    max-width: 100%;
    padding: 35px 15px 30px 15px;
  }
}

.working-process-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .working-process-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-process-wrap {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .working-process-wrap .content-wrap {
    margin-bottom: 30px;
  }
}

.mbs-faq.style-3 {
  max-width: 460px;
  width: 100%;
  padding: 0;
  counter-reset: steps;
}

.mbs-faq.style-3 .accordion-item {
  background: transparent;
  border: none;
  border-left: 4px solid var(--mbs-color-border-1);
  padding-left: 20px;
  margin-bottom: 0;
}

.mbs-faq.style-3 .accordion-item .faq-title {
  padding-right: 0;
  padding-left: 27px;
  color: var(--mbs-color-common-black);
}

.mbs-faq.style-3 .accordion-item .faq-title::after {
  display: none;
}

.mbs-faq.style-3 .accordion-item .faq-title::before {
  counter-increment: steps;
  content: "0" counter(steps) ".";
  font-size: 14px;
  line-height: 1;
  font-weight: var(--mbs-fw-medium);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-faq.style-3 .accordion-item .faq-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-faq.style-3 .accordion-item .faq-title {
    font-size: 18px;
  }
}

.mbs-faq.style-3 .accordion-item .accordion-body {
  padding: 0 0 23px 27px;
}

.mbs-faq.style-3 .accordion-item.active {
  border-color: var(--mbs-color-theme-primary);
}

.mbs-faq.style-3 .accordion-item.active .faq-title::before {
  color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-faq.style-3 .accordion-item {
    padding-left: 10px;
  }
}

.working-img-area {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.working-img-area .circle-text-wrap.video-btn {
  right: inherit;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-img-area .circle-text-wrap.video-btn {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-img-area {
    position: relative;
    width: 100%;
    min-height: 500px;
  }
}

.working-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.working-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* !END: Working process CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.mbs-contact-section {
  background-color: var(--mbs-color-common-black);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.mbs-contact-section .sec-heading {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-bottom: 35px;
}

.mbs-contact-section .sec-heading .sec-title {
  color: var(--mbs-color-common-white);
}

.section-gap-page .sec-heading .sec-title {
  font-size: 34px;
}

.global-map {
  width: calc(100% + 530px);
  height: 100%;
  position: relative;
  z-index: -1;
}

.global-map .global-map-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -115px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .global-map .global-map-img {
    left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .global-map .global-map-img {
    left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .global-map .global-map-img {
    left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .global-map {
    width: calc(100% + 360px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .global-map {
    width: calc(100% + 280px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .global-map {
    width: 100%;
    height: 385px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .global-map {
    width: 100%;
    height: 285px;
    margin-bottom: 40px;
  }
}

.map-area {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .map-area {
    height: auto;
    margin-top: 30px;
  }
}

.contact-info .contact-item {
  padding: 13px 0 9px 0;
}

.contact-info .contact-item .subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--mbs-color-common-black);
  margin-bottom: 4px;
}

.contact-info .contact-item a:hover {
  color: var(--mbs-color-theme-primary);
}

.contact-info .contact-item .contact-link {
  display: inline-block;
  color: var(--mbs-color-common-white);
}

.contact-info .contact-item:last-child {
  border: 0;
}

.contact-form {
  background-color: var(--mbs-color-common-white);
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
  padding: 60px 50px;
  border-radius: 12px;
}

.contact-form .title {
  margin-bottom: 35px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .title {
    margin-bottom: 25px;
  }
}

.contact-form .form-input {
  margin-bottom: 27px;
  position: relative;
}

.contact-form .form-input textarea,
.contact-form .form-input select,
.contact-form .form-input .nice-select,
.contact-form .form-input input[type=tel],
.contact-form .form-input input[type=text],
.contact-form .form-input input[type=email] {
  background-color: transparent;
  color: var(--mbs-color-text-body-3);
  padding: 11px 0;
  border: 0;
  border-bottom: 1px dashed var(--mbs-color-border-1);
}

.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form .form-input input[type=text]::-webkit-input-placeholder,
.contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type=tel]::-moz-placeholder,
.contact-form .form-input input[type=text]::-moz-placeholder,
.contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type=tel]:-ms-input-placeholder,
.contact-form .form-input input[type=text]:-ms-input-placeholder,
.contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form .form-input input[type=text]::-webkit-input-placeholder,
.contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type=tel]::-moz-placeholder,
.contact-form .form-input input[type=text]::-moz-placeholder,
.contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type=tel]:-ms-input-placeholder,
.contact-form .form-input input[type=text]:-ms-input-placeholder,
.contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea::-ms-input-placeholder,
.contact-form .form-input select::-ms-input-placeholder,
.contact-form .form-input .nice-select::-ms-input-placeholder,
.contact-form .form-input input[type=tel]::-ms-input-placeholder,
.contact-form .form-input input[type=text]::-ms-input-placeholder,
.contact-form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea::placeholder,
.contact-form .form-input select::placeholder,
.contact-form .form-input .nice-select::placeholder,
.contact-form .form-input input[type=tel]::placeholder,
.contact-form .form-input input[type=text]::placeholder,
.contact-form .form-input input[type=email]::placeholder {
  color: var(--mbs-color-text-body-3);
}

.contact-form .form-input textarea:focus,
.contact-form .form-input select:focus,
.contact-form .form-input .nice-select:focus,
.contact-form .form-input input[type=tel]:focus,
.contact-form .form-input input[type=text]:focus,
.contact-form .form-input input[type=email]:focus {
  border-color: var(--mbs-color-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .contact-form .form-input textarea,
  .contact-form .form-input select,
  .contact-form .form-input .nice-select,
  .contact-form .form-input input[type=tel],
  .contact-form .form-input input[type=text],
  .contact-form .form-input input[type=email] {
    padding: 6px 0 10px;
  }
}

.contact-form .form-input .cf-label {
  font-size: 16px;
  color: var(--mbs-color-text-body-3);
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.contact-form .form-input .cf-label span {
  color: var(--mbs-color-theme-primary);
}

.contact-form .form-input textarea:focus~.cf-label,
.contact-form .form-input input[type=tel]:focus~.cf-label,
.contact-form .form-input input[type=text]:focus~.cf-label,
.contact-form .form-input input[type=email]:focus~.cf-label {
  visibility: hidden;
  opacity: 0;
}

.contact-form .form-input .nice-select {
  color: var(--mbs-color-text-body-3);
  line-height: 1.5;
  border-radius: 0;
  margin-bottom: 27px;
}

.contact-form .form-input .nice-select .list {
  width: 100%;
}

.contact-form .form-input .nice-select .list .option {
  color: var(--mbs-color-common-black);
}

.contact-form .form-input .nice-select .list .option:hover,
.contact-form .form-input .nice-select .list .option.focus {
  background: var(--mbs-color-theme-bg);
  color: var(--mbs-color-common-black);
}

.filter-form .nice-select .list {
  border-radius: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.contact-form .form-input .nice-select::after {
  content: "\e929";
  font-family: "Phosphor";
  color: var(--mbs-color-common-black);
  font-size: 16px;
  line-height: 1;
  width: 16px;
  height: 16px;
  top: 20px;
  right: 5px;
  border: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.contact-form .form-input .nice-select.open::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .form-input .nice-select {
    margin-bottom: 20px;
  }
}

.contact-form .form-input textarea {
  height: 130px;
  resize: none;
  padding-top: 0;
}

.contact-form .form-input.message-input {
  margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .form-input {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    padding: 25px 20px 30px;
  }
}

.contact-form.style-2 {
  max-width: 610px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.contact-form.style-2 .title {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form.style-2 .title {
    margin-bottom: 20px;
  }
}

.contact-form.style-2 .form-input {
  margin-bottom: 27px;
  position: relative;
}

.contact-form.style-2 .form-input.message-input {
  margin-top: 0;
}

@media (max-width: 575px) {
  .contact-form.style-2 .form-input.message-input {
    margin-top: 20px;
  }
}

.contact-form.style-2 .form-input textarea,
.contact-form.style-2 .form-input input[type=tel],
.contact-form.style-2 .form-input input[type=text],
.contact-form.style-2 .form-input input[type=email] {
  color: var(--mbs-color-text-body-2);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::-moz-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=text]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::-moz-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=text]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=text]::-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=email]::-ms-input-placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::placeholder,
.contact-form.style-2 .form-input input[type=tel]::placeholder,
.contact-form.style-2 .form-input input[type=text]::placeholder,
.contact-form.style-2 .form-input input[type=email]::placeholder {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input textarea:focus,
.contact-form.style-2 .form-input input[type=tel]:focus,
.contact-form.style-2 .form-input input[type=text]:focus,
.contact-form.style-2 .form-input input[type=email]:focus {
  border-color: rgb(255, 255, 255);
}

.contact-form.style-2 .form-input .cf-label {
  color: var(--mbs-color-text-body-2);
}

.contact-form.style-2 .form-input .nice-select {
  color: var(--mbs-color-text-body-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form.style-2 .form-input .nice-select.open {
  border-color: rgb(255, 255, 255);
}

.contact-form.style-2 .form-input .nice-select::after {
  color: var(--mbs-color-common-white);
}

.contact-form.style-2 .form-input textarea {
  height: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form.style-2 {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form.style-2 {
    padding: 35px 20px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.contact-item.style-2 {
  padding: 30px 25px 40px;
  background-color: var(--mbs-color-common-white);
  text-align: center;
  border-radius: 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-item.style-2 {
    padding: 25px;
  }
}

.contact-item.style-2 p {
  margin-bottom: 0;
  max-width: 224px;
  margin: 0 auto;
}

.contact-item.style-2:hover .contact-icon {
  background: var(--mbs-color-theme-primary);
}

.contact-item.style-2:hover .contact-icon i {
  color: var(--mbs-color-common-white);
}

.contact-item.style-2 .contact-icon {
  width: 88px;
  height: 88px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--mbs-color-theme-bg);
  border-radius: 50%;
  margin-bottom: 22px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.contact-item.style-2 .contact-icon i {
  font-size: 32px;
  color: var(--mbs-color-theme-primary);
}

.contact-item.style-2 .contact-title {
  font-size: 24px;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-item.style-2 .contact-title {
    font-size: 20px;
  }
}

.contact-item.style-2 .contact-list {
  list-style: none;
}

.contact-item.style-2 .contact-list li a {
  color: var(--mbs-color-text-body);
}

.contact-item.style-2 .contact-list li a:hover {
  color: var(--mbs-color-theme-primary);
}

.contact-item.style-2 .contact-list li.active a {
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-theme-primary);
}



.page-img-content {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 0px;
  position: relative;
  transition-duration: .5s;
}

.page-img-content img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
}

/* !END: Contact CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.mbs-slider-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 98px);
  z-index: 1;
  overflow: hidden;
}

.mbs-slider-section:before {
  content: '';
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 250px 0 0;
  border-color: #ffffff transparent transparent transparent;
}

.mbs-slider-section .swiper {
  height: 100%;
  width: 100%;
}

.mbs-slider-section .swiper .swiper-slide.mbs-slider-item {
  overflow: hidden;
}

.mbs-slider-section .banner-scroll .scroll-down {
  color: var(--mbs-color-common-white);
}

.mbs-slider-section .banner-scroll .scroll-down span {
  border-color: var(--mbs-color-common-white);
}

.mbs-slider-section .banner-scroll .scroll-down span::before {
  background-color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-slider-section .banner-scroll {
    left: 27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-slider-section .banner-scroll {
    left: 12px;
  }
}



.mbs-slider-item {
  min-height: 92.5vh;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.mbs-slider-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 14%, rgba(0, 212, 255, 0) 100%);
}

.mbs-slider-item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #04040C;
  opacity: 0.4;
}


.mbs-slider-item .slider-wrapper {
  padding: 0;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.mbs-slider-section .slider-bg-video {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mbs-slider-section .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mbs-slider-section .bg-dots {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  background-image: url(../img/bg-dots.png);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .mbs-slider-item .slider-wrapper {
    padding-left: 50px;
  }
}


@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-slider-item .slider-wrapper {
    padding: 170px 0 280px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-slider-item .slider-wrapper {
    padding-left: 5px;
  }
}

.mbs-slider-item .slider-content {
  max-width: 660px;
}

.mbs-slider-item .slider-content .slider-title {
  color: var(--mbs-color-common-white);
  font-size: 56px;
  line-height: 1.042;
  letter-spacing: -2.88px;
  margin-bottom: 25px;
}

.mbs-slider-item .slider-content .slider-title span {
  color: var(--mbs-color-text-body-2);
}

.mbs-slider-item .slider-content .slider-title img {
  max-width: 188px;
  border-radius: 50px;
  border: 4px solid var(--mbs-color-theme-primary);
  vertical-align: top;
  margin-top: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-slider-item .slider-content .slider-title img {
    max-width: 165px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-slider-item .slider-content .slider-title img {
    max-width: 140px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-slider-item .slider-content .slider-title img {
    max-width: 105px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 1291px) {
  .mbs-slider-item .slider-content {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 1291px) {
  .product-item.style-1 {
    height: 635px;
  }
}


@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-slider-item .slider-content .slider-title {
    font-size: 42px;
  }
}

.mbs-slider-item .slider-content .slider-desc {
  max-width: 80%;
  font-size: 18px;
  line-height: 1.444;
  color: var(--mbs-color-text-body-2);
}

.mbs-slider-item .slider-content .slider-btn {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mbs-slider-item .slider-content {
    max-width: 550px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-slider-item {
    min-height: 840px;
  }
}

.swiper-slide .slider-content .slider-title,
.swiper-slide .slider-content .slider-desc,
.swiper-slide .slider-content .slider-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-title,
.swiper-slide.swiper-slide-active .slider-content .slider-desc,
.swiper-slide.swiper-slide-active .slider-content .slider-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.swiper-slide.swiper-slide-active .slider-content .slider-title {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-desc {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-btn {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.slider-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-thumb {
  max-width: 1320px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 60px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hero-thumb .swiper-wrapper {
  max-width: 270px;
  margin: 0;
}

.hero-thumb .thumb-item {
  width: 80px !important;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.hero-thumb .thumb-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background-color: var(--mbs-color-common-black);
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hero-thumb .thumb-item {
    width: 65px !important;
    height: 65px;
  }
}

.hero-thumb .swiper-slide-thumb-active {
  border: 2px solid var(--mbs-color-common-white);
}

.hero-thumb .swiper-slide-thumb-active::after {
  opacity: 0.25;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-thumb {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-thumb {
    max-width: 1140px;
    bottom: 110px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-thumb {
    max-width: 960px;
    bottom: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-thumb {
    max-width: 720px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-thumb {
    max-width: 540px;
    bottom: 270px;
  }
}

@media (max-width: 575px) {
  .hero-thumb {
    bottom: 270px;
  }
}

.hero-navigation {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 30px;
  margin-top: 26px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hero-navigation .slider-next,
.hero-navigation .slider-prev {
  width: 60px;
  height: 60px;
  font-size: 28px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: -60px;
}

.hero-navigation .slider-next .anim-icon i,
.hero-navigation .slider-prev .anim-icon i {
  color: var(--mbs-color-common-white);
}

.hero-navigation .slider-next .anim-icon i:last-child,
.hero-navigation .slider-prev .anim-icon i:last-child {
  color: var(--mbs-color-common-black);
}

.hero-navigation .slider-next:hover,
.hero-navigation .slider-prev:hover {
  border-color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .hero-navigation .slider-next,
  .hero-navigation .slider-prev {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-navigation {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hero-navigation {
    padding: 0 15px;
  }
}

.circle-text-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 60px;
  right: 285px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: 5;
  overflow: hidden;
}

.circle-text-wrap .circle-icon,
.circle-text-wrap .circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6;
}

.circle-text-wrap .circle-text {
  width: 164px;
  height: 160px;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: textrotate 20s infinite linear;
  animation: textrotate 20s infinite linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap .circle-text {
    width: 134px;
    height: 130px;
  }
}

.circle-text-wrap .circle-icon {
  color: var(--mbs-color-common-white);
  font-size: 73px;
  width: 200px;
  height: 200px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.circle-text-wrap .circle-icon i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.circle-text-wrap .circle-icon:hover i {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap .circle-icon {
    font-size: 60;
    width: 150px;
    height: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .circle-text-wrap {
    right: 6%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap {
    width: 160px;
    height: 160px;
    right: 6%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap {
    right: 10%;
    bottom: 40px;
  }
}

@media (max-width: 575px) {
  .circle-text-wrap {
    right: 15px;
    bottom: 40px;
  }
}

/* !END: Slider CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.mbs-team-section {
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}

.mbs-team-section .sec-heading {
  max-width: 550px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-team-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-team-section {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.mbs-team-section-2 .sub-title {
  color: var(--mbs-color-theme-primary);
  border: 0;
  padding: 0;
}

.mbs-team-section-3 {
  background-color: var(--mbs-color-theme-bg);
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.mbs-team-section-3 .sec-heading {
  max-width: 500px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mbs-team-section-3 {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-team-section-3 {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

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

.team-item .team-img {
  position: relative;
}

.team-item .team-img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.team-item .team-img::after,
.team-item .team-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0;
  border-radius: 10px;
}

.team-item .team-img::after {
  background-color: var(--mbs-color-theme-primary);
  opacity: 1;
  z-index: -1;
}

.team-item .social-links {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.team-item .social-links ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-item .social-links ul li a {
  width: 30px;
  height: 30px;
  background-color: var(--mbs-color-theme-bg);
  opacity: 0.4;
}

.team-item .social-links ul li a i {
  color: var(--mbs-color-common-black);
}

.team-item .social-links ul li a:hover {
  opacity: 1;
  background-color: var(--mbs-color-theme-primary);
}

.team-item .social-links ul li a:hover i {
  color: var(--mbs-color-common-white);
}

.team-item .team-content {
  position: relative;
  margin-top: 18px;
}

.team-item .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
  width: calc(100% - 35px);
}

.team-item .title a {
  display: inline-block;
}

.team-item .title a:hover {
  color: var(--mbs-color-theme-primary);
}

.team-item .designation {
  font-size: 14px;
  color: var(--mbs-color-text-body-3);
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.team-item .mail-at {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: var(--mbs-color-common-white);
  color: var(--mbs-color-common-black);
  font-size: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 6px;
  right: 0;
}

.team-item .mail-at:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.team-item:hover .team-img::before {
  opacity: 0.75;
}

.team-item:hover .team-img::after {
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}

.team-item:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.team-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-wrapper {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.team-img-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.team-img-wrap .team-img {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.team-img-wrap .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-img-wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.team-item-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.team-item-wrap .team-item {
  background-color: var(--mbs-color-common-white);
  position: relative;
  text-align: start;
  width: 100%;
  border-radius: 12px;
  padding: 35px 30px 30px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-item-wrap .team-item:last-child {
  margin-bottom: 0;
}

.team-item-wrap .team-item .team-link {
  color: var(--mbs-color-theme-primary);
  font-size: 75px;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.team-item-wrap .team-item .team-link:hover {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-wrap .team-item .team-link {
    font-size: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item .team-link {
    font-size: 50px;
    top: 12px;
  }
}

.team-item-wrap .team-item .team-content {
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-item-wrap .team-item .title {
  width: calc(100% - 50px);
  font-weight: var(--mbs-fw-medium);
  line-height: 1;
  -webkit-transition: none;
  transition: none;
  margin-bottom: 11px;
}

.team-item-wrap .team-item .designation {
  font-size: 16px;
}

.team-item-wrap .team-item .social-links {
  top: inherit;
  left: inherit;
  bottom: 30px;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.team-item-wrap .team-item .social-links ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.team-item-wrap .team-item .social-links ul li a {
  width: 24px;
  height: 24px;
  font-size: 14px;
  background-color: var(--mbs-color-common-black);
}

.team-item-wrap .team-item .social-links ul li a i {
  color: var(--mbs-color-common-white);
}

.team-item-wrap .team-item .social-links ul li a:hover {
  background-color: var(--mbs-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item .social-links {
    bottom: 20px;
  }
}

.team-item-wrap .team-item .desc {
  opacity: 0;
  visibility: hidden;
}

.team-item-wrap .team-item.active .team-link {
  opacity: 1;
  visibility: visible;
}

.team-item-wrap .team-item.active .team-content {
  margin-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-wrap .team-item.active .team-content {
    margin-bottom: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item.active .team-content {
    margin-bottom: 50px;
  }
}

.team-item-wrap .team-item.active .social-links {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* !END: Team CSS */
/**----------------------------------------
START: Team Details CSS
----------------------------------------*/
.team-details {
  padding: 120px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details {
    padding: 60px 0;
  }
}

.team-details--img img {
  border-radius: 12px;
  width: 100%;
}

.team-details--content {
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--content {
    margin-top: 30px;
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--content {
    margin-top: 20px;
  }
}

.team-details .team-details--subtitle {
  margin-bottom: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details .team-details--subtitle {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--name {
    font-size: 36px;
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--name {
    font-size: 30px;
    margin-bottom: 8px;
  }
}

.team-details--desig {
  margin-bottom: 20px;
  color: var(--mbs-color-text-body-3);
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--desig {
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--desig {
    margin-bottom: 8px;
  }
}

.team-details .social-links ul li a i {
  color: var(--mbs-color-common-white);
}

.team-details--contact-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px dashed var(--mbs-color-border-1);
  margin: 30px 0;
  border-radius: 12px;
  list-style: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--contact-info ul {
    margin: 20px 0;
  }
}

.team-details--contact-info ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding: 25px 28px;
  border-right: 1px dashed var(--mbs-color-border-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-details--contact-info ul li:last-child {
  border-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details--contact-info ul li {
    padding: 16px 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--contact-info ul li {
    padding: 12px 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.team-details--contact-info ul span {
  color: var(--mbs-color-text-body-3);
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--contact-info ul span {
    font-size: 14px;
  }
}

.team-details--contact-info ul a {
  font-size: 20px;
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.team-details--contact-info ul a::after {
  content: "";
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: var(--mbs-color-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--contact-info ul a {
    font-size: 16px;
  }
}

.team-details--contact-info ul a:hover::after {
  width: 100%;
}

.team-details--experience {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details--experience {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--experience {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.team-details--experience--list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px dashed var(--mbs-color-border-1);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 25px 0;
  border-radius: 12px;
  list-style: none;
  border-radius: 10px;
}

.team-details--experience--list ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border: 1px dashed var(--mbs-color-border-1);
  border-top: 0;
  border-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details--experience--list ul li {
    padding: 16px;
  }
}

.team-details--experience--list ul li p {
  margin-bottom: 0;
}

.team-details--experience--list ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 10px;
  color: var(--mbs-color-common-white);
  background: var(--mbs-color-theme-primary);
  border-radius: 50%;
  margin-top: 4px;
}

.team-details--experience--list ul li:last-child {
  border-right: 0;
}

.team-details--experience--list ul li:nth-child(2n) {
  border-right: 0;
}

/* !END: Team Details CSS */
/**----------------------------------------
START: Progress bar CSS
----------------------------------------*/
.mbs-progress {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 4px;
  background: var(--mbs-color-theme-bg);
  position: relative;
  z-index: 0;
}

.mbs-progress-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-progress-list {
    gap: 20px;
  }
}

.mbs-progress-title {
  font-size: 16px;
  color: var(--mbs-color-text-body);
  font-weight: var(--mbs-fw-sbold);
  letter-spacing: 0;
  margin-bottom: 3px;
}

.mbs-progress-bar {
  width: 0;
  height: 100%;
  background: var(--mbs-color-theme-primary);
  position: relative;
  z-index: 1;
}

.mbs-progress-percent {
  font-size: 16px;
  line-height: 1;
  font-weight: var(--mbs-fw-sbold);
  height: auto;
  position: absolute;
  right: 0;
  bottom: 11px;
  z-index: 2;
}

/* !END: Progress bar CSS */
/**----------------------------------------
START: Breadcrumb CSS
----------------------------------------*/
.mbs-page-header {
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: var(--mbs-color-grey-1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mbs-page-header:before {
  content: '';
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 250px 0 0;
  border-color: #ffffff transparent transparent transparent;
}


@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-page-header {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}

.mbs-page-title {
  color: var(--mbs-color-common-white);
  line-height: 1;
  margin-bottom: 0;
}

.mbs-page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 8px 0;
  z-index: 2;
}

.mbs-page-link span {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #B0B3BC;
}

.mbs-page-link span i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  font-size: 16px;
  color: var(--mbs-color-theme-primary);
}

.mbs-page-link span:not(:first-child) i {
  font-size: 16px;
  color: var(--mbs-color-common-black);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 7px;
  margin-top: 2px;
}

.mbs-page-link span a {
  color: var(--mbs-color-common-black);
}

.mbs-page-link span a:hover {
  opacity: 0.4;
}



.page-header-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* !END: Breadcrumb CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.mbs-pricing-section {
  background-color: var(--mbs-color-theme-bg);
  position: relative;
  z-index: 1;
}

.mbs-pricing-section .sec-heading {
  max-width: 550px;
}

.pricing-box {
  padding: 46px 30px 40px;
  background-color: var(--mbs-color-common-white);
  border-radius: 12px;
}

.pricing-box.active {
  background-color: var(--mbs-color-theme-primary);
}

.pricing-box.active .package-name {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .package-desc p {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .package-price {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .package-currency {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .package-period {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .pricing-btn a {
  background-color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-common-white);
}

.pricing-box.active .pricing-btn a .btn-text {
  color: var(--mbs-color-common-black);
}

.pricing-box.active .list-items ul li {
  color: var(--mbs-color-common-white);
}

.pricing-box.active .list-items ul li i {
  color: var(--mbs-color-common-white);
}

.package-name {
  font-weight: var(--mbs-fw-sbold);
  line-height: 1;
  margin-bottom: 11px;
}

.package-desc p {
  margin-bottom: 0;
}

.package-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 64px;
  color: var(--mbs-color-common-black);
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-sbold);
  line-height: 0.8;
  margin: 30px 0 40px;
}

.package-currency {
  font-size: 24px;
}

.package-period {
  font-size: 16px;
  font-weight: var(--mbs-fw-regular);
  color: var(--mbs-color-text-body);
  margin-top: auto;
}

.pricing-btn {
  overflow: hidden;
  margin-bottom: 37px;
}

.pricing-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border: 1px solid var(--mbs-color-theme-primary);
  padding: 12px;
  border-radius: 50px;
}

.pricing-btn a .btn-text {
  font-weight: var(--mbs-fw-sbold);
}

.list-items ul li {
  gap: 12px;
  margin-bottom: 16px;
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.post-details-wrapper .blog-images {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.post-details-wrapper .title {
  line-height: 1.1;
  margin-bottom: 22px;
}

.post-details-wrapper p {
  margin-bottom: 30px;
}

.post-details-wrapper p:last-child {
  margin-bottom: 0;
}

.post-details-wrapper .images-wrap {
  margin-bottom: 10px;
}

.post-details-wrapper .image-box {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.post-details-wrapper .image-box img {
  width: 100%;
}

.post-details-wrapper .page-text h1 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 26px;
}

.post-details-wrapper .page-text h2 {
  font-size: 22px;
  font-weight: 600;
}

.post-details-wrapper .page-text h3,
.post-details-wrapper .page-text h4 {
  font-size: 20px;
  font-weight: 600;
}

.post-details-wrapper .page-text h5,
.post-details-wrapper .page-text h6 {
  font-size: 18px;
  font-weight: 600;
}

.post-details-wrapper .page-text hr {
  margin-top: 35px;
  margin-bottom: 35px;
}

.post-details-wrapper .page-text img {
  max-height: 500px;
  display: block;
  margin: 50px auto 50px;
}

.post-details-wrapper .page-text ul {
  margin-bottom: 50px;
  list-style: none;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}

.post-details-wrapper .page-text ol li {
  margin-bottom: 7px;
}

.post-details-wrapper .page-text ul li {
  margin-bottom: 16px;
}

.post-details-wrapper .page-text ol li:last-child,
.post-details-wrapper .page-text ul li:last-child {
  margin-bottom: 0;
}


@media (max-width: 575px) {
  .post-details-wrapper .page-text ul {
    margin-bottom: 30px;
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.post-details-wrapper .page-text .blog-video {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 50px;
}

.post-details-wrapper .page-text .blog-video .video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  color: var(--mbs-color-common-black);
  background: var(--mbs-color-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.post-details-wrapper .page-text .blog-video .video-btn span {
  font-size: 20px;
}

.post-details-wrapper .page-text .blog-video .video-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-animation: pulse2 2s linear infinite;
  animation: pulse2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .post-details-wrapper .page-text .blog-video .video-btn::before {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 575px) {
  .post-details-wrapper .page-text .blog-video .video-btn {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .post-details-wrapper .page-text .blog-video {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.blog-category-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px dashed var(--mbs-color-border-1);
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-category-two .category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-right: 1px dashed var(--mbs-color-border-1);
  padding: 25px 30px;
  gap: 10px;
  width: 33.33%;
}

.blog-category-two .category-item:last-child {
  border-right: none;
}

.blog-category-two .category-item .cate-images {
  width: 52px;
  height: 52px;
}

.blog-category-two .category-item .cate-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-images {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-images {
    width: 35px;
    height: 35px;
  }
}

.blog-category-two .category-item .cate-text .degination {
  display: block;
  color: var(--mbs-color-text-body-3);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 6px;
}

.blog-category-two .category-item .cate-text .title {
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 14px;
  }
}

.blog-category-two .category-item .cate-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  width: 52px;
  height: 52px;
  line-height: 1;
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-icons {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-icons {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

.blog-category-two .category-item .text {
  font-weight: var(--mbs-fw-sbold);
  line-height: 1;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .text {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-category-two .category-item {
    padding: 25px 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-category-two .category-item {
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item {
    width: 100%;
    padding: 0;
    border: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two {
    padding: 20px;
    gap: 20px;
  }
}

blockquote {
  position: relative;
  padding: 40px 30px 30px;
  background: var(--mbs-color-theme-bg);
  border: 2px solid var(--mbs-color-theme-primary);
  border-radius: 12px;
  margin-top: 55px;
  margin-bottom: 50px;
  z-index: 2;
}

blockquote::before {
  content: "\e92e";
  font-size: 40px;
  color: var(--mbs-color-theme-primary);
  font-family: "Phosphor";
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
}

blockquote p {
  color: var(--mbs-color-common-black);
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-sbold);
  font-size: 24px;
  margin-bottom: 20px !important;
  letter-spacing: -0.6px;
  line-height: 1.417;
  border-radius: 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  blockquote p {
    font-size: 20px;
    margin-bottom: 15px !important;
  }
}

blockquote cite {
  color: var(--mbs-color-common-black);
  display: block;
  text-align: end;
  font-style: normal;
  position: relative;
  z-index: 1;
}

blockquote cite::before {
  content: "";
  display: inline-block;
  background: var(--mbs-color-theme-primary);
  height: 1px;
  width: 50px;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  blockquote {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}

.mbs-tags-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px dashed var(--mbs-color-border-1);
  border-bottom: 1px dashed var(--mbs-color-border-1);
  padding: 22px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.mbs-tags-post .tagcloud {
  width: calc(100% - 200px);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-tags-post .tagcloud {
    width: 100%;
  }
}

.mbs-tags-post .post-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
}

.mbs-tags-post .post-share ul li {
  font-size: 16px;
  color: var(--mbs-color-common-black);
  margin-bottom: 0;
}

.mbs-tags-post .post-share ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  line-height: 1;
  color: var(--mbs-color-common-black);
}

.mbs-tags-post .post-share ul li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.mbs-tags-post .post-share ul li a:hover i {
  color: var(--mbs-color-theme-primary);
}

.mbs-tags-post.no-socials {
  width: 100%;
}

.mbs-post--navigation {
  background-color: var(--mbs-color-common-white);
  padding: 20px 25px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.mbs-post--navigation .mbs-nav-post--nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
}

.mbs-post--navigation .mbs-nav-post--nav a span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--mbs-color-common-white);
  border-radius: 50%;
  border: 1px solid var(--mbs-color-border-1);
  font-size: 24px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.mbs-post--navigation .mbs-nav-post--nav a span i {
  color: var(--mbs-color-common-black);
}

@media (max-width: 575px) {
  .mbs-post--navigation .mbs-nav-post--nav a span {
    width: 48px;
    height: 48px;
  }
}

.mbs-post--navigation .mbs-nav-post--nav a:hover span {
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
}

.mbs-post--navigation .mbs-nav-post--nav a:hover span i {
  color: var(--mbs-color-common-white);
}

.mbs-post--navigation .mbs-nav-post--grid {
  font-size: 30px;
  line-height: 1;
  color: var(--mbs-color-common-black);
}

.mbs-post--navigation .mbs-nav-post--grid a {
  color: currentColor;
}

.mbs-post--navigation .mbs-nav-post--grid a:hover {
  color: var(--mbs-color-theme-primary);
}

@media (max-width: 575px) {
  .mbs-post--navigation {
    padding: 20px;
    gap: 20px;
  }
}

.mbs-comments-wrap .comments-title .title {
  margin-bottom: 22px;
}

@media (max-width: 575px) {
  .mbs-comments-wrap .comments-title .title {
    margin-bottom: 15px;
  }
}

.mbs-latest-comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mbs-latest-comments ul .mbs-comment {
  margin-bottom: 20px;
}

.mbs-latest-comments ul .mbs-comment:last-child {
  margin-bottom: 0;
}

.mbs-latest-comments ul .mbs-comment .comment-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 30px;
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  position: relative;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comment-avatar {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comment-avatar img {
  width: 100%;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header {
  margin-top: 10px;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .avatar-name .title {
  font-size: 18px;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 6px;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .avatar-name .title a:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .comment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .comment-text .reply {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 16px;
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-common-black);
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .comment-text .reply:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-latest-comments ul .mbs-comment .comment-content .comments-header .comment-text span {
  font-size: 14px;
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-regular);
}

@media (max-width: 575px) {
  .mbs-latest-comments ul .mbs-comment .comment-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .mbs-latest-comments ul .mbs-comment .comment-content .comment-avatar {
    margin-right: auto;
  }
}

.mbs-latest-comments ul .mbs-comment .desc {
  margin-top: 14px;
}

.mbs-latest-comments ul .mbs-comment .desc p:last-child {
  margin-bottom: 0;
}

.mbs-latest-comments ul .mbs-comment>.children {
  padding-left: 75px;
}

@media (max-width: 575px) {
  .mbs-latest-comments ul .mbs-comment>.children {
    padding-left: 35px;
  }
}

.mbs-latest-comments ul .mbs-comment:last-child .comment-content .comments-header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.mbs-comments--container {
  margin-top: 50px;
}

.comment-respond .comment-reply-title {
  margin-bottom: 25px;
}

.comment-respond .form-input {
  margin-bottom: 30px;
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.comment-respond .form-input textarea,
.comment-respond .form-input input[type=email],
.comment-respond .form-input input[type=text] {
  background: var(--mbs-color-common-white);
  height: 60px;
  padding: 18px 20px;
  border: 1px solid var(--mbs-color-common-white);
  border-radius: 10px;
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
.comment-respond .form-input textarea::-webkit-input-placeholder,
.comment-respond .form-input input[type=email]::-webkit-input-placeholder,
.comment-respond .form-input input[type=text]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.comment-respond .form-input textarea::-moz-placeholder,
.comment-respond .form-input input[type=email]::-moz-placeholder,
.comment-respond .form-input input[type=text]::-moz-placeholder {
  color: var(--mbs-color-text-body);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
.comment-respond .form-input textarea:-ms-input-placeholder,
.comment-respond .form-input input[type=email]:-ms-input-placeholder,
.comment-respond .form-input input[type=text]:-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.comment-respond .form-input textarea::-ms-input-placeholder,
.comment-respond .form-input input[type=email]::-ms-input-placeholder,
.comment-respond .form-input input[type=text]::-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.comment-respond .form-input textarea::placeholder,
.comment-respond .form-input input[type=email]::placeholder,
.comment-respond .form-input input[type=text]::placeholder {
  color: var(--mbs-color-text-body);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.comment-respond .form-input textarea:focus,
.comment-respond .form-input input[type=email]:focus,
.comment-respond .form-input input[type=text]:focus {
  border-color: var(--mbs-color-theme-primary);
}

.comment-respond .form-input textarea {
  min-height: 180px;
  resize: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .comment-respond .form-input {
    margin-bottom: 20px;
  }
}

.mbs-main-sidebar {
  padding-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .mbs-main-sidebar {
    padding-left: 0;
  }
}

.mbs-sidebar-widget {
  background-color: var(--mbs-color-theme-bg);
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
}

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

.mbs-sidebar-widget .widget-title {
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  z-index: 1;
}

.mbs-sidebar-widget.widget-search .search-box form {
  position: relative;
  width: 100%;
  z-index: 1;
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search] {
  font-size: 16px;
  background: var(--mbs-color-common-white);
  width: 100%;
  height: 60px;
  border: 1px solid var(--mbs-color-border-1);
  border-radius: 8px;
  padding: 18px 65px 18px 20px;
  line-height: 1;
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search]::-webkit-input-placeholder {
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search]::-moz-placeholder {
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search]:-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search]::-ms-input-placeholder {
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-search .search-box form input[type=search]::placeholder {
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-search .search-box form :focus {
  outline: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.mbs-sidebar-widget.widget-search .search-box form button {
  font-size: 22px;
  color: var(--mbs-color-common-black);
  width: 54px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 1px solid var(--mbs-color-border-1);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.mbs-sidebar-widget.widget-search .search-box form button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.mbs-sidebar-widget.mbs-recent-posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mbs-sidebar-widget.mbs-recent-posts ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-bottom: 15px;
}

.mbs-sidebar-widget.mbs-recent-posts ul li:last-child {
  margin-bottom: 0;
}

.mbs-sidebar-widget.mbs-recent-posts ul li:hover .post-thumb img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.mbs-sidebar-widget.mbs-recent-posts .post-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.mbs-sidebar-widget.mbs-recent-posts .post-thumb a {
  display: inline-block;
  width: 100%;
}

.mbs-sidebar-widget.mbs-recent-posts .post-thumb a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.mbs-sidebar-widget.mbs-recent-posts .post-content .post-title {
  font-size: 18px;
  line-height: 1.444;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 10px;
}

.mbs-sidebar-widget.mbs-recent-posts .post-content .post-title a:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-sidebar-widget.mbs-recent-posts .post-content .blog-meta {
  margin-bottom: 0;
}

.mbs-sidebar-widget.mbs-recent-posts .post-content .blog-meta ul li {
  font-size: 14px;
  color: var(--mbs-color-text-body);
}

.mbs-sidebar-widget.widget-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mbs-sidebar-widget.widget-categories ul li {
  margin-bottom: 10px;
}

.mbs-sidebar-widget.widget-categories ul li:last-child {
  margin-bottom: 0;
}

.mbs-sidebar-widget.widget-categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-black);
  background: var(--mbs-color-common-white);
  padding: 20px 15px 17px 25px;
  border-radius: 10px;
}

.mbs-sidebar-widget.widget-categories ul li a span {
  color: var(--mbs-color-common-black);
}

.mbs-sidebar-widget.widget-categories ul li a .icon {
  font-size: 24px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.mbs-sidebar-widget.widget-categories ul li a:hover {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
}

.mbs-sidebar-widget.widget-categories ul li a:hover span {
  color: var(--mbs-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .mbs-sidebar-widget {
    padding: 25px 15px;
  }
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 12px;
}

.tagcloud a {
  background-color: var(--mbs-color-common-white);
  font-size: 14px;
  line-height: 1;
  color: var(--mbs-color-text-body);
  font-weight: var(--mbs-fw-medium);
  padding: 5px 10px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}

.tagcloud a:hover {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.infos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding: 20px 0;
}

.infos-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.infos-item .infobox-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--mbs-color-common-white);
  background: var(--mbs-color-theme-primary);
  border-radius: 50%;
  position: relative;
  top: 2px;
}

.infos-item .infobox-text span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--mbs-color-text-body);
  margin: 0;
}

.infos-item .infobox-text .title {
  line-height: 1.1;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .infos-item .infobox-text .title {
    font-size: 16px;
  }
}

.product-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-categories ul li {
  margin-bottom: 10px;
}

.product-categories ul li:last-child {
  margin-bottom: 0;
}

.product-categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-black);
  background: var(--mbs-color-common-white);
  padding: 20px 15px 17px 25px;
  border-radius: 10px;
}

.product-categories ul li a span {
  color: var(--mbs-color-common-black);
}

.product-categories ul li a .icon {
  font-size: 24px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-categories ul li a:hover,
.product-categories ul li a.active {
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
}

.product-categories ul li a:hover span,
.product-categories ul li a.active span {
  color: var(--mbs-color-common-white);
}

.widget-feature-item {
  padding: 20px;
}

.widget-feature-item .feature-box {
  position: relative;
  background: var(--mbs-color-common-black);
  border-radius: 10px;
  overflow: hidden;
}

.widget-feature-item .feature-box .feature-content {
  padding: 30px 28px 30px;
}

.widget-feature-item .feature-box .feature-content .title {
  font-size: 74px;
  color: var(--mbs-color-common-white);
  margin-bottom: 15px;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}

.widget-feature-item .feature-box .feature-content>span {
  display: block;
  font-size: 20px;
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-common-white);
  line-height: 1;
  margin-bottom: 26px;
}

@media (max-width: 575px) {
  .widget-feature-item .feature-box .feature-content>span {
    margin-bottom: 20px;
  }
}

.widget-feature-item .feature-box .feature-content .feature-contact {
  background-color: var(--mbs-color-theme-primary);
  padding: 7px 12px;
  border-radius: 50px;
  line-height: 1;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}

.widget-feature-item .feature-box .feature-content .feature-contact span {
  color: var(--mbs-color-common-white);
  font-size: 18px;
  font-weight: var(--mbs-fw-sbold);
  margin: 0;
  text-shadow: 0 30px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.widget-feature-item .feature-box .feature-content .feature-contact i {
  color: var(--mbs-color-common-white);
  font-size: 20px;
  margin-right: 6px;
  margin-left: 0;
}

.widget-feature-item .feature-box .feature-content .feature-contact:hover span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .widget-feature-item .feature-box .feature-content {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .widget-feature-item .feature-box {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 400px) {
  .widget-feature-item .feature-box {
    max-width: 320px;
    margin: 0 auto;
  }
}

.widget-feature-item .feature-images {
  width: 370px;
  height: 370px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 60px;
  margin-bottom: -50px;
  border: 5px solid var(--mbs-color-theme-primary);
}

.widget-feature-item .feature-images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-left: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-feature-item .feature-images {
    width: 500px;
    height: 500px;
    margin-left: 260px;
    margin-bottom: -70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .widget-feature-item .feature-images {
    margin-left: 180px;
  }
}

@media (max-width: 400px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-left: 45px;
  }
}

@media (max-width: 575px) {
  .widget-feature-item {
    padding: 20px 15px;
  }
}

.details-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.product-details-item {
  background-color: var(--mbs-color-common-white);
  border-radius: 10px;
  padding: 30px 17px 25px 18px;
  max-width: 275px;
  width: 100%;
}

.product-details-item .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 16px;
  font-family: var(--mbs-ff-heading);
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-common-white);
  background-color: var(--mbs-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 20px;
}

.product-details-item .title {
  line-height: 1.444;
  font-weight: var(--mbs-fw-sbold);
  margin-bottom: 18px;
}

.product-details-item .desc {
  margin-bottom: 0;
}

.product-details-item .desc p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product-details-item {
    max-width: 235px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-item {
    max-width: 220px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-item {
    max-width: 250px;
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 575px) {
  .product-details-item {
    max-width: 100%;
  }
}

.page-text .mbs-faq {
  margin-bottom: 40px;
  padding-top: 10px;
}

.gallery {
  position: relative;
  display: block;
}

.gallery::before {
  content: "\e91c";
  font-family: "Phosphor" !important;
  color: var(--mbs-color-common-white);
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(12, 30, 33, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.gallery:hover::before {
  opacity: 1;
  visibility: visible;
}

/* !END: Blog Details CSS */
/**----------------------------------------
START: Animate CSS
----------------------------------------*/
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.jumping {
  -webkit-animation: jumping 1.5s infinite;
  animation: jumping 1.5s infinite;
}

@-webkit-keyframes jumping {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  75% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}

@keyframes jumping {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  75% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}

@-webkit-keyframes linehover {
  0% {
    width: 100%;
  }

  50% {
    width: 0;
    right: 0;
  }

  100% {
    width: 100%;
    left: 0;
  }
}

@keyframes linehover {
  0% {
    width: 100%;
  }

  50% {
    width: 0;
    right: 0;
  }

  100% {
    width: 100%;
    left: 0;
  }
}

@-webkit-keyframes textrotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes textrotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes rotates {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes rotates {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@-webkit-keyframes gelatine {

  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }

  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }

  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}

@keyframes gelatine {

  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }

  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }

  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}

@-webkit-keyframes borderanimate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes borderanimate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

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

  15% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }

  60% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }

  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }

  85% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }

  92% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

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

  15% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }

  60% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }

  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }

  85% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }

  92% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.pulse2 {
  -webkit-animation: pulse2 2s linear infinite;
  animation: pulse2 2s linear infinite;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgb(255, 255, 255);
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgb(255, 255, 255);
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.pulse3 {
  -webkit-animation: pulse3 2s linear infinite;
  animation: pulse3 2s linear infinite;
}

@-webkit-keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
    box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
  }

  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
    box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
  }

  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }

  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}

@keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }

  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}

.zoomInOut {
  -webkit-animation: zoomEffect 3s linear infinite;
  animation: zoomEffect 3s linear infinite;
}

@-webkit-keyframes zoomEffect {

  0%,
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoomEffect {

  0%,
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

/* !END: Animate CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h4-banner-section {
  background-color: var(--mbs-color-common-black);
  border-radius: 12px;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-banner-section {
    padding: 0 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-banner-section {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .h4-banner-section {
    padding: 0 15px;
  }
}

.h4-banner-section .bg-shape-1,
.h4-banner-section .bg-shape-2 {
  max-width: 480px;
}

.h4-banner-section .bg-shape-1 img,
.h4-banner-section .bg-shape-2 img {
  width: 100%;
}

.h4-banner-area {
  max-width: 1480px;
  width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-banner-area {
    min-height: 700px;
  }
}

.h4-banner-content {
  padding-top: 120px;
  padding-bottom: 115px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-banner-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-banner-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .h4-banner-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.h4-banner-content::before {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--mbs-color-theme-primary);
  -webkit-filter: blur(80px);
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-banner-content::before {
    width: 320px;
    height: 320px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .h4-banner-content::before {
    width: 250px;
    height: 250px;
    right: -2%;
    bottom: -15px;
    -webkit-filter: blur(60px);
    filter: blur(60px);
  }
}

.h4-banner-content .sub-title {
  color: var(--mbs-color-common-white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--mbs-fw-bold);
  border: 1px dashed var(--mbs-color-border-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin-bottom: 13px;
  border-radius: 4px;
}

.h4-banner-content .sub-title i {
  color: var(--mbs-color-theme-primary);
  font-size: 22px;
}

.h4-banner-content .banner-title {
  max-width: 1180px;
  color: var(--mbs-color-common-white);
  font-size: 96px;
  line-height: 1.042;
  margin-bottom: 22px;
}

.h4-banner-content .banner-title span {
  display: inline-block;
  color: var(--mbs-color-theme-primary);
  font-weight: var(--mbs-fw-medium);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .h4-banner-content .banner-title {
    font-size: 85px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4-banner-content .banner-title {
    max-width: 1000px;
    font-size: 75px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-banner-content .banner-title {
    max-width: 800px;
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-banner-content .banner-title {
    max-width: 675px;
    font-size: 55px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .h4-banner-content .banner-title {
    font-size: 45px;
  }
}

.h4-banner-content .banner-desc-area {
  max-width: 610px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .h4-banner-content .banner-desc-area {
    max-width: 520px;
  }
}

@media (max-width: 575px) {
  .h4-banner-content .banner-desc-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.h4-banner-content .mbs-primary-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.h4-banner-content .banner-desc {
  max-width: 428px;
  color: var(--mbs-color-text-body-2);
  font-size: 18px;
  line-height: 1.444;
  padding-left: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .h4-banner-content .banner-desc {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .h4-banner-content .banner-desc {
    padding: 0;
  }
}

.banner-img-area {
  position: relative;
}

.banner-img-area .banner-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.banner-img-area .banner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 49%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(12, 30, 33)), color-stop(50%, rgba(12, 30, 33, 0.4)), to(rgba(12, 30, 33, 0)));
  background: linear-gradient(90deg, rgb(12, 30, 33) 0%, rgba(12, 30, 33, 0.4) 50%, rgba(12, 30, 33, 0) 100%);
  opacity: 0.5;
}

.banner-img-area .banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area .banner-img img {
    min-height: 500px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-img-area .banner-img img {
    min-height: 400px;
  }
}

.banner-img-area .h4-rating-box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  position: absolute;
  max-width: 256px;
  width: 100%;
  top: 30px;
  left: 30px;
  padding: 30px;
}

.banner-img-area .h4-rating-box .title {
  color: var(--mbs-color-common-white);
  font-size: 74px;
  line-height: 1.216;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.banner-img-area .h4-rating-box .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 100%;
  background-color: var(--mbs-color-common-white);
  -webkit-mask-image: url(../images/shape/leafs.svg);
  mask-image: url(../images/shape/leafs.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.banner-img-area .h4-rating-box .title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 100%;
  background-color: var(--mbs-color-common-white);
  -webkit-mask-image: url(../images/shape/leafs.svg);
  mask-image: url(../images/shape/leafs.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-img-area .h4-rating-box .title {
    font-size: 50px;
  }
}

.banner-img-area .h4-rating-box .desc {
  color: var(--mbs-color-common-white);
  font-size: 18px;
  font-weight: var(--mbs-fw-sbold);
  letter-spacing: -0.03em;
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-img-area .h4-rating-box .desc {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-img-area .h4-rating-box {
    max-width: 200px;
    padding: 26px;
    top: 15px;
    left: 15px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.mbs-choose-section {
  overflow: hidden;
}

.mbs-choose-section .sec-heading {
  max-width: 550px;
}

.mbs-choose-section .countup-item.style-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mbs-choose-section .countup-item.style-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mbs-color-common-black);
  opacity: 0.7;
  z-index: -1;
}

.mbs-choose-section .countup-item.style-2 .count-icon {
  background-color: var(--mbs-color-theme-primary);
  color: var(--mbs-color-common-white);
}

.mbs-choose-section .countup-item.style-2 .count-text {
  color: var(--mbs-color-text-body-2);
}

.mbs-choose-section .countup-item.style-2 .inline-content {
  color: var(--mbs-color-common-white);
}

.mbs-choose-section .countup-item.style-2 .inline-content .odometer {
  color: var(--mbs-color-common-white);
}

.mbs-choose-section .countup-item.style-2 .inline-content .odometer .odometer-digit,
.mbs-choose-section .countup-item.style-2 .inline-content .odometer span {
  color: var(--mbs-color-common-white);
}

.h4-content-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h4-content-wrap .sec-heading {
  margin-bottom: 25px;
}

/* !END: Choose CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-content-area.style-3 .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.about-content-area.style-3 .sec-heading .subtitle-text {
  max-width: 200px;
}

.about-content-area.style-3 .sec-heading .sec-title {
  width: 67.2%;
}

.about-content-area.style-3 .sec-heading .sec-title img {
  height: 50px;
  border-radius: 4px;
  margin-top: -9px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area.style-3 .sec-heading .sec-title img {
    margin-top: -6px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-3 .sec-heading .sec-title img {
    height: 40px;
    margin-top: -6px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-3 .sec-heading .sec-title {
    width: 100%;
    line-height: 1.3;
  }
}

.about-content-area.style-3 .about-bottom-area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  margin-top: -62px;
}

.about-content-area.style-3 .about-bottom-area .about-btn-area-2 {
  width: 67.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-3 .about-bottom-area .about-btn-area-2 {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-3 .about-bottom-area {
    margin-top: 25px;
  }
}

.customers-box.style-3 {
  max-width: 195px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.customers-box.style-3 ul li span,
.customers-box.style-3 ul li img {
  width: 50px;
  height: 50px;
}

.customers-box.style-3 .customers-text {
  font-size: 18px;
  line-height: 1.444;
  font-weight: var(--mbs-fw-sbold);
  color: var(--mbs-color-text-body-3);
  margin-top: 15px;
}

.customers-box.style-3 .customers-text span {
  color: var(--mbs-color-common-black);
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.mbs-product-section-5 .sec-heading {
  max-width: 550px;
}

.product-item.style-5 {
  background-color: var(--mbs-color-common-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}

.product-item.style-5 .product-icon {
  font-size: 64px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-5 .product-icon {
    font-size: 50px;
  }
}

.product-item.style-5 .product-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .product-item.style-5 .product-content-area {
    padding: 50px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-5 .product-content-area {
    padding: 40px 20px;
  }
}

.product-item.style-5 .product-content {
  max-width: 360px;
}

.product-item.style-1:hover .product-content .text-btn .btn-text {
  color: var(--mbs-color-common-white);
}

.product-item.style-1:hover .product-content .text-btn .btn-icon i {
  color: var(--mbs-color-theme-primary);
}


.product-item.style-5 .no {
  color: var(--mbs-color-text-body-3);
  font-size: 20px;
  font-weight: var(--mbs-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin-bottom: 16px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-5 .no {
    font-size: 18px;
  }
}

.product-item.style-5 .title {
  max-width: 360px;
  color: var(--mbs-color-common-white);
  font-weight: var(--mbs-fw-medium);
}

.product-item.style-5 .desc {
  color: var(--mbs-color-text-body-2);
}

.product-item.style-5 .mbs-primary-btn {
  margin-top: 30px;
}

.product-item.style-5 .product-img {
  max-width: 581px;
  width: 100%;
  height: 605px;
}

.product-item.style-5 .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product-item.style-5 .product-img {
    max-width: 500px;
    height: 590px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-item.style-5 .product-img {
    max-width: 460px;
    height: 560px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-5 .product-img {
    max-width: 100%;
    height: 500px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-item.style-5 .product-img {
    height: 400px;
  }
}

.product-bottom-text {
  margin-top: 56px;
}

.product-bottom-text .desc {
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-medium);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.product-bottom-text i {
  font-size: 28px;
  color: var(--mbs-color-theme-primary);
}

.product-bottom-text a {
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);
  line-height: 1.1;
  position: relative;
  padding-right: 14px;
}

.product-bottom-text a::before {
  content: "";
  background-color: currentColor;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.product-bottom-text a::after {
  content: "\e916";
  font-family: "Phosphor" !important;
  font-style: normal;
  font-weight: var(--mbs-fw-medium);
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
}

.product-bottom-text a:hover {
  color: var(--mbs-color-theme-primary);
}

/* !END: Services CSS */
/**----------------------------------------
START: Countup CSS
----------------------------------------*/
.mbs-funfact-section {
  background-color: var(--mbs-color-theme-bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mbs-funfact-section .heading-wrap-content .sec-heading {
  max-width: 550px;
}

/* === Çerez Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--mbs-color-common-white);
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 5%);
  padding: 40px 30px;
  max-width: 480px;
  z-index: 9999;

}

.cookie-banner a {
  color: var(--mbs-color-common-black);
}

.cookie-message {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--mbs-color-text-body);
}

.cookie-banner .cookie-message strong.title,
.cookie-modal-content strong.title {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
  color: var(--mbs-color-common-black);
}

.cookie-settings-btn,
.cookie-accept {
  margin-top: 5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cookie-settings-btn:hover {
  opacity: 0.65;
}

.cookie-accept:hover {
  opacity: 0.85;
}

.cookie-settings-btn {
  background: #f0f0f0;
  color: var(--mbs-color-common-black);
  margin-right: 8px;
}


.cookie-accept {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
}

.cookie-modal-content input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--mbs-color-border-1);
  border-radius: 0px;
  outline: none;
  transition: all 0.2s ease;
  position: absolute;
  top: 2px;
}

.cookie-modal-content input[type="checkbox"]:checked {
  background-color: var(--mbs-color-theme-primary);
  border-color: var(--mbs-color-theme-primary);
}

.cookie-modal-content input[type="checkbox"]:checked::after {
  content: "✔";
  color: var(--mbs-color-common-white);
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cookie-modal-content input[type="checkbox"]:hover {
  border-color: var(--mbs-color-theme-primary);
}

.cookie-modal-content input[type="checkbox"]:disabled:checked {
  background-color: var(--mbs-color-grey-1);
  border-color: var(--mbs-color-border-1);
}

.cookie-modal-content input[type="checkbox"]:disabled:checked::after {
  content: "✔";
  color: var(--mbs-color-text-body-3);
}

.cookie-modal-content label:has(input[type="checkbox"]:disabled) {
  color: var(--mbs-color-text-body-3);
  cursor: not-allowed;
}



.cookie-close-area {
  background-color: var(--mbs-color-common-black);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
}

.cookie-close {
  position: absolute;
  left: 6px;
  top: 3px;
  background: none;
  border: none;
  font-size: 26px;
  height: 30px;
  width: 30px;
  color: var(--mbs-color-common-white);
}

.cookie-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--mbs-color-common-white);
}

/* === Modal === */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 40px 30px;
  width: 100%;
  max-width: 580px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.cookie-modal-content p {
  margin-bottom: 25px;
}

.cookie-modal-content label {
  position: relative;
  display: block;
  margin: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
}

.cookie-modal-content label span {
  padding-left: 30px;
}

.cookie-modal-content label small {
  font-size: 14px;
  font-weight: 400;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal-content .btn-primary {
  background: #007BFF;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
}

.cookie-modal-content .btn-secondary {
  background: #ccc;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
}


.language-selector {
  position: relative;
  width: 120px;
  transition: all 0.3s ease;
}


.selected-language {
  padding: 0 10px 0 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  justify-content: space-between;
}

.selected-language i.fas.fa-globe {
  color: #667eea;
  font-size: 20px;
}

.selected-language .menu-icon {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.language-selector.active .selected-language .menu-icon {
  transform: rotate(180deg);
}

.language-selector.active .selected-language {
  border-radius: 12px 12px 0 0;
}

.language-selector.active .selected-language,
.selected-language:hover {
  color: var(--mbs-color-theme-primary);
}

.language-options {
  list-style: none;
  background: white;
  position: absolute;
  top: calc(100% - -15px);
  padding-left: 0;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.language-selector.active .language-options {
  max-height: 200px;
}

.language-options li {
  position: relative;
  overflow: hidden;
}

.language-options li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--mbs-color-common-black);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.language-options li:last-child a {
  border-bottom: none;
}

.language-options li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: 1;
}


.language-options li:hover {
  background: var(--mbs-color-grey-1);
}

.language-options li:hover a {
  font-weight: 600;
  color: var(--mbs-color-common-black);
  transform: translateX(3px);
  padding-left: 28px;
}

.language-options li.selected a {
  background: var(--mbs-color-grey-1);
  color: var(--mbs-color-common-black);
  font-weight: 600;
}

.language-options li.selected:hover a {
  background: var(--mbs-color-grey-1);
  color: var(--mbs-color-common-black);
}

/* Responsive design */
@media (max-width: 480px) {
  .language-selector {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation for smooth appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-selector {
  animation: fadeInUp 0.6s ease;
}

.header-area.header-duplicate.header-sticky.sticky .cloned-mega-menu,
.mega-menu-clone {
  margin-left: auto;
}

.mbs-mega-menu {
  position: relative;
  z-index: 1000;
  width: 100%;
}


.has-mega-menu.active>a {
  color: var(--mbs-color-theme-primary);
}

.main-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.main-menu>li {
  position: relative;
  margin: 0 5px;
  padding: 22px 0;
  border-bottom: 2px solid transparent;
}

.main-menu>li>a {
  color: var(--mbs-color-common-black);
  text-decoration: none;
  font-size: 18px;
  padding: 12px 18px;
  display: block;
  font-weight: 600;
}

.has-mega-menu.active {
  border-bottom: 2px solid var(--mbs-color-theme-primary);
}

.main-menu>li>a:hover {
  color: var(--mbs-color-theme-primary);
}

.mega-menu {
  display: none;
  position: fixed;
  top: 97px;
  left: 0;
  width: 100%;
  z-index: 998;
  justify-content: center;
  align-items: flex-start;
}

.mega-menu-content {
  border-top: 2px solid var(--mbs-color-grey-1);
  background: var(--mbs-color-grey-1);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mega-menu-left {
  width: 25%;
  flex: 0 0 25%;
  background: var(--mbs-color-common-white);
  position: relative;
}

.mega-menu-right {
  background-color: var(--mbs-color-common-white);
  border-left: 2px solid var(--mbs-color-grey-1);
  width: 37.5%;
  flex: 0 0 37.5%;
  position: relative;
}

.sub-sub-menu {
  border-left: 2px solid var(--mbs-color-grey-1);
  width: 37.5%;
  flex: 0 0 37.5%;
  position: relative;
}

.mega-menu-left img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mega-menu-left:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 240px 310px;
  border-color: transparent transparent #ffffff transparent;
}

.mega-menu-left h2,
.mega-menu-left strong {
  margin: 25px 25px 5px 25px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.125;
  letter-spacing: -0.03em;
  display: block;
  color: var(--mbs-color-common-black);
  position: relative;
  z-index: 99;
}

.mega-menu-right a.title {
  color: var(--mbs-color-common-black);
  font-size: 18px;
  padding: 30px 40px 5px 40px;
  display: block;
  font-weight: 600;
}

.mega-menu-left p {
  color: var(--mbs-color-text-body);
  padding: 0 25px 50px 25px;
  position: relative;
  z-index: 99;
}

.sub-menu-list {
  list-style: none;
  padding: 0;
  max-height: 330px;
  overflow-y: hidden;
}

.mega-menu-right:hover .sub-menu-list {
  overflow-y: auto;
}


.sub-menu-list li a {
  display: block;
  padding: 15px 10px 15px 20px;
  margin-left: 40px;
  margin-right: 40px;
  text-decoration: none;
  color: var(--mbs-color-common-black);
  border-bottom: 1px dashed var(--mbs-color-border-1);
  -webkit-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
}


.has-sub-sub-menu.active a,
.sub-menu-list li a:hover {
  background: var(--mbs-color-grey-1);
  font-weight: 600;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}

.sub-sub-menu-list li a:hover {
  background: var(--mbs-color-common-white);
  font-weight: 600;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}

.has-sub-sub-menu>a::after {
  content: "\e13a";
  color: var(--mbs-color-common-black);
  font-size: 20px;
  font-family: "Phosphor" !important;
  float: right;
  margin-top: -3px;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}

.has-sub-sub-menu.active>a::after {
  transform: rotate(360deg);
}

/* --- buradan itibaren sub-sub-menu animasyonu ve görünümü --- */

.sub-sub-menu {
  display: block;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 400px;
  overflow-y: hidden;
  padding: 62px 0;
}

.sub-sub-menu:hover {
  overflow-y: auto;
}

.sub-sub-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sub-sub-menu-list {
  list-style: none;
  padding: 0;
  display: none;
}

.sub-sub-menu.open .sub-sub-menu-list {
  display: block !important;
}

.sub-sub-menu-list li a {
  display: block;
  padding: 15px 10px 15px 20px;
  margin-left: 40px;
  margin-right: 40px;
  text-decoration: none;
  color: var(--mbs-color-common-black);
  border-bottom: 1px dashed var(--mbs-color-border-1);
  -webkit-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
}

.mega-menu .close-btn {
  position: absolute;
  bottom: -27px;
  background: var(--mbs-color-theme-primary);
  color: #fff;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  right: -27px;
  margin-inline: auto;
  z-index: 99;
  padding-top: 6px;
  font-size: 26px;
}

.mega-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}


@media (min-width: 768px) {
  .mega-menu-left {
    width: 25%;
    flex: 0 0 25%;
  }

  .mega-menu-right,
  .sub-sub-menu {
    width: 37.5%;
    flex: 0 0 37.5%;
  }
}

.mbs-footer-section {
  color: #fff;

}

.mbs-footer-section .footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.mbs-footer-section .footer-widget .title {
  color: #fff;
  margin-bottom: 15px;
}

.mbs-footer-section .footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mbs-footer-section .footer-widget ul li {
  margin-bottom: 8px;
}

.mbs-footer-section .footer-widget ul li a {
  color: #7d7d7d;
  text-decoration: none;
  font-size: 14px;
}

.mbs-footer-section .footer-widget ul li a:hover {
  color: #fff;
}

.mbs-footer-section .right-content-inner {
  color: #fff;
  text-align: left;
}

.mbs-footer-section .right-content-inner h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
}

.mbs-footer-section .right-content-inner p {
  font-size: 18px;
  color: #7d7d7d;
  line-height: 1.6;
}

.mbs-footer-section .right-content-inner .footer-btn {
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 12px 20px;
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  font-weight: 600;
  margin: 40px 0;
  transition: background 0.3s ease;
  position: relative;
  gap: 8px;
}

.mbs-footer-section .right-content-inner .footer-btn i {
  font-size: 24px;
  position: static;
  transform: none;
  transform: scaleX(-1);
}

.mbs-footer-section .right-content-inner .footer-btn:hover {
  background-color: var(--mbs-color-common-white);
  color: var(--mbs-color-common-black);
  cursor: pointer;
}

.mbs-footer-section .footer-experience {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.mbs-footer-section .footer-experience-item {
  flex: 1;
  min-width: 100px;
}

.mbs-footer-section .footer-experience-item strong {
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--mbs-color-common-white);
}

.mbs-footer-section .footer-experience-item p {
  font-size: 14px;
  color: #7d7d7d;
}

.mbs-footer-section .mbs-footer-intro {
  color: #ccc;
  font-size: 14px;
}

.mbs-footer-section .footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

.mbs-footer-section .footer-address {
  margin-bottom: 20px;
  line-height: 1.6;
}

.mbs-footer-section .footer-contact-group {
  margin-bottom: 16px;
}

.mbs-footer-section .footer-contact-group strong {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 2px;
}

.mbs-footer-section .footer-contact-group p {
  margin: 0;
}

.mbs-footer-section .footer-contact-group a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mbs-support-button {
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  justify-content: space-between;
}

.mbs-support-button span {
  color: var(--mbs-color-common-black);
}

.mbs-support-button .btn-icon {
  font-size: 20px;
}

.footer-contact-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-contact-details .gray-text {
  color: #7d7d7d !important;
}

.footer-contact-icon {
  font-size: 24px;
  color: #7d7d7d;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
}

.footer-contact-number {
  font-size: 14px;
  color: #fff;
  display: block;
}


.mbs-footer-section a .footer-contact-number,
.mbs-footer-section a strong {
  opacity: 1;
  transform: translateY(0px) scale(1) !important;
  transition: all 0.1s ease;
}


.mbs-footer-section a:hover .footer-contact-number,
.mbs-footer-section a:hover strong {
  opacity: 0.5;
  transform: translateY(-2px) scale(1.02) !important;
  transition: all 0.2s ease;
}

.page-business .infobox-area .infobox-item:first-child,
.page-business .infobox-area .infobox-item:last-child {
  grid-column: span 1 / span 3;
}

/* Her 3’lü grupta ilk kutu (1, 4, 7, ...) */
.mbs-news-section.news-list-page .row>.col-md-6:nth-child(3n+1),
.mbs-news-section.news-list-page .row>.col-xl-4:nth-child(3n+1) {
  padding-right: 2px;
}

/* Her 3’lü grupta orta kutu (2, 5, 8, ...) */
.mbs-news-section.news-list-page .row>.col-md-6:nth-child(3n+2),
.mbs-news-section.news-list-page .row>.col-xl-4:nth-child(3n+2) {
  padding-right: 0;
  padding-left: 0;
}

/* Her 3’lü grupta son kutu (3, 6, 9, ...) */
.mbs-news-section.news-list-page .row>.col-md-6:nth-child(3n),
.mbs-news-section.news-list-page .row>.col-xl-4:nth-child(3n) {
  padding-left: 2px;
}

@media (max-width: 1560px) {
  .copyright.copyright-kodes {
    text-align: left;
  }
}

@media only screen and (min-width: 1199px) and (max-width: 1399px) {
  .heading-wrap-content .desc {
    max-width: 360px;
  }
}

@media only screen and (min-width: 1199px) and (max-width: 1299px) {
  .main-menu>li>a {
    font-size: 16px;
    padding: 12px 15px;
  }

  .header-right-item {
    gap: 2px;
    margin-left: 15px;
    padding-left: 15px;
  }

  .mbs-support-button {
    padding: 8px;
    gap: 4px;
  }

  .mega-menu {
    top: 94px;
  }

}

@media only screen and (min-width: 991px) and (max-width: 1199px) {

  .main-menu>li>a {
    font-size: 16px;
    padding: 12px 12px;
  }

  .header-right-item {
    gap: 2px;
    margin-left: 12px;
    padding-left: 12px;
  }

  .mbs-support-button {
    padding: 6px;
    gap: 2px;
  }

  .mbs-support-button .btn-text span {
    display: none;
  }

  .heading-wrap-content .desc {
    max-width: 100%;
  }

  .blog-item .blog-thumb {
    height: 285px;
  }

  .mbs-news-section .row-gap-4 {
    row-gap: 2px !important;
  }

  .mbs-news-section .col-xl-6.col-md-6 {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .mbs-news-section .row>*:nth-child(2) {
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

}

@media only screen and (max-width: 1199px) {
  .mbs-news-section.news-list-page .sec-heading.mb-5 {
    margin-bottom: 2rem !important;
  }

  .mbs-news-section.news-list-page .row>.col-md-6:nth-child(odd) {
    padding-right: 1px;
    padding-left: 0px;
  }

  /* Her 2’li grupta ikinci kutu (2, 4, 6, ...) */
  .mbs-news-section.news-list-page .row>.col-md-6:nth-child(even) {
    padding-left: 1px;
    padding-right: 0px;
  }

  .footer-widget {
    margin-bottom: 50px;
  }

  .footer-bottom-info {
    padding-top: 50px;
    padding-bottom: 0px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .site-logo .logo img {
    max-width: 165px;
  }

  .choose-box .title {
    font-size: 18px;
  }

  .mega-menu {
    top: 94px;
  }

  .mbs-infobox-section .infobox-area .infobox-item {
    grid-column: span 1 / span 3;
  }

  .page-img-content {
    margin-top: 0px;
  }
}

.page-bg .sec-heading p.desc {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .page-bg .sec-heading p.desc {
    width: 100%;
  }

  .section-gap-page .sec-heading .sec-title {
    font-size: 28px;
  }

  .mbs-mega-menu {
    display: none !important;
  }

  .site-logo .logo img {
    max-width: 145px;
  }

  .product-item.style-1 {
    height: 575px;
  }

  .product-item.style-1 .product-img {
    height: 460px;
  }

  .product-item.style-1:hover .product-img {
    height: 340px;

  }

  .mbs-news-section .row-gap-4 {
    row-gap: 2px !important;
  }

  .mbs-news-section .col-xl-6.col-md-6 {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .mbs-news-section .row>*:nth-child(2) {
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .mbs-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
  }

  .hamburger-area .hamburger-top {
    margin-bottom: 20px;
  }

  .hamburger-area .hamburger-wrapper .hamburger-inner .hamburger-top {
    padding: 18px 15px 18px 20px;
  }

  .mean-container a.meanmenu-reveal {
    display: none;
  }

  .hamburger-menu .mean-nav ul li .sub-menu li {
    background-color: #fff;
  }


  .hamburger-menu .mean-nav ul li .sub-menu li .mobil-sub-sub-menu-list {
    padding-left: 15px;
  }


  .hamburger-menu .mean-nav ul li .sub-menu li a {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0 16px 35px;
    border: none;
  }

  .hamburger-menu .mean-nav ul li .sub-menu li a.mean-expand {
    padding: 0;
    width: 30px;
  }

  .hamburger-menu .mean-nav ul li a.mean-expand.menu-url {
    position: relative;
  }

  .page-img-content {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .section-gap-page {
    padding-top: 15px;
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .mbs-news-section.news-list-page .row>.col-md-6:nth-child(odd) {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mbs-news-section.news-list-page .row>.col-md-6:nth-child(even) {
    padding-right: 15px;
    padding-left: 15px;
  }

  .section-gap-page {
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .chat-bubble-text,
  .footer-logo,
  .mbs-footer-section.footer-style:after,
  .footer-bottom-info,
  .mbs-slider-section:before {
    display: none;
  }

  .site-logo .logo:hover {
    transform: none;
    filter: brightness(1);
  }

  .footer-top-info {
    border-bottom: 1px solid var(--mbs-color-border-2);

    margin-bottom: 15px;
  }

  .mbs-footer-section.footer-style {
    margin-bottom: 0;
  }

  .mbs-footer-section .right-content-inner,
  .copyright.copyright-kodes,
  .copyright-content-area .copyright-menu ul li {
    text-align: left;
  }

  .mbs-news-section .row>*:nth-child(1),
  .mbs-news-section .row>*:nth-child(2),
  .mbs-news-section .col-xl-6.col-md-6 {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .mbs-news-section .row>*:nth-child(2),
  .mbs-news-section .col-xl-6.col-md-6 {
    margin-top: 25px;
  }

  .product-item.style-1 {
    height: 475px;
  }

  .product-item.style-1 .product-img {
    height: 360px;
  }

  .product-item.style-1:hover .product-img {
    height: 260px;
  }

  .cookie-modal-content,
  .cookie-banner {
    padding: 30px;
  }

  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 88px;
  }

  .back-to-top-btn span,
  .chat-bubble-btn {
    width: 45px;
    height: 45px;
    font-size: 25px;
  }

  .footer-contact-group {
    gap: 5px;
  }

  .mbs-footer-cta {
    margin-top: 25px;
  }


  .footer-contact-icon {
    margin-right: 10px;
  }



  .mbs-footer-section .right-content-inner .footer-btn {
    max-width: 100%;
  }

  .heading-wrap-content {
    gap: 5px;
    margin-bottom: 20px;
  }

  .mbs-slider-item .slider-content .slider-desc {
    max-width: 95%;
  }

  .mbs-slider-section {
    height: calc(100vh - 80px);
  }

  .cookie-modal-content,
  .cookie-banner {
    max-width: 100%;
  }

  .cookie-banner .cookie-message strong.title {
    color: var(--mbs-color-common-white);
  }

  .cookie-banner .cookie-accept {
    background: var(--mbs-color-theme-primary);
  }

  .cookie-banner .cookie-message p {
    color: #7d7d7d;
  }

  .cookie-banner {
    background: var(--mbs-color-common-black);
  }

  .mbs-offcanvas-area.opened {
    width: 100%;
  }

  .hamburger-wrapper .hamburger-inner .hamburger-top {
    padding: 30px 15px 25px 40px;
  }

  .hamburger-search-area {
    padding: 0px 20px 0px;
  }

  .hamburger-infos .contact-info .contact-item {
    padding: 15px 20px;
    gap: 20px;
  }

  .mbs-product-section .product-wrapper {
    margin-top: 35px;
  }

  .infobox-area .infobox-item:before {
    opacity: 1;
    transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
  }

  .infobox-area .infobox-item .infobox-img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .infobox-area .infobox-item .infobox-btn {
    opacity: 1;
  }

  .infobox-area .infobox-item p {
    position: relative;
    bottom: 0px;
  }

  .infobox-area .infobox-item .infobox-content .categories a {
    background-color: var(--mbs-color-theme-primary);
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 {
    -webkit-transform: translateY(-25px) !important;
    -ms-transform: translateY(-25px) !important;
    transform: translateY(-25px) scale(1.03) !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0 60px 40px -7px;
    z-index: 5;
  }


  .mbs-product-section .swiper-slide-active .product-item.style-1::before {
    opacity: 1;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .text-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .product-content .text-btn .btn-icon i {
    color: var(--mbs-color-theme-primary);
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .product-content .text-btn .btn-text,
  .mbs-product-section .swiper-slide-active .product-item.style-1 h3.title a {
    color: var(--mbs-color-common-white) !important;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .product-img {
    height: 260px;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .product-content {
    padding-bottom: 80px;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .desc {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }

  .mbs-product-section .swiper-slide-active .product-item.style-1 .text-btn {
    bottom: 30px;
  }

  .mbs-product-section .swiper-slide:not(.swiper-slide-active) .product-item.style-1 {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    box-shadow: none;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  }

  .mbs-product-section .swiper-slide:not(.swiper-slide-active) .product-item.style-1::before {
    opacity: 0;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  }

  .mbs-product-section .swiper-slide:not(.swiper-slide-active) .product-item.style-1 .product-img {
    background-color: var(--mbs-color-common-white);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  }

  .mbs-product-section .swiper-slide:not(.swiper-slide-active) .product-item.style-1 .product-content {
    padding: 18px 15px;
  }

  .page-img-content {
    margin-bottom: 40px;
  }
}

.mbs-contact .sec-heading {
  margin-bottom: 3rem;
}

.mbs-contact .sec-title {
  color: #1a1a1a;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mbs-contact-container {
  background: var(--mbs-color-common-white);
  border-radius: 0;
  display: flex;
  min-height: 600px;
}

.mbs-contact-info-section {
  flex: 1;
  padding: 4rem 3rem;
  background: #fff;
}

.mbs-contact-info-section.mbs-footer-section,
.mbs-contact-info-section.mbs-footer-section .footer-contact-details .gray-text,
.mbs-contact-info-section.mbs-footer-section .footer-contact-group strong,
.mbs-contact-info-section.mbs-footer-section .footer-contact-number {
  color: var(--mbs-color-common-black) !important;
}

.mbs-contact-info-section.mbs-footer-section .mbs-contact-section-desc {
  color: var(--mbs-color-text-body) !important;
}

.mbs-contact-info-section.mbs-footer-section .footer-contact-group strong {
  font-size: 18px;
}

.mbs-contact-section-title {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
}


.mbs-contact-section-desc {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.mbs-basic-contact {
  margin-bottom: 2.5rem;
}

.mbs-contact-social {
  margin-top: 1.5rem;
}

.mbs-contact-social .social-links {
  display: flex;
  gap: 1rem;
}

.mbs-contact-social .social-links a {
  font-size: 32px;
  color: var(--mbs-color-common-black);
  transition: all 0.3s ease;
}

.mbs-contact-social .social-links a:hover {
  color: var(--mbs-color-theme-primary);
  transform: translateY(-3px);
}

.mbs-office-tabs {
  margin-top: 2rem;
}

.mbs-office-tabs-title {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mbs-office-nav {
  border: none;
  margin-bottom: 0;
  gap: 0;
  border-bottom: 1px solid var(--mbs-color-grey-1);
}

.mbs-office-nav .nav-link {
  border-radius: 0;
  color: #666;
  font-weight: 500;
  margin: 0;
  transition: all 0.3s ease;
  border-right: none;
}

.mbs-office-nav .nav-link:last-child {
  border-right: 1px solid var(--mbs-color-grey-1)
}

.mbs-office-nav .nav-link:hover {
  background: #f2f2f2;
  color: var(--mbs-color-common-black);
}

.mbs-office-nav .nav-link.active {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--mbs-color-theme-primary);
  border-bottom: 2px solid var(--mbs-color-theme-primary);
}

.mbs-office-tab-content {
  border-radius: 0;
  padding: 1.5rem 1.2rem;
}

.mbs-office-info p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 15px;
}

.mbs-office-info p:last-child {
  margin-bottom: 0;
}

.mbs-office-info a {
  color: var(--mbs-color-common-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mbs-office-info a:hover {
  color: var(--mbs-color-theme-primary);
  text-decoration: underline;
}

.location-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--mbs-color-theme-primary) !important;
}

.mbs-contact-divider {
  width: 1px;
  margin: 0;
}

.mbs-contact-form-section {
  flex: 1;
  padding: 4rem 3rem;
  background: #fff;
  -webkit-box-shadow: 0 5px 83px 0 rgba(9, 29, 62, .15);
  box-shadow: 0 5px 83px 0 rgba(9, 29, 62, .15);
}

.mbs-form-group {
  margin-bottom: 1.5rem;
}

.mbs-form-label {
  color: var(--mbs-color-common-black);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.mbs-form-label .required {
  color: var(--mbs-color-theme-primary);
}

.mbs-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--mbs-color-grey-1);
  border: 1px solid #e9ecef;
  border-radius: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--mbs-color-grey-1);
}

.mbs-form-control:focus {
  outline: none;
  box-shadow: none;
  background-color: var(--mbs-color-grey-1);
  border-color: var(--mbs-color-common-black);
}

.mbs-form-control.error {
  border-color: var(--mbs-color-theme-primary);
  box-shadow: none;
}

.mbs-form-control.success {
  border-color: #28a745;
}

textarea.mbs-form-control {
  min-height: 220px;
  max-height: 440px;
}

.mbs-form-checkbox input[type="checkbox"].error {
  outline: 1px solid var(--mbs-color-theme-primary);
  position: relative;
  z-index: 1;
}


.mbs-form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}


.mbs-form-checkbox input[type="checkbox"].error::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--mbs-color-theme-primary);
  pointer-events: none;
  z-index: 0;
}

.mbs-form-error {
  color: var(--mbs-color-theme-primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.mbs-form-error.show {
  display: block;
}

.mbs-captcha-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mbs-captcha-question {
  background: var(--mbs-color-grey-1);
  padding: 0.875rem 1rem;
  border-radius: 0;
  border: 1px solid #e9ecef;
  font-weight: 600;
  color: #333;
  min-width: 120px;
  text-align: center;
}

.mbs-captcha-wrapper .mbs-form-control {
  max-width: 120px;
}

.mbs-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mbs-form-checkbox label {
  color: #666;
  line-height: 1.5;
  padding-top: 3px;
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.mbs-form-submit-button {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  margin: 40px 0;
  transition: background 0.3s ease;
  position: relative;
  gap: 8px;
}

.mbs-form-submit-button:hover {
  background: var(--mbs-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 12px 20px;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  margin: 40px 0;
  transition: background 0.3s ease;
  position: relative;
  gap: 8px;
}

.mbs-form-submit-button .btn-icon i {
  font-size: 20px;
  position: absolute;
  top: calc(50% - 10px);
}

.mbs-form-checkbox label a {
  font-weight: 600;
  color: var(--mbs-color-common-black);
  text-decoration: none;
}

.mbs-form-checkbox label a:hover {
  text-decoration: underline;
}

.mbs-form-checkbox+.mbs-form-error {
  margin-left: 2.25rem;
}

.mbs-form-submit {
  margin-top: 2rem;
}

.mbs-slider-btn {
  background: var(--mbs-color-theme-primary);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.mbs-slider-btn:hover {
  background: #b01729;
}

.mbs-slider-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.mbs-slider-btn .btn-text {
  font-weight: 600;
}

.mbs-slider-btn .btn-icon {
  font-size: 1.1rem;
}

.mbs-form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0;
  border: 1px solid #c3e6cb;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mbs-form-success i {
  font-size: 1.5rem;
  color: #28a745;
}

.mbs-form-success p {
  margin: 0;
  font-weight: 500;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  background: var(--mbs-color-common-black);
  border-radius: 0;
  padding: 25px 30px;
  border-bottom: 1px solid #e9ecef;
  background-color: var(--mbs-color-grey-1);
}

.modal-dialog-scrollable .modal-body {
  padding: 25px;
}

.modal-footer button {
  background: #f0f0f0;
  color: var(--mbs-color-common-black);
  margin-right: 8px;
  margin-top: 5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0;
}

.modal-footer button:hover {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
}

.modal-header .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin: 0;
}

.modal-header .btn-close {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4,
.modal-body h5,
.modal-body h6,
.modal-body strong,
.modal-body b {
  color: var(--mbs-color-common-black);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-body h6:first-child {
  margin-top: 0;
}

.modal-body ul {
  padding-left: 1.5rem;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .mbs-contact-section-desc {
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .mbs-contact-container {
    flex-direction: column;
    min-height: auto;
  }

  .mbs-contact-divider {
    width: 100%;
    height: 1px;
  }

  .mbs-contact-info-section,
  .mbs-contact-form-section {
    padding: 2rem;
  }

  .mbs-contact .sec-title {
    font-size: 2rem;
  }

  .mbs-office-tabs .flex-column {
    flex-direction: row !important;
  }
}

@media (max-width: 767.98px) {

  .mbs-contact-info-section,
  .mbs-contact-form-section {
    padding: 1.5rem;
  }

  .mbs-contact .sec-title {
    font-size: 1.75rem;
  }

  .mbs-contact-section-title {
    font-size: 1.5rem;
  }

  .mbs-office-nav {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .mbs-office-nav .nav-link {
    border-right: 1px solid #e9ecef;
    border-bottom: none;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
  }

  .mbs-office-nav .nav-link:first-child {
    border-top: 1px solid #e9ecef;
  }

  .mbs-office-nav .nav-link:last-child {
    border-bottom: 1px solid #e9ecef;
  }

  .mbs-captcha-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .mbs-captcha-question {
    text-align: center;
    min-width: auto;
  }

  .mbs-captcha-wrapper .mbs-form-control {
    max-width: none;
    text-align: center;
  }


  .row .col-md-6 .mbs-form-group {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {

  .mbs-contact-info-section,
  .mbs-contact-form-section {
    padding: 1.5rem;
  }

  .mbs-contact .sec-title {
    font-size: 1.5rem;
  }

  .mbs-contact-section-title {
    font-size: 1.25rem;
  }

  .mbs-contact-section-desc {
    font-size: 0.95rem;
  }

  .mbs-contact-social {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .mbs-contact-social .social-links {
    gap: 1.5rem;
  }

  .mbs-contact-social .social-links a {
    font-size: 2rem;
  }

  .mbs-office-nav .nav-link {
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
  }

  .mbs-office-tab-content {
    padding: 1rem;
  }

  .mbs-office-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .mbs-form-label {
    font-size: 0.95rem;
  }

  .mbs-form-control {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  textarea.mbs-form-control {
    min-height: 120px;
  }

  .mbs-form-checkbox {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .mbs-form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .mbs-slider-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .mbs-form-success {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .mbs-form-success i {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {

  .mbs-contact-info-section,
  .mbs-contact-form-section {
    padding: 0.75rem;
  }

  .mbs-contact .sec-title {
    font-size: 1.35rem;
  }

  .mbs-contact-section-title {
    font-size: 1.1rem;
  }

  .mbs-office-nav .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  .mbs-form-control {
    padding: 0.65rem;
    font-size: 0.9rem;
  }

  .mbs-slider-btn {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}

.mbs-contact-container {
  transition: all 0.3s ease;
}

.mbs-form-control:focus+.mbs-form-label,
.mbs-form-control:not(:placeholder-shown)+.mbs-form-label {
  color: var(--mbs-color-theme-primary);
}

.mbs-contact-container *:focus:not(:focus-visible) {
  outline: none;
}

.video-content {
  width: 100%;
  padding: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  margin-top: 15px;
  font-size: 1.5rem;
  text-align: center;
}

@media print {
  .mbs-contact-container {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .mbs-slider-btn,
  .mbs-form-submit {
    display: none;
  }
}













.mbs-career-jobs {
  padding: 80px 0;
}

.mbs-career-jobs-list {
  max-width: 900px;
  margin: 0 auto;
}

.mbs-career-job-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mbs-career-job-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--mbs-color-theme-primary);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: var(--mbs-color-grey-1);
}

.job-header:hover {
  background-color: var(--mbs-color-grey-1);
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.job-meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}

.job-meta i {
  margin-right: 6px;
  font-size: 16px;
  color: var(--mbs-color-theme-primary);
}

.job-toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.job-toggle-btn i {
  font-size: 20px;
  color: var(--mbs-color-theme-primary);
}

.job-toggle-btn.active {
  transform: rotate(180deg);
}

.job-details {
  display: none;
  border-top: 1px solid #e9ecef;
}

.job-details.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-description {
  padding: 30px;
}

.job-description h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 15px;
  margin-top: 25px;
}

.job-description h4:first-child {
  margin-top: 0;
}

.job-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 15px;
}

.job-description ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.job-description li {
  font-size: 14px;
  color: #495057;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.job-description li:before {
  content: "•";
  color: var(--mbs-color-theme-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.job-apply {
  padding: 20px 30px;
  border-top: 1px solid #dee2e6;
  background-color: #ffffff;
}

.job-apply-btn {
  background: var(--mbs-color-theme-primary);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-apply-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

.job-apply-btn i {
  font-size: 16px;
}

/* Modal Stilleri */
.mbs-career-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: auto;
}

.mbs-career-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mbs-career-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mbs-career-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 23px;
  border-bottom: 1px solid #e9ecef;
  background-color: var(--mbs-color-grey-1);
}

.mbs-career-modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin: 0;
}

.mbs-career-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.mbs-career-modal-close:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-career-modal-body {
  padding: 30px;
}

/* Form Stilleri */
.mbs-career-form .form-group {
  margin-bottom: 5px;
}

.mbs-career-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--mbs-color-common-black);
  margin-bottom: 8px;
}

.mbs-career-form input,
.mbs-career-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  font-size: 14px;
  color: #495057;
  transition: all 0.3s ease;
}

.mbs-career-form input:focus,
.mbs-career-form textarea:focus {
  outline: none;
  border-color: var(--mbs-color-theme-primary);
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.mbs-career-form input[type="file"] {
  padding: 8px 15px;
  border: 2px dashed #ced4da;
  background-color: var(--mbs-color-grey-1);
  cursor: pointer;
}

.mbs-career-form input[type="file"]:hover {
  border-color: var(--mbs-color-theme-primary);
  background-color: #fff5f5;
}

.file-info {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.error-message {
  font-size: 12px;
  color: var(--mbs-color-theme-primary);
  margin-top: 5px;
  min-height: 16px;
}

/* Captcha Stilleri */
.captcha-group .captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}

.captcha-question {
  font-size: 16px;
  font-weight: 500;
  color: var(--mbs-color-common-black);
  background-color: var(--mbs-color-grey-1);
  padding: 12px 20px;
  border: 1px solid #ced4da;
  min-width: 120px;
  text-align: center;
}

.captcha-container input {
  max-width: 100px;
  margin: 0;
}

/* Checkbox Stilleri */
.checkbox-group {
  margin-top: 0px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
}

.privacy-link {
  color: var(--mbs-color-theme-primary);
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

.submit-btn {
  background: var(--mbs-color-theme-primary);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.submit-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.submit-btn i {
  font-size: 18px;
}

/* Gizlilik Politikası Modal */
.privacy-content {
  line-height: 1.6;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 5px;
  margin-top: 25px;
}

.privacy-content h1:first-child,
.privacy-content h2:first-child,
.privacy-content h3:first-child,
.privacy-content h4:first-child,
.privacy-content h5:first-child,
.privacy-content h6:first-child {
  margin-top: 0;
}

.privacy-content p {
  font-size: 14px;
  color: #495057;
  margin-bottom: 15px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .mbs-career-jobs {
    padding: 60px 0;
  }

  .job-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-toggle-btn {
    align-self: flex-end;
    margin-top: -10px;
  }

  .job-meta {
    flex-direction: column;
    gap: 10px;
  }

  .job-description {
    padding: 20px;
  }

  .job-apply {
    padding: 15px 20px;
  }

  .mbs-career-modal-content {
    margin: 10px;
    max-height: 95vh;
  }

  .mbs-career-modal-header {
    padding: 20px;
  }

  .mbs-career-modal-body {
    padding: 20px;
  }

  .captcha-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .captcha-question {
    min-width: auto;
    width: 100%;
  }

  .captcha-container input {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .job-title {
    font-size: 18px;
  }

  .job-meta span {
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    min-width: auto;
  }
}

/* Hata Durumu Stilleri */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--mbs-color-theme-primary);
}

.checkbox-group.has-error {
  background-color: rgba(220, 53, 69, 0.05);
  padding: 10px;
  border-left: 3px solid var(--mbs-color-theme-primary);
}

/* Modal kapatma butonu iyileştirmesi */
.mbs-career-modal-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mbs-career-modal-close:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--mbs-color-theme-primary);
}

/* Form gönderim butonu durumları */
.submit-btn:disabled {
  background: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.submit-btn:disabled:hover {
  background: #6c757d !important;
  transform: none !important;
}

/* Notification Stilleri */
.mbs-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 350px;
  max-width: 500px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mbs-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.mbs-notification.success {
  border-left: 4px solid #28a745;
}

.mbs-notification.error {
  border-left: 4px solid var(--mbs-color-theme-primary);
}

.notification-content {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 15px;
}

.notification-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mbs-notification.success .notification-icon {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.mbs-notification.error .notification-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--mbs-color-theme-primary);
}

.notification-icon i {
  font-size: 20px;
}

.notification-text {
  flex: 1;
}

.notification-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin: 0 0 5px 0;
}

.notification-text p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background-color: var(--mbs-color-grey-1);
  color: #495057;
}

.notification-close i {
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .mbs-notification {
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }

  .notification-content {
    padding: 15px;
    gap: 10px;
  }

  .notification-icon {
    width: 35px;
    height: 35px;
  }

  .notification-icon i {
    font-size: 18px;
  }

  .notification-text h4 {
    font-size: 15px;
  }

  .notification-text p {
    font-size: 13px;
  }
}

.mbs-policies {
  background-color: var(--mbs-color-grey-1);
  min-height: 100vh;
}


/* Sol Sidebar */
.mbs-policies-sidebar {
  background: #ffffff;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.policies-menu {
  padding: 0;
}

.policies-menu-title {
  background: var(--mbs-color-common-white);
  color: var(--mbs-color-common-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
}

.policies-menu-title i {
  font-size: 26px;
}

.policies-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policies-menu-item {
  border-bottom: 1px solid #e9ecef;
}

.policies-menu-item:last-child {
  border-bottom: none;
}

.policies-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  color: #495057;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.policies-menu-link:hover {
  color: var(--mbs-color-theme-primary);
  text-decoration: none;
}

.policies-menu-item.active .policies-menu-link {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--mbs-color-theme-primary);
  border-left: 4px solid var(--mbs-color-theme-primary);
}

.policies-menu-link i:first-child {
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.policies-menu-link i:last-child {
  font-size: 16px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.policies-menu-item.active .policies-menu-link i:last-child {
  transform: rotate(90deg);
  opacity: 1;
}

.policies-menu-link span {
  flex: 1;
}

/* Sağ İçerik Alanı */
.mbs-policies-content {
  background: #ffffff;
  overflow: hidden;
}

.policy-content {
  display: none;
  padding: 40px;
  animation: fadeInUp 0.4s ease;
}

.policy-content ol li {
  padding-left: 10px;
}

.policy-content ol li::before {
  display: none;
}

.policy-content.active {
  display: block;
}

.corporate-quality .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.corporate-quality .gallery-item img {
  width: 70%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: grayscale(80%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 5px;
  margin-bottom: 35px;
}

.policy-header h1 {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy-header h1 i {
  font-size: 30px;
  color: var(--mbs-color-theme-primary);
}

.policy-date {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  margin: 0;
  background-color: var(--mbs-color-grey-1);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
}

.policy-body {
  line-height: 1.7;
}

.policy-body h1,
.policy-body h2 {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  margin: 45px 0 8px 0;
  padding-bottom: 0px;
}


.policy-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin: 30px 0 8px 0;
  padding-bottom: 0px;
}

.policy-body h4,
.policy-body h5,
.policy-body h6 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin: 30px 0 8px 0;
  padding-bottom: 0px;
}

.policy-body h3:first-child {
  margin-top: 0;
}

.policy-body p {
  font-size: 16px;
  color: #495057;
  margin-bottom: 20px;
  text-align: justify;
}

.policy-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-body li {
  font-size: 16px;
  color: #495057;
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
}

.policy-body li:before {
  content: "•";
  color: var(--mbs-color-theme-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.policy-body strong {
  color: #212529;
  font-weight: 600;
}

.policy-body a {
  color: var(--mbs-color-theme-primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-body a:hover {
  text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
  .mbs-policies-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .policies-menu-title {
    padding: 20px 25px;
    font-size: 16px;
  }

  .policies-menu-link {
    padding: 18px 25px;
    font-size: 14px;
  }

  .policy-content {
    padding: 30px 25px;
  }

  .policy-header h2 {
    font-size: 24px;
  }

  .policy-header h2 i {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .policies-menu-title {
    padding: 18px 20px;
    font-size: 20px;
  }

  .policies-menu-title i {
    font-size: 20px;
  }

  .policies-menu-link {
    padding: 15px 20px;
    font-size: 14px;
  }

  .policies-menu-link i:first-child {
    font-size: 18px;
    margin-right: 10px;
  }

  .policy-content {
    padding: 25px 20px;
  }

  .policy-header {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }

  .policy-header h2 {
    font-size: 20px;
    gap: 10px;
  }

  .policy-header h2 i {
    font-size: 24px;
  }

  .policy-body h3 {
    font-size: 18px;
    margin: 25px 0 15px 0;
  }

  .policy-body h4 {
    font-size: 16px;
    margin: 20px 0 12px 0;
  }

  .policy-body p,
  .policy-body li {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .policies-menu-link span {
    font-size: 14px;
  }

  .policy-header h1 {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .policy-date {
    font-size: 12px;
    padding: 6px 12px;
  }

  .policy-body h1,
  .policy-body h2,
  .policy-body h3,
  .policy-body h4,
  .policy-body h5,
  .policy-body h6 {
    font-size: 18px;
  }

}

/* Hover Efektleri */
.policies-menu-link {
  overflow: hidden;
}

.policies-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
  transition: left 0.5s ease;
}

.policies-menu-link:hover::before {
  left: 100%;
}

/* Scroll Animasyonları */
.policy-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.policy-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* İkon Animasyonları */
.policies-menu-link i:first-child {
  transition: all 0.3s ease;
}

.policies-menu-link:hover i:first-child {
  transform: scale(1.1);
}

/* Loading Animasyonu */
.policy-content.loading {
  opacity: 0.5;
  pointer-events: none;
}

.policy-content.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--mbs-color-theme-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Özel Vurgular */
.policy-body .highlight {
  background-color: rgba(220, 53, 69, 0.1);
  padding: 15px 20px;
  border-left: 4px solid var(--mbs-color-theme-primary);
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.policy-body .highlight p {
  margin: 0;
  font-weight: 500;
}

/* Tablo Stilleri */
.policy-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
}

.policy-body table th,
.policy-body table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.policy-body table th {
  background-color: var(--mbs-color-grey-1);
  font-weight: 600;
  color: #212529;
}

.policy-body table tr:hover {
  background-color: var(--mbs-color-grey-1);
}


@media (max-width: 991px) {
  .policies-menu-list {
    max-height: 300px;
    overflow-y: auto;
  }

  .policies-menu-list::-webkit-scrollbar {
    width: 4px;
  }

  .policies-menu-list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .policies-menu-list::-webkit-scrollbar-thumb {
    background: var(--mbs-color-theme-primary);
    border-radius: 2px;
  }
}

.mbs-page-d .header-image-section {
  margin: 20px 0 30px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.mbs-page-d .header-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: scale-down;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
}

/* İçerik İçindeki Genel IMG Tagları */
.mbs-page-d .policy-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
  display: block;
}

.mbs-page-d .photo-gallery {
  margin: 30px 0;
}

.mbs-page-d .photo-gallery h3 {
  color: var(--mbs-color-common-black);
  border-bottom: 1px solid #e9ecef;
  font-size: 20px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
}

.mbs-page-d .photo-gallery h3 i {
  font-size: 26px;
}

.mbs-page-d .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.mbs-page-d .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background-color: var(--mbs-color-common-white);
}

.mbs-page-d .gallery-item:hover {
  transform: scale(1.05);
}

.mbs-page-d .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: grayscale(80%);
}

.mbs-page-d .gallery-item:hover img {
  filter: grayscale(0%);
  transition: all 0.3s ease;
}

.mbs-page-d .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(214, 31, 60, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mbs-page-d .gallery-item:hover .overlay {
  opacity: 1;
}

.mbs-page-d .gallery-item .overlay i {
  color: white;
  font-size: 24px;
}

.mbs-page-d .video-section {
  margin: 30px 0;
}

.mbs-page-d .video-section h3 {
  color: var(--mbs-color-common-black);
  border-bottom: 1px solid #e9ecef;
  font-size: 20px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
}

.mbs-page-d .video-section h3 i {
  font-size: 26px;
}

.mbs-page-d .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
}

.mbs-page-d .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mbs-page-d .downloads-section {
  margin: 50px 0 30px 0;
  padding: 40px 30px 40px 30px;
  background: var(--mbs-color-grey-1);
}

.mbs-page-d .downloads-section h3 {
  color: var(--mbs-color-common-black);
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
}

.mbs-page-d .downloads-section h3 i {
  font-size: 26px;
}

.mbs-page-d .download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.mbs-page-d .download-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--mbs-color-common-white);
  text-decoration: none;
  color: var(--mbs-color-text-body);
  transition: all 0.3s ease;
}

.mbs-page-d .download-item:hover {
  background: var(--mbs-color-theme-primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 31, 60, 0.2);
}

.mbs-page-d .download-item:hover .download-content h4 {
  color: var(--mbs-color-common-white);
}

.mbs-page-d .download-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}


.mbs-page-d .download-icon i {
  font-size: 20px;
  color: var(--mbs-color-theme-primary);
  transition: color 0.3s ease;
}

.mbs-page-d .download-item:hover .download-icon i {
  color: var(--mbs-color-common-white);
}

.mbs-page-d .download-content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 1px;
}

.mbs-page-d .download-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mbs-page-d .header-image-section {
    flex-direction: column;
    align-items: center;
  }

  .mbs-page-d .header-image {
    max-height: 150px;
    min-width: 100%;
  }

  .mbs-page-d .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .mbs-page-d .gallery-item img {
    height: 120px;
  }

  .mbs-page-d .download-grid {
    grid-template-columns: 1fr;
  }

  .mbs-page-d .download-item {
    padding: 12px;
  }

  .mbs-page-d .download-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }

  .mbs-page-d .download-icon i {
    font-size: 16px;
  }
}

/* Lightbox Modal Styles */
.mbs-page-d .lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.mbs-page-d .lightbox-content {
  position: relative;
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 80%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--mbs-color-common-white);
}

.mbs-page-d .lightbox-content img {
  width: 100%;
  height: auto;
}

.mbs-page-d .lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 45px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}

.mbs-page-d .lightbox-close:hover {
  color: var(--mbs-color-theme-primary);
}

/* Lightbox Navigasyon Butonları */
.mbs-page-d .lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.mbs-page-d .lightbox-prev,
.mbs-page-d .lightbox-next {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  pointer-events: auto;
  transform: translateY(-50%);
}

.mbs-page-d .lightbox-prev:hover,
.mbs-page-d .lightbox-next:hover {
  background: var(--mbs-color-theme-primary);
  transform: translateY(-50%) scale(1.1);
}

.mbs-page-d .lightbox-prev:disabled,
.mbs-page-d .lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Lightbox Sayaç */
.mbs-page-d .lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Mobil için navigasyon butonları */
@media (max-width: 768px) {

  .mbs-page-d .lightbox-prev,
  .mbs-page-d .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .mbs-page-d .lightbox-nav {
    padding: 0 10px;
  }
}

.row-gap-4.blog-d {
  row-gap: 2px !important;
}



.mbs-news-section.news-list-page .row.blog-d>.col-md-6,
.mbs-news-section.news-list-page .row.blog-d>.col-xl-4 {
  padding-right: 15px;
  padding-left: 15px;
}

.mbs-news-section.news-list-page .row-gap-4 {
  row-gap: 1.5rem !important;
}

.mbs-news-section.news-list-page .row.blog-d>* {
  margin-bottom: 0px;
  margin-top: 0px !important;
}


.mbs-news-section.news-list-page .row>*:nth-child(2) {
  margin-top: 0px;
}


.mbs-post-navigation {
  padding: 20px 40px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mbs-post-navigation .mbs-nav-post-nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0px;
  color: var(--mbs-color-common-black);
  font-weight: var(--mbs-fw-sbold);

}



.mbs-post-navigation .mbs-nav-post-nav a span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.mbs-post-navigation .mbs-nav-post-grid a {
  color: var(--mbs-color-common-black);
  font-size: 38px;
}

.mbs-post-navigation .mbs-nav-post-nav a span i {
  color: var(--mbs-color-common-black);
}

.mbs-post-navigation .mbs-nav-post-grid {
  font-size: 30px;
  line-height: 1;
  color: var(--mbs-color-common-black);
}

.mbs-post-navigation .mbs-nav-post-grid a:hover,
.mbs-post-navigation .mbs-nav-post-nav a:hover span i,
.mbs-post-navigation .mbs-nav-post-nav a:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-nd {
  background-color: var(--mbs-color-common-white);
  padding: 70px 60px;
}

.other-blog {
  margin-top: 75px;
}

.other-blog h3.sec-title {
  font-size: 32px !important;
}

@media (max-width: 768px) {
  .mbs-nd {
    padding: 35px 30px;
  }

  .mbs-post-navigation {
    padding: 0px;
  }
}

/* Video Galeri Özel Stilleri */
.mbs-video-gallery .blog-item {
  position: relative;
  overflow: hidden;
}

.mbs-video-gallery .blog-thumb {
  position: relative;
  overflow: hidden;
}

.mbs-video-gallery .blog-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.mbs-video-gallery .blog-item:hover .blog-thumb::before {
  opacity: 1;
}

.mbs-video-gallery .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(214, 31, 60, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
}

.mbs-video-gallery .blog-item:hover .video-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.mbs-video-gallery .video-play-btn:hover {
  background: var(--mbs-color-theme-primary);
  transform: translate(-50%, -50%) scale(1.2);
}

.mbs-video-gallery .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

.mbs-video-gallery .video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.mbs-video-gallery .video-modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 900px;
  height: 90%;
  max-height: 506px;
  top: 50%;
  transform: translateY(-50%);
}

.mbs-video-gallery .video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.mbs-video-gallery .video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.mbs-video-gallery .video-modal-close:hover {
  color: var(--mbs-color-theme-primary);
}

.mbs-video-gallery .video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mbs-video-gallery .blog-item:hover .video-thumbnail {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mbs-video-gallery .video-modal-content {
    width: 95%;
    height: 80%;
    max-height: 300px;
  }

  .mbs-video-gallery .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .mbs-video-gallery .video-modal-close {
    top: -35px;
    font-size: 25px;
  }

  .mbs-video-gallery .video-thumbnail {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .mbs-video-gallery .video-modal-content {
    width: 98%;
    height: 70%;
    max-height: 250px;
  }

  .mbs-video-gallery .video-play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .mbs-video-gallery .video-thumbnail {
    height: 160px;
  }
}

.mbs-brosur-gallery .blog-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}


.mbs-brosur-gallery .blog-thumb {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.mbs-brosur-gallery .blog-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.mbs-brosur-gallery .blog-item:hover .blog-thumb::before {
  opacity: 1;
}


.mbs-brosur-gallery .brosur-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mbs-brosur-gallery .blog-item:hover .brosur-thumbnail {
  transform: scale(1.05);
}

.mbs-brosur-gallery .default-brosur {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #eaebed 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #dee2e6;
  transition: all 0.3s ease;
}

.mbs-brosur-gallery .blog-item:hover .default-brosur {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: var(--mbs-color-theme-primary);
}

.mbs-brosur-gallery .default-brosur .pdf-icon {
  font-size: 72px;
  color: var(--mbs-color-border-1);
}

.mbs-brosur-gallery .default-brosur .pdf-text {
  font-size: 12px;
  color: #6c757d;
  text-align: center;
  font-weight: 500;
}

.mbs-brosur-gallery .brosur-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(214, 31, 60, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.mbs-brosur-gallery .blog-item:hover .brosur-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}


/* Responsive Design */
@media (max-width: 768px) {

  .mbs-brosur-gallery .brosur-thumbnail,
  .mbs-brosur-gallery .default-brosur {
    height: 180px;
  }

  .mbs-brosur-gallery .default-brosur .pdf-icon {
    font-size: 40px;
  }

  .mbs-brosur-gallery .brosur-overlay {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {

  .mbs-brosur-gallery .brosur-thumbnail,
  .mbs-brosur-gallery .default-brosur {
    height: 160px;
  }

  .mbs-brosur-gallery .default-brosur .pdf-icon {
    font-size: 36px;
  }

  .mbs-brosur-gallery .blog-content {
    padding: 15px 0;
  }
}


.mbs-cat .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mbs-cat .modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal Container */
.mbs-cat .modal-container {
  background: #ffffff;
  border-radius: 0;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mbs-cat .modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Modal Header */
.mbs-cat .modal-header {
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.mbs-cat .modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
}

.mbs-cat .modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.mbs-cat .modal-close:hover {
  color: var(--mbs-color-theme-primary);
}

/* Modal Body */
.mbs-cat .modal-body {
  padding: 30px 15px 30px 30px;
}

/* Form Styles */
.mbs-cat .catalog-form .form-group {
  margin-bottom: 20px;
}

.mbs-cat .catalog-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--mbs-color-common-black);
  font-size: 14px;
}

.mbs-cat .catalog-form .form-group input[type="text"],
.mbs-cat .catalog-form .form-group input[type="email"],
.mbs-cat .catalog-form .form-group input[type="tel"],
.mbs-cat .catalog-form .form-group input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e8ed;
  border-radius: 0;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #ffffff;
}

.mbs-cat .catalog-form .form-group input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.mbs-cat .catalog-form .form-group input.error {
  border-color: var(--mbs-color-theme-primary);
}

.mbs-cat .catalog-form .error-message {
  color: var(--mbs-color-theme-primary);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.mbs-cat .catalog-form .error-message.show {
  display: block;
}

/* Captcha Styles */
.mbs-cat .catalog-form .captcha-group .captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mbs-cat .catalog-form .captcha-group .captcha-question {
  background: #f8f9fa;
  border: 1px solid #e1e8ed;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  min-width: 80px;
  text-align: center;
  border-radius: 0;
  padding: 11px 15px;
}

.mbs-cat .catalog-form .captcha-group input[type="number"] {
  max-width: 80px;
  text-align: center;
  font-weight: 600;
}

/* Checkbox Styles */
.mbs-cat .catalog-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.mbs-cat .catalog-form .checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.mbs-cat .catalog-form .checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.mbs-cat .catalog-form .checkbox-group .kvkk-link {
  color: var(--mbs-color-common-black);
  text-decoration: underline;
  cursor: pointer;
}

.mbs-cat .catalog-form .checkbox-group .kvkk-link:hover {
  color: var(--mbs-color-common-black);
}

/* Button Styles */
.mbs-cat .catalog-form .form-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

.mbs-cat .catalog-form .form-buttons.justify-center {
  justify-content: center;
}

.mbs-cat .catalog-form .btn-primary {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.mbs-cat .catalog-form .btn-primary:hover {
  opacity: 0.85;
}

.mbs-cat .catalog-form .btn-primary:disabled {
  background: #bdc3c7;
  border-color: #bdc3c7;
  cursor: not-allowed;
}

.mbs-cat .catalog-form .btn-primary .btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mbs-cat .catalog-form .btn-secondary {
  background: #f0f0f0;
  color: var(--mbs-color-common-black);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  min-height: 44px;
}

.mbs-cat .catalog-form .btn-secondary:hover {
  opacity: 0.65;
}

/* Verification Code Form */
.mbs-cat .verification-form {
  text-align: center;
}

.mbs-cat .verification-form .verification-info {
  background: #e8f4fd;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 4px solid #3498db;
}

.mbs-cat .verification-form .verification-info p {
  margin: 0;
  color: var(--mbs-color-common-black);
  font-size: 14px;
  line-height: 1.5;
}

.mbs-cat .verification-form .verification-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.mbs-cat .verification-form .verification-input input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #e1e8ed;
  border-radius: 0;
  background: #ffffff;
}

.mbs-cat .verification-form .verification-input input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.mbs-cat .verification-form .verification-input input.error {
  border-color: var(--mbs-color-theme-primary);
}

.mbs-cat .verification-form .resend-code {
  color: #3498db;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  background: none;
  border: none;
  margin-top: 15px;
}

.mbs-cat .verification-form .resend-code:hover {
  color: #2980b9;
}

.mbs-cat .verification-form .resend-code:disabled {
  color: #bdc3c7;
  cursor: not-allowed;
}

/* KVKK Modal Styles */
.mbs-cat .kvkk-content {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.mbs-cat .kvkk-content h4 {
  color: var(--mbs-color-common-black);
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 25px;
}

.mbs-cat .kvkk-content h4:first-child {
  margin-top: 0;
}

.mbs-cat .kvkk-content p {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mbs-cat .kvkk-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.mbs-cat .kvkk-content ul li {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Success Message */
.mbs-cat .success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border: 1px solid #c3e6cb;
  border-radius: 0;
  margin-bottom: 20px;
  text-align: center;
}

/* Loading State */
.mbs-cat .loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: mbs-cat-spin 1s linear infinite;
  margin-right: 8px;
}

.cat-text-d {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

@keyframes mbs-cat-spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Responsive Design */
@media (max-width: 768px) {
  .mbs-cat .modal-container {
    width: 95%;
    margin: 20px;
  }

  .mbs-cat .modal-header {
    padding: 20px 20px 15px;
  }

  .mbs-cat .modal-header h3 {
    font-size: 20px;
  }

  .mbs-cat .modal-body {
    padding: 20px;
  }

  .mbs-cat .catalog-form .form-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .mbs-cat .catalog-form .form-buttons.justify-center {
    flex-direction: column;
  }

  .mbs-cat .verification-form .verification-input {
    gap: 5px;
  }

  .mbs-cat .verification-form .verification-input input {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .mbs-cat .catalog-form .captcha-group .captcha-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mbs-cat .catalog-form .captcha-group .captcha-question {
    align-self: flex-start;
  }

  .mbs-cat .catalog-form .captcha-group input[type="number"] {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .mbs-cat .modal-container {
    width: 98%;
    margin: 10px;
  }

  .mbs-cat .modal-header {
    padding: 15px 15px 10px;
  }

  .mbs-cat .modal-body {
    padding: 15px;
  }

  .mbs-cat .verification-form .verification-input input {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .mbs-cat .catalog-form .captcha-group input[type="number"] {
    max-width: 100px;
  }
}

/* Notification System */
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  width: 100%;
}

.mbs-notification {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.mbs-notification.success {
  border-left-color: #27ae60;
}

.mbs-notification.error {
  border-left-color: var(--mbs-color-theme-primary);
}

.mbs-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  gap: 12px;
}

.notification-icon {
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 2px;
}

.notification-icon .ph-check-circle {
  color: #27ae60;
}

.notification-icon .ph-x-circle {
  color: var(--mbs-color-theme-primary);
}

.notification-text {
  flex: 1;
}

.notification-text h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
}

.notification-text p {
  margin: 0;
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #bdc3c7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: #7f8c8d;
}

@media (max-width: 768px) {
  #notification-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification-content {
    padding: 12px;
  }

  .notification-text h4 {
    font-size: 15px;
  }

  .notification-text p {
    font-size: 13px;
  }
}


/* Notification System */
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  width: 100%;
}

.mbs-notification {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.mbs-notification.success {
  border-left-color: #27ae60;
}

.mbs-notification.error {
  border-left-color: var(--mbs-color-theme-primary);
}

.mbs-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  gap: 12px;
}

.notification-icon {
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 2px;
}

.notification-icon .ph-check-circle {
  color: #27ae60;
}

.notification-icon .ph-x-circle {
  color: var(--mbs-color-theme-primary);
}

.notification-text {
  flex: 1;
}

.notification-text h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
}

.notification-text p {
  margin: 0;
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #bdc3c7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: #7f8c8d;
}

@media (max-width: 768px) {
  #notification-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification-content {
    padding: 12px;
  }

  .notification-text h4 {
    font-size: 15px;
  }

  .notification-text p {
    font-size: 13px;
  }
}

.pr-det.page-bg.product-gap .sec-heading {
  margin-bottom: 5px !important;
}

@media only screen and (min-width: 767px) and (max-width: 1199px) {
  .pr-det.page-bg.product-gap .row>.col-12 {
    padding: 0 !important;
  }
}

.filter-toggle-btn {
  margin-bottom: 40px;
}

.filter-toggle-btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
  font-weight: var(--mbs-fw-medium);
  padding: 8px 20px;
  transition: all 0.3s ease;
  border-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-black);
  background-color: transparent;
}

.filter-toggle-btn .btn:hover {
  background-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-common-black);
  box-shadow: none;
}

.filter-toggle-btn .btn:focus {
  border-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-black);
  background-color: transparent;
  box-shadow: none;
}

.filter-toggle-btn .btn.active {
  background-color: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  border-color: var(--mbs-color-common-black);
  box-shadow: none;
}

.filter-toggle-btn .btn .toggle-icon {
  transition: transform 0.3s ease;
}

.filter-toggle-btn .btn.active .toggle-icon {
  transform: rotate(180deg);
}

.filter-content {
  background: var(--mbs-color-common-white);
  padding: 40px 25px 40px 25px;
  animation: slideDown 0.3s ease-out;
  margin-bottom: 30px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-form .row {
  margin: 0;
}

.filter-label {
  display: block;
  font-weight: var(--mbs-fw-medium);
  color: var(--mbs-color-text-body-4);
  margin-bottom: 8px;
  font-size: 14px;
}

.filter-select,
.filter-input {
  border: 1px solid var(--mbs-color-border-1);
  padding: 10px 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: var(--mbs-color-common-white);
  height: 42px;
  line-height: 1.5;
  vertical-align: middle;
  border-radius: 0;
}

.filter-select {
  text-align: left;
  padding-left: 12px;
}

.filter-select option {
  text-align: left;
  padding: 8px 12px;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--mbs-color-theme-primary);
  box-shadow: none;
  outline: none;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-range-inputs .filter-input {
  flex: 1;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background-color: var(--mbs-color-grey-1);
}

.range-separator {
  color: var(--mbs-color-text-body-2);
  font-weight: var(--mbs-fw-medium);
  min-width: 15px;
  text-align: center;
  flex-shrink: 0;
}

.filter-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.filter-apply-btn {
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.filter-apply-btn:hover,
.filter-apply-btn:focus {
  opacity: 0.85;
  background: var(--mbs-color-common-black);
  color: var(--mbs-color-common-white);
  box-shadow: none;
}

.filter-clear-btn {
  background: #f0f0f0;
  color: var(--mbs-color-common-black);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.filter-clear-btn:hover,
.filter-clear-btn:focus {
  background: #f0f0f0;
  color: var(--mbs-color-common-black);
  opacity: 0.65;
  box-shadow: none;
}

/* Product List Styles */
#productList .blog-item {
  transition: all 0.3s ease;
}

#productList .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Filter Active States */
.filter-active {
  background-color: var(--mbs-color-theme-primary) !important;
  color: var(--mbs-color-common-white) !important;
}

/* Loading State */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--mbs-color-border-1);
  border-top: 3px solid var(--mbs-color-theme-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}



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

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

@media (max-width: 1199px) {}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-filter-wrapper {
    margin-bottom: 20px;
  }

  .filter-toggle-btn {
    padding: 15px;
  }

  .filter-content {
    padding: 20px;
  }

  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-apply-btn,
  .filter-clear-btn {
    width: 100%;
    justify-content: center;
  }

  .price-range-inputs {
    flex-direction: column;
    gap: 8px;
  }

  .range-separator {
    display: none;
  }

  .filter-toggle-btn .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .filter-toggle-btn {
    padding: 10px;
  }

  .filter-content {
    padding: 15px;
  }

  .filter-label {
    font-size: 13px;
  }

  .filter-select,
  .filter-input {
    padding: 8px 10px;
    font-size: 13px;
    height: 38px;
  }
}

/* Smooth Transitions */
.filter-content,
.filter-select,
.filter-input,
.filter-apply-btn,
.filter-clear-btn {
  transition: all 0.3s ease;
}

/* Custom Scrollbar for Filter Content */
.filter-content::-webkit-scrollbar {
  width: 6px;
}

.filter-content::-webkit-scrollbar-track {
  background: var(--mbs-color-grey-1);
  border-radius: 3px;
}

.filter-content::-webkit-scrollbar-thumb {
  background: var(--mbs-color-border-1);
  border-radius: 3px;
}

.filter-content::-webkit-scrollbar-thumb:hover {
  background: var(--mbs-color-theme-primary);
}


/* Form Element Consistency */
.filter-select,
.filter-input {
  font-family: var(--mbs-ff-body);
}

/* Better spacing for filter elements */
.filter-form .col-md-4,
.filter-form .col-md-6,
.filter-form .col-12 {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Ensure proper alignment */
.filter-form .row.g-4>* {
  padding-top: calc(var(--bs-gutter-y) * 0.5);
  padding-bottom: calc(var(--bs-gutter-y) * 0.5);
}

/* Fix button focus states */
.btn:focus {
  outline: none;
}

/* Improve visual hierarchy */
.filter-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

/* Better hover states for form elements */
.filter-select:hover,
.filter-input:hover {
  border-color: var(--mbs-color-theme-primary);
}

/* Consistent button heights */
.filter-apply-btn,
.filter-clear-btn {
  height: 42px;
}

/* Fix column alignment issues */
.filter-form .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.filter-form .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.filter-form .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

/* Ensure all form elements have same height */
.filter-select,
.filter-input,
.price-range-inputs {
  height: 42px;
  box-sizing: border-box;
}

/* Fix price range inputs alignment */
.price-range-inputs {
  display: flex;
  align-items: center;
  height: 42px;
}

.price-range-inputs .filter-input {
  height: 42px;
  margin: 0;
}

/* Ensure consistent spacing between elements */
.filter-form .row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Fix vertical alignment of all filter elements */
.filter-form [class*="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.filter-form .filter-label {
  margin-bottom: 8px;
  height: auto;
  line-height: 1.2;
}

.filter-form .filter-select,
.filter-form .filter-input,
.filter-form .price-range-inputs {
  flex: 1;
  min-height: 42px;
}

.filter-form .filter-input {
  outline: none;
  background-color: var(--mbs-color-common-white);
  border: 1px solid var(--mbs-color-border-1);
  width: 100%;
  padding: 12px 15px;
}


.filter-results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--mbs-color-common-black);
}

.filter-results-info span {
  font-weight: 500;
}

.filter-results-count {
  font-weight: 700;
  color: #dc3545;
}

.clear-all-filters {
  background: transparent;
  color: var(--mbs-color-common-black);
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.clear-all-filters:focus,
.clear-all-filters:hover {
  text-decoration: underline;
  color: var(--mbs-color-theme-primary);
  box-shadow: none !important;
}


.no-results {
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
}

.no-results i {
  font-size: 64px;
  color: #adb5bd;
  margin-bottom: 20px;
  display: block;
}

.no-results h3 {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
}

.no-results p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Loading Overlay */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 8px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #dc3545;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Responsive Tasarım */
@media (max-width: 768px) {
  .filter-results-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .clear-all-filters {
    width: 100%;
    padding: 8px 16px;
  }

  .no-results {
    padding: 40px 15px;
  }

  .no-results i {
    font-size: 48px;
  }

  .no-results h3 {
    font-size: 20px;
  }

  .no-results p {
    font-size: 14px;
  }
}

/* Mevcut product.css'e eklenecek ek stiller */

/* Filtre sonuçları için container */
.filter-results-container {
  margin-bottom: 30px;
}

/* Ürün listesi container'ına position relative ekle */
.products-container {
  position: relative;
  min-height: 200px;
}

/* Filtre aktif durumunda stil */
.filter-active .filter-results-info {
  display: flex;
}

.filter-inactive .filter-results-info {
  display: none;
}

/* Animasyonlar */
.filter-results-info {
  animation: slideDown 0.3s ease-out;
}

.no-results {
  animation: fadeIn 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hover efektleri */
.clear-all-filters:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* Ürün Ana Fotoğrafı */
.product-main-image {
  width: 100%;
  height: 650px;
  text-align: center;
  margin-bottom: 20px;
  background: var(--mbs-color-common-white);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
}

.product-main-image:hover img {
  transform: scale(1.02);
}

/* Ürün Detay Wrapper */
.product-details-wrapper {
  padding: 40px;
}

.product-details-wrapper .gallery-item.product-main-image {
  box-shadow: none;
}

.product-details-wrapper .gallery-item.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  filter: grayscale(0%);
}

/* Ürün Başlığı */
.product-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.product-category {
  display: inline-block;
  background: #dc3545;
  color: white;
  padding: 4px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.product-header h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 5px;
  line-height: 1.2;
}

.product-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-code {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.product-status {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
}

/* Ürün Açıklaması */
.product-description {
  margin-bottom: 40px;
}

.product-description h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 20px;
}



.product-description h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin: 25px 0 15px 0;
}

.product-description p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mbs-color-common-black);
  margin-bottom: 16px;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-description ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--mbs-color-common-black);
  line-height: 1.6;
}

.product-description ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #dc3545;
  font-weight: bold;
  font-size: 14px;
}

/* Teknik Özellikler */
.technical-specs {
  margin-bottom: 40px;
}

.product-details-wrapper .video-section h2,
.product-details-wrapper .product-gallery h2,
.technical-specs h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--mbs-color-common-black);
  margin-bottom: 20px;
}


.specs-table-wrapper {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}

.specs-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.specs-table tbody tr:hover {
  background-color: #f8f9fa;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.spec-label {
  padding: 16px 20px;
  font-weight: 600;
  color: #495057;
  background: #f8f9fa;
  width: 40%;
  border-right: 1px solid #e9ecef;
}

.spec-value {
  padding: 16px 20px;
  color: #2c3e50;
  font-weight: 500;
}

/* Uygulama Alanları */
.application-areas {
  margin-bottom: 40px;
}

.application-areas h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-left: 16px;
}

.application-areas h2 i,
.product-details-wrapper .product-gallery h2 i,
.product-details-wrapper .video-section h2 i,
.technical-specs h2 i,
.product-description h2 i {
  font-size: 28px;
  position: relative;
  top: 3px;
  padding-right: 5px;
  color: var(--mbs-color-theme-primary);
}

.product-details-wrapper .product-description,
.product-details-wrapper .technical-specs,
.product-details-wrapper .application-areas {
  margin-bottom: 50px;
}

.product-details-wrapper .product-gallery {
  border-top: none;
  padding-top: 0;
  margin-bottom: 50px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.application-item {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.application-item:hover {
  background: white;
  border-color: #dc3545;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
  transform: translateY(-2px);
}

.application-item i {
  font-size: 36px;
  color: #dc3545;
  margin-bottom: 15px;
  display: block;
}

.application-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.application-item p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Ürün Galerisi */
.product-gallery {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.product-gallery h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-gallery h3 i {
  color: #dc3545;
  font-size: 28px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .product-details-wrapper {
    padding: 25px 20px;
  }

  .product-header h1 {
    font-size: 24px;
  }

  .product-meta {
    flex-direction: column;
    gap: 10px;
  }

  .specs-table {
    font-size: 13px;
  }

  .spec-label,
  .spec-value {
    padding: 12px 15px;
  }

  .spec-label {
    width: 45%;
  }

  .application-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-main-image {
    padding: 15px;
    margin-bottom: 25px;
  }

  .product-main-image {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .product-header h1 {
    font-size: 20px;
  }

  .product-description h2,
  .technical-specs h2,
  .application-areas h2 {
    font-size: 20px;
  }

  .product-description h3 {
    font-size: 18px;
  }

  .specs-table {
    font-size: 12px;
  }

  .spec-label,
  .spec-value {
    padding: 10px 12px;
  }

  .application-item {
    padding: 20px 15px;
  }

  .application-item i {
    font-size: 28px;
  }

  .application-item h4 {
    font-size: 16px;
  }
}

/* Print Styles */
@media print {

  .application-areas {
    page-break-inside: avoid;
  }

  .specs-table {
    page-break-inside: auto;
  }

  .specs-table tbody tr {
    page-break-inside: avoid;
  }
}