/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bni-body-font-family: "Poppins", sans-serif;
  --bni-heading-font-family: "Poppins", sans-serif;
  --bni-icon-font-family: "Font Awesome 5 Free";
  --bni-body-font-size: 16px;
  --bni-body-line-height: 1.75;
  --bni-heading-line-height: 1.2;
  --bni-body-color: #343C4D;
  --bni-heading-color: #931420;
  --bni-theme-primary: #CF2031;
  --bni-theme-secondary: #931420;
  --bni-color-sky-blue: #00B2FF;
  --bni-color-yellow-light: #FFB930;
  --bni-color-yellow-light-2: #F09E24;
  --bni-color-red-light: #DC0000;
  --bni-color-white-default: #ffffff;
  --bni-color-gray-1: #F5F6FC;
  --bni-color-gray-2: #F8F9FD;
  --bni-color-gray-3: #E9EBEE;
  --bni-color-gray-4: #E9EBF8;
  --bni-color-gray-5: #E8E8E8;
  --bni-color-gray-6: #BCBCBC;
  --bni-color-gray-7: #9597C8;
  --bni-color-gray-8: #EFF0F4;
  --bni-color-gray-9: #8C919C;
  --bni-color-gray-10: #EFF1FA;
  --bni-color-gray-11: #667594;
  --bni-color-gray-12: #F0F0F0;
  --bni-color-gray-13: #F8F8F8;
  --bni-color-dark: #121212;
  --bni-color-dark-2: #040426;
  --bni-color-gradient: linear-gradient(90deg, #fb8893 0%, #CF2031 100%);
  --bni-border-1: #555C6A;
  --bni-border-2: #E6E7F3;
  --bni-border-3: #737373;
  --bni-border-4: #B8B9DA;
  --bni-border-5: #DCDCDC;
  --bni-border-6: #CFDDE2;
  --bni-border-7: #D1D4E3;
  --bni-border-8: #EAEAEA;
  --bni-border-9: #DADADA;
  --bni-border-10: #DBDEED;
  --bni-border-11: #D2D7E1;
  --bni-border-12: #EBEBEB;
  --bni-border-13: #D3D5E2;
  --bni-border-14: #E0E1E9;
  --bni-fw-extra-bold: 800;
  --bni-fw-bold: 700;
  --bni-fw-semi-bold: 600;
  --bni-fw-medium: 500;
  --bni-fw-regular: 400;
  --bni-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--bni-body-font-family);
  font-size: var(--bni-body-font-size);
  font-weight: var(--bni-fw-regular);
  color: var(--bni-body-color);
  line-height: var(--bni-body-line-height);
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--bni-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--bni-theme-primary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bni-heading-font-family);
  color: var(--bni-heading-color);
  margin-top: 0px;
  font-weight: var(--bni-fw-bold);
  line-height: var(--bni-heading-line-height);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--bni-common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--bni-heading-color);
  cursor: pointer;
  font-size: var(--bni-body-font-size);
  font-weight: var(--bni-fw-regular);
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .mb-md-30 {
    margin-bottom: 30px;
  }
}

body.theme-gray {
  background-color: var(--bni-color-gray-1);
}

body.theme-gray-two {
  background-color: var(--bni-color-gray-2);
}

*::-moz-selection {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  text-shadow: none;
}

::-moz-selection {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  text-shadow: none;
}

::selection {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--bni-body-color);
}

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

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

textarea,
input {
  width: 100%;
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-7);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--bni-heading-color);
  padding: 11px 18px;
  height: 50px;
  display: block;
}
textarea::placeholder,
input::placeholder {
  font-size: 15px;
  color: var(--bni-body-color);
}

textarea {
  min-height: 98px;
  max-height: 98px;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  --bs-gutter-x: 24px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-24 {
  --bs-gutter-y: 24px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

.gutter-20 {
  --bs-gutter-x: 20px;
}

.gutter-24 {
  --bs-gutter-x: 24px;
}

.p-relative {
  position: relative;
}

.container {
  max-width: 1250px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

.custom-container {
  max-width: 1754px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

.custom-container-two {
  max-width: 1664px;
}
@media (max-width: 1800px) {
  .custom-container-two {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-two {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-two {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-two {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-two {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-two {
    max-width: 540px;
  }
}

.custom-container-three {
  max-width: 1640px;
}
@media (max-width: 1800px) {
  .custom-container-three {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-three {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-three {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-three {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-three {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-three {
    max-width: 540px;
  }
}

.custom-container-four {
  max-width: 1876px;
}
@media (max-width: 1800px) {
  .custom-container-four {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-four {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-four {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-four {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-four {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-four {
    max-width: 540px;
  }
}

.custom-container-five {
  max-width: 1548px;
}
@media (max-width: 1800px) {
  .custom-container-five {
    max-width: 1548px;
  }
}
@media (max-width: 1500px) {
  .custom-container-five {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-five {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-five {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-five {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-five {
    max-width: 540px;
  }
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*=============================
	 Button style
===============================*/
.bni-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.bni-btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--bni-theme-primary) none repeat scroll 0 0;
  color: var(--bni-color-white-default);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: var(--bni-fw-semi-bold);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 25px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 100px;
  --arrow-hover-move-x: -110%;
  gap: 10px;
  z-index: 1;
  position: relative;
  border: none;
}
.bni-btn svg {
  transition: all 0.3s ease-out 0s;
}
.bni-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}
.bni-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.bni-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}
.bni-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--bni-theme-secondary);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.bni-btn:hover, .bni-btn:focus-visible {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.bni-btn:hover svg path:nth-of-type(1), .bni-btn:focus-visible svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.bni-btn:hover svg path:nth-of-type(2), .bni-btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.bni-btn:hover::before, .bni-btn:focus-visible::before {
  top: -40%;
}
.bni-btn.white-btn {
  background: var(--bni-color-white-default);
  color: var(--bni-theme-secondary);
}
.bni-btn.white-btn svg path {
  stroke: var(--bni-theme-secondary);
}

.white-btn-two {
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
}
.white-btn-two::before {
  background: var(--bni-theme-primary);
}
.white-btn-two:hover {
  color: var(--bni-color-white-default);
  background: var(--bni-color-white-default);
}

.bni-hover-btn::before {
  background: var(--bni-color-sky-blue);
}

.bni-btn-two {
  background: var(--bni-color-gray-1);
  color: var(--bni-body-color);
}
.bni-btn-two svg {
  color: var(--bni-theme-primary);
}
.bni-btn-two::before {
  background: var(--bni-theme-primary);
}
.bni-btn-two:hover {
  color: var(--bni-color-white-default);
  background: var(--bni-color-gray-1);
}
.bni-btn-two:hover svg {
  color: var(--bni-color-white-default);
}

.bni-btn-three {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.bni-btn-four {
  background: transparent;
  border-radius: 8px;
  border: 1px solid var(--bni-color-white-default);
  padding: 17px 25px;
  --arrow-hover-move-x: 110%;
  --arrow-hover-move-y: 100%;
}
.bni-btn-four svg path:nth-of-type(1) {
  transform: translateX(0) translateY(0);
}
.bni-btn-four svg path:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y));
}
.bni-btn-four:hover, .bni-btn-four:focus-visible {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.bni-btn-four:hover svg path:nth-of-type(1), .bni-btn-four:focus-visible svg path:nth-of-type(1) {
  transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)));
}
.bni-btn-four:hover svg path:nth-of-type(2), .bni-btn-four:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
}
.bni-btn-four::before {
  display: none;
}

.bni-btn-five {
  border-color: var(--bni-theme-primary);
  color: var(--bni-theme-primary);
}

.bni-btn-six {
  background: var(--bni-theme-primary);
  border: none;
  gap: 40px;
  padding: 18px 24px;
}
.bni-btn-six::after {
  content: "";
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--bni-color-white-default);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bni-btn-six::before {
  display: block;
}

.bni-btn-seven {
  -webkit-border-radius: 4px 12px;
  -moz-border-radius: 4px 12px;
  -o-border-radius: 4px 12px;
  -ms-border-radius: 4px 12px;
  border-radius: 4px 12px;
}

.bni-btn-eight {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 18px 24px;
}

.bni-border-btn {
  border: 1px solid var(--bni-color-white-default);
  background: transparent;
  color: var(--bni-color-white-default);
  padding: 17px 25px;
}
.bni-border-btn:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-secondary);
}
.bni-border-btn::before {
  display: none;
}
.bni-border-btn-two {
  background: transparent;
  border: 1px solid var(--bni-theme-primary);
  color: var(--bni-theme-primary);
}
.bni-border-btn-two::after {
  background: var(--bni-theme-primary);
}
.bni-border-btn-two::before {
  display: none;
}
.bni-border-btn-two:hover::after {
  background: var(--bni-color-white-default);
}

.bni-btn-lavender {
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
}
.bni-btn-lavender::after {
  background: var(--bni-theme-primary);
}
.bni-btn-lavender::before {
  background: var(--bni-theme-secondary);
}
.bni-btn-lavender:hover {
  background: var(--bni-color-gray-1);
  color: var(--bni-color-white-default);
}
.bni-btn-lavender:hover::after {
  background: var(--bni-color-white-default);
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bni-body-color);
}

/*=============================
    00. Preloader
===============================*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--bni-color-white-default);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: block;
  width: 45px;
  height: 45px;
}

.preloader-inner span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  margin: 4px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: preloader 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--bni-theme-primary) transparent transparent transparent;
}

.preloader-inner span:nth-child(1) {
  animation-delay: -0.1s;
}

.preloader-inner span:nth-child(2) {
  animation-delay: -0.2s;
}

.preloader-inner span:nth-child(3) {
  animation-delay: -0.3s;
}

@-webkit-keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--bni-color-gray-4);
}

.grey-bg-two {
  background: var(--bni-color-gray-2);
}

.grey-bg-three {
  background: var(--bni-border-5);
}

.white-bg {
  background: var(--bni-color-white-default);
}

.black-bg {
  background: var(--bni-common-color-black);
}

/*=============================
	  OffCanvas
===============================*/
.offCanvas-menu {
  position: relative;
  width: 30px;
  height: 21px;
}
.offCanvas-menu .menu-tigger {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offCanvas-menu .menu-tigger span {
  width: 30px;
  height: 3px;
  background: var(--bni-border-1);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas-menu .menu-tigger span:nth-child(2) {
  width: 18px;
}
.offCanvas-menu .menu-tigger:hover span {
  background: var(--bni-theme-primary);
}
.offCanvas-menu .menu-tigger:hover span:nth-child(2) {
  width: 30px;
}
.offCanvas-menu-two {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
}
.offCanvas-menu-two::before {
  right: auto;
  left: 0;
  height: 104px;
}
.offCanvas-menu-three {
  width: 95px;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #DEE0EB;
}
@media (max-width: 1199.98px) {
  .offCanvas-menu-three {
    display: none;
  }
}

.offCanvas-info {
  background: var(--bni-color-white-default) none repeat scroll 0 0;
  height: 100%;
  padding: 55px 50px;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 400px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.offCanvas-info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas-info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas-close-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.offCanvas-close-icon button {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  border: 0 none;
  color: var(--bni-color-white-default);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}
.offCanvas-close-icon button:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}
.offCanvas-logo {
  text-align: center;
  margin-bottom: 40px;
}
.offCanvas-logo img {
  max-height: 34px;
}
.offCanvas-content {
  margin-bottom: 35px;
}
.offCanvas-content p {
  margin-bottom: 0;
  text-align: center;
}
.offCanvas-img {
  margin-bottom: 40px;
}
.offCanvas-img .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.offCanvas-side-info .contact-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.offCanvas-side-info .contact-list:last-child {
  margin-bottom: 0;
}
.offCanvas-side-info .contact-list i {
  font-size: 24px;
  color: var(--bni-theme-primary);
  transform: translateY(1px);
}
.offCanvas-side-info .contact-list a, .offCanvas-side-info .contact-list p {
  color: var(--bni-body-color);
  margin: 0;
  line-height: 24px;
  font-size: 17px;
}
.offCanvas-side-info .contact-list a {
  font-weight: 500;
}
.offCanvas-side-info .contact-list a:hover {
  color: var(--bni-theme-primary);
}
.offCanvas-social {
  text-align: center;
  padding-top: 45px;
  margin-top: 45px;
  border-top: 1px solid #D9D9D9;
}
.offCanvas-social .title {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: var(--bni-border-1);
}
.offCanvas-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.offCanvas-social .list-wrap li {
  line-height: 1;
}
.offCanvas-social .list-wrap li a {
  color: var(--bni-border-1);
  display: block;
}
.offCanvas-social .list-wrap li a svg {
  width: 20px;
  height: 20px;
}
.offCanvas-social .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.offCanvas-overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas-overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=========================
      Breadcrumb
===========================*/
.breadcrumb-area {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}
@media (max-width: 991.98px) {
  .breadcrumb-area {
    padding: 90px 0;
  }
}
.breadcrumb-area-two {
  padding: 80px 0 60px;
}
@media (max-width: 991.98px) {
  .breadcrumb-area-two {
    padding: 60px 0 60px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-area-two {
    padding: 50px 0 60px;
  }
}
.breadcrumb-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-blend-mode: luminosity;
  background-color: var(--bni-color-white-default);
}
.breadcrumb-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #01022E 0%, rgba(1, 2, 46, 0.5) 102.5%);
  z-index: -1;
}
.breadcrumb-content .title {
  margin-bottom: 12px;
  font-size: 40px;
  text-transform: capitalize;
  line-height: 1;
  color: var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .breadcrumb-content .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-content .title {
    font-size: 34px;
  }
}
.breadcrumb-content .breadcrumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 6px;
}
.breadcrumb-content .breadcrumb > * {
  font-size: 15px;
  color: var(--bni-theme-primary);
  font-weight: 500;
  text-transform: capitalize;
}
.breadcrumb-content .breadcrumb > * a {
  color: #939AC6;
}
.breadcrumb-content .breadcrumb > * a:hover {
  color: var(--bni-theme-primary);
}
.breadcrumb-content .breadcrumb .breadcrumb-separator {
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  color: #939AC6;
}
.breadcrumb-content-two {
  text-align: center;
}
.breadcrumb-content-two .title {
  color: var(--bni-heading-color);
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 1199.98px) {
  .breadcrumb-content-two .title {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-content-two .title {
    font-size: 36px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-content-two .title br {
    display: none;
  }
}
.breadcrumb-content-two .breadcrumb {
  justify-content: center;
}

/*=============================
    00. Scroll Top
===============================*/
.scroll-top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: var(--bni-color-white-default);
  text-align: center;
  cursor: pointer;
  background: var(--bni-theme-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 1199.98px) {
  .scroll-top {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll-top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll-top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll-top.open {
  bottom: 30px;
}
@media (max-width: 767.98px) {
  .scroll-top.open {
    bottom: 15px;
  }
}
.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top:hover {
  background: var(--bni-theme-secondary);
  border-color: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}

/*=============================
	00. Section Title
===============================*/
.section-title {
  position: relative;
}
.section-title .sub-title {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bni-theme-primary);
  margin-bottom: 12px;
}
.section-title .title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0;
  text-transform: capitalize;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
}
.section-title .title span {
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .section-title .title br {
    display: none;
  }
}
.section-title .title svg {
  color: var(--bni-theme-primary);
}
.section-title p {
  margin-bottom: 0;
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  .section-title p br {
    display: none;
  }
}
.section-title.white-title .sub-title {
  color: var(--bni-color-white-default);
}
.section-title.white-title .title {
  color: var(--bni-color-white-default);
}
.section-title.white-title p {
  color: #ACAACC;
}
.section-title.white-title-two p {
  color: var(--bni-color-gray-4);
}
.section-title-semiBold .title {
  font-weight: 600;
}
.section-title-two .title {
  font-size: 40px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section-title-two .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-two .title {
    font-size: 34px;
  }
}

.section-content {
  margin-left: 115px;
}
@media (max-width: 1199.98px) {
  .section-content {
    margin-left: 60px;
  }
}
@media (max-width: 991.98px) {
  .section-content {
    margin-left: 0;
  }
}
.section-content p {
  margin-bottom: 0;
}
.section-content.white-content p {
  color: var(--bni-color-white-default);
}

@media (max-width: 991.98px) {
  .section-title.mb-70,
  .section-title.mb-60 {
    margin-bottom: 40px;
  }
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  display: block;
}

/*=============================
	    Mobile Menu
===============================*/
.bni-mobile-search {
  padding: 0 20px 25px 25px;
}
.bni-mobile-search form {
  position: relative;
}
.bni-mobile-search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 15px;
  height: 45px;
  background: var(--bni-color-gray-2);
  color: var(--bni-heading-color);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.bni-mobile-search input::placeholder {
  font-size: 15px;
  color: var(--bni-body-color);
}
.bni-mobile-search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--bni-heading-color);
}
.bni-mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
.bni-mobile-menu .navbar-collapse {
  display: block !important;
}
.bni-mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.bni-mobile-menu .nav-logo img {
  max-width: 150px;
}
.bni-mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.bni-mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.bni-mobile-menu .navigation li.active > a {
  color: var(--bni-theme-primary);
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bni-heading-color);
  background: var(--bni-color-gray-1);
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -6px;
  width: 300px;
  height: 46px;
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--bni-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--bni-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--bni-theme-primary);
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--bni-color-white-default);
}
.bni-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.bni-mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 55px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bni-heading-color);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}
.bni-mobile-menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--bni-theme-primary);
  pointer-events: none;
}
.bni-mobile-menu .navigation li ul li > a {
  margin-left: 20px;
  text-transform: capitalize;
}
.bni-mobile-menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.bni-mobile-menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.bni-mobile-menu .navigation li > ul {
  display: none;
}
.bni-mobile-menu .navigation li > ul > li > ul {
  display: none;
}
.bni-mobile-menu .navigation ul {
  padding: 0;
  margin: 0;
}
.bni-mobile-menu .navigation ul li a {
  display: block;
}
.bni-mobile-menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.bni-mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bni-mobile-menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .bni-mobile-menu .navigation > li > ul > li:first-child {
    border: none;
  }
}
.bni-mobile-menu .navigation > li.active > a::before {
  height: 100%;
}
.bni-mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--bni-theme-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.bni-mobile-menu .close-btn i[class^=flaticon-]:before {
  font-weight: var(--bni-fw-bold) !important;
}
.bni-mobile-menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.bni-mobile-menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bni-mobile-menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}
.bni-mobile-menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--bni-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 5px;
}
.bni-mobile-menu .social-links ul li a:hover {
  border-color: var(--bni-theme-primary);
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.bni-mobile-menu .bni-menu-action {
  padding: 0 0;
  margin: 0 0;
}
.bni-mobile-menu .bni-menu-action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.bni-mobile-menu .bni-menu-action > ul li {
  margin: 0 0;
}
.bni-mobile-menu .bni-menu-action > ul .header-btn {
  display: block;
}
.bni-mobile-menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bni-color-white-default);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.bni-mobile-menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--bni-color-white-default);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .bni-mobile-menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .bni-mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .bni-mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.bni-menu-navbar-wrap ul li .bni-mega-menu-wrap-two {
  width: 560px !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 40px 0 !important;
}
.bni-menu-navbar-wrap ul li .bni-mega-menu-wrap-two > li {
  border-right: 1px solid #e5e5e5;
}
.bni-menu-navbar-wrap ul li .bni-mega-menu-wrap-two > li:last-child {
  border: none;
}

.mega-sub-menu {
  display: flex !important;
  flex-direction: column !important;
  min-width: 260px !important;
  margin-left: 10px !important;
}
@media (max-width: 991.98px) {
  .mega-sub-menu {
    margin-left: 0 !important;
  }
}
.mega-sub-menu > li > a {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.mega-sub-menu > li > a .badge {
  display: block;
  padding: 0.5em 0.5em 0.5em 0.5em;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bni-color-white-default);
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25rem;
  background: var(--bni-theme-primary);
  margin-left: 2px;
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.alltuchtopdown {
  -webkit-animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
.rightToLeft {
  -webkit-animation: rightToLeft 3s ease-in-out 0s infinite alternate;
  animation: rightToLeft 3s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes rightToLeft {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeRight2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeRight2 {
  -webkit-animation-name: fadeRight2;
  animation-name: fadeRight2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeDown2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeDown2 {
  -webkit-animation-name: fadeDown2;
  animation-name: fadeDown2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
  animation-name: fadeInLeft2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*=============================
	00. Search
===============================*/
.search-popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bni-color-white-default);
  backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-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;
  transition-delay: 0.5s;
}
.search-popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 99999999;
}
.search-popup.search-opened .search-input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search-popup.search-opened .search-input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search-input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}
.search-input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--bni-theme-primary);
  transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.search-input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--bni-heading-color);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search-input input::placeholder {
  font-size: 24px;
}
.search-input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--bni-theme-primary);
  border: none;
  padding: 0 0;
  background: transparent;
}
.search-close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}
.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--bni-theme-primary);
  cursor: pointer;
  background: transparent;
}
.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}
.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--bni-theme-primary);
  transition: all 0.5s;
}
.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=============================
    	02. Header
===============================*/
.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}
@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}

.bni-header-top {
  background-color: var(--bni-theme-secondary);
  padding: 9px 0;
}
@media (max-width: 991.98px) {
  .bni-header-top {
    display: none;
  }
}
.bni-header-top-info .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}
.bni-header-top-info .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--bni-color-gray-1);
}
.bni-header-top-info .list-wrap li::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: var(--bni-color-gray-1);
}
.bni-header-top-info .list-wrap li:last-child::before {
  display: none;
}
.bni-header-top-info .list-wrap li a {
  color: var(--bni-color-gray-1);
}
.bni-header-top-info .list-wrap li a:hover {
  opacity: 0.8;
}
.bni-header-top-info .list-wrap li i {
  font-size: 18px;
}
.bni-header-top-right > .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
}
.bni-header-top-right > .list-wrap > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--bni-color-gray-1);
  position: relative;
}
.bni-header-top-right > .list-wrap > li::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: var(--bni-color-gray-1);
}
.bni-header-top-right > .list-wrap > li:last-child::before {
  display: none;
}
.bni-header-top-right > .list-wrap > li a {
  color: var(--bni-color-gray-1);
}
.bni-header-top-right > .list-wrap > li a:hover {
  opacity: 0.8;
}
.bni-header-top-right > .list-wrap > li i {
  font-size: 18px;
}
.bni-header-top-right > .list-wrap > li.log-in a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bni-color-gray-4);
  font-weight: 600;
}
.bni-header-top-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bni-header-top-social .list-wrap li a {
  font-size: 16px;
  color: var(--bni-color-gray-1);
  display: block;
}
.bni-header-top-social .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 991.98px) {
  .bni-header-top-menu {
    display: none;
  }
}
.bni-header-top-menu .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.bni-header-top-menu .list-wrap li a {
  color: var(--bni-color-white-default);
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  font-weight: 600;
}
.bni-header-top-menu .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--bni-color-white-default);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.bni-header-top-menu .list-wrap li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.bni-header-area {
  position: relative;
}
@media (max-width: 991.98px) {
  .bni-header-area {
    padding: 18px 0;
  }
}
@media (max-width: 767.98px) {
  .bni-header-area {
    padding: 20px 0;
  }
}
.bni-header-area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--bni-theme-primary);
  display: none;
}
@media (max-width: 991.98px) {
  .bni-header-area .mobile-nav-toggler {
    display: block;
    margin-left: 25px;
  }
}
.bni-header-area.sticky-menu {
  padding: 0 0;
}
@media (max-width: 991.98px) {
  .bni-header-area.sticky-menu {
    padding: 18px 0;
  }
}
@media (max-width: 767.98px) {
  .bni-header-area.sticky-menu {
    padding: 20px 0;
  }
}
.bni-header-area-two .bni-menu-navbar-wrap ul {
  margin: 0 0 0 auto;
}
@media (max-width: 991.98px) {
  .bni-header-area-three {
    background: var(--bni-color-white-default);
  }
}
.bni-header-area-three .bni-menu-wrap {
  background: var(--bni-color-white-default);
  padding: 0 22px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  margin-top: 50px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1500px) {
  .bni-header-area-three .bni-menu-wrap {
    margin-top: 35px;
  }
}
@media (max-width: 1199.98px) {
  .bni-header-area-three .bni-menu-wrap {
    margin-top: 25px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-three .bni-menu-wrap {
    margin-top: 0;
    padding: 0;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
.bni-header-area-three .bni-menu-navbar-wrap ul {
  margin: 0 auto;
}
.bni-header-area-three .bni-menu-navbar-wrap ul li a {
  padding: 33px 16px;
}
.bni-header-area-three.sticky-menu .bni-menu-wrap {
  margin-top: 0;
  padding: 0 0;
  box-shadow: none;
}
@media (max-width: 1199.98px) {
  .bni-header-area-three .header-contact {
    display: none;
  }
}
.bni-header-area-four {
  border-bottom: 1px solid #4275FF;
}
@media (max-width: 991.98px) {
  .bni-header-area-four {
    padding: 0 0;
  }
}
.bni-header-area-four .bni-menu-nav {
  align-items: normal;
}
.bni-header-area-four .logo a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 1px solid #3269FF;
  padding: 20px 50px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-four .logo a {
    padding: 20px 20px;
  }
}
.bni-header-area-four .bni-menu-navbar-wrap > ul {
  margin: 0 auto;
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li > a {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li > a::after {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li > a:hover {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li > a:hover::after {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li.active > a {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li.active > a::after {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li.active > a:hover {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li.active > a:hover::after {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li:hover > a {
  color: var(--bni-color-white-default);
}
.bni-header-area-four .bni-menu-navbar-wrap > ul > li:hover > a::after {
  color: var(--bni-color-white-default);
}
@media (max-width: 991.98px) {
  .bni-header-area-four.sticky-menu {
    padding: 0 0;
  }
}
.bni-header-area-four.sticky-menu .logo {
  display: none;
}
.bni-header-area-four.sticky-menu .logo.d-none {
  display: block !important;
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li > a {
  color: var(--bni-heading-color);
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li > a::after {
  color: var(--bni-heading-color);
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li > a:hover {
  color: var(--bni-theme-primary);
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li > a:hover::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li.active > a {
  color: var(--bni-theme-primary);
}
.bni-header-area-four.sticky-menu .bni-menu-navbar-wrap ul > li.active > a::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-four.sticky-menu .bni-menu-action-four > ul li .header-contact-info {
  color: var(--bni-heading-color);
}
.bni-header-area-four.sticky-menu .bni-menu-action-four > ul li .header-contact-info:hover {
  color: var(--bni-theme-primary);
}
.bni-header-area-four.sticky-menu .bni-menu-action-four > ul li.header-btn-three .bni-btn {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.bni-header-area-four.sticky-menu .mobile-nav-toggler {
  color: var(--bni-theme-primary);
}
@media (max-width: 991.98px) {
  .bni-header-area-four .mobile-nav-toggler {
    color: var(--bni-color-white-default);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-left: 0;
    border-left: 1px solid #3269FF;
  }
}
.bni-header-area-five {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.bni-header-area-five .bni-menu-navbar-wrap > ul {
  margin: 0 auto;
}
.bni-header-area-five .bni-menu-navbar-wrap > ul > li a {
  color: var(--bni-color-white-default);
}
.bni-header-area-five .bni-menu-navbar-wrap > ul > li a::after {
  color: var(--bni-color-white-default);
}
.bni-header-area-five .bni-menu-navbar-wrap > ul > li a:hover::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-five .bni-menu-navbar-wrap > ul > li.active > a, .bni-header-area-five .bni-menu-navbar-wrap > ul > li:hover > a {
  color: var(--bni-theme-primary);
}
.bni-header-area-five .bni-menu-navbar-wrap > ul > li.active > a::after, .bni-header-area-five .bni-menu-navbar-wrap > ul > li:hover > a::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-five.sticky-menu .logo {
  display: none;
}
.bni-header-area-five.sticky-menu .logo.d-none {
  display: block !important;
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li a {
  color: var(--bni-heading-color);
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li a::after {
  color: var(--bni-heading-color);
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li a:hover {
  color: var(--bni-theme-primary);
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li a:hover::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li.active > a, .bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li:hover > a {
  color: var(--bni-theme-primary);
}
.bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li.active > a::after, .bni-header-area-five.sticky-menu .bni-menu-navbar-wrap > ul > li:hover > a::after {
  color: var(--bni-theme-primary);
}
.bni-header-area-five.sticky-menu .bni-menu-action-five ul li.header-contact .header-contact-info {
  color: var(--bni-heading-color);
}
.bni-header-area-five.sticky-menu .bni-menu-action-five ul li.offCanvas-menu .menu-tigger span {
  background: var(--bni-theme-primary);
}
.bni-header-area-seven .bni-menu-navbar-wrap ul {
  margin: 0 0 0 170px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-seven .bni-menu-navbar-wrap ul {
    margin: 0 0 0 30px;
  }
}
.bni-header-area-eight {
  padding: 5px 0;
}
@media (max-width: 991.98px) {
  .bni-header-area-eight {
    padding: 20px 0;
  }
}
.bni-header-area-eight .bni-menu-navbar-wrap > ul {
  margin: 0 65px 0 auto;
}
.bni-header-area-nine .bni-menu-navbar-wrap ul {
  margin: 0 0 0 65px;
}
@media (max-width: 991.98px) {
  .bni-header-area-ten {
    padding: 20px 0;
    background: var(--bni-color-white-default);
  }
}
.bni-header-area-ten .bni-menu-navbar-wrap ul {
  margin: 0 0 0 0;
}
.bni-header-area-ten .bni-menu-navbar-wrap ul li a {
  padding: 30px 16px;
}
.bni-header-area-ten .bni-menu-wrap {
  border: 1px solid var(--bni-color-gray-4);
  border-top: none;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 0px 0px 15px 15px;
  -moz-border-radius: 0px 0px 15px 15px;
  -o-border-radius: 0px 0px 15px 15px;
  -ms-border-radius: 0px 0px 15px 15px;
  border-radius: 0px 0px 15px 15px;
  padding-left: 15px;
}
@media (max-width: 991.98px) {
  .bni-header-area-ten .bni-menu-wrap {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    padding: 0;
    border: none;
  }
}
.bni-header-area-ten .bni-menu-nav {
  align-items: normal;
}
@media (max-width: 991.98px) {
  .bni-header-area-ten .logo.d-none {
    display: block !important;
  }
}
.bni-header-area-ten.sticky-menu .bni-menu-wrap {
  border: none;
}
.bni-header-area-eleven {
  border-bottom: 1px solid #DEE0EB;
  background: var(--bni-color-gray-13);
}
@media (max-width: 991.98px) {
  .bni-header-area-eleven {
    padding: 18px 20px;
  }
}
@media (max-width: 767.98px) {
  .bni-header-area-eleven {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bni-header-area-eleven {
    padding: 20px 20px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-eleven.sticky-menu {
    padding: 18px 20px;
  }
}
@media (max-width: 767.98px) {
  .bni-header-area-eleven.sticky-menu {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bni-header-area-eleven.sticky-menu {
    padding: 20px 20px;
  }
}
.bni-header-area-eleven .bni-menu-nav {
  align-items: normal;
}
@media (max-width: 991.98px) {
  .bni-header-area-eleven .bni-menu-nav {
    align-items: center;
  }
}
.bni-header-area-eleven .logo {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-eleven .logo {
    margin-left: 25px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-eleven .logo {
    margin-left: 0;
  }
}
.bni-header-area-eleven .logo a {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.bni-header-area-eleven .bni-menu-navbar-wrap ul {
  margin: 0 0 0 75px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-eleven .bni-menu-navbar-wrap ul {
    margin: 0 0 0 30px;
  }
}
.bni-header-area-twelve {
  margin-top: 38px;
}
@media (max-width: 1500px) {
  .bni-header-area-twelve {
    margin-top: 25px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-twelve {
    background: var(--bni-color-white-default);
    margin-top: 0;
  }
}
.bni-header-area-twelve .bni-menu-wrap {
  background: var(--bni-color-white-default);
  padding: 10px 40px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-twelve .bni-menu-wrap {
    padding: 0px 20px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-twelve .bni-menu-wrap {
    padding: 0px;
  }
}
.bni-header-area-twelve .bni-menu-navbar-wrap ul {
  margin: 0 0 0 50px;
}
.bni-header-area-twelve .bni-menu-action-ten {
  margin-right: 0;
}
.bni-header-area-twelve.sticky-menu .bni-menu-wrap {
  padding: 0 40px;
}
@media (max-width: 1199.98px) {
  .bni-header-area-twelve.sticky-menu .bni-menu-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 991.98px) {
  .bni-header-area-twelve.sticky-menu .bni-menu-wrap {
    padding: 0px;
  }
}
@media (max-width: 1199.98px) {
  .bni-header-area-twelve .header-search {
    display: none;
  }
}
.bni-header-logo-area {
  background: var(--bni-theme-primary);
}
@media (max-width: 991.98px) {
  .bni-header-logo-area {
    display: none;
  }
}
.bni-header-logo-area-inner {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-color-gray-4);
  border-top: none;
}
.bni-header-logo-area-inner .logo a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 10px 27px;
  border-right: 1px solid var(--bni-color-gray-4);
}
@media (max-width: 1199.98px) {
  .bni-header-logo-area-inner .logo a {
    padding: 10px 20px;
    border-right: 1px solid var(--bni-color-gray-4);
  }
}
.bni-header-logo-area-inner .header-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 15px 30px;
}
@media (max-width: 1199.98px) {
  .bni-header-logo-area-inner .header-btn {
    padding: 15px 20px;
    border-left: 1px solid var(--bni-color-gray-4);
    margin-left: auto;
  }
}
.bni-header-info-wrap {
  flex-grow: 1;
}
@media (max-width: 1199.98px) {
  .bni-header-info-wrap {
    display: none !important;
  }
}
.bni-header-info-item {
  width: 33.33%;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 23px;
  border-right: 1px solid var(--bni-color-gray-4);
}
.bni-header-info-item .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-gray-4);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  justify-content: center;
  color: var(--bni-theme-primary);
  font-size: 22px;
}
.bni-header-info-item .content span {
  display: block;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--bni-border-1);
  margin-bottom: 6px;
}
.bni-header-info-item .content a {
  display: block;
  font-size: 15px;
  color: var(--bni-theme-secondary);
  font-weight: 500;
  line-height: 1;
}
.bni-header-info-item .content a:hover {
  color: var(--bni-theme-primary);
}
.bni-header-info-item .content p {
  font-size: 15px;
  color: var(--bni-theme-secondary);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}

.bni-menu-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .bni-menu-nav {
    justify-content: space-between;
  }
}
.bni-menu-nav .logo img {
  max-height: 45px;
}
.bni-menu-nav-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 35px;
}
.bni-menu-nav-left-contact {
  position: relative;
}
@media (max-width: 1199.98px) {
  .bni-menu-nav-left-contact {
    display: none;
  }
}
.bni-menu-nav-left-contact::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #CACACA;
  height: 30px;
  width: 1px;
}
.bni-menu-nav-left-contact span {
  display: block;
  line-height: 1;
  font-size: 13px;
  color: var(--bni-border-1);
  margin-bottom: 7px;
}
.bni-menu-nav-left-contact a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--bni-body-color);
  display: block;
}
.bni-menu-nav-left-contact a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bni-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bni-menu-nav-left-contact a:hover {
  color: var(--bni-theme-primary);
}
.bni-menu-nav-left-contact a:hover::before {
  width: 100%;
}
.bni-menu-navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.bni-menu-navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 0 115px;
}
@media (max-width: 1199.98px) {
  .bni-menu-navbar-wrap ul {
    margin: 0 0 0 50px;
  }
}
.bni-menu-navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.bni-menu-navbar-wrap ul li a {
  font-size: 15px;
  font-weight: var(--bni-fw-medium);
  text-transform: uppercase;
  color: var(--bni-heading-color);
  padding: 35px 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.bni-menu-navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--bni-color-white-default);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  border-radius: 0 0 10px 10px;
}
.bni-menu-navbar-wrap ul li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.bni-menu-navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.bni-menu-navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.bni-menu-navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  display: flex;
  color: var(--bni-heading-color);
  font-size: 15px;
  text-transform: capitalize;
  align-items: center;
  justify-content: space-between;
}
.bni-menu-navbar-wrap ul li .sub-menu li:hover > a, .bni-menu-navbar-wrap ul li .sub-menu li.active > a {
  color: var(--bni-theme-primary);
}
.bni-menu-navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.bni-menu-navbar-wrap > ul > li.active a, .bni-menu-navbar-wrap > ul > li:hover a {
  color: var(--bni-theme-primary);
}
.bni-menu-main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.bni-menu-main-menu li.menu-item-has-children > a::after {
  content: "\f078";
  display: block;
  font-family: var(--bni-icon-font-family);
  font-size: 12px;
  font-weight: var(--bni-fw-bold);
  margin-left: 6px;
  color: var(--bni-border-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bni-menu-main-menu li.menu-item-has-children > a:hover::after {
  color: var(--bni-theme-primary);
}
.bni-menu-main-menu li.menu-item-has-children:hover > a::after, .bni-menu-main-menu li.menu-item-has-children.active > a::after {
  color: var(--bni-theme-primary);
}
@media (max-width: 991.98px) {
  .bni-menu-action {
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .bni-menu-action {
    display: none;
  }
}
.bni-menu-action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.bni-menu-action > ul li {
  position: relative;
  margin-left: 25px;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .bni-menu-action > ul li {
    margin-left: 20px;
  }
}
.bni-menu-action > ul li:first-child {
  margin-left: 0;
}
.bni-menu-action > ul li.header-search a {
  font-size: 24px;
  color: var(--bni-border-1);
  line-height: 0;
}
.bni-menu-action > ul li.header-search a:hover {
  color: var(--bni-theme-primary);
}
.bni-menu-action > ul li.header-btn .bni-btn {
  padding: 13px 15px;
}
.bni-menu-action > ul li.header-btn .bni-btn svg path {
  opacity: 1 !important;
  transform: translateX(0);
}
.bni-menu-action > ul li.header-btn-three {
  border-left: 1px solid #3269FF;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 1500px) {
  .bni-menu-action > ul li.header-btn-three {
    padding: 0 25px;
  }
}
@media (max-width: 1199.98px) {
  .bni-menu-action > ul li.header-btn-three {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .bni-menu-action > ul li.header-btn-three {
    display: none;
  }
}
.bni-menu-action > ul li.header-btn-three .bni-btn {
  background: var(--bni-color-white-default);
  color: var(--bni-theme-secondary);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 18px 28px;
}
.bni-menu-action > ul li.header-btn-three .bni-btn:hover {
  color: var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .bni-menu-action > ul li.offCanvas-menu {
    display: none;
  }
}
.bni-menu-action > ul li .header-contact-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bni-body-color);
  line-height: 1;
}
.bni-menu-action > ul li .header-contact-info i {
  font-size: 20px;
}
.bni-menu-action > ul li .header-contact-info:hover {
  color: var(--bni-theme-primary);
}
.bni-menu-action-two {
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  .bni-menu-action-two {
    margin-left: auto;
  }
}
.bni-menu-action-two .list-wrap .header-btn-two .bni-btn {
  padding: 13px 22px;
}
.bni-menu-action-four {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.bni-menu-action-four > ul {
  height: 100%;
}
.bni-menu-action-four > ul li {
  margin-left: 40px;
}
@media (max-width: 1500px) {
  .bni-menu-action-four > ul li {
    margin-left: 25px;
  }
}
@media (max-width: 1199.98px) {
  .bni-menu-action-four > ul li {
    margin-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .bni-menu-action-four > ul li.header-contact {
    display: none;
  }
}
.bni-menu-action-four > ul li.header-contact .header-contact-info {
  color: var(--bni-color-white-default);
}
.bni-menu-action-four > ul li.header-contact .header-contact-info:hover {
  color: var(--bni-theme-secondary);
}
.bni-menu-action-five ul li.header-contact .header-contact-info {
  color: var(--bni-color-white-default);
}
.bni-menu-action-five ul li.header-contact .header-contact-info:hover {
  opacity: 0.8;
}
.bni-menu-action-five ul li.offCanvas-menu .menu-tigger span {
  background: var(--bni-color-white-default);
}
.bni-menu-action-six ul li {
  margin-left: 15px;
}
.bni-menu-action-six ul li.header-btn .bni-btn {
  border: 1px solid var(--bni-border-13);
  padding: 15px 22px;
  color: var(--bni-heading-color);
  font-size: 14px;
}
.bni-menu-action-six ul li.header-btn .bni-btn svg {
  color: var(--bni-theme-primary);
}
.bni-menu-action-six ul li.header-btn .bni-btn:hover {
  border-color: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
}
.bni-menu-action-six ul li.header-btn .bni-btn:hover svg {
  color: var(--bni-color-white-default);
}
.bni-menu-action-six ul li.offCanvas-menu {
  width: auto;
  height: auto;
}
.bni-menu-action-six ul li.offCanvas-menu .menu-tigger {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bni-border-13);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--bni-body-color);
}
.bni-menu-action-six ul li.offCanvas-menu .menu-tigger:hover {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.bni-menu-action-seven ul li.header-btn .bni-btn {
  border-radius: 4px 12px;
  padding: 16px 19px;
}
.bni-menu-action-eight ul li {
  margin-left: 15px;
}
.bni-menu-action-eight ul li .header-search-form {
  position: relative;
  width: 250px;
}
@media (max-width: 1199.98px) {
  .bni-menu-action-eight ul li .header-search-form {
    display: none;
  }
}
.bni-menu-action-eight ul li .header-search-form input {
  width: 100%;
  background: #F5F5F5;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--bni-heading-color);
  padding: 10px 40px 10px 20px;
  height: 45px;
}
.bni-menu-action-eight ul li .header-search-form input::placeholder {
  color: var(--bni-body-color);
  font-size: 14px;
}
.bni-menu-action-eight ul li .header-search-form button {
  position: absolute;
  border: none;
  background: transparent;
  padding: 0;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--bni-body-color);
}
.bni-menu-action-eight ul li .header-search-form button:hover {
  color: var(--bni-theme-primary);
}
.bni-menu-action-eight ul li .header-search-form-two input {
  background: var(--bni-color-white-default);
  border: 1px solid #C6C6C6;
}
.bni-menu-action-eight ul li.header-btn .bni-btn {
  padding: 15px 25px;
}
.bni-menu-action-nine > .list-wrap {
  align-items: normal;
  height: 100%;
}
.bni-menu-action-nine > .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.bni-menu-action-nine > .list-wrap li.offCanvas-menu {
  padding: 0 24px;
  width: auto;
  border-left: 1px solid var(--bni-color-gray-4);
}
.bni-menu-action-nine > .list-wrap li.offCanvas-menu .menu-tigger {
  justify-content: center;
}
.bni-menu-action-ten {
  margin-right: 26px;
}
@media (max-width: 991.98px) {
  .bni-menu-action-ten {
    margin-right: 0;
  }
}
.bni-menu-action-ten > ul {
  height: 100%;
}
.bni-menu-action-ten > ul li {
  margin-left: 20px;
}
.bni-menu-action-ten > ul li.header-search {
  padding-right: 20px;
}
.bni-menu-action-ten > ul li.header-search::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: #DEE0EB;
}
@media (max-width: 1199.98px) {
  .bni-menu-action-ten > ul li.header-contact {
    display: none;
  }
}
.bni-menu-action-ten > ul li.header-contact .header-contact-info {
  font-size: 16px;
  gap: 5px;
}
.bni-menu-action-ten > ul li.header-btn .bni-btn {
  padding: 16px 24px;
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--bni-color-white-default);
  -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

#header-fixed-height.active-height {
  display: block;
  height: 90px;
}

.bni-mega-menu-wrap {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1225px;
  border-radius: 20px;
  padding: 30px 40px 10px;
  background: var(--bni-color-white-default);
  margin: 0 0;
  transform: scale(1, 0) translateX(-50%);
  transform-origin: 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1500px) {
  .bni-mega-menu-wrap {
    width: 1150px;
    padding: 25px 25px 10px;
  }
}
@media (max-width: 1199.98px) {
  .bni-mega-menu-wrap {
    width: 960px;
    padding: 25px 20px 0;
  }
}
@media (max-width: 1500px) {
  .bni-mega-menu-wrap .row {
    --bs-gutter-x: 15px;
  }
}

.menu-item-has-children:hover .bni-mega-menu-wrap {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(-50%);
}

.mega-menu-item {
  margin-bottom: 25px;
}
.mega-menu-item .mega-menu-thumb {
  margin-bottom: 10px;
}
.mega-menu-item .mega-menu-thumb a {
  padding: 0 !important;
}
.mega-menu-item .mega-menu-thumb a img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid var(--bni-color-gray-5);
  width: 100%;
}
.mega-menu-item .mega-menu-content .title {
  margin-bottom: 0;
  text-align: center;
}
.mega-menu-item .mega-menu-content .title a {
  padding: 0 !important;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--bni-heading-color);
  font-weight: 500;
}
.mega-menu-item:hover .mega-menu-thumb a img {
  transform: translateY(-3px);
}
.mega-menu-item:hover .mega-menu-content .title a {
  color: var(--bni-theme-primary);
}
.mega-menu-item.active .mega-menu-content .title a {
  color: var(--bni-theme-primary);
}

.bni-mobile-menu .bni-mega-menu-wrap {
  display: none;
  width: auto;
  padding: 25px 40px 0;
  background: transparent;
  position: relative;
  opacity: 1 !important;
  visibility: visible;
  transition: 0s;
  box-shadow: none;
  border: none;
  transform: scale(1);
  transform-origin: unset;
  left: 0;
}

.bni-mobile-menu .bni-mega-menu-wrap .row .col {
  position: relative;
  width: 100%;
}

.bni-mega-menu-has-children {
  position: static !important;
}

.bni-mobile-menu .menu-item-has-children:hover .bni-mega-menu-wrap {
  transform: scale(1) translateX(0);
}

.mfp-iframe-holder .mfp-content {
  max-width: 1200px;
}

.transparent-header .bni-menu-navbar-wrap ul li .sub-menu {
  border-radius: 10px;
}
.transparent-header .sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

/*=============================
    	03. Banner
===============================*/
.banner-area {
  position: relative;
  z-index: 1;
  padding: 30px 0 0;
}
@media (max-width: 991.98px) {
  .banner-area {
    padding: 60px 0 0;
  }
}
.banner-area-two {
  padding: 160px 0 140px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .banner-area-two {
    padding: 130px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .banner-area-two {
    padding: 110px 0 100px;
  }
}
.banner-area-two::before {
  content: "";
  position: absolute;
  left: -218px;
  top: 121px;
  width: 512px;
  height: 512px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #3894FF;
  filter: blur(75px);
  opacity: 0.1;
  z-index: -1;
}
.banner-area-two::after {
  content: "";
  position: absolute;
  top: -177px;
  right: -210px;
  width: 515px;
  height: 515px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #FF7438;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.banner-area-six {
  position: relative;
  z-index: 1;
  padding: 215px 0 0;
}
@media (max-width: 1500px) {
  .banner-area-six {
    padding: 160px 0 0;
  }
}
@media (max-width: 991.98px) {
  .banner-area-six {
    padding: 130px 0 0;
  }
}
@media (max-width: 767.98px) {
  .banner-area-six {
    padding: 110px 0 0;
  }
}
.banner-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.08;
  mix-blend-mode: luminosity;
  background-color: var(--bni-color-white-default);
}
.banner-bg-two {
  background-size: cover;
  background-position: center;
  padding: 200px 0 135px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .banner-bg-two {
    padding: 170px 0 120px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-two {
    padding: 120px 0 100px;
  }
}
.banner-bg-three {
  background-size: cover;
  background-position: center;
  padding: 190px 0 115px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .banner-bg-three {
    padding: 170px 0 110px;
  }
}
@media (max-width: 1199.98px) {
  .banner-bg-three {
    padding: 160px 0 100px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-three {
    padding: 135px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .banner-bg-three {
    padding: 125px 0 80px;
  }
}
.banner-bg-four {
  background-size: cover;
  background-position: center;
  min-height: 650px;
  padding: 100px 80px 100px 150px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .banner-bg-four {
    padding: 100px 80px 100px 80px;
    min-height: 580px;
  }
}
@media (max-width: 1199.98px) {
  .banner-bg-four {
    padding: 100px 60px 100px 60px;
    min-height: 500px;
  }
}
@media (max-width: 767.98px) {
  .banner-bg-four {
    padding: 70px 25px 70px 25px;
  }
}
.banner-bg-four > .row {
  flex-grow: 1;
}
.banner-bg-five {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 84%;
  z-index: -1;
}
.banner-bg-six {
  background-size: cover;
  background-position: center;
  min-height: 855px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 260px 0 130px;
}
@media (max-width: 1500px) {
  .banner-bg-six {
    min-height: 740px;
    padding: 195px 0 130px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-six {
    min-height: 680px;
    padding: 140px 0 130px;
  }
}
.banner-bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .banner-content {
    text-align: center;
    margin-bottom: 50px;
  }
}
.banner-content .sub-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bni-theme-primary);
  line-height: 1.4;
  margin-bottom: 5px;
}
.banner-content .title {
  font-size: 60px;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .banner-content .title {
    font-size: 55px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .banner-content .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content .title {
    font-size: 40px;
  }
}
.banner-content p {
  margin-bottom: 22px;
  font-size: 18px;
  text-transform: capitalize;
  width: 85%;
}
@media (max-width: 1199.98px) {
  .banner-content p {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner-content-two {
    text-align: center;
  }
}
.banner-content-two .title {
  font-size: 55px;
  letter-spacing: -2px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .banner-content-two .title {
    font-size: 50px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content-two .title {
    font-size: 45px;
    letter-spacing: 0;
  }
}
@media (max-width: 991.98px) {
  .banner-content-two .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-two .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-two .title {
    font-size: 40px;
  }
}
.banner-content-two p {
  margin-bottom: 38px;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .banner-content-three {
    text-align: center;
  }
}
.banner-content-three .title {
  margin-bottom: 15px;
  font-size: 55px;
  text-transform: capitalize;
  width: 81%;
}
@media (max-width: 1199.98px) {
  .banner-content-three .title {
    font-size: 45px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner-content-three .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-three .title {
    font-size: 38px;
  }
}
.banner-content-three > p {
  margin-bottom: 35px;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.6;
}
@media (max-width: 1199.98px) {
  .banner-content-three > p {
    margin-bottom: 20px;
  }
}
.banner-content-four .title {
  margin-bottom: 35px;
  color: var(--bni-color-white-default);
  font-size: 70px;
  line-height: 1.1;
}
@media (max-width: 1500px) {
  .banner-content-four .title {
    font-size: 65px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content-four .title {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-four .title {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-four .title {
    font-size: 45px;
  }
}
.banner-content-four .title .arrow {
  width: 126px;
  height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  color: var(--bni-theme-primary);
  transform: translateY(-13px);
}
@media (max-width: 1500px) {
  .banner-content-four .title .arrow {
    transform: translateY(-9px);
  }
}
@media (max-width: 1199.98px) {
  .banner-content-four .title .arrow {
    transform: translateY(-4px);
    width: 100px;
    height: 44px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-four .title .arrow {
    width: 80px;
    height: 35px;
    transform: translateY(-10px);
  }
}
@media (max-width: 1199.98px) {
  .banner-content-four .title .arrow svg {
    width: 60px;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .banner-content-four .title .arrow svg {
    width: 40px;
  }
}
@media (max-width: 991.98px) {
  .banner-content-five {
    text-align: center;
  }
}
.banner-content-five .sub-title {
  display: inline-flex;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bni-theme-primary);
  line-height: 1;
  position: relative;
  gap: 7px;
  align-items: center;
  margin-bottom: 15px;
}
.banner-content-five .sub-title::after {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.banner-content-five .title {
  margin-bottom: 12px;
  font-size: 60px;
  text-transform: capitalize;
}
@media (max-width: 1500px) {
  .banner-content-five .title {
    font-size: 55px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content-five .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-five .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-five .title {
    font-size: 42px;
  }
}
.banner-content-five .title span {
  font-weight: 500;
}
.banner-content-five p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.6;
  width: 80%;
}
@media (max-width: 1500px) {
  .banner-content-five p {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .banner-content-five p {
    width: 100%;
  }
}
.banner-content-six {
  position: relative;
  margin-bottom: 35px;
}
.banner-content-six .title {
  margin-bottom: 30px;
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1;
  width: 47%;
}
@media (max-width: 1500px) {
  .banner-content-six .title {
    font-size: 75px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content-six .title {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .banner-content-six .title {
    font-size: 55px;
    margin-bottom: 10px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .banner-content-six .title {
    font-size: 48px;
    margin-bottom: 0;
  }
}
.banner-content-six .title-two {
  margin-bottom: 0;
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1500px) {
  .banner-content-six .title-two {
    font-size: 75px;
  }
}
@media (max-width: 1199.98px) {
  .banner-content-six .title-two {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .banner-content-six .title-two {
    font-size: 55px;
  }
}
@media (max-width: 767.98px) {
  .banner-content-six .title-two {
    font-size: 48px;
  }
}
.banner-content-six .title-two svg {
  color: var(--bni-theme-primary);
}
@media (max-width: 991.98px) {
  .banner-content-six .title-two svg {
    width: 55px;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .banner-content-six .title-two svg {
    display: none;
  }
}
.banner-content-six p {
  margin-bottom: 0;
  position: absolute;
  right: 70px;
  width: 45%;
  top: 0;
}
@media (max-width: 1199.98px) {
  .banner-content-six p {
    right: 26px;
    width: 49%;
    top: -25px;
  }
}
@media (max-width: 991.98px) {
  .banner-content-six p {
    position: initial;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .banner-content-seven {
    text-align: center;
  }
}
.banner-content-seven .sub-title {
  display: block;
  text-transform: uppercase;
  color: var(--bni-theme-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.banner-content-seven .title {
  margin-bottom: 10px;
  font-size: 50px;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .banner-content-seven .title {
    font-size: 43px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .banner-content-seven .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-seven .title {
    font-size: 40px;
  }
}
.banner-content-seven p {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 35px;
}
.banner-content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .banner-content-bottom {
    text-align: left;
    justify-content: center;
  }
}
.banner-mask-img {
  -webkit-mask-image: url(../img/banner/mask_img.svg);
  mask-image: url(../img/banner/mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 1224px;
  height: 668px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .banner-mask-img {
    width: 935px;
    height: 512px;
  }
}
@media (max-width: 991.98px) {
  .banner-mask-img {
    width: 695px;
    height: 382px;
  }
}
@media (max-width: 767.98px) {
  .banner-mask-img {
    width: 100%;
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 20px;
    overflow: hidden;
  }
}
.banner-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img {
  position: relative;
}
@media (max-width: 991.98px) {
  .banner-img {
    text-align: center;
  }
}
.banner-img img {
  max-width: unset;
}
@media (max-width: 1500px) {
  .banner-img img {
    max-width: 90%;
  }
}
@media (max-width: 991.98px) {
  .banner-img img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-img img {
    max-width: 90%;
    margin: 0 auto;
  }
}
.banner-img .shape {
  position: absolute;
  left: -75px;
  top: 0;
  max-width: unset;
  z-index: -1;
}
@media (max-width: 1500px) {
  .banner-img .shape {
    max-width: 600px;
  }
}
@media (max-width: 1199.98px) {
  .banner-img .shape {
    max-width: 450px;
    left: -50px;
  }
}
@media (max-width: 991.98px) {
  .banner-img .shape {
    max-width: 500px;
    left: -50px;
  }
}
@media (max-width: 767.98px) {
  .banner-img .shape {
    max-width: 100%;
    left: 0;
  }
}
.banner-img-two {
  position: relative;
  text-align: right;
  padding-right: 30px;
}
@media (max-width: 991.98px) {
  .banner-img-two {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner-img-two {
    padding: 0;
    text-align: center;
  }
}
.banner-img-two .main-img img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 1199.98px) {
  .banner-img-two .main-img img {
    max-width: 80%;
  }
}
@media (max-width: 767.98px) {
  .banner-img-two .main-img img {
    max-width: 100%;
  }
}
.banner-img-two .shape-wrap img {
  position: absolute;
  z-index: -1;
}
.banner-img-two .shape-wrap img:nth-child(1) {
  left: 7%;
  top: 18%;
}
@media (max-width: 767.98px) {
  .banner-img-two .shape-wrap img:nth-child(1) {
    display: none;
  }
}
.banner-img-two .shape-wrap img:nth-child(2) {
  right: -19%;
  bottom: 29%;
}
@media (max-width: 1500px) {
  .banner-img-two .shape-wrap img:nth-child(2) {
    right: -9%;
  }
}
@media (max-width: 1199.98px) {
  .banner-img-two .shape-wrap img:nth-child(2) {
    right: -7%;
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .banner-img-two .shape-wrap img:nth-child(2) {
    display: none;
  }
}
.banner-img-two .shape-wrap img:nth-child(3) {
  right: -3%;
  bottom: -6%;
}
@media (max-width: 767.98px) {
  .banner-img-two .shape-wrap img:nth-child(3) {
    right: -1%;
    bottom: -10%;
    max-width: 120px;
  }
}
.banner-img-two .shape-wrap img:nth-child(4) {
  left: 30px;
  bottom: 65px;
  z-index: 1;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -o-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px;
}
@media (max-width: 1199.98px) {
  .banner-img-two .shape-wrap img:nth-child(4) {
    left: 0;
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .banner-img-two .shape-wrap img:nth-child(4) {
    display: none;
  }
}
.banner-img-two .shape-wrap img:nth-child(5) {
  left: 14%;
  bottom: 0;
  max-width: unset;
  z-index: -2;
}
@media (max-width: 1199.98px) {
  .banner-img-two .shape-wrap img:nth-child(5) {
    left: 5%;
    max-width: 100%;
  }
}
.banner-img-three {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .banner-img-three {
    margin-bottom: 50px;
  }
}
.banner-img-three > img {
  max-width: unset;
}
@media (max-width: 1199.98px) {
  .banner-img-three > img {
    max-width: 100%;
  }
}
.banner-img-three > img:nth-child(2) {
  position: absolute;
  left: -2%;
  bottom: 23%;
}
@media (max-width: 1199.98px) {
  .banner-img-three > img:nth-child(2) {
    max-width: 150px;
  }
}
@media (max-width: 991.98px) {
  .banner-img-three > img:nth-child(2) {
    bottom: 35%;
  }
}
@media (max-width: 767.98px) {
  .banner-img-three > img:nth-child(2) {
    max-width: 120px;
    bottom: 33%;
  }
}
.banner-img-three > img.shape {
  position: absolute;
  left: 0;
  top: -5%;
  z-index: -1;
}
.banner-img-four {
  position: relative;
}
.banner-img-four img {
  border-radius: 25px 80px;
  width: 100%;
  height: 560px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .banner-img-four img {
    height: 500px;
  }
}
@media (max-width: 991.98px) {
  .banner-img-four img {
    height: 450px;
  }
}
.banner-img-four .play-btn {
  width: 80px;
  height: 80px;
  background: var(--bni-color-white-default);
  position: absolute;
  left: 45px;
  bottom: 45px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img-four .play-btn svg {
  width: 24px;
  height: auto;
}
.banner-img-wrap {
  position: relative;
  margin-bottom: 90px;
}
@media (max-width: 1199.98px) {
  .banner-img-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 767.98px) {
  .banner-img-wrap {
    margin-bottom: 60px;
  }
}
.banner-img-wrap > p {
  margin-bottom: 0;
  color: var(--bni-color-gray-4);
  position: absolute;
  right: 22px;
  top: 15px;
  width: 40%;
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 1199.98px) {
  .banner-img-wrap > p {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .banner-img-wrap > p {
    font-size: 16px;
    position: unset;
    width: 100%;
    margin-bottom: 30px;
  }
}
.banner-client {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-client .content .count {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1;
}
.banner-client .content p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.banner-form {
  width: 89%;
  position: relative;
}
@media (max-width: 991.98px) {
  .banner-form {
    width: 100%;
  }
}
.banner-form input {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 11px 180px 11px 20px;
}
.banner-form input::placeholder {
  text-transform: capitalize;
  color: var(--bni-color-gray-9);
}
.banner-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 17px 25px;
  height: 50px;
}
.banner-social-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 57px;
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  writing-mode: vertical-lr;
  flex-direction: row-reverse;
  z-index: 1;
}
@media (max-width: 1500px) {
  .banner-social-wrap {
    right: 50px;
  }
}
@media (max-width: 1199.98px) {
  .banner-social-wrap {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .banner-social-wrap {
    display: none;
  }
}
.banner-social-wrap .title {
  display: block;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: var(--bni-border-1);
  position: relative;
  line-height: 1;
}
.banner-social-wrap .title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: var(--bni-theme-secondary);
}
.banner-social-wrap .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}
.banner-social-wrap .list-wrap li {
  line-height: 0;
}
.banner-social-wrap .list-wrap li a {
  color: var(--bni-theme-secondary);
  transform: rotate(90deg);
  display: block;
}
.banner-social-wrap .list-wrap li a svg {
  width: 20px;
  height: 20px;
}
.banner-social-wrap .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.banner-social-wrap-two {
  right: auto;
  left: 90px;
  top: 37%;
  transform: translateY(0) rotate(-180deg);
}
@media (max-width: 1500px) {
  .banner-social-wrap-two {
    left: 25px;
  }
}
@media (max-width: 1199.98px) {
  .banner-social-wrap-two {
    display: none;
  }
}
.banner-side-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #DEE0EB;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  justify-content: center;
  padding: 25px 20px;
  width: 95px;
}
@media (max-width: 1199.98px) {
  .banner-side-wrap {
    display: none;
  }
}
.banner-side-wrap i {
  font-size: 24px;
  color: var(--bni-border-1);
}
.banner-side-wrap span {
  font-size: 16px;
  display: block;
  font-weight: 500;
  color: var(--bni-border-1);
}
.banner-shape img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .banner-shape img {
    max-width: 130px;
  }
}
@media (max-width: 1199.98px) {
  .banner-shape img {
    max-width: 100px;
  }
}
.banner-shape-two img {
  position: absolute;
  z-index: -1;
}
.banner-shape-two img:nth-child(1) {
  left: 7%;
  top: 31%;
}
@media (max-width: 1500px) {
  .banner-shape-two img:nth-child(1) {
    left: 4%;
    top: 20%;
  }
}
.banner-shape-two img:nth-child(2) {
  left: 44%;
  top: 28%;
}
@media (max-width: 1199.98px) {
  .banner-shape-two img:nth-child(2) {
    top: 20%;
  }
}
@media (max-width: 991.98px) {
  .banner-shape-two img:nth-child(2) {
    top: 15%;
    z-index: 1;
  }
}
.banner-shape-three img {
  position: absolute;
  right: 26%;
  top: 18%;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .banner-shape-three img {
    display: none;
  }
}

.business-growth-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bni-color-white-default);
  position: absolute;
  right: -20%;
  top: 20%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 20px 10px 10px;
}
@media (max-width: 1500px) {
  .business-growth-box {
    right: -9%;
  }
}
@media (max-width: 767.98px) {
  .business-growth-box {
    display: none;
  }
}
.business-growth-box .icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  font-size: 40px;
}
.business-growth-box .content {
  text-align: left;
}
.business-growth-box .content .title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.business-growth-box .content .count {
  font-size: 24px;
  margin-bottom: 0;
}

.happy-clients-wrap {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -o-border-radius: 22px;
  -ms-border-radius: 22px;
  border-radius: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 24px 17px 28px;
  position: absolute;
  left: 0;
  bottom: 44px;
}
@media (max-width: 1199.98px) {
  .happy-clients-wrap {
    padding: 15px 15px 15px 15px;
    bottom: 35px;
  }
}
@media (max-width: 991.98px) {
  .happy-clients-wrap {
    display: none;
  }
}
.happy-clients-wrap .count {
  margin-bottom: 0;
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .happy-clients-wrap .count {
    font-size: 30px;
  }
}
.happy-clients-wrap span {
  font-size: 16px;
  font-weight: 600;
  color: var(--bni-theme-secondary);
  line-height: 1.25;
}
@media (max-width: 1199.98px) {
  .happy-clients-wrap span {
    font-size: 14px;
  }
}

.circle-wrap {
  position: absolute;
  right: 94px;
  bottom: 14px;
  width: 168px;
  height: 168px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 33px solid var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .circle-wrap {
    right: 54px;
  }
}
@media (max-width: 991.98px) {
  .circle-wrap {
    right: 19px;
  }
}
@media (max-width: 767.98px) {
  .circle-wrap {
    display: none;
  }
}
.circle-wrap .icon {
  width: 86px;
  height: 86px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bni-theme-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle-wrap .content .circle {
  margin-bottom: 0;
  background: var(--bni-color-white-default);
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  -webkit-animation-duration: 25s;
  animation-duration: 15s;
  font-weight: 600;
}
.circle-wrap .content .circle span {
  position: absolute;
  top: -76px;
  display: inline-block;
  transform-origin: 0 76px;
}
.circle-wrap-two {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  right: 0;
  bottom: 0;
  border: 0;
}
@media (max-width: 767.98px) {
  .circle-wrap-two {
    display: block;
  }
}
.circle-wrap-two .icon {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.circle-wrap-two .content .circle {
  font-weight: 500;
}
.circle-wrap-two .content .circle span {
  top: -80px;
  transform-origin: 0 80px;
}
.circle-wrap-three {
  margin: 0 0 35px;
  margin-left: auto;
}
@media (max-width: 1199.98px) {
  .circle-wrap-three {
    right: 28px;
  }
}
@media (max-width: 991.98px) {
  .circle-wrap-three {
    display: none;
  }
}

/*=============================
    	03. Slider
===============================*/
.slider-area {
  position: relative;
  z-index: 1;
}
.slider-area-two {
  position: relative;
  z-index: 1;
}
.slider-area-four {
  position: relative;
  z-index: 1;
}
.slider-area-five {
  position: relative;
  z-index: 1;
}
.slider-area-five .swiper-slide {
  min-height: 750px;
  padding: 100px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-gray-13);
}
@media (max-width: 1500px) {
  .slider-area-five .swiper-slide {
    min-height: 600px;
  }
}
@media (max-width: 991.98px) {
  .slider-area-five .swiper-slide {
    min-height: 500px;
    padding: 90px 0 120px;
  }
}
.slider-bg {
  min-height: 900px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 200px 0 120px;
}
@media (max-width: 1500px) {
  .slider-bg {
    min-height: 750px;
  }
}
@media (max-width: 991.98px) {
  .slider-bg {
    min-height: 700px;
  }
}
@media (max-width: 767.98px) {
  .slider-bg {
    padding: 150px 0 100px;
  }
}
.slider-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(78deg, #000 100%, #222 100%);
  z-index: -1;
}
.slider-bg-two {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 740px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
@media (max-width: 1500px) {
  .slider-bg-two {
    min-height: 600px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-two {
    min-height: 550px;
  }
}
@media (max-width: 991.98px) {
  .slider-bg-two {
    min-height: 500px;
  }
}
.slider-bg-two::before {
  content: "";
  position: absolute;
  left: 36.5%;
  bottom: -30px;
  width: 80px;
  height: 105px;
  background: #002A96;
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  transform: rotate(1.692deg);
}
@media (max-width: 1800px) {
  .slider-bg-two::before {
    left: 35.5%;
    transform: rotate(-0.308deg);
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-two::before {
    left: 38.5%;
    transform: rotate(-6.308deg);
  }
}
@media (max-width: 991.98px) {
  .slider-bg-two::before {
    display: none;
  }
}
.slider-bg-two .shape img {
  position: absolute;
  left: 5px;
  bottom: -20px;
}
@media (max-width: 1800px) {
  .slider-bg-two .shape img {
    width: 170px;
  }
}
@media (max-width: 1500px) {
  .slider-bg-two .shape img {
    width: 130px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-two .shape img {
    display: none;
  }
}
.slider-bg-three {
  background-size: cover;
  background-position: center;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .slider-bg-three {
    width: 55%;
  }
}
@media (max-width: 991.98px) {
  .slider-bg-three {
    display: none;
  }
}
.slider-bg-three::before {
  content: "";
  position: absolute;
  left: 23%;
  bottom: 12px;
  width: 158px;
  height: 243px;
  background: rgba(0, 42, 150, 0.9);
  clip-path: polygon(56% 0%, 100% 0%, 44% 100%, 0% 100%);
  transform: rotate(1.251deg);
}
@media (max-width: 1800px) {
  .slider-bg-three::before {
    transform: rotate(-1deg);
  }
}
@media (max-width: 1500px) {
  .slider-bg-three::before {
    left: 20%;
    bottom: 15px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-three::before {
    display: none;
  }
}
.slider-bg-three::after {
  content: "";
  position: absolute;
  left: 148px;
  top: 50%;
  transform: translateY(-50%) rotate(21deg);
  width: 220px;
  height: 200%;
  background: rgba(0, 71, 255, 0.95);
}
@media (max-width: 1800px) {
  .slider-bg-three::after {
    transform: translateY(-50%) rotate(19deg);
    left: 90px;
  }
}
@media (max-width: 1500px) {
  .slider-bg-three::after {
    left: 20px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-three::after {
    left: -62px;
    transform: translateY(-50%) rotate(14deg);
  }
}
.slider-bg-four {
  background-size: cover;
  background-position: center;
  min-height: 740px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  cursor: grab;
}
@media (max-width: 1500px) {
  .slider-bg-four {
    min-height: 650px;
  }
}
@media (max-width: 991.98px) {
  .slider-bg-four {
    min-height: 600px;
  }
}
.slider-bg-four::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 15.68%, rgba(0, 0, 0, 0) 77.23%);
  z-index: -1;
}
.slider-bg-four .shape img {
  position: absolute;
  z-index: -1;
}
.slider-bg-four .shape img:nth-child(1) {
  left: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .slider-bg-four .shape img:nth-child(1) {
    max-width: 230px;
  }
}
@media (max-width: 767.98px) {
  .slider-bg-four .shape img:nth-child(1) {
    max-width: 150px;
  }
}
.slider-bg-four .shape img:nth-child(2) {
  right: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .slider-bg-four .shape img:nth-child(2) {
    max-width: 250px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-four .shape img:nth-child(2) {
    max-width: 200px;
  }
}
@media (max-width: 991.98px) {
  .slider-bg-four .shape img:nth-child(2) {
    max-width: 170px;
  }
}
@media (max-width: 767.98px) {
  .slider-bg-four .shape img:nth-child(2) {
    max-width: 150px;
  }
}
.slider-bg-five {
  background-size: cover;
  background-position: center;
  padding: 250px 0 120px;
  min-height: 820px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media (max-width: 1500px) {
  .slider-bg-five {
    min-height: 740px;
  }
}
@media (max-width: 1199.98px) {
  .slider-bg-five {
    min-height: 650px;
    padding: 230px 0 110px;
  }
}
@media (max-width: 991.98px) {
  .slider-bg-five {
    min-height: 570px;
    padding: 130px 0 100px;
  }
}
.slider-bg-six {
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 991.98px) {
  .slider-bg-six {
    display: none;
  }
}
.slider-bg-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.slider-content {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .slider-content {
    margin-top: 0;
    text-align: center;
  }
}
.slider-content .title {
  margin-bottom: 20px;
  font-size: 80px;
  color: var(--bni-color-white-default);
  text-transform: capitalize;
}
@media (max-width: 1500px) {
  .slider-content .title {
    font-size: 75px;
  }
}
@media (max-width: 1199.98px) {
  .slider-content .title {
    font-size: 65px;
  }
}
@media (max-width: 767.98px) {
  .slider-content .title {
    font-size: 60px;
  }
}
.slider-content p {
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--bni-color-gray-4);
  text-transform: capitalize;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .slider-content p {
    width: 100%;
  }
}
.slider-content-two {
  margin-top: -35px;
  position: relative;
}
@media (max-width: 991.98px) {
  .slider-content-two {
    text-align: center;
  }
}
.slider-content-two .sub-title {
  display: block;
  color: var(--bni-theme-primary);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 3px;
}
.slider-content-two .title {
  margin-bottom: 12px;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.1;
}
@media (max-width: 1500px) {
  .slider-content-two .title {
    font-size: 55px;
  }
}
@media (max-width: 1199.98px) {
  .slider-content-two .title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .slider-content-two .title {
    font-size: 45px;
  }
}
.slider-content-two p {
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 1.55;
  text-transform: capitalize;
}
.slider-content-three {
  margin-top: -30px;
}
@media (max-width: 991.98px) {
  .slider-content-three {
    text-align: center;
    margin-top: 0;
  }
}
.slider-content-three .sub-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bni-color-white-default);
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
}
.slider-content-three .title {
  margin-bottom: 10px;
  color: var(--bni-color-white-default);
  font-size: 60px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .slider-content-three .title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .slider-content-three .title {
    font-size: 45px;
  }
}
.slider-content-three p {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bni-color-white-default);
  line-height: 1.6;
}
@media (max-width: 991.98px) {
  .slider-content-four {
    text-align: center;
  }
}
.slider-content-four .sub-title {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--bni-theme-primary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 5px;
}
.slider-content-four .title {
  margin-bottom: 10px;
  font-size: 60px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .slider-content-four .title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .slider-content-four .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content-four .title {
    font-size: 42px;
  }
}
.slider-content-four p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
  width: 85%;
}
@media (max-width: 1199.98px) {
  .slider-content-four p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    width: 100%;
  }
}
@media (max-width: 1500px) {
  .slider-content-five {
    margin-left: 90px;
  }
}
@media (max-width: 1199.98px) {
  .slider-content-five {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .slider-content-five {
    text-align: center;
  }
}
.slider-content-five .sub-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bni-theme-primary);
  margin-bottom: 12px;
}
.slider-content-five .title {
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 17px;
}
@media (max-width: 1500px) {
  .slider-content-five .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .slider-content-five .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content-five .title {
    font-size: 42px;
  }
}
.slider-content-five p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.6;
}
.slider-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 85px;
  top: 50%;
  z-index: 1;
  flex-direction: column;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .slider-nav {
    display: none;
  }
}
.slider-nav button {
  width: 45px;
  height: 70px;
  border: none;
  -webkit-border-radius: 125px;
  -moz-border-radius: 125px;
  -o-border-radius: 125px;
  -ms-border-radius: 125px;
  border-radius: 125px;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-secondary);
}
.slider-nav button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.slider-nav-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: absolute;
  right: 98px;
  bottom: 36%;
  z-index: 1;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .slider-nav-two {
    display: none;
  }
}
.slider-nav-two button {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #D1D1D1;
  background: var(--bni-color-white-default);
  color: var(--bni-heading-color);
}
.slider-nav-two button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.slider-nav-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .slider-nav-three {
    transform: translateX(-50%);
  }
}
.slider-nav-three button {
  border: none;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
}
.slider-nav-three button.slider-button-next {
  background: #1f5dff;
}
.slider-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: absolute;
  left: 17.8% !important;
  bottom: 115px !important;
  z-index: 2;
  gap: 5px;
}
@media (max-width: 1800px) {
  .slider-pagination {
    left: 11.8% !important;
  }
}
@media (max-width: 1500px) {
  .slider-pagination {
    left: 5% !important;
  }
}
@media (max-width: 1199.98px) {
  .slider-pagination {
    left: 4% !important;
    bottom: 85px !important;
  }
}
@media (max-width: 991.98px) {
  .slider-pagination {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 50px !important;
    justify-content: center;
  }
}
.slider-pagination span {
  width: 18px;
  height: 18px;
  padding: 0;
  position: relative;
  border: 1px solid #ADAFBB;
  background: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.slider-pagination span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--bni-body-color);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.slider-pagination span.swiper-pagination-bullet-active {
  width: 24px;
  height: 24px;
}
.slider-pagination span.swiper-pagination-bullet-active::before {
  width: 12px;
  height: 12px;
  background-color: var(--bni-theme-primary);
}

.slider-bg.swiper-slide-active .slider-content .title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.slider-bg.swiper-slide-active .slider-content p {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.slider-bg.swiper-slide-active .slider-content .bni-btn {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.swiper-slide.swiper-slide-active .slider-content-five .sub-title, .swiper-slide.swiper-slide-active .slider-content-four .sub-title, .swiper-slide.swiper-slide-active .slider-content-three .sub-title, .swiper-slide.swiper-slide-active .slider-content-two .sub-title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider-content-five .title, .swiper-slide.swiper-slide-active .slider-content-four .title, .swiper-slide.swiper-slide-active .slider-content-three .title, .swiper-slide.swiper-slide-active .slider-content-two .title {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider-content-five p, .swiper-slide.swiper-slide-active .slider-content-four p, .swiper-slide.swiper-slide-active .slider-content-three p, .swiper-slide.swiper-slide-active .slider-content-two p {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider-content-five .bni-btn, .swiper-slide.swiper-slide-active .slider-content-four .bni-btn, .swiper-slide.swiper-slide-active .slider-content-three .bni-btn, .swiper-slide.swiper-slide-active .slider-content-two .bni-btn {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .shape img {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active.slider-bg-four .shape img:nth-child(1) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active.slider-bg-four .shape img:nth-child(2) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeDown2;
  animation-name: fadeDown2;
}

/*=============================
    	04. Brand
===============================*/
.brand-area {
  border-bottom: 1px solid var(--bni-border-2);
  padding: 52px 0;
}
.brand-area-three {
  position: relative;
  z-index: 1;
}
.brand-area-three::before {
  content: "";
  position: absolute;
  left: -194px;
  top: 260px;
  width: 320px;
  height: 320px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #DFD2FB;
  filter: blur(150px);
  z-index: -1;
}
.brand-area-three::after {
  content: "";
  position: absolute;
  right: -181px;
  top: 298px;
  width: 320px;
  height: 320px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #C3CEFA;
  filter: blur(150px);
  z-index: -1;
}
.brand-area-four {
  padding: 75px 0;
}
.brand-item {
  min-height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-item img {
  cursor: pointer;
}
.brand-item-two {
  padding: 50px 40px;
  border-right: 1px solid var(--bni-border-12);
  border-top: 1px solid var(--bni-border-12);
  width: 100%;
  height: 186px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
}
@media (max-width: 991.98px) {
  .brand-item-two {
    padding: 30px 20px;
    height: 160px;
  }
}
@media (max-width: 767.98px) {
  .brand-item-two {
    height: 120px;
  }
}
.brand-item-two img {
  cursor: pointer;
}
.brand-item-three {
  padding: 20px 20px;
  border-right: 1px solid var(--bni-border-2);
  border-top: 1px solid var(--bni-border-2);
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .brand-item-three {
    height: 120px;
  }
}
.brand-item-three img {
  cursor: pointer;
}
.brand-item-wrap {
  border-bottom: 1px solid var(--bni-border-12);
  border-left: 1px solid var(--bni-border-12);
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767.98px) {
  .brand-item-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-item-wrap-two {
  border-top: 1px solid var(--bni-border-2);
  padding: 84px 0;
}
.brand-item-wrap-three {
  border-bottom: 1px solid var(--bni-border-4);
  padding: 64px 0;
}
.brand-item-wrap-four {
  border-color: var(--bni-border-2);
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 991.98px) {
  .brand-item-wrap-four {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .brand-item-wrap-four {
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-item-wrap-five {
  padding: 80px 0 60px;
  border-bottom: 1px solid #dbdbdb;
}
.brand-content {
  text-align: center;
  margin-bottom: 50px;
}
.brand-content .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--bni-border-1);
}
.brand-content .title span {
  position: relative;
  color: var(--bni-heading-color);
  font-weight: 600;
}
.brand-content .title span svg {
  position: absolute;
  left: -5px;
  bottom: -3px;
  color: var(--bni-theme-primary);
}
.brand-content-two {
  text-align: center;
  margin-bottom: 50px;
}
.brand-content-two .title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--bni-body-color);
}
.brand-content-two .title span {
  color: var(--bni-theme-primary);
  font-weight: 600;
}
.brand-content-three .section-title .title {
  line-height: 1.4;
}
.brand-content-three .section-title .title span {
  font-size: 30px;
  display: block;
}

/*=============================
    	05. About
===============================*/
.about-area-two {
  position: relative;
  z-index: 1;
}
.about-area-two::before {
  content: "";
  position: absolute;
  right: -215px;
  top: -200px;
  width: 515px;
  height: 515px;
  background: #7838FF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  opacity: 0.1;
}
@media (max-width: 991.98px) {
  .about-area-two::before {
    top: 0;
  }
}
.about-area-three {
  position: relative;
  z-index: 1;
}
.about-area-three::before {
  content: "";
  position: absolute;
  right: -215px;
  bottom: -200px;
  width: 515px;
  height: 515px;
  background: #7838FF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  opacity: 0.1;
}
.about-area-four {
  position: relative;
  z-index: 1;
}
.about-area-five {
  position: relative;
  z-index: 1;
}
.about-area-eight {
  background: var(--bni-color-gray-2);
}
@media (max-width: 991.98px) {
  .about-img-three {
    text-align: center;
    margin-bottom: 50px;
  }
}
.about-img-four {
  margin-left: -20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about-img-four {
    margin-left: -45px;
  }
}
@media (max-width: 991.98px) {
  .about-img-four {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.about-img-four .shape img {
  position: absolute;
  z-index: -1;
  left: -5%;
  top: 11%;
}
.about-img-five {
  width: 505px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .about-img-five {
    width: 400px;
  }
}
@media (max-width: 767.98px) {
  .about-img-five {
    width: 100%;
  }
}
.about-img-five img {
  border-radius: 50px 200px 50px 50px;
}
.about-img-six {
  text-align: right;
  position: relative;
  padding-left: 40px;
}
@media (max-width: 991.98px) {
  .about-img-six {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about-img-six {
    padding-left: 20px;
  }
}
.about-img-six::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100px;
  height: 70%;
  background: var(--bni-theme-primary);
  border-radius: 25px 0px 0px 25px;
  z-index: -1;
}
.about-img-six img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .about-img-six img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
  }
}
.about-img-wrap {
  position: relative;
  margin-right: 45px;
}
@media (max-width: 1199.98px) {
  .about-img-wrap {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about-img-wrap {
    margin-bottom: 60px;
  }
}
.about-img-wrap .shape img {
  position: absolute;
  z-index: -1;
}
.about-img-wrap .shape img:nth-child(1) {
  left: -6%;
  top: 42%;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about-img-wrap .shape img:nth-child(1) {
    max-width: 90px;
  }
}
@media (max-width: 767.98px) {
  .about-img-wrap .shape img:nth-child(1) {
    left: -4%;
    top: 38%;
  }
}
.about-img-wrap .shape img:nth-child(2) {
  left: 20%;
  bottom: -6%;
}
@media (max-width: 1199.98px) {
  .about-img-wrap .shape img:nth-child(2) {
    left: 6%;
  }
}
@media (max-width: 767.98px) {
  .about-img-wrap .shape img:nth-child(2) {
    left: 1%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-img-wrap .shape img:nth-child(2) {
    left: 16%;
  }
}
.about-img-wrap-two {
  position: relative;
  padding: 70px 80px 70px 0;
  margin-right: 35px;
}
@media (max-width: 1199.98px) {
  .about-img-wrap-two {
    padding: 70px 50px 70px 0;
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about-img-wrap-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .about-img-wrap-two {
    padding: 30px 20px 30px 0;
  }
}
.about-img-wrap-two::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 84%;
  height: 100%;
  background: var(--bni-color-white-default);
  z-index: -1;
  -webkit-border-radius: 20px 20px 107px 20px;
  -moz-border-radius: 20px 20px 107px 20px;
  -o-border-radius: 20px 20px 107px 20px;
  -ms-border-radius: 20px 20px 107px 20px;
  border-radius: 20px 20px 107px 20px;
}
@media (max-width: 767.98px) {
  .about-img-wrap-two::before {
    -webkit-border-radius: 20px 20px 50px 20px;
    -moz-border-radius: 20px 20px 50px 20px;
    -o-border-radius: 20px 20px 50px 20px;
    -ms-border-radius: 20px 20px 50px 20px;
    border-radius: 20px 20px 50px 20px;
  }
}
.about-img-wrap-two > img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 767.98px) {
  .about-img-wrap-two > img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
}
.about-img-wrap-two .shape img {
  position: absolute;
}
.about-img-wrap-two .shape img:nth-child(1) {
  left: -50px;
  bottom: 0;
  z-index: -1;
}
.about-img-wrap-two .shape img:nth-child(2) {
  right: 4%;
  bottom: 25%;
}
@media (max-width: 767.98px) {
  .about-img-wrap-two .shape img:nth-child(2) {
    display: none;
  }
}
.about-img-wrap-three {
  margin-right: 80px;
  text-align: right;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .about-img-wrap-three {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about-img-wrap-three {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about-img-wrap-three {
    padding: 0 0 40px 30px;
  }
}
.about-img-wrap-three > img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 8px solid var(--bni-color-white-default);
}
.about-img-wrap-three .rating-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-end;
  text-align: left;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .about-img-wrap-three .rating-wrap {
    display: none;
  }
}
.about-img-wrap-three .rating-wrap p {
  margin-bottom: 0;
  color: var(--bni-theme-secondary);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.3;
}
.about-img-wrap-three .rating-wrap p span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.about-img-wrap-four {
  position: relative;
  padding-bottom: 30px;
  margin-right: 35px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about-img-wrap-four {
    margin-right: 0;
    padding-right: 50px;
  }
}
@media (max-width: 991.98px) {
  .about-img-wrap-four {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about-img-wrap-four {
    padding-right: 0;
    text-align: center;
  }
}
.about-img-wrap-four::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 290px;
  height: 50px;
  background: var(--bni-theme-primary);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .about-img-wrap-four::before {
    display: none;
  }
}
.about-img-wrap-four img:nth-child(1) {
  border: 12px solid var(--bni-color-white-default);
}
.about-img-wrap-four img:nth-child(2) {
  border: 10px solid var(--bni-color-white-default);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .about-img-wrap-four img:nth-child(2) {
    display: none;
  }
}
.about-images {
  padding-right: 30px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .about-images {
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-images {
    padding-right: 30px;
  }
}
.about-images img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.about-images img:nth-child(2) {
  -webkit-border-radius: 15px 20px 0px 15px;
  -moz-border-radius: 15px 20px 0px 15px;
  -o-border-radius: 15px 20px 0px 15px;
  -ms-border-radius: 15px 20px 0px 15px;
  border-radius: 15px 20px 0px 15px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.about-mask-img {
  -webkit-mask-image: url(../img/images/about_mask_img.svg);
  mask-image: url(../img/images/about_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 623px;
  height: 566px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .about-mask-img {
    width: 495px;
    height: 452px;
  }
}
@media (max-width: 991.98px) {
  .about-mask-img {
    width: 575px;
    height: 523px;
  }
}
@media (max-width: 767.98px) {
  .about-mask-img {
    width: 330px;
    height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-mask-img {
    width: 513px;
    height: 468px;
  }
}
.about-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content > p {
  margin-bottom: 25px;
  width: 95%;
}
.about-content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px 70px;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .about-content-bottom {
    gap: 30px 30px;
  }
}
.about-content-bottom-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 25px;
}
@media (max-width: 1199.98px) {
  .about-content-bottom-two {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.about-content-bottom-two .rating-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 68%;
}
@media (max-width: 1199.98px) {
  .about-content-bottom-two .rating-wrap {
    width: 100%;
  }
}
.about-content-bottom-two .rating-wrap p {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--bni-heading-color);
}
.about-content-bottom-two .rating-wrap p span {
  font-size: 24px;
  font-weight: 600;
}
.about-content-two > p {
  font-size: 18px;
  margin-bottom: 38px;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .about-content-two > p {
    margin-bottom: 30px;
    width: 100%;
  }
}
.about-content-three {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .about-content-three {
    margin-left: 0;
  }
}
.about-content-three > p {
  margin-bottom: 28px;
  width: 90%;
}
.about-content-four {
  margin-right: 55px;
}
@media (max-width: 991.98px) {
  .about-content-four {
    margin-right: 0;
  }
}
.about-content-four .section-title .title strong {
  font-style: italic;
  font-weight: 400;
}
.about-content-four > p {
  margin-bottom: 0;
}
.about-content-four .about-list-item-two li {
  margin-bottom: 14px;
  font-size: 18px;
}
.about-content-four .bni-btn {
  margin-top: 33px;
}
@media (max-width: 767.98px) {
  .about-content-four .bni-btn {
    margin-top: 23px;
  }
}
.about-content-five > p {
  margin-bottom: 30px;
}
.about-content-five .about-list-item-two {
  margin-bottom: 45px;
}
.about-content-six > p {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1199.98px) {
  .about-content-six > p {
    margin-bottom: 40px;
  }
}
.about-content-seven {
  margin-left: -45px;
}
@media (max-width: 1199.98px) {
  .about-content-seven {
    margin-left: 0;
  }
}
.about-content-seven p {
  margin-bottom: 18px;
}
.about-content-seven p.info-one {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
}
.about-content-seven .about-list-item {
  margin-bottom: 35px;
}
@media (max-width: 1199.98px) {
  .about-content-seven .about-list-item {
    margin-bottom: 25px;
  }
}
.about-content-seven .about-list-item li {
  margin-bottom: 13px;
}
.about-content-seven .about-list-item li:last-child {
  margin-bottom: 0;
}
.about-content-eight .info-one {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bni-theme-secondary);
  line-height: 1.4;
}
.about-content-eight p {
  margin-bottom: 20px;
}
.about-inner-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px 30px;
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .about-inner-wrap {
    flex-wrap: wrap;
  }
}
.about-inner-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 1199.98px) {
  .about-inner-wrap-two {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .about-inner-wrap-two {
    flex-wrap: wrap;
  }
}
.about-inner-wrap-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 35px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .about-inner-wrap-three {
    margin: 22px 0 25px;
  }
}
.about-inner-wrap-four {
  margin-left: -90px;
  margin-right: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px 55px;
}
@media (max-width: 1500px) {
  .about-inner-wrap-four {
    margin-left: -50px;
    margin-right: 40px;
    gap: 30px 40px;
  }
}
@media (max-width: 1199.98px) {
  .about-inner-wrap-four {
    margin-left: -10px;
    margin-right: 20px;
    gap: 30px 25px;
  }
}
@media (max-width: 991.98px) {
  .about-inner-wrap-four {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .about-inner-wrap-four {
    flex-wrap: wrap;
  }
}
.about-inner-wrap-five {
  margin-left: -20px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .about-inner-wrap-five {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.about-inner-wrap-five .circle-wrap-two {
  margin-bottom: 45px;
}
.about-inner-wrap-five img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.about-inner-wrap-six {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px 50px;
  margin-bottom: 60px;
}
@media (max-width: 1199.98px) {
  .about-inner-wrap-six {
    gap: 30px 35px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767.98px) {
  .about-inner-wrap-six {
    flex-wrap: wrap;
  }
}
.about-inner-wrap-seven {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-inner-wrap-eight {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.about-inner-wrap-eight .about-list-item {
  background: var(--bni-color-white-default);
  position: relative;
  z-index: 1;
  padding: 20px 20px 20px 20px;
}
.about-inner-wrap-eight .about-list-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--bni-theme-primary);
}
.about-inner-box {
  position: relative;
}
.about-inner-box::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #E3E3E3;
}
@media (max-width: 767.98px) {
  .about-inner-box::before {
    display: none;
  }
}
.about-inner-box:last-child::before {
  display: none;
}
.about-inner-box .icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-4);
  color: var(--bni-theme-primary);
  border-radius: 8px 18px;
  font-size: 45px;
  margin-bottom: 25px;
}
.about-inner-box .content .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}
.about-inner-box .content p {
  margin-bottom: 0;
}
.about-list-box {
  width: 44.4%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .about-list-box {
    width: 100%;
  }
}
.about-list-box-item {
  background: var(--bni-color-gray-1);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  gap: 17px;
  padding: 29px 24px;
}
@media (max-width: 1199.98px) {
  .about-list-box-item {
    padding: 29px 18px;
    gap: 12px;
  }
}
@media (max-width: 767.98px) {
  .about-list-box-item {
    padding: 29px 24px;
    gap: 17px;
  }
}
.about-list-box-item:last-child {
  margin-bottom: 0;
}
.about-list-box-item .icon {
  font-size: 50px;
  line-height: 0;
  color: var(--bni-theme-primary);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.about-list-box-item .content .title {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .about-list-box-item .content .title br {
    display: none;
  }
}
.about-list-box-item:hover .icon {
  transform: rotateY(180deg);
}
.about-list-box-item-two {
  background: var(--bni-color-white-default);
  border: 1px solid #DFE1ED;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 29px 40px;
  justify-content: space-between;
  gap: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767.98px) {
  .about-list-box-item-two {
    flex-wrap: wrap;
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-list-box-item-two {
    flex-wrap: nowrap;
  }
}
.about-list-box-item-two:last-child {
  margin-bottom: 0;
}
.about-list-box-item-two:hover {
  transform: translateY(-5px);
}
.about-list-box-item-two:hover .left-side-content .icon i {
  transform: rotateY(180deg);
}
.about-list-box-item-two .left-side-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .about-list-box-item-two .left-side-content {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-list-box-item-two .left-side-content {
    flex-wrap: nowrap;
  }
}
.about-list-box-item-two .left-side-content .icon {
  position: relative;
  font-size: 42px;
  color: var(--bni-theme-primary);
  z-index: 1;
}
.about-list-box-item-two .left-side-content .icon::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -8px;
  width: 42px;
  height: 42px;
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  z-index: -1;
}
.about-list-box-item-two .left-side-content .icon i {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.about-list-box-item-two .content .title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.about-list-box-item-two .content p {
  margin-bottom: 0;
  width: 93%;
}
.about-list-box-item-two .right-side-arrow a {
  width: 74px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
}
.about-list-box-item-two .right-side-arrow a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.about-inner-content p {
  margin-bottom: 25px;
}
.about-inner-img {
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
}
.about-inner-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  background: var(--bni-theme-primary);
}
.about-list-item li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.about-list-item li:last-child {
  margin-bottom: 0;
}
.about-list-item li .icon {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1.5px solid var(--bni-theme-primary);
  color: var(--bni-theme-primary);
  transform: translateY(1px);
  flex: 0 0 auto;
}
.about-list-item-two li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 19px;
}
.about-list-item-two li:last-child {
  margin-bottom: 0;
}
.about-list-item-two li .icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  flex: 0 0 auto;
}
.about-list-item-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px 0;
  flex-wrap: wrap;
}
.about-list-item-three li {
  width: 33.33%;
  flex: 0 0 auto;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .about-list-item-three li {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .about-list-item-three li {
    width: 100%;
  }
}
.about-list-item-four {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 0;
  margin-bottom: 35px;
}
.about-list-item-four li {
  width: 50%;
  flex: 0 0 auto;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .about-list-item-four li {
    width: 100%;
  }
}
.about-list-item-white li {
  color: var(--bni-color-gray-2);
}
.about-shape img {
  position: absolute;
  z-index: -1;
  right: 15%;
  bottom: 10%;
}
@media (max-width: 767.98px) {
  .about-shape img {
    display: none;
  }
}
.about-shape-two img {
  position: absolute;
  left: 30px;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about-shape-two img {
    max-width: 240px;
  }
}
@media (max-width: 767.98px) {
  .about-shape-two img {
    display: none;
  }
}
.about-shape-three img {
  position: absolute;
  z-index: -1;
}
.about-shape-three img:nth-child(1) {
  left: 17%;
  top: 17%;
}
@media (max-width: 1800px) {
  .about-shape-three img:nth-child(1) {
    left: 11%;
  }
}
@media (max-width: 1500px) {
  .about-shape-three img:nth-child(1) {
    left: 5%;
  }
}
@media (max-width: 1199.98px) {
  .about-shape-three img:nth-child(1) {
    left: 1%;
    max-width: 200px;
    top: 19%;
  }
}
@media (max-width: 991.98px) {
  .about-shape-three img:nth-child(1) {
    display: none;
  }
}
.about-shape-three img:nth-child(2) {
  right: 10%;
  top: -10px;
}
@media (max-width: 1800px) {
  .about-shape-three img:nth-child(2) {
    right: 4%;
  }
}
@media (max-width: 1500px) {
  .about-shape-three img:nth-child(2) {
    max-width: 200px;
    right: 2%;
  }
}
@media (max-width: 1199.98px) {
  .about-shape-three img:nth-child(2) {
    max-width: 155px;
  }
}

.experience-wrap {
  background: var(--bni-theme-primary);
  -webkit-border-radius: 94px 16px 13px 13px;
  -moz-border-radius: 94px 16px 13px 13px;
  -o-border-radius: 94px 16px 13px 13px;
  -ms-border-radius: 94px 16px 13px 13px;
  border-radius: 94px 16px 13px 13px;
  padding: 38px 43px 246px 43px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .experience-wrap {
    padding: 30px 20px 230px 32px;
    -webkit-border-radius: 70px 16px 13px 13px;
    -moz-border-radius: 70px 16px 13px 13px;
    -o-border-radius: 70px 16px 13px 13px;
    -ms-border-radius: 70px 16px 13px 13px;
    border-radius: 70px 16px 13px 13px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .experience-wrap {
    padding: 30px 20px 260px 32px;
    -webkit-border-radius: 70px 16px 13px 13px;
    -moz-border-radius: 70px 16px 13px 13px;
    -o-border-radius: 70px 16px 13px 13px;
    -ms-border-radius: 70px 16px 13px 13px;
    border-radius: 70px 16px 13px 13px;
  }
}
.experience-wrap .count {
  font-size: 64px;
  margin-bottom: 5px;
  color: var(--bni-color-white-default);
  line-height: 0.8;
}
@media (max-width: 1199.98px) {
  .experience-wrap .count {
    font-size: 50px;
  }
}
.experience-wrap span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--bni-color-white-default);
  text-transform: capitalize;
  line-height: 1.5;
}
.experience-wrap-two {
  text-align: left;
  background: var(--bni-theme-primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0px 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 8px solid var(--bni-color-white-default);
  border-right: 8px solid var(--bni-color-white-default);
  padding: 19px 27px;
}
.experience-wrap-two .count {
  margin-bottom: 0;
  font-size: 64px;
  line-height: 1;
  color: var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .experience-wrap-two .count {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .experience-wrap-two .count {
    font-size: 50px;
  }
}
.experience-wrap-two span {
  color: var(--bni-color-white-default);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .experience-wrap-two span {
    font-size: 18px;
  }
}
.experience-wrap-three {
  background: var(--bni-theme-primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 0 10px 30px 0px;
  position: absolute;
  right: -21.3%;
  top: 29%;
  padding: 26px 40px 26px 80px;
  transform: rotate(-90deg);
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .experience-wrap-three {
    right: -20.4%;
    top: 29%;
    padding: 26px 20px 26px 72px;
  }
}
@media (max-width: 767.98px) {
  .experience-wrap-three {
    display: none;
  }
}
.experience-wrap-three .count {
  color: var(--bni-color-white-default);
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .experience-wrap-three .count {
    font-size: 40px;
  }
}
.experience-wrap-three span {
  color: var(--bni-color-white-default);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .experience-wrap-three span {
    font-size: 15px;
  }
}
.experience-wrap-four {
  background: var(--bni-theme-primary);
  text-align: center;
  padding: 52px 35px;
  position: absolute;
  right: 0;
  bottom: 16px;
  -webkit-border-radius: 40px 0 40px 0;
  -moz-border-radius: 40px 0 40px 0;
  -o-border-radius: 40px 0 40px 0;
  -ms-border-radius: 40px 0 40px 0;
  border-radius: 40px 0 40px 0;
}
@media (max-width: 767.98px) {
  .experience-wrap-four {
    padding: 30px 20px;
  }
}
.experience-wrap-four .count {
  margin-bottom: 6px;
  line-height: 0.8;
  font-size: 64px;
  font-weight: 700;
  color: var(--bni-color-white-default);
}
@media (max-width: 767.98px) {
  .experience-wrap-four .count {
    font-size: 50px;
  }
}
.experience-wrap-four span {
  display: block;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  color: var(--bni-color-white-default);
}
@media (max-width: 767.98px) {
  .experience-wrap-four span {
    font-size: 16px;
  }
}
.experience-wrap-five {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-theme-primary);
  gap: 8px;
  -webkit-border-radius: 10px 15px 0px 15px;
  -moz-border-radius: 10px 15px 0px 15px;
  -o-border-radius: 10px 15px 0px 15px;
  -ms-border-radius: 10px 15px 0px 15px;
  border-radius: 10px 15px 0px 15px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 21px 25px;
}
.experience-wrap-five .count {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
  line-height: 0.8;
  font-size: 50px;
}
.experience-wrap-five span {
  display: block;
  line-height: 1.4;
  color: var(--bni-color-white-default);
  font-weight: 500;
}
.experience-wrap-six {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-theme-primary);
  gap: 12px;
  position: absolute;
  right: -13%;
  top: 35.5%;
  padding: 16px 36px;
  transform: rotate(-90deg);
}
@media (max-width: 1199.98px) {
  .experience-wrap-six {
    right: -16%;
    top: 24.5%;
  }
}
@media (max-width: 767.98px) {
  .experience-wrap-six {
    display: none;
  }
}
.experience-wrap-six .count {
  color: var(--bni-color-white-default);
  font-size: 50px;
  margin-bottom: 0;
  line-height: 1;
}
.experience-wrap-six span {
  color: var(--bni-color-white-default);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.profit-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 10px 30px;
  -moz-border-radius: 10px 30px;
  -o-border-radius: 10px 30px;
  -ms-border-radius: 10px 30px;
  border-radius: 10px 30px;
  border: 1px solid var(--bni-border-3);
  background: var(--bni-color-white-default);
  box-shadow: 11px 11px 0px 0px rgba(0, 0, 0, 0.27);
  gap: 12px;
  padding: 17px 22px;
  position: absolute;
  left: -35px;
  bottom: 14%;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .profit-wrap {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .profit-wrap {
    display: flex;
  }
}
.profit-wrap .content .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.profit-wrap .content span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.profit-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid #E1E1E1;
  background: var(--bni-color-white-default);
  gap: 10px;
  padding: 19px 23px;
  z-index: 2;
}
.profit-wrap-two .icon {
  font-size: 60px;
  line-height: 0;
  color: var(--bni-theme-primary);
}
.profit-wrap-two .content .title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.profit-wrap-two .content span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.profit-wrap-five {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-theme-primary);
  position: absolute;
  gap: 5px;
  padding: 10px 15px;
  right: 0;
  bottom: 6px;
}
.profit-wrap-five .content .count {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
  font-size: 24px;
}
.profit-wrap-five .content span {
  display: block;
  line-height: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--bni-color-white-default);
}

.author-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-wrap .thumb {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}
.author-wrap .thumb img {
  width: 100%;
  border: 1px solid var(--bni-border-4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.author-wrap .content img {
  margin-bottom: 5px;
}
.author-wrap .content .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}
.author-wrap .content .title span {
  font-size: 16px;
  font-weight: 400;
  color: var(--bni-body-color);
}
.author-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  overflow: hidden;
  gap: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .author-wrap-two {
    display: none;
  }
}
.author-wrap-two .thumb {
  width: 77px;
  flex: 0 0 auto;
}
.author-wrap-two .content {
  padding: 0 10px 0 0;
}
.author-wrap-two .content img {
  margin-bottom: 5px;
}
.author-wrap-two .content .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}
.author-wrap-two .content .title span {
  font-size: 16px;
  color: var(--bni-body-color);
  font-weight: 400;
}

.client-box {
  background: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 32px 20px 32px 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  gap: 15px;
}
@media (max-width: 1199.98px) {
  .client-box {
    padding: 30px 20px 30px 25px;
  }
}
.client-box .icon {
  font-size: 50px;
  color: var(--bni-theme-primary);
}
.client-box .content .count {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 0.8;
}
.client-box .content span {
  display: block;
  font-weight: 500;
  line-height: 1;
}
.client-box-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 1px solid #CFD5ED;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  gap: 15px;
  padding: 30px 35px;
}
@media (max-width: 991.98px) {
  .client-box-two {
    padding: 20px 20px;
  }
}
.client-box-two .icon {
  font-size: 50px;
  color: var(--bni-theme-primary);
}
.client-box-two .content .count {
  font-size: 40px;
  margin-bottom: 7px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .client-box-two .content .count {
    font-size: 36px;
  }
}
.client-box-two .content span {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: var(--bni-heading-color);
  text-transform: capitalize;
  line-height: 1;
}

.satisfied-clients {
  background: var(--bni-color-white-default);
  border: 1px solid #DBDDE5;
  padding: 27px 30px;
}
.satisfied-clients span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}

.section-line-wrap {
  top: 0px;
  left: 50%;
  bottom: 0px;
  width: 100%;
  z-index: -2;
  position: absolute;
  transform: translateX(-50%);
  max-width: 1226px;
  margin: auto;
  display: flex;
}
@media (max-width: 1199.98px) {
  .section-line-wrap {
    max-width: 936px;
  }
}
.section-line-wrap .line-item {
  height: 100%;
  position: relative;
  width: 25%;
  flex: 0 0 auto;
}
.section-line-wrap span {
  height: 100%;
  display: block;
  width: 1px;
  background: #EBEBEB;
}

.section-py-130 {
  padding: 130px 0;
}
@media (max-width: 991.98px) {
  .section-py-130 {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .section-py-130 {
    padding: 80px 0;
  }
}

.section-pt-130 {
  padding-top: 130px;
}
@media (max-width: 991.98px) {
  .section-pt-130 {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pt-130 {
    padding-top: 80px;
  }
}

.section-pb-130 {
  padding-bottom: 130px;
}
@media (max-width: 991.98px) {
  .section-pb-130 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pb-130 {
    padding-bottom: 80px;
  }
}

/*=============================
    	06. Services
===============================*/
.services-area-two {
  position: relative;
  z-index: 1;
}
.services-area-two::before {
  content: "";
  position: absolute;
  right: -210px;
  top: 130px;
  width: 418px;
  height: 418px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #55FF8F;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.1;
}
.services-area-two::after {
  content: "";
  position: absolute;
  left: -290px;
  bottom: -140px;
  width: 530px;
  height: 530px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #FF5555;
  opacity: 0.1;
  filter: blur(100px);
  z-index: -1;
}
.services-area-eleven {
  position: relative;
  z-index: 1;
  background: var(--bni-color-gray-2);
}
.services-bg {
  background-size: cover;
  background-position: center;
  background-color: var(--bni-color-gray-2);
  position: relative;
  z-index: 1;
}
.services-bg-two {
  position: relative;
  z-index: 1;
}
.services-bg-three {
  background-size: cover;
  background-position: center;
}
.services-bg-four {
  background-size: cover;
  background-position: center;
  background-color: var(--bni-theme-secondary);
}
.services-bg-five {
  background-size: cover;
  background-position: center;
}
.services-bg-six {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 57.6%;
  z-index: -1;
}
.services-bg-six::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bni-theme-secondary);
  opacity: 0.8;
  z-index: -1;
}
.services-bg-six img {
  position: absolute;
  z-index: -1;
}
.services-bg-six img:nth-child(1) {
  right: 0;
  top: 0;
}
.services-bg-six img:nth-child(2) {
  left: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
}
.services-bg-seven {
  background-position: center;
  background-size: cover;
}
.services-active {
  margin-right: -445px;
}
@media (max-width: 767.98px) {
  .services-active {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-active {
    margin-right: -170px;
  }
}
.services-item {
  background: var(--bni-color-white-default);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-item-shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.3;
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-item-shape-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services-item-shape-two svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.06));
  stroke-width: 1px;
  stroke: #DFE1ED;
}
.services-item:hover {
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}
.services-item:hover .services-item-shape img {
  opacity: 1;
  filter: grayscale(0);
}
.services-item-two {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 50px 45px;
}
@media (max-width: 1199.98px) {
  .services-item-two {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-item-two {
    padding: 40px 40px;
  }
}
.services-item-two:hover .services-icon-two i {
  transform: rotateY(180deg);
}
.services-item-three {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #DFE1ED;
  padding: 40px 25px 38px 40px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767.98px) {
  .services-item-three {
    padding: 40px 25px 38px 30px;
  }
}
.services-item-three:hover {
  transform: translateY(-5px);
}
.services-item-three:hover .services-icon-three {
  transform: rotateY(180deg);
}
.services-item-four {
  position: relative;
  z-index: 1;
  padding: 40px 35px 83px;
}
@media (max-width: 1800px) {
  .services-item-four {
    padding: 40px 35px 75px;
  }
}
@media (max-width: 1199.98px) {
  .services-item-four {
    padding: 30px 25px 75px;
  }
}
.services-item-four .bni-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 19px 21px;
}
@media (max-width: 1800px) {
  .services-item-four .bni-btn {
    padding: 19px 16px;
  }
}
@media (max-width: 1500px) {
  .services-item-four .bni-btn {
    padding: 19px 19px;
  }
}
@media (max-width: 1199.98px) {
  .services-item-four .bni-btn {
    padding: 19px 10px;
    font-size: 13px;
    gap: 5px;
  }
}
@media (max-width: 991.98px) {
  .services-item-four .bni-btn {
    padding: 19px 13px;
    font-size: 15px;
    gap: 8px;
  }
}
.services-item-four:hover .services-icon-four i {
  transform: rotateY(180deg);
}
.services-item-five {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-11);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 17px 50px 17px 20px;
  margin-bottom: 24px;
}
@media (max-width: 1199.98px) {
  .services-item-five {
    padding: 17px 20px 17px 20px;
  }
}
@media (max-width: 991.98px) {
  .services-item-five {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .services-item-five {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-item-five {
    padding: 25px;
  }
}
.services-item-five:last-child {
  margin-bottom: 0;
}
.services-item-six {
  background: var(--bni-color-white-default);
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 40px 40px;
}
@media (max-width: 1500px) {
  .services-item-six {
    padding: 30px 25px;
  }
}
.services-item-six:hover .services-icon-six i {
  transform: rotateY(180deg);
}
.services-item-seven {
  background: var(--bni-color-gray-2);
  padding: 40px 40px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.services-item-seven:hover .services-icon-seven i {
  transform: rotateY(180deg);
}
.services-item-seven .number {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  position: absolute;
  right: 40px;
  top: 40px;
  color: transparent;
  -webkit-text-stroke: 1px #DFDFDF;
  z-index: -1;
}
.services-item-eight {
  border: 1px solid var(--bni-border-14);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 40px 40px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .services-item-eight {
    padding: 30px 30px;
  }
}
.services-item-eight .services-item-top .title {
  font-size: 20px;
}
.services-item-eight:hover .services-icon-four i {
  transform: rotateY(180deg);
}
.services-item-nine {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}
.services-item-ten {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-14);
  -webkit-border-radius: 20px 30px;
  -moz-border-radius: 20px 30px;
  -o-border-radius: 20px 30px;
  -ms-border-radius: 20px 30px;
  border-radius: 20px 30px;
  overflow: hidden;
  padding: 40px 40px;
}
@media (max-width: 1199.98px) {
  .services-item-ten {
    padding: 30px 30px;
  }
}
.services-item-ten .services-icon-two {
  font-size: 50px;
  padding: 10px 0 0 14px;
}
.services-item-ten .services-icon-two::before {
  width: 50px;
  height: 50px;
}
.services-item-ten:hover .services-icon-two i {
  transform: rotateY(180deg);
}
.services-item-eleven {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-white-default);
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 36px 36px;
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .services-item-eleven {
    padding: 20px 20px;
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .services-item-eleven {
    padding: 30px 30px;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .services-item-eleven {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.services-item-eleven:hover .services-icon-eight i {
  transform: rotateY(180deg);
}
.services-item-twelve {
  background: var(--bni-color-white-default);
  height: 100%;
}
.services-item-twelve:hover .services-icon-nine i {
  transform: rotateY(180deg);
}
.services-item-wrap .row > *:nth-child(even) .services-item-three {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .services-item-wrap .row > *:nth-child(even) .services-item-three {
    margin-top: 0;
  }
}
.services-item-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .services-item-wrap-two {
    gap: 25px;
  }
}
@media (max-width: 767.98px) {
  .services-item-wrap-two {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.services-item-wrap-two .nav-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 37%;
  flex: 0 0 auto;
  border: none;
}
@media (max-width: 991.98px) {
  .services-item-wrap-two .nav-tabs {
    width: 42%;
  }
}
@media (max-width: 767.98px) {
  .services-item-wrap-two .nav-tabs {
    width: 100%;
  }
}
.services-item-wrap-two .nav-item:first-child .nav-link {
  -webkit-border-radius: 0 15px 0 0;
  -moz-border-radius: 0 15px 0 0;
  -o-border-radius: 0 15px 0 0;
  -ms-border-radius: 0 15px 0 0;
  border-radius: 0 15px 0 0;
}
.services-item-wrap-two .nav-item:last-child .nav-link {
  -webkit-border-radius: 0 0 15px 0;
  -moz-border-radius: 0 0 15px 0;
  -o-border-radius: 0 0 15px 0;
  -ms-border-radius: 0 0 15px 0;
  border-radius: 0 0 15px 0;
}
.services-item-wrap-two .nav-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0;
  text-align: left;
  gap: 10px;
  border: 1px solid #10113E;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 30px 45px 30px 35px;
  border-left: 4px solid #10113E;
  background: var(--bni-theme-secondary);
  color: #C1C6E3;
}
@media (max-width: 1199.98px) {
  .services-item-wrap-two .nav-link {
    padding: 30px 25px 30px 25px;
  }
}
@media (max-width: 991.98px) {
  .services-item-wrap-two .nav-link {
    padding: 25px 25px 25px 25px;
  }
}
.services-item-wrap-two .nav-link .content-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1199.98px) {
  .services-item-wrap-two .nav-link .content-left {
    gap: 15px;
  }
}
.services-item-wrap-two .nav-link .content-left i {
  font-size: 50px;
}
@media (max-width: 991.98px) {
  .services-item-wrap-two .nav-link .content-left i {
    font-size: 45px;
  }
}
.services-item-wrap-two .nav-link .content-left strong {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .services-item-wrap-two .nav-link .content-left strong {
    font-size: 16px;
  }
}
.services-item-wrap-two .nav-link:hover {
  border-color: #10113E;
}
.services-item-wrap-two .nav-link.active {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
  border-left-color: var(--bni-color-white-default);
  color: var(--bni-color-white-default);
}
.services-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.services-item-top .title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .services-item-top .title {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .services-item-top .title {
    font-size: 22px;
  }
}
.services-item-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (max-width: 1199.98px) {
  .services-item-left {
    gap: 25px;
  }
}
@media (max-width: 991.98px) {
  .services-item-left {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .services-item-left {
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 45px;
  }
}
.services-item-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .services-item-right {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.services-item-right .right-arrow {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
}
.services-item-right .right-arrow:hover {
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
}
.services-thumb {
  position: relative;
}
.services-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.services-thumb-five {
  width: 268px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .services-thumb-five {
    width: 210px;
  }
}
@media (max-width: 991.98px) {
  .services-thumb-five {
    width: 268px;
  }
}
@media (max-width: 767.98px) {
  .services-thumb-five {
    width: 100%;
  }
}
.services-thumb-five img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.services-thumb-six {
  position: relative;
  margin-bottom: 20px;
}
.services-thumb-six img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .services-thumb-six img {
    height: auto;
  }
}
.services-thumb-seven img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .services-thumb-seven img {
    height: 300px;
  }
}
.services-thumb-eight {
  position: relative;
  z-index: 1;
}
.services-thumb-eight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-thumb-eight img {
    height: 250px;
  }
}
.services-thumb-eleven {
  position: relative;
  width: 218px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .services-thumb-eleven {
    width: 190px;
  }
}
@media (max-width: 991.98px) {
  .services-thumb-eleven {
    width: 210px;
  }
}
@media (max-width: 767.98px) {
  .services-thumb-eleven {
    width: 100%;
  }
}
.services-thumb-eleven img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .services-thumb-eleven img {
    height: auto;
  }
}
.services-thumb-thirteen img {
  width: 100%;
  height: 355px;
  object-fit: cover;
}
.services-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  font-size: 40px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  position: absolute;
  left: 37px;
  bottom: 21px;
}
.services-icon-two {
  font-size: 60px;
  color: var(--bni-theme-primary);
  position: relative;
  padding: 10px 0 0 17px;
  z-index: 1;
  margin-bottom: 20px;
  display: inline-block;
}
.services-icon-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #EAF0FF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
}
.services-icon-two i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-icon-three {
  font-size: 50px;
  color: var(--bni-theme-primary);
  display: inline-block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin-bottom: 25px;
}
.services-icon-four {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
  font-size: 40px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  flex: 0 0 auto;
}
.services-icon-four i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-icon-six {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 40px;
  border-radius: 0px 15px 0px 10px;
}
.services-icon-six i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-icon-seven {
  position: relative;
  font-size: 50px;
  color: var(--bni-theme-primary);
  padding: 8px 0 0 14px;
  display: inline-block;
  margin-bottom: 18px;
}
.services-icon-seven::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #EAF0FF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  z-index: -1;
}
.services-icon-seven i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-icon-eight {
  width: 60px;
  height: 60px;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  border-radius: 0px 10px 10px 0px;
  font-size: 36px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.services-icon-eight i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-icon-nine {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  font-size: 30px;
  position: absolute;
  left: 34px;
  top: 0;
}
.services-icon-nine i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-content {
  padding: 25px 40px 37px;
}
@media (max-width: 1199.98px) {
  .services-content {
    padding: 25px 20px 25px;
  }
}
.services-content .title {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 600;
}
.services-content p {
  margin-bottom: 25px;
}
.services-content-two .title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}
.services-content-two p {
  margin-bottom: 20px;
}
.services-content-three .title {
  margin-bottom: 12px;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .services-content-three .title br {
    display: none;
  }
}
.services-content-three p {
  margin-bottom: 0;
}
.services-content-four p {
  margin-bottom: 0;
}
.services-content-five {
  position: relative;
  z-index: 1;
}
.services-content-five .title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .services-content-five .title {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  .services-content-five .title {
    font-size: 24px;
  }
}
.services-content-five .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.services-content-five .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.services-content-five .number {
  font-size: 130px;
  font-weight: 300;
  line-height: 0.7;
  margin-bottom: 0;
  color: #F5F5F5;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199.98px) {
  .services-content-five .number {
    font-size: 110px;
  }
}
.services-content-six .title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}
.services-content-six p {
  margin-bottom: 25px;
}
.services-content-six .bni-btn {
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
}
.services-content-six .bni-btn::before {
  background: var(--bni-theme-primary);
}
.services-content-six .bni-btn:hover {
  color: var(--bni-color-white-default);
}
.services-content-seven .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.services-content-seven .about-list-item {
  margin-bottom: 30px;
}
.services-content-seven .about-list-item li {
  margin-bottom: 12px;
  font-weight: 400;
}
.services-content-seven .about-list-item li:last-child {
  margin-bottom: 0;
}
.services-content-eight p {
  margin-bottom: 22px;
}
.services-content-nine {
  position: relative;
  z-index: 1;
  padding: 35px 70px 26px 35px;
}
@media (max-width: 991.98px) {
  .services-content-nine {
    padding: 25px 60px 26px 25px;
  }
}
.services-content-nine .title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .services-content-nine .title {
    font-size: 22px;
  }
}
.services-content-nine p {
  margin-bottom: 0;
}
.services-content-nine .bni-btn {
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
.services-content-nine .bni-btn:hover {
  background: var(--bni-theme-secondary);
}
.services-content-ten .title {
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
}
.services-content-ten p {
  margin-bottom: 20px;
}
.services-content-ten .bni-btn {
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
}
.services-content-ten .bni-btn:hover {
  background: var(--bni-color-gray-1);
  color: var(--bni-color-white-default);
}
.services-content-ten .bni-btn::before {
  background: var(--bni-theme-primary);
}
.services-content-eleven .title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .services-content-eleven .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .services-content-eleven .title {
    font-size: 22px;
  }
}
.services-content-eleven p {
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .services-content-eleven p {
    margin-bottom: 15px;
  }
}
.services-content-twelve {
  border: 1px solid #ededed;
  border-top: none;
  padding: 25px 30px 25px;
  box-shadow: 0 0 15px 0 #f0f0f0;
}
.services-content-twelve .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}
.services-content-twelve p {
  margin-bottom: 0;
}
.services-content-thirteen {
  background: var(--bni-color-white-default);
  border: 1px solid #D6D6D6;
  border-top: none;
  padding: 16px 16px 16px 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.services-content-thirteen .content-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.services-content-thirteen .content-left .icon {
  font-size: 50px;
  color: var(--bni-theme-primary);
}
.services-content-thirteen .content-left .title {
  margin-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
}
.services-content-thirteen .arrow {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-4);
  border-radius: 0;
  border: none;
  color: var(--bni-theme-primary);
  flex: 0 0 auto;
  padding: 0;
}
.services-content-thirteen .arrow:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.services-bottom-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.services-bottom-content p a {
  font-size: 15px;
  font-weight: 600;
  margin-left: 3px;
  position: relative;
}
.services-bottom-content p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.services-bottom-content p a:hover {
  color: var(--bni-theme-secondary);
}
.services-bottom-content p a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.services-bottom-content-two p a {
  color: var(--bni-body-color);
}
.services-bottom-content-white p {
  color: var(--bni-color-white-default);
}
.services-bottom-content-white p a {
  color: var(--bni-color-white-default);
}
.services-bottom-content-white p a:hover {
  color: var(--bni-color-white-default);
}
.services-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
}
.services-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--bni-color-white-default);
  margin: 0 !important;
  border: 1px solid #CECFD7;
  opacity: 1;
  position: relative;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
}
.services-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}
.services-details-thumb {
  margin-bottom: 40px;
}
.services-details-thumb img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}
.services-details-thumb-two {
  margin-bottom: 40px;
}
.services-details-thumb-two img {
  width: 100%;
  max-height: 500px;
  min-height: 350px;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.services-details-thumb-three {
  margin-bottom: 30px;
}
.services-details-thumb-three img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.services-details-thumb-four img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  min-height: 350px;
  object-fit: cover;
}
.services-details-content .title-two {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .services-details-content .title-two {
    font-size: 26px;
  }
}
.services-details-content > p {
  margin-bottom: 15px;
}
.services-details-content-top .title {
  margin-bottom: 15px;
  font-size: 36px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .services-details-content-top .title {
    font-size: 34px;
  }
}
@media (max-width: 767.98px) {
  .services-details-content-top .title {
    font-size: 30px;
  }
}
.services-details-content-top > p {
  margin-bottom: 25px;
}
.services-details-content-bottom {
  text-align: center;
  margin-top: 50px;
}
.services-details-content-bottom .title {
  margin-bottom: 40px;
  font-size: 36px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .services-details-content-bottom .title {
    font-size: 34px;
  }
}
@media (max-width: 767.98px) {
  .services-details-content-bottom .title {
    font-size: 30px;
  }
}
.services-details-content-bottom .title span {
  display: block;
  font-weight: 500;
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .services-details-content-bottom .title span {
    font-size: 26px;
  }
}
.services-details-content-bottom-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .services-details-content-bottom-two {
    flex-wrap: wrap;
  }
}
.services-details-content-bottom-two .thumb {
  width: 270px;
  flex: 0 0 auto;
  height: 100%;
}
@media (max-width: 767.98px) {
  .services-details-content-bottom-two .thumb {
    width: 100%;
  }
}
.services-details-content-bottom-two .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.services-details-content-bottom-two .content p:last-child {
  margin-bottom: 0;
}
.services-details-content-two {
  padding: 0 105px;
}
@media (max-width: 1199.98px) {
  .services-details-content-two {
    padding: 0 60px;
  }
}
@media (max-width: 991.98px) {
  .services-details-content-two {
    padding: 0 0;
  }
}
.services-details-content-two p {
  margin-bottom: 0;
}
.services-details-content-three .title {
  margin-bottom: 20px;
  font-size: 34px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .services-details-content-three .title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .services-details-content-three .title {
    font-size: 30px;
  }
}
@media (max-width: 1199.98px) {
  .services-details-content-three .title br {
    display: none;
  }
}
.services-details-content-three > p {
  margin-bottom: 15px;
}
.services-details-content-three > p:last-child {
  margin-bottom: 0;
}
.services-details-content-three .services-details-inner-images {
  margin-top: 30px;
}
.services-details-content-four {
  margin-bottom: 60px;
}
@media (max-width: 1199.98px) {
  .services-details-content-four {
    margin-bottom: 40px;
  }
}
.services-details-content-four .title {
  margin-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .services-details-content-four .title {
    font-size: 36px;
  }
}
.services-details-content-four .title span {
  font-weight: 400;
}
.services-details-content-four p {
  margin-bottom: 0;
  width: 88%;
}
@media (max-width: 1199.98px) {
  .services-details-content-four p {
    width: 100%;
  }
}
.services-details-quality {
  margin-top: 40px;
  margin-bottom: 50px;
}
.services-details-quality > p {
  margin-bottom: 30px;
}
.services-details-quality-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .services-details-quality-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.services-details-quality-inner .about-list-item-two {
  flex-grow: 1;
}
.services-details-client-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .services-details-client-wrap {
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 0;
  }
}
@media (max-width: 991.98px) {
  .services-details-client-wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    flex: 0 1;
  }
}
@media (max-width: 767.98px) {
  .services-details-client-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: auto;
  }
}
.services-details-inner-images {
  margin-bottom: 35px;
}
.services-details-inner-images img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.services-details-inner-images .img-two {
  position: relative;
}
@media (max-width: 767.98px) {
  .services-details-inner-images .img-two {
    margin-top: 25px;
  }
}
.services-details-inner-images .img-two .play-btn-two {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
}
.services-details-inner-images .img-two .play-btn-two svg {
  width: 18px;
  height: auto;
}
.services-details-benefit {
  margin-bottom: 30px;
}
.services-details-benefit img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.services-sidebar {
  margin-right: 26px;
}
@media (max-width: 1199.98px) {
  .services-sidebar {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .services-sidebar {
    margin-top: 80px;
  }
}
.services-sidebar-two {
  margin-left: 26px;
}
@media (max-width: 1199.98px) {
  .services-sidebar-two {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .services-sidebar-two {
    margin-top: 80px;
  }
}
.services-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.services-shape-wrap img:nth-child(1) {
  right: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .services-shape-wrap img:nth-child(1) {
    max-width: 330px;
  }
}
@media (max-width: 991.98px) {
  .services-shape-wrap img:nth-child(1) {
    max-width: 250px;
  }
}
.services-shape-wrap img:nth-child(2) {
  left: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .services-shape-wrap img:nth-child(2) {
    max-width: 330px;
  }
}
@media (max-width: 991.98px) {
  .services-shape-wrap img:nth-child(2) {
    max-width: 250px;
  }
}
.services-shape-wrap-two img {
  position: absolute;
  z-index: -1;
  left: 90px;
  top: 103px;
}
@media (max-width: 1500px) {
  .services-shape-wrap-two img {
    left: 70px;
    top: 30px;
  }
}
@media (max-width: 991.98px) {
  .services-shape-wrap-two img {
    display: none;
  }
}
.services-shape-wrap-three img {
  position: absolute;
  z-index: -1;
}
.services-shape-wrap-three img:nth-child(1) {
  right: 7%;
  top: 10%;
}
@media (max-width: 1800px) {
  .services-shape-wrap-three img:nth-child(1) {
    right: 3%;
    top: 5%;
    max-width: 120px;
  }
}
@media (max-width: 1500px) {
  .services-shape-wrap-three img:nth-child(1) {
    top: 3%;
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .services-shape-wrap-three img:nth-child(1) {
    display: none;
  }
}
.services-shape-wrap-three img:nth-child(2) {
  left: 15%;
  bottom: 13%;
}
@media (max-width: 1800px) {
  .services-shape-wrap-three img:nth-child(2) {
    left: 9%;
  }
}
@media (max-width: 1500px) {
  .services-shape-wrap-three img:nth-child(2) {
    left: 2%;
  }
}
@media (max-width: 991.98px) {
  .services-shape-wrap-three img:nth-child(2) {
    bottom: 8%;
  }
}
@media (max-width: 767.98px) {
  .services-shape-wrap-three img:nth-child(2) {
    bottom: 5%;
  }
}

.sidebar-widget {
  margin-bottom: 40px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 15px;
}
.sidebar-widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 5px;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
}
.sidebar-cat-list .list-wrap li {
  margin-bottom: 9px;
}
.sidebar-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.sidebar-cat-list .list-wrap li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #E8EBF5;
  background: var(--bni-color-gray-2);
  color: var(--bni-body-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 8px 9px 8px 30px;
}
.sidebar-cat-list .list-wrap li a span {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
  flex: 0 0 auto;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  margin-left: auto;
  color: var(--bni-body-color);
}
.sidebar-cat-list .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.sidebar-cat-list .list-wrap li a:hover span {
  color: var(--bni-theme-primary);
}
.sidebar-contact {
  background: #080A5B;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.sidebar-contact .title {
  margin-bottom: 10px;
  color: var(--bni-color-white-default);
  font-size: 22px;
}
.sidebar-contact p {
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bni-color-gray-4);
}
.sidebar-contact .shape img {
  position: absolute;
  z-index: -1;
}
.sidebar-contact .shape img:nth-child(1) {
  left: -31px;
  top: -35px;
}
.sidebar-contact .shape img:nth-child(2) {
  right: 10px;
  bottom: -25px;
}
.sidebar-brochure > p {
  margin-bottom: 20px;
}
.sidebar-brochure a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #E8EBF5;
  background: var(--bni-color-gray-2);
  padding: 9px 22px 9px 9px;
  gap: 16px;
  margin-bottom: 8px;
}
.sidebar-brochure a:last-child {
  margin-bottom: 0;
}
.sidebar-brochure a .icon {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.sidebar-brochure a .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.sidebar-brochure a .content strong {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--bni-body-color);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-brochure a .content svg {
  color: var(--bni-border-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-brochure a:hover .content strong {
  color: var(--bni-theme-primary);
}
.sidebar-brochure a:hover .content svg {
  color: var(--bni-theme-primary);
}

.col-70 {
  width: 70.7%;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .col-70 {
    width: 65%;
  }
}
@media (max-width: 991.98px) {
  .col-70 {
    width: 100%;
  }
}

.col-30 {
  width: 29.3%;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .col-30 {
    width: 35%;
  }
}
@media (max-width: 991.98px) {
  .col-30 {
    width: 100%;
  }
}

.shine-animate-link {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shine-animate-link::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  pointer-events: none;
}
.shine-animate-item:hover .shine-animate-link::before {
  -webkit-animation: hoverShine 1.2s;
  animation: hoverShine 1.2s;
}

.services-active-three {
  margin-right: -410px;
}
@media (max-width: 1500px) {
  .services-active-three {
    margin-right: -350px;
  }
}
@media (max-width: 1199.98px) {
  .services-active-three {
    margin-right: -250px;
  }
}
@media (max-width: 991.98px) {
  .services-active-three {
    margin-right: -120px;
  }
}
@media (max-width: 767.98px) {
  .services-active-three {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-active-three {
    margin-right: -120px;
  }
}

/*=============================
    	07. CTA
===============================*/
.cta-area {
  background: var(--bni-theme-secondary);
  padding: 82px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-area-two {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-area-three {
  position: relative;
  z-index: 2;
  margin-top: -85px;
}
.cta-area-four {
  background: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
  padding: 97px 0;
}
@media (max-width: 1199.98px) {
  .cta-area-four {
    padding: 80px 0;
  }
}
@media (max-width: 991.98px) {
  .cta-area-four {
    padding: 60px 0;
  }
}
.cta-area-five {
  background: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
  padding: 49px 0;
}
.cta-area-six {
  background: var(--bni-theme-secondary);
}
.cta-area-seven {
  background: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
  padding: 78px 0;
}
@media (max-width: 1199.98px) {
  .cta-area-seven {
    padding: 55px 0;
  }
}
@media (max-width: 991.98px) {
  .cta-area-seven {
    padding: 40px 0;
  }
}
.cta-area-eight {
  background: var(--bni-color-gray-1);
}
.cta-inner-wrap {
  background: var(--bni-theme-secondary);
  padding: 63px 0 63px 75px;
  z-index: 1;
  position: relative;
}
@media (max-width: 1199.98px) {
  .cta-inner-wrap {
    padding: 63px 0 63px 40px;
  }
}
.cta-inner-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 500%;
  height: 100%;
  background: var(--bni-theme-secondary);
  z-index: -1;
}
.cta-inner-wrap-two {
  background: var(--bni-theme-primary);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 65px 65px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .cta-inner-wrap-two {
    padding: 65px 30px;
  }
}
@media (max-width: 991.98px) {
  .cta-inner-wrap-two {
    padding: 45px 30px;
    text-align: center;
  }
}
.cta-inner-wrap-three {
  -webkit-border-radius: 10px 0px 0px 50px;
  -moz-border-radius: 10px 0px 0px 50px;
  -o-border-radius: 10px 0px 0px 50px;
  -ms-border-radius: 10px 0px 0px 50px;
  border-radius: 10px 0px 0px 50px;
}
.cta-inner-wrap-three::before {
  -webkit-border-radius: 10px 0px 0px 50px;
  -moz-border-radius: 10px 0px 0px 50px;
  -o-border-radius: 10px 0px 0px 50px;
  -ms-border-radius: 10px 0px 0px 50px;
  border-radius: 10px 0px 0px 50px;
}
.cta-inner-wrap-four {
  position: relative;
  z-index: 2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.cta-inner-wrap-five {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 63px 75px 63px 75px;
}
@media (max-width: 1199.98px) {
  .cta-inner-wrap-five {
    padding: 63px 50px 63px 50px;
  }
}
@media (max-width: 767.98px) {
  .cta-inner-wrap-five {
    padding: 40px 30px;
  }
}
.cta-inner-wrap-five::before {
  display: none;
}
.cta-wrap {
  background: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
  padding: 72px 60px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .cta-wrap {
    padding: 50px 35px;
  }
}
@media (max-width: 991.98px) {
  .cta-wrap {
    padding: 30px 35px;
    text-align: center;
  }
}
.cta-wrap .shape img {
  position: absolute;
  z-index: -1;
}
.cta-wrap .shape img:nth-child(1) {
  left: 0;
  bottom: 0;
}
.cta-wrap .shape img:nth-child(2) {
  right: 0;
  top: 0;
}
@media (max-width: 991.98px) {
  .cta-content {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .cta-content-two {
    text-align: center;
  }
}
.cta-content-two .title {
  color: var(--bni-color-white-default);
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.cta-content-two p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--bni-color-white-default);
}
@media (max-width: 991.98px) {
  .cta-content-three {
    margin-bottom: 30px;
  }
}
.cta-content-three .title {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .cta-content-three .title {
    width: 100%;
  }
}
.cta-content-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}
@media (max-width: 1199.98px) {
  .cta-content-right {
    gap: 25px;
  }
}
@media (max-width: 991.98px) {
  .cta-content-right {
    justify-content: center;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .cta-content-right {
    flex-wrap: wrap;
  }
}
.cta-content-right-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px 50px;
}
@media (max-width: 1199.98px) {
  .cta-content-right-two {
    gap: 20px 30px;
  }
}
@media (max-width: 991.98px) {
  .cta-content-right-two {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .cta-content-right-two {
    flex-wrap: wrap;
  }
}
.cta-content-right-three {
  gap: 15px;
}
@media (max-width: 991.98px) {
  .cta-content-four {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .cta-content-five {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cta-content-five .title {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
  text-transform: capitalize;
  font-size: 30px;
}
@media (max-width: 991.98px) {
  .cta-content-six {
    margin-bottom: 30px;
  }
}
.cta-content-six span {
  display: block;
  color: var(--bni-color-white-default);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-content-six .title {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
  font-size: 30px;
}
@media (max-width: 991.98px) {
  .cta-content-seven {
    text-align: center;
  }
}
.cta-content-seven .title {
  font-size: 38px;
}
@media (max-width: 1199.98px) {
  .cta-content-seven .title {
    font-size: 32px;
  }
}
.cta-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-contact .icon {
  font-size: 50px;
  color: var(--bni-color-white-default);
}
.cta-contact .content span {
  display: block;
  line-height: 1;
  font-size: 16px;
  color: var(--bni-color-white-default);
  margin-bottom: 10px;
}
.cta-contact .content a {
  display: block;
  color: var(--bni-color-white-default);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .cta-contact .content a {
    font-size: 24px;
  }
}
.cta-btn {
  text-align: right;
}
@media (max-width: 991.98px) {
  .cta-btn {
    text-align: center;
    margin-top: 30px;
  }
}
.cta-btn-two {
  text-align: right;
}
@media (max-width: 991.98px) {
  .cta-btn-two {
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .cta-btn-three {
    text-align: center !important;
  }
}
.cta-btn-four {
  text-align: right;
}
@media (max-width: 991.98px) {
  .cta-btn-four {
    text-align: center;
  }
}
.cta-btn-four .bni-btn {
  border: 1px solid var(--bni-color-white-default);
}
.cta-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.cta-shape-wrap img:nth-child(1) {
  left: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
}
.cta-shape-wrap img:nth-child(2) {
  right: 16%;
  bottom: 0;
}
.cta-shape-wrap img:nth-child(3) {
  right: 15%;
  top: 0;
}
.cta-shape-wrap-two img {
  position: absolute;
  z-index: -1;
}
.cta-shape-wrap-two img:nth-child(1) {
  left: 14%;
  top: 0;
}
@media (max-width: 1500px) {
  .cta-shape-wrap-two img:nth-child(1) {
    left: 1%;
  }
}
.cta-shape-wrap-two img:nth-child(2) {
  right: 7%;
  top: 0;
}
@media (max-width: 1500px) {
  .cta-shape-wrap-two img:nth-child(2) {
    right: -7%;
  }
}
@media (max-width: 991.98px) {
  .cta-shape-wrap-two img:nth-child(2) {
    display: none;
  }
}
.cta-shape-two img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: luminosity;
}
@media (max-width: 767.98px) {
  .cta-shape-two img {
    display: none;
  }
}
.cta-shape-three img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: luminosity;
}
@media (max-width: 1199.98px) {
  .cta-shape-four img {
    display: none;
  }
}
.cta-shape-five img {
  position: absolute;
  right: 35%;
  bottom: -10px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .cta-shape-five img {
    right: 28%;
  }
}
@media (max-width: 1199.98px) {
  .cta-shape-five img {
    max-width: 160px;
  }
}
@media (max-width: 991.98px) {
  .cta-shape-five img {
    max-width: 120px;
    right: 8%;
  }
}
@media (max-width: 767.98px) {
  .cta-shape-five img {
    max-width: 100px;
    right: 4%;
  }
}

/*=============================
    	08. History
===============================*/
.history-area-two {
  position: relative;
  z-index: 1;
}
.history-area-two::before {
  content: "";
  position: absolute;
  left: -300px;
  top: -200px;
  width: 560px;
  height: 560px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #FF7438;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .history-area-two::before {
    top: 0;
  }
}
.history-area-four {
  background: var(--bni-color-gray-2);
}
.history-area-five {
  position: relative;
  z-index: 1;
}
.history-bg-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  height: 100%;
  z-index: -1;
  border-radius: 0px 60px 20px 0px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1800px) {
  .history-bg-two {
    width: 89%;
  }
}
@media (max-width: 1500px) {
  .history-bg-two {
    width: 96%;
  }
}
@media (max-width: 1199.98px) {
  .history-bg-two {
    width: 98%;
  }
}
.history-img-wrap {
  position: relative;
  z-index: 1;
  text-align: right;
  padding-bottom: 50px;
  margin-right: -45px;
}
@media (max-width: 1199.98px) {
  .history-img-wrap {
    padding-left: 90px;
  }
}
@media (max-width: 991.98px) {
  .history-img-wrap {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap {
    padding: 0;
    text-align: center;
  }
}
.history-img-wrap > img:nth-child(1) {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.history-img-wrap > img:nth-child(2) {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 9px solid var(--bni-color-white-default);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .history-img-wrap > img:nth-child(2) {
    display: none;
  }
}
.history-img-wrap > img.shape {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .history-img-wrap > img.shape {
    max-width: 80px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap > img.shape {
    display: none;
  }
}
.history-img-wrap-two {
  position: relative;
  text-align: right;
  margin: 0 10px 0 40px;
  padding: 70px 0 70px 80px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-two {
    margin: 0 30px 0 0;
    padding: 70px 0 70px 50px;
  }
}
@media (max-width: 991.98px) {
  .history-img-wrap-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-two {
    padding: 30px 0 30px 20px;
    margin-right: 0;
  }
}
.history-img-wrap-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 20px 20px 20px 107px;
  -moz-border-radius: 20px 20px 20px 107px;
  -o-border-radius: 20px 20px 20px 107px;
  -ms-border-radius: 20px 20px 20px 107px;
  border-radius: 20px 20px 20px 107px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .history-img-wrap-two::before {
    -webkit-border-radius: 20px 20px 20px 50px;
    -moz-border-radius: 20px 20px 20px 50px;
    -o-border-radius: 20px 20px 20px 50px;
    -ms-border-radius: 20px 20px 20px 50px;
    border-radius: 20px 20px 20px 50px;
  }
}
.history-img-wrap-two > img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 767.98px) {
  .history-img-wrap-two > img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
}
.history-img-wrap-two .shape img {
  position: absolute;
}
.history-img-wrap-two .shape img:nth-child(1) {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  right: -10%;
  bottom: 8%;
  border: 1px solid #D0D4E7;
}
@media (max-width: 767.98px) {
  .history-img-wrap-two .shape img:nth-child(1) {
    max-width: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .history-img-wrap-two .shape img:nth-child(1) {
    max-width: 220px;
  }
}
.history-img-wrap-two .shape img:nth-child(2) {
  right: -12%;
  top: 0%;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-two .shape img:nth-child(2) {
    right: -11%;
    top: 5%;
    max-width: 80px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-two .shape img:nth-child(2) {
    display: none;
  }
}
.history-img-wrap-three {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .history-img-wrap-three {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-three {
    justify-content: center;
  }
}
.history-img-wrap-three::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 225px;
  background: var(--bni-theme-primary);
  z-index: -2;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .history-img-wrap-three::before {
    display: none;
  }
}
.history-img-wrap-three img:nth-child(1) {
  border-radius: 20px;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-three img:nth-child(1) {
    max-width: 350px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-three img:nth-child(1) {
    max-width: 100%;
  }
}
.history-img-wrap-three img:nth-child(2) {
  border-radius: 20px;
  margin-left: -52px;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-three img:nth-child(2) {
    max-width: 250px;
    margin-left: -20px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-three img:nth-child(2) {
    display: none;
  }
}
.history-img-wrap-three img:nth-child(3) {
  border-radius: 15px;
  border: 8px solid var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .history-img-wrap-three img:nth-child(3) {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .history-img-wrap-three img:nth-child(3) {
    display: none;
  }
}
.history-img-wrap-three img.shape {
  position: absolute;
  z-index: -1;
  right: 35%;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .history-img-wrap-three img.shape {
    right: 2%;
    bottom: -30px;
  }
}
.history-img-wrap-four {
  position: relative;
  z-index: 1;
  margin-right: 42px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-four {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .history-img-wrap-four {
    margin-bottom: 50px;
  }
}
.history-img-wrap-four > img {
  width: 100%;
}
.history-img-wrap-four > img.shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.history-img-wrap-five {
  margin-right: 60px;
  padding-right: 26px;
  padding-bottom: 23px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .history-img-wrap-five {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .history-img-wrap-five {
    margin-bottom: 50px;
  }
}
.history-img-wrap-five::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 290px;
  height: 280px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background: var(--bni-theme-primary);
  z-index: -1;
}
.history-img-wrap-five img {
  -webkit-border-radius: 30px 50px;
  -moz-border-radius: 30px 50px;
  -o-border-radius: 30px 50px;
  -ms-border-radius: 30px 50px;
  border-radius: 30px 50px;
}
@media (max-width: 991.98px) {
  .history-img-wrap-six {
    margin-bottom: 50px;
    text-align: center;
  }
}
.history-img-wrap-six img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.history-content {
  margin-left: 75px;
}
@media (max-width: 1500px) {
  .history-content {
    margin-left: 55px;
  }
}
@media (max-width: 1199.98px) {
  .history-content {
    margin-left: 48px;
  }
}
@media (max-width: 991.98px) {
  .history-content {
    margin-left: 0;
  }
}
.history-content p {
  margin-bottom: 35px;
}
.history-content-two {
  margin-right: 75px;
}
@media (max-width: 1199.98px) {
  .history-content-two {
    margin-right: 0;
  }
}
.history-content-two > p {
  font-size: 18px;
  margin-bottom: 35px;
}
.history-content-three {
  margin-left: 35px;
}
@media (max-width: 1199.98px) {
  .history-content-three {
    margin-left: 0;
  }
}
.history-content-three > p {
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .history-content-three > p {
    width: 100%;
  }
}
.history-content-three > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.history-content-four p {
  margin-bottom: 25px;
}
.history-content-five {
  width: 90%;
}
@media (max-width: 1199.98px) {
  .history-content-five {
    width: 100%;
  }
}
.history-content-five p {
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .history-content-five p {
    width: 100%;
  }
}
.history-content-five p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.history-content-five .about-inner-wrap-three {
  margin: 0 0 25px;
}
.history-content-five .about-list-item-two li {
  margin-bottom: 14px;
}
.history-content-five .about-list-item-two li:last-child {
  margin-bottom: 0;
}
.history-content-five .profit-wrap-two {
  padding: 24px 23px;
  -webkit-border-radius: 10px 20px;
  -moz-border-radius: 10px 20px;
  -o-border-radius: 10px 20px;
  -ms-border-radius: 10px 20px;
  border-radius: 10px 20px;
}
.history-content-six .section-title {
  width: 78%;
}
@media (max-width: 1199.98px) {
  .history-content-six .section-title {
    width: 100%;
  }
}
.history-content-six .info-one {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bni-theme-secondary);
}
.history-content-six .info-two {
  margin-bottom: 26px;
}
.history-content-six .about-list-item li {
  margin-bottom: 15px;
}
.history-content-six .about-list-item li:last-child {
  margin-bottom: 0;
}
.history-content-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 60px;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .history-content-inner {
    gap: 20px 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .history-content-inner {
    flex-wrap: wrap;
  }
}
.history-content-inner-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.history-content-inner-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .history-content-inner-three {
    gap: 20px;
  }
}
.history-content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 70px;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .history-content-bottom {
    gap: 20px 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .history-content-bottom {
    flex-wrap: wrap;
  }
}
.history-inner-img {
  width: 260px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 72px;
}
@media (max-width: 767.98px) {
  .history-inner-img {
    display: none;
  }
}
.history-inner-img::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 292px;
  background: var(--bni-theme-primary);
  z-index: -1;
  -webkit-border-radius: 20px 15px 15px 0px;
  -moz-border-radius: 20px 15px 15px 0px;
  -o-border-radius: 20px 15px 15px 0px;
  -ms-border-radius: 20px 15px 15px 0px;
  border-radius: 20px 15px 15px 0px;
}
.history-inner-img img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.history-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-white-default);
  position: absolute;
  left: 17%;
  bottom: 50px;
  gap: 12px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 30px 25px;
}
@media (max-width: 1199.98px) {
  .history-rating {
    left: 9%;
  }
}
@media (max-width: 767.98px) {
  .history-rating {
    left: 18%;
    display: block;
    text-align: center;
    bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .history-rating {
    left: 14%;
    display: flex;
    text-align: left;
    bottom: 40px;
  }
}
.history-rating span {
  font-size: 16px;
  font-weight: 500;
  color: var(--bni-theme-secondary);
  text-transform: capitalize;
  display: block;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .history-rating span {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .history-rating span {
    margin-top: 0;
  }
}
.history-rating span strong {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
.history-play-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.3;
  color: var(--bni-heading-color);
  position: relative;
}
.history-play-btn::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 45px;
  background: #CDCED8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
@media (max-width: 1199.98px) {
  .history-play-btn::before {
    left: -15px;
  }
}
.history-play-btn .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  flex: 0 0 auto;
}
.history-play-btn .icon svg {
  width: 15px;
  height: auto;
}

.satisfied-clients-wrap {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  left: 37%;
  bottom: 20%;
  text-align: left;
  padding: 15px 25px;
}
.satisfied-clients-wrap span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.progress-wrap {
  overflow: hidden;
}
.progress-item {
  margin-bottom: 25px;
}
.progress-item:last-child {
  margin-bottom: 0;
}
.progress-item .title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}
.progress-item .progress {
  height: 8px;
  background-color: var(--bni-color-gray-3);
  border-radius: 8px;
  overflow: inherit;
}
.progress-item .progress-bar {
  background: var(--bni-color-gradient);
  position: relative;
  overflow: inherit;
  border-radius: 8px;
}
.progress-item .progress-bar span {
  display: block;
  position: absolute;
  right: 3px;
  bottom: 20px;
  color: var(--bni-color-white-default);
  line-height: 1;
  font-weight: 600;
  font-size: 11px;
  border-radius: 2px;
  background: var(--bni-theme-secondary);
  padding: 4px 5px;
}
.progress-item .progress-bar span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--bni-theme-secondary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.progress-item-two .title {
  color: var(--bni-color-white-default);
}
.progress-item-two .progress-bar span {
  color: var(--bni-heading-color);
  background: var(--bni-color-white-default);
}
.progress-item-two .progress-bar span::before {
  background: var(--bni-color-white-default);
}

.planning-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-white-default);
  border: 1px solid #DEE0EB;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  gap: 20px;
  padding: 22px 40px 22px 20px;
}
@media (max-width: 1199.98px) {
  .planning-box {
    padding: 22px 15px 22px 15px;
  }
}
.planning-box .icon {
  font-size: 45px;
  color: var(--bni-theme-primary);
}
.planning-box .icon i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.planning-box .content .title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}
.planning-box:hover .icon i {
  transform: rotateY(180deg);
}
.planning-box-two {
  padding: 28px 30px 28px 30px;
}
.planning-box-two .title {
  line-height: 1.4;
}

/*=============================
    	09. Counter
===============================*/
.counter-area {
  position: relative;
  z-index: 2;
}
.counter-area-two {
  position: relative;
  z-index: 1;
}
.counter-area-two::before {
  content: "";
  position: absolute;
  right: 30%;
  top: -50px;
  width: 400px;
  height: 400px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #7838FF;
  filter: blur(200px);
  opacity: 0.1;
  z-index: -1;
}
.counter-area-four {
  position: relative;
  z-index: 1;
  background: var(--bni-color-gray-2);
  padding: 300px 0 130px;
  overflow: hidden;
  margin-top: -210px;
}
@media (max-width: 767.98px) {
  .counter-area-four {
    padding: 300px 0 100px;
  }
}
.counter-area-four::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 285px;
  height: 285px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #DFD2FB;
  filter: blur(150px);
  left: -116px;
  z-index: -1;
}
.counter-area-four::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 325px;
  height: 325px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #C3CEFA;
  filter: blur(150px);
  right: -154px;
  z-index: -1;
}
.counter-area-five {
  padding-top: 110px;
}
@media (max-width: 767.98px) {
  .counter-area-five {
    padding-top: 80px;
  }
}
.counter-area-six {
  background: var(--bni-color-gray-1);
}
.counter-area-seven {
  background: var(--bni-theme-secondary);
  padding: 295px 0 130px;
  margin-top: -155px;
}
.counter-area-eight {
  background: var(--bni-color-gray-2);
}
.counter-area-nine {
  background: var(--bni-color-gray-2);
}
.counter-wrap {
  background: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
  padding: 80px 30px 45px;
}
.counter-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300%;
  height: 100%;
  background: var(--bni-theme-primary);
  z-index: -1;
}
.counter-wrap-two {
  z-index: 2;
}
.counter-item {
  margin-bottom: 30px;
  text-align: center;
}
.counter-item .count {
  margin-bottom: 5px;
  color: var(--bni-color-white-default);
  font-size: 60px;
  font-weight: 700;
  line-height: 0.8;
}
@media (max-width: 1500px) {
  .counter-item .count {
    font-size: 55px;
  }
}
@media (max-width: 767.98px) {
  .counter-item .count {
    font-size: 50px;
  }
}
.counter-item p {
  margin-bottom: 0;
  color: var(--bni-color-gray-4);
  font-weight: 500;
}
.counter-item-two {
  background: var(--bni-color-white-default);
  box-shadow: 0px 11px 30px 0px #E9EAF2;
  border: 1px solid var(--bni-color-white-default);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 40px 30px 35px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767.98px) {
  .counter-item-two {
    padding: 20px 15px 20px;
  }
}
.counter-item-two:hover {
  transform: translateY(-5px);
}
.counter-item-two:hover .counter-icon i {
  transform: rotateY(180deg);
}
.counter-item-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .counter-item-three {
    gap: 10px;
  }
}
.counter-item-three:hover .counter-icon-two i {
  transform: rotateY(180deg);
}
.counter-item-four {
  text-align: center;
}
.counter-item-four p {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .counter-item-four p {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.counter-item-four .count {
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 600;
  line-height: 0.8;
  display: inline-flex;
  align-items: center;
  color: var(--bni-theme-primary);
}
@media (max-width: 1500px) {
  .counter-item-four .count {
    font-size: 90px;
  }
}
@media (max-width: 1199.98px) {
  .counter-item-four .count {
    font-size: 70px;
  }
}
@media (max-width: 767.98px) {
  .counter-item-four .count {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item-four .count {
    font-size: 60px;
  }
}
.counter-item-five {
  text-align: center;
}
.counter-item-five p {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--bni-color-gray-4);
}
@media (max-width: 767.98px) {
  .counter-item-five p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.counter-item-five .count {
  margin-bottom: 0;
  line-height: 0.8;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: transparent;
  -webkit-text-stroke: 2px var(--bni-color-gray-4);
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .counter-item-five .count {
    font-size: 75px;
    line-height: 0.9;
  }
}
@media (max-width: 767.98px) {
  .counter-item-five .count {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item-five .count {
    font-size: 60px;
  }
}
.counter-item-six {
  width: 50%;
  flex: 0 0 auto;
  text-align: left;
}
@media (max-width: 991.98px) {
  .counter-item-six {
    text-align: center;
  }
}
.counter-item-six .count {
  line-height: 0.9;
  font-size: 90px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
@media (max-width: 1199.98px) {
  .counter-item-six .count {
    font-size: 72px;
  }
}
@media (max-width: 991.98px) {
  .counter-item-six .count {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .counter-item-six .count {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item-six .count {
    font-size: 60px;
  }
}
.counter-item-six p {
  margin-bottom: 0;
  line-height: 1.2;
}
.counter-item-seven .counter-icon-two::before {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.counter-item-wrap {
  margin-left: 80px;
  flex-wrap: wrap;
  gap: 60px 0;
  position: relative;
}
@media (max-width: 1199.98px) {
  .counter-item-wrap {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .counter-item-wrap {
    gap: 30px 0;
  }
}
.counter-item-wrap::before {
  content: "";
  position: absolute;
  left: 43%;
  top: 0%;
  width: 1px;
  height: 125px;
  background: #1F2042;
}
@media (max-width: 991.98px) {
  .counter-item-wrap::before {
    display: none;
  }
}
.counter-item-wrap::after {
  content: "";
  position: absolute;
  left: 43%;
  bottom: 0%;
  width: 1px;
  height: 125px;
  background: #1F2042;
}
@media (max-width: 991.98px) {
  .counter-item-wrap::after {
    display: none;
  }
}
.counter-item-wrap .line-one {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 190px;
  height: 1px;
  background: #1F2042;
}
@media (max-width: 991.98px) {
  .counter-item-wrap .line-one {
    display: none;
  }
}
.counter-item-wrap .line-two {
  position: absolute;
  right: 13%;
  top: 50%;
  width: 190px;
  height: 1px;
  background: #1F2042;
}
@media (max-width: 991.98px) {
  .counter-item-wrap .line-two {
    display: none;
  }
}
.counter-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 60px;
  color: var(--bni-theme-primary);
  padding: 10px 0 0 17px;
  margin-bottom: 18px;
}
@media (max-width: 767.98px) {
  .counter-icon {
    font-size: 50px;
  }
}
.counter-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .counter-icon::before {
    width: 50px;
    height: 50px;
  }
}
.counter-icon i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.counter-icon-two {
  font-size: 70px;
}
@media (max-width: 1199.98px) {
  .counter-icon-two {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .counter-icon-two {
    font-size: 50px;
  }
}
.counter-icon-two::before {
  width: 70px;
  height: 70px;
  background: #EAF0FF;
}
@media (max-width: 1199.98px) {
  .counter-icon-two::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  .counter-icon-two::before {
    width: 50px;
    height: 50px;
  }
}
.counter-content .count {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 0.9;
}
.counter-content p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--bni-color-gray-11);
}
.counter-content-two .count {
  margin-bottom: 10px;
  line-height: 0.8;
  font-size: 60px;
}
@media (max-width: 1199.98px) {
  .counter-content-two .count {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .counter-content-two .count {
    font-size: 35px;
    line-height: 1;
  }
}
.counter-content-two p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--bni-color-gray-11);
  line-height: 1;
}
@media (max-width: 991.98px) {
  .counter-content-three {
    margin-top: 50px;
  }
}
.counter-content-three p {
  color: var(--bni-color-gray-4);
  margin-bottom: 40px;
  width: 85%;
}
@media (max-width: 1199.98px) {
  .counter-content-three p {
    width: 95%;
  }
}
@media (max-width: 991.98px) {
  .counter-content-three p {
    width: 100%;
  }
}
.counter-content-bottom {
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .counter-content-bottom {
    gap: 25px;
  }
}
.counter-shape img {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 120px;
  max-width: 276px;
}
@media (max-width: 1800px) {
  .counter-shape img {
    max-width: 200px;
  }
}
@media (max-width: 991.98px) {
  .counter-shape img {
    display: none;
  }
}

/*=============================
    	10. Video
===============================*/
.video-area {
  position: relative;
  z-index: 1;
  padding: 335px 0 220px;
  margin-top: -120px;
}
@media (max-width: 1199.98px) {
  .video-area {
    padding: 285px 0 160px;
  }
}
@media (max-width: 767.98px) {
  .video-area {
    padding: 240px 0 100px;
  }
}
.video-area-two {
  position: relative;
  padding: 270px 0;
}
@media (max-width: 1500px) {
  .video-area-two {
    padding: 220px 0;
  }
}
@media (max-width: 1199.98px) {
  .video-area-two {
    padding: 200px 0;
  }
}
.video-area-three {
  position: relative;
  z-index: 2;
}
.video-area-four {
  position: relative;
  z-index: 1;
  height: 700px;
  padding: 100px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .video-area-four {
    height: 550px;
  }
}
@media (max-width: 991.98px) {
  .video-area-four {
    height: 500px;
  }
}
@media (max-width: 767.98px) {
  .video-area-four {
    height: 460px;
  }
}
.video-area-four::before {
  content: "";
  position: absolute;
  left: 7.3%;
  bottom: 0;
  width: 80px;
  height: 70px;
  background: rgba(0, 42, 150, 0.9);
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}
@media (max-width: 1800px) {
  .video-area-four::before {
    left: 5.3%;
  }
}
@media (max-width: 1199.98px) {
  .video-area-four::before {
    left: 0.3%;
  }
}
@media (max-width: 991.98px) {
  .video-area-four::before {
    display: none;
  }
}
.video-area-five {
  position: relative;
  height: 650px;
  z-index: 1;
}
@media (max-width: 1500px) {
  .video-area-five {
    height: 550px;
  }
}
@media (max-width: 991.98px) {
  .video-area-five {
    height: 500px;
  }
}
.video-area-six {
  height: auto;
  height: 750px;
  margin-top: -115px;
}
@media (max-width: 1500px) {
  .video-area-six {
    height: 700px;
  }
}
@media (max-width: 1199.98px) {
  .video-area-six {
    height: 650px;
  }
}
@media (max-width: 991.98px) {
  .video-area-six {
    height: 600px;
  }
}
.video-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
  mix-blend-mode: luminosity;
}
.video-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(99deg, #01022E 27.88%, #000 75.46%);
}
.video-bg-two {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
}
.video-bg-three {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
  background-blend-mode: luminosity;
  background-color: var(--bni-theme-secondary);
}
.video-bg-three::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #111;
}
.video-bg-four {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
  background-blend-mode: luminosity;
}
.video-bg-four::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 215px;
  height: 200%;
  background: rgba(0, 71, 255, 0.9);
}
@media (max-width: 1500px) {
  .video-bg-four::before {
    width: 170px;
  }
}
@media (max-width: 1199.98px) {
  .video-bg-four::before {
    width: 140px;
  }
}
@media (max-width: 991.98px) {
  .video-bg-four::before {
    width: 100px;
  }
}
.video-bg-four::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: 0;
  width: 158px;
  height: 240px;
  background: rgba(0, 42, 150, 0.9);
  clip-path: polygon(56% 0%, 100% 0%, 44% 100%, 0% 100%);
}
@media (max-width: 1800px) {
  .video-bg-four::after {
    left: 25%;
  }
}
@media (max-width: 1500px) {
  .video-bg-four::after {
    left: 25%;
  }
}
@media (max-width: 1199.98px) {
  .video-bg-four::after {
    left: 24%;
  }
}
@media (max-width: 991.98px) {
  .video-bg-four::after {
    width: 135px;
    height: 200px;
    left: 21%;
  }
}
@media (max-width: 767.98px) {
  .video-bg-four::after {
    left: 28%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video-bg-four::after {
    left: 24%;
  }
}
.video-bg-five {
  background-size: cover;
  background-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-attachment: fixed;
}
.video-inner-wrap {
  position: relative;
  z-index: 1;
  height: 570px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 200px 20px;
  -moz-border-radius: 200px 20px;
  -o-border-radius: 200px 20px;
  -ms-border-radius: 200px 20px;
  border-radius: 200px 20px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .video-inner-wrap {
    height: 460px;
  }
}
@media (max-width: 991.98px) {
  .video-inner-wrap {
    height: 420px;
    -webkit-border-radius: 150px 20px;
    -moz-border-radius: 150px 20px;
    -o-border-radius: 150px 20px;
    -ms-border-radius: 150px 20px;
    border-radius: 150px 20px;
  }
}
@media (max-width: 767.98px) {
  .video-inner-wrap {
    height: 400px;
    -webkit-border-radius: 100px 20px;
    -moz-border-radius: 100px 20px;
    -o-border-radius: 100px 20px;
    -ms-border-radius: 100px 20px;
    border-radius: 100px 20px;
  }
}
@media (max-width: 991.98px) {
  .video-content {
    text-align: center;
  }
}
.video-content .sub-title {
  display: block;
  color: var(--bni-color-white-default);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.video-content .title {
  font-size: 40px;
  text-transform: capitalize;
  color: var(--bni-color-white-default);
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .video-content .title {
    font-size: 32px;
  }
}
.video-content p {
  margin-bottom: 0;
  color: var(--bni-color-gray-1);
  width: 78%;
}
@media (max-width: 1199.98px) {
  .video-content p {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .video-content p {
    width: 100%;
  }
}
.video-btn {
  margin-right: 100px;
}
@media (max-width: 1199.98px) {
  .video-btn {
    margin-right: 80px;
  }
}
@media (max-width: 991.98px) {
  .video-btn {
    margin: 0;
  }
}
.video-btn-two {
  margin-right: 0;
  text-align: center;
}
.video-btn-two .play-btn {
  background: var(--bni-theme-primary);
  margin: 0 auto;
}
.video-btn-four .play-btn {
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.video-btn-four .play-btn:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.video-btn-five .play-btn {
  margin-top: 50px;
}
.video-shape img {
  position: absolute;
  z-index: -1;
}
.video-shape img:nth-child(1) {
  left: -17px;
  top: -17px;
}
@media (max-width: 991.98px) {
  .video-shape img:nth-child(1) {
    left: -30px;
    top: -30px;
  }
}
@media (max-width: 767.98px) {
  .video-shape img:nth-child(1) {
    left: -37px;
    top: -47px;
  }
}
.video-shape img:nth-child(2) {
  bottom: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  .video-shape img:nth-child(2) {
    right: -53px;
  }
}

.play-btn {
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}
@media (max-width: 991.98px) {
  .play-btn {
    margin: 0 auto 50px;
  }
}
.play-btn img {
  transform: translateY(-2px);
}
.play-btn-two {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bni-theme-primary);
  background: var(--bni-color-white-default);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.play-btn-two::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--bni-color-white-default);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}
.play-btn-two:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.play-btn-three {
  width: 100px;
  height: 100px;
  position: relative;
}
.play-btn-three::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--bni-color-white-default);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}
.play-btn-three svg {
  width: 25px;
  height: auto;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--bni-color-white-default);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}

/*=============================
    	11. Project
===============================*/
.project-area-five {
  background: var(--bni-color-gray-2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-area-five::before {
  content: "";
  position: absolute;
  right: 125px;
  top: -260px;
  width: 400px;
  height: 400px;
  background: #D2DBFF;
  filter: blur(150px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.project-area-five::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 50px;
  width: 500px;
  height: 500px;
  background: #F0DCFF;
  filter: blur(150px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.project-area-seven {
  position: relative;
  z-index: 1;
}
.project-area-seven::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
  background: var(--bni-theme-secondary);
  z-index: -1;
}
.project-active {
  padding: 0 24px;
  position: relative;
}
@media (max-width: 767.98px) {
  .project-active {
    padding: 0 10px;
  }
}
.project-active .swiper-slide {
  transform: scale(0.9);
  transition: all 200ms linear;
}
.project-active .swiper-slide-active {
  transform: scale(1);
}
.project-active .swiper-slide-active .project-thumb img {
  filter: grayscale(0);
}
.project-active .swiper-slide-active .project-content {
  opacity: 1;
  overflow: visible;
}
@media (max-width: 1500px) {
  .project-active-three {
    margin: 0 -180px;
  }
}
@media (max-width: 991.98px) {
  .project-active-three {
    margin: 0 -165px;
  }
}
@media (max-width: 767.98px) {
  .project-active-three {
    margin: 0 0;
  }
}
.project-active-three .swiper-slide-active .project-thumb-four .project-mask-img img {
  filter: grayscale(0);
}
.project-active-four {
  margin-right: -416px;
}
@media (max-width: 991.98px) {
  .project-active-four {
    margin-right: -320px;
  }
}
@media (max-width: 767.98px) {
  .project-active-four {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-active-four {
    margin-right: -60px;
  }
}
.project-active-four .swiper-slide-active .project-content-five {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}
.project-active-five .swiper-slide {
  transform: scale(0.86);
  transition: all 200ms linear;
}
.project-active-five .swiper-slide-active {
  transform: scale(1);
}
.project-active-five .swiper-slide-active .project-content-seven .arrow {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-active-seven {
  margin-right: -382px;
}
@media (max-width: 991.98px) {
  .project-active-seven {
    margin-right: -260px;
  }
}
@media (max-width: 767.98px) {
  .project-active-seven {
    margin-right: 0;
  }
}
.project-item {
  position: relative;
}
.project-item-two {
  position: relative;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
}
.project-item-two:hover .project-thumb-two::before {
  opacity: 0.9;
  visibility: visible;
}
.project-item-two:hover .project-content-two {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.project-item-two:hover .shape img {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.project-item-two .shape img {
  position: absolute;
  right: -20px;
  bottom: 0;
  mix-blend-mode: luminosity;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.project-item-three {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-10);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -o-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
}
.project-item-four {
  position: relative;
}
.project-item-five {
  position: relative;
  overflow: hidden;
}
.project-item-five:hover .project-content-five {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}
.project-item-six:hover .project-thumb-six .shape img:nth-child(1) {
  transform: translateZ(0);
  opacity: 1;
}
.project-item-six:hover .project-thumb-six .shape img:nth-child(2) {
  transform: translateZ(0);
  opacity: 1;
}
.project-item-eight {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.project-item-eight:hover .project-thumb-eight img {
  filter: grayscale(0);
}
.project-item-eight:hover .project-content-eight {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.project-item-nine {
  position: relative;
  z-index: 1;
}
.project-item-nine:hover .project-content-nine .arrow-btn {
  opacity: 1;
  visibility: visible;
}
.project-item-ten {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.project-item-ten .project-content-two a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.project-item-wrap {
  position: relative;
  padding: 50px 0 80px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .project-item-wrap {
    padding: 35px 0 60px;
  }
}
.project-item-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  background: var(--bni-color-gray-10);
  width: 75%;
  height: 100%;
  z-index: -1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 767.98px) {
  .project-item-wrap::before {
    width: 80%;
  }
}
.project-thumb img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  filter: grayscale(1);
  background-color: #000;
}
.project-thumb-two {
  position: relative;
}
.project-thumb-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bni-theme-secondary);
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.project-thumb-two img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.project-thumb-three img {
  -webkit-border-radius: 25px 25px 0 0;
  -moz-border-radius: 25px 25px 0 0;
  -o-border-radius: 25px 25px 0 0;
  -ms-border-radius: 25px 25px 0 0;
  border-radius: 25px 25px 0 0;
  width: 100%;
}
.project-thumb-four {
  position: relative;
}
.project-thumb-five img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  width: 100%;
  height: 475px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .project-thumb-five img {
    height: 420px;
  }
}
.project-thumb-six {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  margin-bottom: 25px;
}
.project-thumb-six a > img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.project-thumb-six .shape img {
  position: absolute;
}
.project-thumb-six .shape img:nth-child(1) {
  right: 0;
  top: 0;
  transform: translate3d(100px, -100px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-thumb-six .shape img:nth-child(2) {
  bottom: 0;
  left: 0;
  transform: translate3d(-100px, 100px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-thumb-seven {
  margin-bottom: 20px;
}
.project-thumb-seven img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  width: 100%;
  height: 475px;
  object-fit: cover;
}
.project-thumb-eight img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  filter: grayscale(1);
}
.project-thumb-nine {
  position: relative;
  z-index: 1;
}
.project-thumb-nine::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(1, 2, 46, 0) 48.5%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.project-thumb-nine img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.project-content {
  border-radius: 20px;
  background: var(--bni-color-white-default);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 40px 40px;
  margin: 0 70px;
  margin-top: -80px;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .project-content {
    padding: 40px 30px;
    margin: -80px 30px 0;
  }
}
@media (max-width: 1500px) {
  .project-content {
    padding: 30px 25px;
    margin: -65px 20px 0;
  }
}
.project-content-left span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
  text-transform: capitalize;
  line-height: 1;
  padding: 8px 13px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.project-content-left .title {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .project-content-left .title {
    font-size: 22px;
  }
}
.project-content-left-two .title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}
.project-content-arrow a {
  width: 60px;
  height: 40px;
  background: var(--bni-color-gray-4);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bni-theme-primary);
}
.project-content-arrow a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-content-two {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 20px;
  margin-top: 80px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-content-two .title {
  margin-bottom: 5px;
  font-size: 22px;
  color: var(--bni-color-white-default);
}
.project-content-two span {
  display: block;
  color: var(--bni-color-gray-4);
  margin-bottom: 10px;
}
.project-content-two > a {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -o-border-radius: 80px;
  -ms-border-radius: 80px;
  border-radius: 80px;
}
.project-content-two > a:hover {
  background: var(--bni-color-sky-blue);
}
.project-content-three {
  padding: 35px 40px;
}
@media (max-width: 1500px) {
  .project-content-three {
    padding: 35px 25px;
  }
}
@media (max-width: 1199.98px) {
  .project-content-three {
    padding: 30px 25px;
  }
}
.project-content-three .title {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
}
@media (max-width: 1199.98px) {
  .project-content-three .title {
    font-size: 20px;
  }
}
.project-content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.project-content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.project-content-four {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 51%;
}
@media (max-width: 1800px) {
  .project-content-four {
    bottom: 6px;
    width: 52%;
  }
}
@media (max-width: 767.98px) {
  .project-content-four {
    bottom: 0;
    width: 80%;
    -webkit-border-radius: 0 20px 0 20px;
    -moz-border-radius: 0 20px 0 20px;
    -o-border-radius: 0 20px 0 20px;
    -ms-border-radius: 0 20px 0 20px;
    border-radius: 0 20px 0 20px;
    background: var(--bni-color-gray-1);
    padding: 10px 10px 10px 0;
  }
}
.project-content-four .title {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
}
@media (max-width: 1800px) {
  .project-content-four .title {
    font-size: 20px;
  }
}
.project-content-five {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  border: 1px solid var(--bni-color-white-default);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 24px 18px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: -90px;
  opacity: 0;
  visibility: hidden;
}
.project-content-five span {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: var(--bni-theme-primary);
  margin-bottom: 5px;
}
.project-content-five .title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
.project-content-five .arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border: none;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  position: absolute;
  right: 0;
  top: -33px;
}
.project-content-five .arrow:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}
.project-content-six {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-content-six .content-left .title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}
.project-content-six .content-left span {
  display: block;
  line-height: 1;
  color: var(--bni-theme-primary);
  text-transform: capitalize;
}
.project-content-six .arrow {
  background: transparent;
  border: none;
  padding: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D7DAEB;
  color: var(--bni-theme-primary);
}
.project-content-six .arrow:hover {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-content-seven {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.project-content-seven .arrow {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  background: var(--bni-color-gray-4);
  border: none;
  color: var(--bni-border-1);
}
.project-content-seven .arrow:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-content-eight {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  background: var(--bni-color-white-default);
  padding: 24px 24px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  transform: translateY(60px);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-content-eight .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
}
@media (max-width: 1500px) {
  .project-content-eight .title {
    font-size: 22px;
  }
}
.project-content-eight span {
  display: block;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-theme-primary);
}
.project-content-eight .arrow {
  width: 60px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: -19px;
}
.project-content-nine {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.project-content-nine .title {
  margin-bottom: 14px;
  color: var(--bni-color-white-default);
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
}
.project-content-nine .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-color-white-default), var(--bni-color-white-default)), linear-gradient(var(--bni-color-white-default), var(--bni-color-white-default));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.project-content-nine .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.project-content-nine span {
  display: block;
  color: var(--bni-color-white-default);
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
}
.project-content-nine .arrow-btn {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bni-color-white-default);
  color: var(--bni-color-white-default);
  opacity: 0;
  visibility: hidden;
}
.project-content-nine .arrow-btn:hover {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
}
.project-mask-img {
  -webkit-mask-image: url(../img/project/project_mask_img.svg);
  mask-image: url(../img/project/project_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 602px;
  height: 483px;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .project-mask-img {
    width: 498px;
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .project-mask-img {
    width: 100%;
    height: 350px;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.project-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
@media (max-width: 767.98px) {
  .project-mask-img img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
}
.project-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-theme-primary);
  background: var(--bni-color-gray-4);
  display: inline-block;
  padding: 8px 15px;
  line-height: 1;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  margin-bottom: 15px;
}
.project-tag:hover {
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
}
.project-tag-two {
  font-size: 14px;
  font-weight: 500;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
  position: absolute;
  left: 30px;
  top: 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  display: block;
  padding: 6px 15px;
}
.project-tag-two:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-tag-three {
  display: inline-block;
  background: var(--bni-color-gray-1);
  font-size: 14px;
  font-weight: 500;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 11px 20px;
  line-height: 1;
}
.project-tag-three:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
@media (max-width: 767.98px) {
  .project-nav-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
  }
}
.project-nav-wrap button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bni-theme-primary);
}
@media (max-width: 767.98px) {
  .project-nav-wrap button {
    position: inherit;
    transform: translateY(0);
  }
}
.project-nav-wrap button.project-button-prev {
  left: 25%;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 1199.98px) {
  .project-nav-wrap button.project-button-prev {
    left: 13%;
  }
}
@media (max-width: 991.98px) {
  .project-nav-wrap button.project-button-prev {
    left: 4%;
  }
}
@media (max-width: 767.98px) {
  .project-nav-wrap button.project-button-prev {
    transform: translateY(0) rotate(180deg);
  }
}
.project-nav-wrap button.project-button-next {
  left: auto;
  right: 25%;
}
@media (max-width: 1199.98px) {
  .project-nav-wrap button.project-button-next {
    right: 13%;
  }
}
@media (max-width: 991.98px) {
  .project-nav-wrap button.project-button-next {
    right: 4%;
  }
}
.project-nav-wrap button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-nav-wrap-two {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 55px;
}
.project-nav-wrap-two button {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: 1px solid #D1D4E2;
  background: var(--bni-color-white-default);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.1);
  width: 74px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bni-theme-secondary);
  padding: 0;
  position: relative;
}
.project-nav-wrap-two button svg {
  width: 28px;
  height: auto;
}
.project-nav-wrap-two button:hover {
  background: var(--bni-theme-primary);
  border-color: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.project-nav-wrap-two button.project-button-prev svg {
  transform: rotate(180deg);
}
.project-nav-wrap-two button.project-button-prev::before {
  content: "";
  position: absolute;
  right: -67px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 2px;
  background: #D1D4E2;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.project-nav-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
}
.project-nav-two button {
  width: 74px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D1D4E2;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 0 0;
  color: var(--bni-theme-secondary);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.1);
}
.project-nav-two button.project-button-prev svg {
  transform: rotate(180deg);
}
.project-nav-two button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border: var(--bni-theme-primary);
}
.project-nav-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .project-nav-three {
    justify-content: flex-start;
  }
}
.project-nav-three button {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--bni-color-white-default);
  padding: 0 0;
  background: var(--bni-theme-primary);
}
.project-nav-three button.project-button-next {
  background: #1f5dff;
}
.project-nav-three button:hover {
  background: var(--bni-theme-secondary);
}
.project-pagination {
  background: var(--bni-color-white-default);
  border-radius: 20px;
  max-width: 120px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
  gap: 6px;
  border: 1px solid #DFE1ED;
}
.project-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #C9C9C9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 !important;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.project-pagination .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: var(--bni-theme-primary);
}
.project-details-thumb {
  margin-bottom: 30px;
}
.project-details-thumb img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  min-height: 300px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.project-details-thumb-two {
  margin-bottom: 50px;
}
.project-details-thumb-two img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}
.project-details-thumb-three {
  margin-top: 35px;
  margin-bottom: 45px;
}
.project-details-thumb-three img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 350px;
  object-fit: cover;
}
.project-details-thumb-four {
  padding: 50px 0;
}
.project-details-thumb-four img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 350px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .project-details-thumb-five {
    margin-bottom: 40px;
  }
}
.project-details-thumb-five img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .project-details-thumb-five img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    min-height: 300px;
  }
}
.project-details-thumb-six {
  padding: 25px 0 50px;
}
@media (max-width: 991.98px) {
  .project-details-thumb-six {
    padding: 20px 0 35px;
  }
}
.project-details-thumb-six img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 350px;
  object-fit: cover;
}
.project-details-content > .title {
  margin-bottom: 15px;
  font-size: 36px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .project-details-content > .title {
    font-size: 34px;
  }
}
@media (max-width: 767.98px) {
  .project-details-content > .title {
    font-size: 30px;
  }
}
.project-details-content > p {
  margin-bottom: 0;
}
.project-details-content .title-two {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 30px;
}
.project-details-content-two .title {
  font-size: 32px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .project-details-content-two .title {
    font-size: 28px;
  }
}
.project-details-content-two p {
  margin-bottom: 15px;
}
.project-details-content-two p span {
  color: var(--bni-theme-primary);
  font-weight: 500;
}
.project-details-challenge {
  margin-top: 40px;
  margin-bottom: 50px;
}
.project-details-challenge > p {
  margin-bottom: 30px;
}
.project-details-challenge-two .title-two {
  margin-bottom: 27px;
  font-weight: 600;
  font-size: 24px;
}
.project-details-challenge-two .about-list-item li {
  margin-bottom: 16px;
}
.project-details-challenge-two .about-list-item li:last-child {
  margin-bottom: 0;
}
.project-details-challenge-wrap {
  padding: 35px 0 60px;
}
.project-details-challenge-wrap img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 767.98px) {
  .project-details-challenge-wrap img {
    margin-bottom: 30px;
  }
}
.project-details-challenge-wrap-two img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 350px;
  margin: 20px 0 45px;
  object-fit: cover;
}
.project-details-challenge-wrap-three {
  margin-bottom: 40px;
}
.project-details-challenge-wrap-three img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 350px;
  object-fit: cover;
  margin: 15px 0 45px;
}
.project-details-report > p {
  margin-bottom: 20px;
}
.project-details-report-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .project-details-report-inner {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .project-details-report-inner {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-details-report-inner .progress-wrap {
  flex-grow: 1;
}
.project-details-report-inner .inner-img {
  width: 342px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .project-details-report-inner .inner-img {
    width: 270px;
  }
}
@media (max-width: 767.98px) {
  .project-details-report-inner .inner-img {
    width: 100%;
  }
}
.project-details-report-inner .inner-img img {
  width: 100%;
  height: 220px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  object-fit: cover;
}
.project-details-bottom-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1;
  padding-top: 50px;
  border-top: 1px solid #E3E3E3;
  margin-top: 70px;
}
.project-details-bottom-wrap a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  color: #88919B;
}
.project-details-bottom-wrap a svg {
  color: var(--bni-theme-secondary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-details-bottom-wrap a:hover {
  color: var(--bni-theme-primary);
}
.project-details-bottom-wrap a:hover svg {
  color: var(--bni-theme-primary);
}
.project-details-bottom-wrap a.previous-post svg {
  transform: rotate(180deg);
}
.project-details-bottom-wrap a.next-post {
  flex-direction: row-reverse;
}
.project-details-bottom-wrap a.all-post {
  color: var(--bni-heading-color);
}
.project-details-info-wrap {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid var(--bni-color-gray-4);
  padding: 30px 40px 40px;
}
@media (max-width: 1199.98px) {
  .project-details-info-wrap {
    padding: 30px 30px 40px;
  }
}
.project-details-info-wrap > .list-wrap > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DEE0EC;
  color: var(--bni-body-color);
  text-transform: capitalize;
  gap: 10px;
  margin-bottom: 13px;
  padding-bottom: 13px;
}
.project-details-info-wrap > .list-wrap > li span {
  font-weight: 600;
  min-width: 82px;
}
.project-details-info-wrap > .list-wrap > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.project-details-info-wrap > .list-wrap > li.social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-details-info-wrap > .list-wrap > li.social .list-wrap li a {
  color: var(--bni-body-color);
}
.project-details-info-wrap > .list-wrap > li.social .list-wrap li a svg {
  width: 18px;
  height: 18px;
}
.project-details-info-wrap > .list-wrap > li.social .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.project-details-info-wrap-two > .list-wrap > li {
  border-bottom: 1px solid #E8EBF5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.project-details-info-wrap-three > .list-wrap > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.project-details-info-wrap-four {
  margin-bottom: 35px;
}
.project-details-info-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.project-details-info-item div {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--bni-heading-color);
  line-height: 1.2;
}
.project-details-info-item div span {
  display: block;
  font-weight: 400;
  color: var(--bni-body-color);
  margin-bottom: 14px;
}
.project-details-info-item .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-details-info-item .list-wrap li a {
  color: #B8B8B8;
}
.project-details-info-item .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.project-details-info-item .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.project-details-info-item-two {
  border: 1px solid #E8EBF5;
  padding: 25px 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 1199.98px) {
  .project-details-info-item-two {
    padding: 25px 30px;
  }
}
.project-details-info-item-two::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 45px;
  background: #E8EBF5;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199.98px) {
  .project-details-info-item-two::before {
    display: none;
  }
}
.project-details-contact a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  gap: 15px;
  padding: 15px 20px;
  margin-bottom: 8px;
}
.project-details-contact a:last-child {
  margin-bottom: 0;
}
.project-details-contact a i {
  font-size: 24px;
}
.project-details-contact a:hover {
  background: var(--bni-theme-secondary);
}
.project-details-contact-two .sub-title {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.project-details-contact-two .title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 24px;
}
.project-details-form .form-grp {
  margin-bottom: 10px;
}
.project-details-form .form-grp textarea, .project-details-form .form-grp input {
  border: none;
  border-bottom: 1px solid var(--bni-border-7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 11px 0;
  height: 50px;
}
.project-details-form .form-grp textarea:focus, .project-details-form .form-grp input:focus {
  border-color: var(--bni-theme-primary);
}
.project-details-form .form-grp textarea {
  min-height: 50px;
  max-height: 50px;
}
.project-details-form button {
  width: 100%;
  background: var(--bni-theme-primary);
  border: none;
  color: var(--bni-color-white-default);
  font-weight: 600;
  font-size: 16px;
  padding: 11px 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  margin-top: 40px;
}
.project-details-form button:hover {
  background: var(--bni-theme-secondary);
}
.project-details-overview {
  padding: 25px 0 50px;
}
.project-details-overview img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 250px;
  object-fit: cover;
  margin-top: 35px;
}
.project-details-marketing img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .project-details-marketing img {
    margin-bottom: 30px;
  }
}
.project-sidebar {
  margin-left: 26px;
}
@media (max-width: 1199.98px) {
  .project-sidebar {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .project-sidebar {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .project-sidebar-two {
    margin-top: 50px;
  }
}
.project-sidebar-two .sidebar-widget {
  border: 1px solid #E8EBF5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 30px;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .project-sidebar-two .sidebar-widget {
    padding: 30px 20px;
  }
}
@media (max-width: 991.98px) {
  .project-sidebar-two .sidebar-widget {
    padding: 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .project-sidebar-two .sidebar-widget {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-sidebar-two .sidebar-widget {
    padding: 30px 30px;
  }
}
.project-sidebar-two .sidebar-widget:last-child {
  margin-bottom: 0;
}
.project-shape img {
  position: absolute;
  left: 110px;
  top: -103px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .project-shape img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 767.98px) {
  .project-shape img {
    width: 140px;
    height: 140px;
    left: 50px;
    top: -76px;
  }
}
.project-shape-two img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .project-solution-thumb {
    margin-bottom: 50px;
  }
}
.project-solution-thumb img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.project-solution-item {
  border: 1px solid #CFD5ED;
  margin-bottom: 24px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 28px 30px;
}
.project-solution-item:last-child {
  margin-bottom: 0;
}
.project-solution-item .title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.project-solution-item p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .section-btn {
    text-align: left !important;
    margin-bottom: 50px;
  }
}

/*=============================
    	12. Team
===============================*/
.team-area {
  /*background: var(--bni-theme-primary);*/
  position: relative;
  z-index: 1;
}
.team-area-two {
  position: relative;
  z-index: 1;
}
.team-area-two::before {
  content: "";
  position: absolute;
  left: -300px;
  top: 0;
  width: 560px;
  height: 560px;
  background: #FF7438;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.team-area-three {
  position: relative;
  z-index: 1;
}
.team-area-three::before {
  content: "";
  position: absolute;
  left: -235px;
  top: 0;
  width: 450px;
  height: 450px;
  background: #38CFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.team-area-three::after {
  content: "";
  position: absolute;
  right: -244px;
  bottom: -350px;
  width: 560px;
  height: 560px;
  background: #FF7438;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.team-area-five {
  position: relative;
  z-index: 1;
}
.team-area-five::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 100px;
  width: 400px;
  height: 400px;
  background: #C3CEFA;
  filter: blur(150px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.team-area-six {
  position: relative;
  z-index: 1;
  background: var(--bni-theme-secondary);
}
.team-item {
  background: var(--bni-color-white-default);
  padding: 15px 0 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 5px;
  height: 100%;
  position: relative;
}
.team-item:hover .team-thumb img {
  filter: grayscale(0);
}
.team-item:hover .team-shape img {
  filter: grayscale(0);
}
.team-item-two {
  text-align: center;
}
.team-item-three {
  background: var(--bni-color-white-default);
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid #DFE1ED;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 40px 20px;
  height: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team-item-three:hover .team-thumb-three img {
  filter: grayscale(0);
}
.team-item-four {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 50px 0;
}
@media (max-width: 1199.98px) {
  .team-item-four {
    padding: 20px 30px 0;
  }
}
@media (max-width: 991.98px) {
  .team-item-four {
    padding: 20px 50px 0;
  }
}
.team-item-four:hover .team-thumb-four img {
  filter: grayscale(0);
}
.team-item-six {
  position: relative;
  padding-bottom: 34px;
  height: 100%;
}
.team-item-eight {
  text-align: center;
}
.team-item-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.team-item-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  stroke-width: 1px;
  stroke: #E2E2E2;
}
.team-thumb {
  padding: 0 20px 0;
  text-align: center;
}
.team-thumb img {
  filter: grayscale(0);
}
.team-thumb-two {
  background: var(--bni-color-white-default);
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  padding: 30px 0 0 0;
  margin-bottom: 18px;
  min-height: 345px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-thumb-three {
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--bni-color-gray-12);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-thumb-three img {
  margin-bottom: -25px;
  filter: grayscale(1);
}
.team-thumb-four {
  text-align: center;
  margin-top: auto;
}
.team-thumb-four img {
  filter: grayscale(1);
}
.team-thumb-five {
  text-align: center;
  border-radius: 30px;
  border: 1px solid var(--bni-border-1);
  background: var(--bni-color-white-default);
  overflow: hidden;
  min-height: 350px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.team-thumb-five .shape img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
.team-thumb-six {
  position: relative;
  background: var(--bni-color-white-default);
  text-align: center;
  padding: 30px 0 20px;
  border-radius: 8px 20px;
}
.team-thumb-seven {
  background: var(--bni-color-gray-1);
}
.team-thumb-eight {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.team-thumb-eight img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #E2E4F0;
  width: 100%;
}
.team-thumb-nine {
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.team-content {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  padding: 0 30px 20px;
}
.team-content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: var(--bni-color-white-default);
  /*filter: blur(25px);*/
  z-index: -1;
}
.team-content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-content span {
  display: block;
  line-height: 1;
}
.team-content-two .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-content-two span {
  display: block;
  line-height: 1;
  color: var(--bni-theme-primary);
}
.team-content-three .title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}
.team-content-three span {
  display: block;
  line-height: 1;
  margin-bottom: 25px;
}
.team-content-four {
  padding: 0px 0px 0px 25px;
  margin-bottom: 30px;
}
.team-content-four .title {
  font-size: 24px;
  margin-bottom: 7px;
}
@media (max-width: 1199.98px) {
  .team-content-four .title {
    font-size: 22px;
  }
}
.team-content-four span {
  display: block;
  color: var(--bni-theme-primary);
  line-height: 1;
}
.team-content-five {
  text-align: center;
  margin-top: 30px;
}
.team-content-five .title {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
}
.team-content-five span {
  display: block;
  color: var(--bni-theme-primary);
  line-height: 1;
}
.team-content-six {
  position: absolute;
  text-align: center;
  left: 24px;
  right: 24px;
  background: var(--bni-theme-primary);
  border-radius: 4px 15px;
  padding: 12px 20px;
  bottom: 0;
}
.team-content-six .title {
  color: var(--bni-color-white-default);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-content-six .title a:hover {
  color: var(--bni-color-white-default);
}
.team-content-six span {
  display: block;
  color: #F5F6FC;
}
.team-content-eight .title {
  margin-bottom: 0;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
}
.team-content-eight span {
  line-height: 1;
  color: var(--bni-theme-primary);
}
.team-content-nine {
  background: var(--bni-theme-secondary);
  text-align: center;
  padding: 17px 15px;
}
.team-content-nine .title {
  color: var(--bni-color-white-default);
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.team-content-nine .title a:hover {
  color: var(--bni-color-white-default);
}
.team-content-nine span {
  display: block;
  color: var(--bni-color-gray-1);
  line-height: 1;
}
.team-social {
  position: absolute;
  right: 20px;
  top: 25px;
  background: var(--bni-color-gray-5);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.team-social .social-toggle-icon {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-5);
  cursor: pointer;
  font-size: 18px;
  color: var(--bni-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.team-social .list-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 0 15px;
  display: none;
  text-align: center;
}
.team-social .list-wrap li a {
  font-size: 18px;
  color: var(--bni-theme-primary);
}
.team-social .list-wrap li a:hover {
  color: var(--bni-theme-secondary);
}
.team-social .list-wrap li a svg {
  width: 18px;
  height: 18px;
}
.team-social-two {
  position: absolute;
  right: 0;
  top: 25px;
  z-index: 1;
  padding: 36px 14px;
}
.team-social-two .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.team-social-two .list-wrap li {
  line-height: 1;
}
.team-social-two .list-wrap li a {
  font-size: 15px;
  color: var(--bni-theme-primary);
}
.team-social-two .list-wrap li a svg {
  width: 18px;
  height: 18px;
}
.team-social-two .list-wrap li a:hover {
  color: var(--bni-theme-secondary);
}
.team-social-three .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.team-social-three .list-wrap li a {
  color: var(--bni-theme-primary);
}
.team-social-three .list-wrap li a:hover {
  color: var(--bni-theme-secondary);
}
.team-social-three .list-wrap li a svg {
  width: 18px;
  height: 18px;
}
.team-social-four .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: absolute;
  right: 16px;
  top: 31%;
  flex-direction: column;
  gap: 30px;
}
.team-social-four .list-wrap li {
  line-height: 1;
}
.team-social-four .list-wrap li a {
  display: block;
  color: var(--bni-border-1);
}
.team-social-four .list-wrap li a svg {
  width: 20px;
  height: 20px;
}
.team-social-four .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.team-social-five {
  background: var(--bni-theme-primary);
  top: auto;
  bottom: 17px;
  right: 17px;
}
.team-social-five .social-toggle-icon {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.team-social-five .list-wrap {
  padding: 15px 0 0;
}
.team-social-five .list-wrap li a {
  color: var(--bni-color-white-default);
}
.team-social-five .list-wrap li a:hover {
  color: var(--bni-color-white-default);
}
.team-social-six .team-social-shape svg {
  color: var(--bni-theme-primary);
}
.team-social-six .list-wrap li a {
  color: var(--bni-color-white-default);
}
.team-social-six .list-wrap li a:hover {
  color: var(--bni-color-white-default);
}
.team-social-seven {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 14px 31px 10px 31px;
}
.team-social-seven .team-social-shape svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: var(--bni-theme-primary);
}
.team-social-seven .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.team-social-seven .list-wrap li {
  line-height: 1;
}
.team-social-seven .list-wrap li a {
  color: var(--bni-color-white-default);
}
.team-social-seven .list-wrap li a svg {
  width: 18px;
  height: 18px;
}
.team-social-eight {
  right: 10px;
  top: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: var(--bni-color-white-default);
}
.team-social-eight .social-toggle-icon {
  width: 50px;
  height: 50px;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.team-social-shape svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: #E9ECFE;
}
.team-bottom-content {
  margin-top: 60px;
}
.team-bottom-content p {
  margin-bottom: 0;
  color: var(--bni-color-white-default);
}
.team-bottom-content p a {
  color: var(--bni-color-white-default);
  font-weight: 500;
  text-decoration: underline;
}
.team-details-img {
  text-align: center;
  margin-bottom: 40px;
}
.team-details-img img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid var(--bni-color-gray-4);
}
.team-details-info-wrap {
  margin-left: 10px;
  border: 1px solid #E0E1E9;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 54px 55px;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .team-details-info-wrap {
    margin-left: 0;
    padding: 30px 30px;
  }
}
.team-details-info-wrap .title {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .team-details-info-wrap .title {
    font-size: 34px;
  }
}
@media (max-width: 767.98px) {
  .team-details-info-wrap .title {
    font-size: 30px;
  }
}
.team-details-info-wrap > span {
  display: block;
  line-height: 1;
  font-size: 18px;
  position: relative;
  padding-bottom: 17px;
  margin-bottom: 30px;
}
.team-details-info-wrap > span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 5px;
  background: var(--bni-theme-primary);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
}
.team-details-info-wrap > p {
  margin-bottom: 15px;
}
.team-details-social {
  margin-bottom: 30px;
}
.team-details-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.team-details-social .list-wrap li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-4);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--bni-heading-color);
}
.team-details-social .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.team-details-social .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.team-details-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  margin-top: 40px;
}
@media (max-width: 1199.98px) {
  .team-details-inner {
    margin-top: 20px;
  }
}
.team-details-inner li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 50%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .team-details-inner li {
    width: 100%;
  }
}
.team-details-inner li:first-child {
  width: 100%;
}
.team-details-inner li .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  flex: 0 0 auto;
  color: var(--bni-color-white-default);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 20px;
}
.team-details-inner li .content span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-border-1);
  line-height: 1;
  margin-bottom: 8px;
}
.team-details-inner li .content p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1;
  color: var(--bni-heading-color);
}
.team-details-inner li .content a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--bni-heading-color);
  display: block;
}
.team-details-inner li .content a:hover {
  color: var(--bni-theme-primary);
}
.team-details-skill {
  border: 1px solid #E0E1E9;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 45px 50px;
  gap: 30px 110px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .team-details-skill {
    padding: 35px 30px;
    gap: 30px 30px;
  }
}
@media (max-width: 991.98px) {
  .team-details-skill {
    flex-wrap: wrap;
  }
}
.team-details-skill-content {
  width: 46%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .team-details-skill-content {
    width: 100%;
  }
}
.team-details-skill-content .title {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .team-details-skill-content .title {
    font-size: 28px;
  }
}
.team-details-skill-content .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 5px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  background: var(--bni-theme-primary);
}
.team-details-skill-content > p {
  margin-bottom: 0;
}
.team-details-skill .progress-wrap {
  flex-grow: 1;
}
.team-details-contact {
  border: 1px solid #E0E1E9;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 50px 50px;
  gap: 65px;
}
@media (max-width: 1199.98px) {
  .team-details-contact {
    gap: 30px;
    padding: 35px 30px;
  }
}
@media (max-width: 991.98px) {
  .team-details-contact {
    flex-wrap: wrap;
  }
}
.team-details-contact-content {
  width: 44%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .team-details-contact-content {
    width: 100%;
  }
}
.team-details-contact-content .title {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .team-details-contact-content .title {
    font-size: 28px;
  }
}
.team-details-contact-content .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 5px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  background: var(--bni-theme-primary);
}
.team-details-contact-content p {
  margin-bottom: 0;
}
.team-details-form .form-grp textarea, .team-details-form .form-grp input {
  background: #F8F8F8 !important;
  color: var(--bni-body-color) !important;
}
.team-details-form .form-grp textarea::placeholder, .team-details-form .form-grp input::placeholder {
  color: var(--bni-body-color) !important;
}
.team-details-form button {
  background: var(--bni-theme-primary) !important;
  color: var(--bni-color-white-default) !important;
}
.team-details-form button:hover {
  background: var(--bni-theme-secondary) !important;
}
.team-shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  filter: grayscale(0);
}
.team-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.team-shape-wrap img:nth-child(1) {
  right: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .team-shape-wrap img:nth-child(1) {
    max-width: 300px;
  }
}
.team-shape-wrap img:nth-child(2) {
  left: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .team-shape-wrap img:nth-child(2) {
    max-width: 200px;
  }
}
.team-shape-wrap img:nth-child(3) {
  right: 9%;
  bottom: 24%;
}
@media (max-width: 1800px) {
  .team-shape-wrap img:nth-child(3) {
    right: 3%;
  }
}
@media (max-width: 1500px) {
  .team-shape-wrap img:nth-child(3) {
    bottom: 15%;
  }
}
@media (max-width: 767.98px) {
  .team-shape-wrap img:nth-child(3) {
    display: none;
  }
}
.team-shape-wrap-two img {
  position: absolute;
  z-index: -1;
}
.team-shape-wrap-two img:nth-child(1) {
  right: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .team-shape-wrap-two img:nth-child(1) {
    max-width: 300px;
  }
}
.team-shape-wrap-two img:nth-child(2) {
  left: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .team-shape-wrap-two img:nth-child(2) {
    max-width: 180px;
  }
}
.team-shape-wrap-two img:nth-child(3) {
  bottom: 24%;
  right: 8%;
}
@media (max-width: 1800px) {
  .team-shape-wrap-two img:nth-child(3) {
    bottom: 19%;
    right: 4%;
  }
}
@media (max-width: 1500px) {
  .team-shape-wrap-two img:nth-child(3) {
    bottom: 15%;
    right: 3%;
  }
}

.col-44 {
  width: 43.5%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .col-44 {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .col-44 {
    width: 100%;
  }
}

.col-56 {
  width: 56.5%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .col-56 {
    width: 100%;
  }
}

/*=============================
    	13. FAQ
===============================*/
.faq-area-three {
  position: relative;
  z-index: 1;
}
.faq-content {
  margin-right: 50px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .faq-content {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .faq-content {
    margin-bottom: 80px;
  }
}
.faq-content p {
  margin-bottom: 25px;
}
.faq-content .shape img {
  position: absolute;
  left: -35px;
  bottom: -30px;
}
@media (max-width: 1199.98px) {
  .faq-content .shape img {
    left: -24px;
    bottom: -24px;
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .faq-content .shape img {
    left: -2px;
    bottom: -21px;
    max-width: 90px;
  }
}
.faq-content-two {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .faq-content-two {
    margin-bottom: 50px;
    text-align: center;
  }
}
.faq-content-two > p {
  margin-bottom: 25px;
}
.faq-content-two .shape img {
  position: absolute;
  left: -16%;
  bottom: -6%;
  z-index: -1;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}
@media (max-width: 1500px) {
  .faq-content-two .shape img {
    left: -10%;
    bottom: -5%;
    max-width: 180px;
  }
}
@media (max-width: 991.98px) {
  .faq-content-two .shape img {
    left: 6%;
    bottom: -7%;
  }
}
@media (max-width: 767.98px) {
  .faq-content-two .shape img {
    display: none;
  }
}
.faq-img img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.faq-img-two {
  text-align: right;
}
@media (max-width: 991.98px) {
  .faq-img-two {
    text-align: center;
    margin-bottom: 50px;
  }
}
.faq-img-two img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .faq-img-three {
    text-align: center;
    margin-bottom: 50px;
  }
}
.faq-img-three img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.faq-mask-img {
  -webkit-mask-image: url(../img/images/faq_mask_img.svg);
  mask-image: url(../img/images/faq_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 491px;
  height: 311px;
}
@media (max-width: 1199.98px) {
  .faq-mask-img {
    width: 450px;
    height: 286px;
  }
}
@media (max-width: 991.98px) {
  .faq-mask-img {
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .faq-mask-img {
    width: 340px;
    height: 215px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-mask-img {
    width: 390px;
    height: 250px;
  }
}
.faq-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-wrap .accordion-item {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--bni-border-5);
  background-color: transparent;
}
.faq-wrap .accordion-item:first-child {
  border-top: 1px solid var(--bni-border-5);
}
.faq-wrap .accordion-button {
  font-size: 22px;
  font-weight: 600;
  padding: 30px 30px 30px 0;
  color: var(--bni-heading-color);
  background: transparent;
  position: relative;
}
@media (max-width: 767.98px) {
  .faq-wrap .accordion-button {
    font-size: 18px;
  }
}
.faq-wrap .accordion-button:not(.collapsed) {
  color: var(--bni-theme-primary);
  background: transparent;
  box-shadow: none;
}
.faq-wrap .accordion-button:not(.collapsed)::before {
  content: "\f10a";
  color: var(--bni-theme-primary);
}
.faq-wrap .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.faq-wrap .accordion-button::after {
  display: none;
}
.faq-wrap .accordion-button::before {
  content: "\f109";
  position: absolute;
  right: 0;
  top: 28px;
  font-family: "flaticon";
  font-weight: 400;
  font-size: 20px;
  color: var(--bni-color-gray-6);
}
.faq-wrap .accordion-body {
  padding: 0 0 30px;
}
.faq-wrap .accordion-body p {
  margin-bottom: 0;
}
.faq-wrap-two {
  margin-left: 45px;
}
@media (max-width: 1199.98px) {
  .faq-wrap-two {
    margin-left: 0;
  }
}
.faq-wrap-two .accordion-item {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: none;
  border-bottom: none;
  background-color: var(--bni-color-white-default);
  overflow: hidden;
  margin-bottom: 6px;
}
.faq-wrap-two .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap-two .accordion-item:first-child {
  border-top: none;
}
.faq-wrap-two .accordion-button {
  font-size: 20px;
  font-weight: 600;
  padding: 23px 75px 23px 30px;
  color: var(--bni-heading-color);
  background: var(--bni-color-white-default);
  position: relative;
}
@media (max-width: 767.98px) {
  .faq-wrap-two .accordion-button {
    font-size: 18px;
    padding: 23px 60px 23px 20px;
  }
}
.faq-wrap-two .accordion-button:not(.collapsed)::before {
  content: "\f10a";
  color: var(--bni-color-white-default);
  background: var(--bni-theme-primary);
}
.faq-wrap-two .accordion-button::after {
  display: none;
}
.faq-wrap-two .accordion-button::before {
  content: "\f109";
  position: absolute;
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 30px;
  top: 16px;
  font-family: "flaticon";
  font-weight: 400;
  font-size: 16px;
  background: var(--bni-border-1);
  color: var(--bni-color-gray-4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .faq-wrap-two .accordion-button::before {
    right: 15px;
  }
}
.faq-wrap-two .accordion-body {
  padding: 0 30px 30px;
}
@media (max-width: 767.98px) {
  .faq-wrap-two .accordion-body {
    padding: 0 20px 25px;
  }
}
.faq-wrap-two .accordion-body p {
  margin-bottom: 0;
}
.faq-wrap-three .accordion-button::before {
  content: "\f109";
  position: absolute;
  right: 0;
  top: 28px;
  font-family: "flaticon";
  font-weight: 700;
  font-size: 14px;
  color: var(--bni-theme-primary);
  border: 2px solid var(--bni-theme-primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-wrap-four .accordion-item {
  border: none;
  margin-bottom: 6px;
}
.faq-wrap-four .accordion-item:first-child {
  border: none;
}
.faq-wrap-four .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap-four .accordion-button {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 14px 52px 14px 20px;
  border: 1px solid var(--bni-color-gray-4);
  background: var(--bni-color-gray-2);
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -o-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  border-radius: 8px !important;
}
.faq-wrap-four .accordion-button:not(.collapsed) {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.faq-wrap-four .accordion-button:not(.collapsed)::before {
  color: var(--bni-color-white-default);
}
.faq-wrap-four .accordion-button::before {
  right: 20px;
  top: 15px;
  font-size: 18px;
  color: var(--bni-theme-primary);
}
.faq-wrap-four .accordion-body {
  padding: 20px 20px 25px;
}
.faq-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.faq-shape-wrap img:nth-child(1) {
  left: 0;
  top: 0;
}
.faq-shape-wrap img:nth-child(2) {
  right: 0;
  top: 0;
}

/*=============================
    	14. Testimonial
===============================*/
.testimonial-area {
  position: relative;
  z-index: 1;
  background: var(--bni-color-gray-1);
  padding: 245px 0 140px;
  margin-top: -105px;
}
@media (max-width: 767.98px) {
  .testimonial-area {
    padding: 210px 0 100px;
  }
}
.testimonial-area-two {
  position: relative;
  z-index: 1;
}
.testimonial-area-two::before {
  content: "";
  position: absolute;
  right: -300px;
  top: 0;
  width: 560px;
  height: 560px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #7838FF;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.testimonial-area-three {
  position: relative;
  z-index: 1;
}
.testimonial-area-three::before {
  content: "";
  position: absolute;
  left: -244px;
  top: 70px;
  width: 460px;
  height: 460px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #7838FF;
  filter: blur(125px);
  opacity: 0.1;
  z-index: -1;
}
.testimonial-area-six {
  padding: 130px 0 130px;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .testimonial-area-six {
    padding: 100px 0;
  }
}
.testimonial-area-seven {
  position: relative;
  z-index: 1;
}
.testimonial-bg {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.testimonial-bg-two {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 140px 0 225px;
}
@media (max-width: 767.98px) {
  .testimonial-bg-two {
    padding: 100px 0 185px;
  }
}
.testimonial-bg-three {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.testimonial-bg-four {
  background-size: cover;
  background-position: center;
  background-color: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
}
.testimonial-wrap {
  padding: 0 110px;
  position: relative;
}
@media (max-width: 991.98px) {
  .testimonial-wrap {
    padding: 0 70px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-wrap {
    padding: 0 0;
  }
}
.testimonial-wrap-two {
  padding: 0 120px;
}
@media (max-width: 991.98px) {
  .testimonial-wrap-two {
    padding: 0 70px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-wrap-two {
    padding: 0 0;
  }
}
.testimonial-wrap-three {
  position: relative;
}
.testimonial-item {
  text-align: center;
}
.testimonial-item-two {
  background: var(--bni-color-white-default);
  border-radius: 20px;
  border: 1px solid var(--bni-border-9);
  padding: 35px 35px;
  position: relative;
  z-index: 1;
}
.testimonial-item-two > p {
  margin-bottom: 22px;
}
.testimonial-item-three {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid var(--bni-border-9);
  background: var(--bni-color-white-default);
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .testimonial-item-three {
    padding: 30px 30px;
  }
}
.testimonial-item-five {
  border: none;
  box-shadow: -13px 10px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.testimonial-item-five > p {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-item-five .testimonial-icon-two {
  color: #E3E3E3;
}
.testimonial-item-five .testimonial-author {
  gap: 10px;
}
.testimonial-item-five .testimonial-author .thumb {
  width: 50px;
  height: 50px;
}
.testimonial-item-six {
  border: 1px solid #E5E5E5;
  padding: 40px 40px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  background: var(--bni-color-white-default);
}
@media (max-width: 1199.98px) {
  .testimonial-item-six {
    padding: 30px 30px;
  }
}
.testimonial-item-seven {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.testimonial-item-wrap-two {
  margin-right: 100px;
}
@media (max-width: 1199.98px) {
  .testimonial-item-wrap-two {
    margin-right: 0;
  }
}
.testimonial-item-wrap-three {
  position: relative;
  z-index: 1;
}
.testimonial-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-5);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  color: var(--bni-theme-primary);
}
.testimonial-icon-two svg {
  position: absolute;
  right: 35px;
  bottom: 45px;
  z-index: -1;
}
.testimonial-icon-three svg {
  position: absolute;
  right: 35px;
  bottom: -1px;
  z-index: -3;
  width: 56px;
  height: auto;
}
.testimonial-content > p {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.testimonial-content-bottom .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-content-bottom span {
  display: block;
}
.testimonial-content-bottom-two .title {
  color: var(--bni-color-white-default);
}
.testimonial-content-bottom-two span {
  color: #B3CCFF;
}
.testimonial-content-bottom-three .title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonial-content-bottom-three span {
  display: block;
  line-height: 1;
  color: #7F838C;
}
.testimonial-content-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.testimonial-content-top .testimonial-rating-two {
  margin-bottom: 0;
}
.testimonial-content-two > p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--bni-border-1);
}
.testimonial-content-three {
  text-align: center;
}
.testimonial-content-three > p {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
  color: var(--bni-color-white-default);
  font-style: italic;
  text-transform: capitalize;
  line-height: 1.63;
}
@media (max-width: 767.98px) {
  .testimonial-content-three > p {
    font-size: 20px;
  }
}
.testimonial-content-three .testimonial-rating {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .testimonial-content-four {
    margin-bottom: 50px;
  }
}
.testimonial-content-four .section-title .title {
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .testimonial-content-four .section-title .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-content-four .section-title .title {
    font-size: 30px;
  }
}
.testimonial-content-four p {
  margin-bottom: 20px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .testimonial-content-four p {
    width: 100%;
  }
}
.testimonial-content-five p {
  margin-bottom: 12px;
}
.testimonial-content-six {
  margin-right: 90px;
}
@media (max-width: 1199.98px) {
  .testimonial-content-six {
    margin-right: 0;
  }
}
.testimonial-content-seven p {
  color: var(--bni-color-white-default);
}
.testimonial-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-author .thumb {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}
.testimonial-author .thumb img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.testimonial-author .content .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
.testimonial-author .content span {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 15px;
}
.testimonial-author .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--bni-color-yellow-light);
  gap: 4px;
}
.testimonial-author-two {
  gap: 15px;
  margin-bottom: 12px;
}
.testimonial-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bni-color-yellow-light);
  gap: 5px;
  margin-bottom: 15px;
}
.testimonial-rating-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bni-color-yellow-light);
  margin-bottom: 15px;
}
.testimonial-nav .swiper-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}
.testimonial-nav .swiper-wrapper .swiper-slide {
  width: auto !important;
}
.testimonial-nav .swiper-wrapper button {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  width: 65px;
}
.testimonial-nav .swiper-wrapper button img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  filter: grayscale(1);
}
.testimonial-nav .swiper-slide-thumb-active button img {
  filter: grayscale(0);
}
@media (max-width: 767.98px) {
  .testimonial-nav-two {
    display: none;
  }
}
.testimonial-nav-two button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
}
.testimonial-nav-two button.testimonial-button-next {
  left: auto;
  right: 0;
}
.testimonial-nav-two button.testimonial-button-prev {
  transform: translateY(-50%) rotate(180deg);
}
.testimonial-nav-two button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.testimonial-nav-three .swiper-wrapper button {
  border: 3px solid var(--bni-color-white-default);
  width: 50px;
}
.testimonial-nav-four button {
  width: 50px;
  height: 50px;
  background: #0039CB;
  color: var(--bni-color-white-default);
}
.testimonial-nav-four button:hover {
  background: var(--bni-theme-secondary);
}
@media (max-width: 991.98px) {
  .testimonial-nav-five {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
  }
}
.testimonial-nav-five button {
  width: 50px;
  height: 50px;
  background: #0039CB;
  color: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: none;
  position: absolute;
  left: -85px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 1500px) {
  .testimonial-nav-five button {
    left: -55px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-nav-five button {
    left: -15px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-nav-five button {
    position: inherit;
    transform: translateY(0);
  }
}
.testimonial-nav-five button:hover {
  background: var(--bni-theme-secondary);
}
.testimonial-nav-five button.testimonial-button-next {
  left: auto;
  right: -85px;
}
@media (max-width: 1500px) {
  .testimonial-nav-five button.testimonial-button-next {
    right: -55px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-nav-five button.testimonial-button-next {
    right: -15px;
  }
}
.testimonial-nav-five button.testimonial-button-prev {
  transform: translateY(-50%) rotate(-180deg);
}
@media (max-width: 991.98px) {
  .testimonial-nav-five button.testimonial-button-prev {
    transform: translateY(0) rotate(-180deg);
  }
}
.testimonial-nav-six {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-nav-six button {
  width: 60px;
  height: 60px;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
  padding: 0;
}
.testimonial-nav-six button svg {
  width: 26px;
  height: auto;
}
.testimonial-nav-six button.testimonial-button-prev {
  transform: rotate(-180deg);
}
.testimonial-nav-six button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
@media (max-width: 991.98px) {
  .testimonial-nav-seven {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }
}
.testimonial-nav-seven button {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
  position: absolute;
  left: -85px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1500px) {
  .testimonial-nav-seven button {
    left: -50px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-nav-seven button {
    left: -20px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-nav-seven button {
    position: inherit;
    transform: translateY(0);
  }
}
.testimonial-nav-seven button:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.testimonial-nav-seven button.testimonial-button-next {
  left: auto;
  right: -85px;
}
@media (max-width: 1500px) {
  .testimonial-nav-seven button.testimonial-button-next {
    right: -50px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-nav-seven button.testimonial-button-next {
    right: -20px;
  }
}
.testimonial-nav-eight button {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.testimonial-nav-eight button:hover {
  background: var(--bni-theme-secondary);
}
.testimonial-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.testimonial-shape-wrap img:nth-child(1) {
  left: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .testimonial-shape-wrap img:nth-child(1) {
    max-width: 230px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-shape-wrap img:nth-child(1) {
    max-width: 160px;
  }
}
.testimonial-shape-wrap img:nth-child(2) {
  left: 10%;
  top: 0;
}
.testimonial-shape-wrap img:nth-child(3) {
  left: 0;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .testimonial-shape-wrap img:nth-child(3) {
    max-width: 180px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-shape-wrap img:nth-child(3) {
    max-width: 140px;
  }
}
.testimonial-shape-wrap img:nth-child(4) {
  right: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .testimonial-shape-wrap img:nth-child(4) {
    max-width: 350px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-shape-wrap img:nth-child(4) {
    max-width: 250px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-shape-wrap img:nth-child(4) {
    max-width: 160px;
  }
}
.testimonial-shape-wrap img:nth-child(5) {
  right: 0;
  bottom: 26%;
}
@media (max-width: 1500px) {
  .testimonial-shape-wrap img:nth-child(5) {
    max-width: 130px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-shape-wrap img:nth-child(5) {
    max-width: 90px;
    bottom: 13%;
  }
}
@media (max-width: 767.98px) {
  .testimonial-shape-wrap img:nth-child(5) {
    max-width: 60px;
    bottom: 8%;
  }
}
.testimonial-shape-wrap img:nth-child(6) {
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}
.testimonial-shape-wrap-two img {
  position: absolute;
  left: 115px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .testimonial-shape-wrap-two img {
    left: 40px;
  }
}
.testimonial-shape-two img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
}
.testimonial-shape-three img {
  position: absolute;
  right: 19%;
  top: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .testimonial-shape-three img {
    right: 8%;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-shape-three img {
    right: 7%;
    width: 500px;
  }
}

.testimonial-active-four {
  margin-right: 1px;
}

.testimonial-active-five {
  height: 536px;
}
@media (max-width: 767.98px) {
  .testimonial-active-five {
    height: 355px;
  }
}

/*=============================
    	15. Blog
===============================*/
.blog-post-area-three {
  position: relative;
  z-index: 1;
}
.blog-post-area-three::before {
  content: "";
  position: absolute;
  left: -340px;
  top: 110px;
  width: 560px;
  height: 560px;
  background: #FF7438;
  opacity: 0.1;
  filter: blur(150px);
  z-index: -1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog-post-area-four {
  background: var(--bni-color-gray-2);
}
.blog-post-area-six {
  background: var(--bni-color-gray-1);
}
.blog-post-area-eight {
  background: var(--bni-color-gray-2);
}
.blog-post-item {
  background: var(--bni-color-white-default);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}
.blog-post-item-two {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-6);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 25px 30px;
}
@media (max-width: 767.98px) {
  .blog-post-item-two {
    padding: 25px 25px;
  }
}
.blog-post-item-three {
  background: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 22px 22px;
  border: 1px solid var(--bni-border-6);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  gap: 25px;
}
@media (max-width: 1199.98px) {
  .blog-post-item-three {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .blog-post-item-three {
    flex-wrap: wrap;
  }
}
.blog-post-item-four {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-6);
  padding: 30px 30px 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 1199.98px) {
  .blog-post-item-four {
    padding: 20px 20px 15px;
  }
}
.blog-post-item-five {
  margin-bottom: 40px;
}
.blog-post-thumb {
  position: relative;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.blog-post-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .blog-post-thumb img {
    height: auto;
  }
}
.blog-post-thumb-two {
  position: relative;
  margin-bottom: 15px;
}
.blog-post-thumb-two img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  height: 310px;
  object-fit: cover;
  width: 100%;
}
.blog-post-thumb-three {
  width: 215px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .blog-post-thumb-three {
    width: 195px;
  }
}
@media (max-width: 991.98px) {
  .blog-post-thumb-three {
    width: 215px;
  }
}
@media (max-width: 767.98px) {
  .blog-post-thumb-three {
    width: 100%;
  }
}
.blog-post-thumb-three img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .blog-post-thumb-three img {
    height: 300px;
  }
}
.blog-post-thumb-four {
  margin-bottom: 22px;
}
.blog-post-thumb-four img {
  width: 100%;
  height: 258px;
  object-fit: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.blog-post-thumb-five {
  margin-bottom: 30px;
}
.blog-post-thumb-five img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  height: 452px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .blog-post-thumb-five img {
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .blog-post-thumb-five img {
    height: 320px;
  }
}
.blog-post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.blog-post-date span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bni-color-white-default);
  line-height: 1;
  font-weight: 500;
  padding: 13px 17px 13px 24px;
  font-size: 16px;
}
.blog-post-date span svg {
  width: 20px;
  height: 20px;
}
.blog-post-date .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--bni-theme-primary);
}
.blog-post-date .shape svg {
  width: 100%;
  height: 100%;
}
.blog-post-date-two {
  position: absolute;
  left: 30px;
  top: 27px;
}
.blog-post-date-two span {
  display: block;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 5px 10px;
}
.blog-post-meta {
  margin-bottom: 10px;
}
.blog-post-meta .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.blog-post-meta .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
}
.blog-post-meta .list-wrap li svg {
  color: var(--bni-theme-primary);
}
.blog-post-meta .list-wrap li a {
  color: var(--bni-body-color);
}
.blog-post-meta .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.blog-post-content {
  border: 1px solid var(--bni-border-6);
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -o-border-radius: 0 0 15px 15px;
  -ms-border-radius: 0 0 15px 15px;
  border-radius: 0 0 15px 15px;
  padding: 32px 30px;
}
@media (max-width: 1199.98px) {
  .blog-post-content {
    padding: 24px 20px;
  }
}
.blog-post-content .title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}
.blog-post-content .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-content .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog-post-content-two .title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}
.blog-post-content-two .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-content-two .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog-post-content-three .title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.blog-post-content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog-post-content-three p {
  margin-bottom: 15px;
  font-weight: 500;
}
.blog-post-content-four .blog-post-author {
  margin-bottom: 20px;
}
.blog-post-content-four .title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .blog-post-content-four .title {
    font-size: 20px;
  }
}
.blog-post-content-four .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-content-four .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog-post-content-five .title {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .blog-post-content-five .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog-post-content-five .title {
    font-size: 28px;
  }
}
.blog-post-content-five .title a {
  display: inline;
  background-image: linear-gradient(var(--bni-heading-color), var(--bni-heading-color)), linear-gradient(var(--bni-heading-color), var(--bni-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-content-five .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.blog-post-content-five p {
  margin-bottom: 25px;
}
.blog-post-tag {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 8px 10px;
  line-height: 1;
  margin-bottom: 15px;
}
.blog-post-tag:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.blog-post-tag-two {
  font-size: 14px;
  font-weight: 500;
  display: block;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  position: absolute;
  left: 16px;
  top: 18px;
  line-height: 1;
  padding: 8px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.blog-post-tag-two:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}
.blog-post-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-author img {
  width: 36px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog-post-author span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--bni-color-gray-7);
}
.blog-post-author span a {
  color: var(--bni-body-color);
}
.blog-post-author span a:hover {
  color: var(--bni-theme-primary);
}
.blog-details-content .title {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .blog-details-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog-details-content .title {
    font-size: 28px;
  }
}
.blog-details-content > p {
  margin-bottom: 15px;
}
.blog-details-content .title-two {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .blog-details-content .title-two {
    font-size: 26px;
  }
}
.blog-details-inner {
  margin: 40px 0 55px;
}
.blog-details-inner .row .col-46 {
  width: 46%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .blog-details-inner .row .col-46 {
    width: 100%;
  }
}
.blog-details-inner .row .col-54 {
  width: 54%;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .blog-details-inner .row .col-54 {
    width: 100%;
  }
}
.blog-details-inner-content .title {
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 30px;
}
@media (max-width: 1199.98px) {
  .blog-details-inner-content .title {
    font-size: 26px;
  }
}
.blog-details-inner-content p {
  margin-bottom: 18px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .blog-details-inner-content p {
    width: 100%;
  }
}
.blog-details-inner-thumb {
  position: relative;
}
@media (max-width: 767.98px) {
  .blog-details-inner-thumb {
    margin-bottom: 30px;
  }
}
.blog-details-inner-thumb img {
  width: 100%;
  height: 287px;
  object-fit: cover;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .blog-details-inner-thumb img {
    height: 250px;
  }
}
.blog-details-inner-thumb .play-btn {
  width: 62px;
  height: 62px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.blog-details-inner-thumb .play-btn:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.blog-details-bottom {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .blog-details-bottom .post-tags {
    margin-bottom: 30px;
  }
}
.blog-details-bottom .post-tags .title {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-body-color);
}
.blog-details-bottom .post-tags .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.blog-details-bottom .post-tags .list-wrap li a {
  background: var(--bni-color-white-default);
  padding: 5px 16px;
  display: block;
  border-radius: 4px;
  color: var(--bni-theme-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--bni-color-gray-4);
}
.blog-details-bottom .post-tags .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.blog-details-bottom .post-share .title {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-body-color);
}
.blog-details-bottom .post-share .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-details-bottom .post-share .list-wrap li a {
  font-size: 16px;
  color: var(--bni-theme-primary);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background: var(--bni-color-gray-4);
}
.blog-details-bottom .post-share .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.blog-details-bottom .post-share .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.blog-sidebar {
  margin-right: 26px;
}
@media (max-width: 1199.98px) {
  .blog-sidebar {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .blog-sidebar {
    margin-top: 100px;
  }
}
.blog-sidebar-two {
  margin-left: 26px;
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .blog-sidebar-two {
    margin-left: 0;
  }
}
.blog-search input {
  padding: 15px 64px 15px 18px !important;
  height: 60px;
}
.blog-search button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary) !important;
  color: var(--bni-color-white-default) !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  right: 6px !important;
}
.blog-search button:hover {
  background: var(--bni-theme-secondary) !important;
}
.blog-avatar-wrap {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  padding: 42px 40px;
  background: var(--bni-color-gray-1);
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .blog-avatar-wrap {
    padding: 35px 25px;
  }
}
@media (max-width: 767.98px) {
  .blog-avatar-wrap {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 25px;
  }
}
.blog-avatar-img {
  width: 115px;
  flex: 0 0 auto;
}
.blog-avatar-img img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog-avatar-info .designation {
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--bni-heading-font-family);
  line-height: 1;
  margin-bottom: 8px;
}
.blog-avatar-info .name {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--bni-theme-primary);
}
.blog-avatar-info p {
  margin-bottom: 0;
}

.rc-post-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.rc-post-item:last-child {
  margin-bottom: 0;
}
.rc-post-item .thumb {
  width: 90px;
  flex: 0 0 auto;
}
.rc-post-item .thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.rc-post-item .content .date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 7px;
  line-height: 1;
  margin-bottom: 14px;
}
.rc-post-item .content .date svg {
  color: var(--bni-theme-primary);
}
.rc-post-item .content .title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.bs-cat-list .list-wrap li {
  border-bottom: 1px solid #DEE0EC;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.bs-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.bs-cat-list .list-wrap li a {
  font-size: 17px;
  font-weight: 500;
  color: var(--bni-body-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-cat-list .list-wrap li a span {
  font-weight: 400;
  font-size: 16px;
}
.bs-cat-list .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}

.sidebar-tag-list .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.sidebar-tag-list .list-wrap li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-theme-primary);
  text-transform: capitalize;
  background: var(--bni-color-gray-4);
  display: block;
  padding: 13px 18px;
  line-height: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.sidebar-tag-list .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}

blockquote {
  margin: 40px 50px;
  background: var(--bni-color-gray-1);
  padding: 25px 25px 25px 30px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  blockquote {
    margin: 40px 0;
  }
}
blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--bni-theme-primary);
}
blockquote::after {
  content: "\f10e";
  font-weight: 700;
  font-size: 42px;
  color: #DBDEF2;
  line-height: 1;
  font-family: var(--bni-icon-font-family);
  position: absolute;
  right: 32px;
  bottom: 26px;
  z-index: -1;
}
blockquote > p {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--bni-heading-color);
  font-style: italic;
  line-height: 1.6;
}
blockquote cite {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: var(--bni-heading-color);
}

.comments-wrap-title {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .comments-wrap-title {
    font-size: 26px;
  }
}
.comments-wrap .latest-comments {
  margin-bottom: 80px;
}
.comments-wrap .latest-comments .children {
  margin: 0 0 0 45px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .comments-wrap .latest-comments .children {
    margin: 0;
  }
}
.comments-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #D6DCE9;
  padding-bottom: 30px;
  margin-bottom: 35px;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .comments-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.comments-avatar {
  width: 115px;
  flex: 0 0 auto;
}
.comments-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.comments-text .avatar-name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.comments-text .avatar-name .name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.comments-text .avatar-name span {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: var(--bni-theme-primary);
}
.comments-text p {
  margin-bottom: 15px;
}
.comments-text .reply-btn {
  background: var(--bni-color-gray-1);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 6px 17px;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: var(--bni-theme-primary);
}
.comments-text .reply-btn:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}

.comment-respond {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 35px 40px 50px;
  background: var(--bni-color-gray-1);
}
@media (max-width: 1199.98px) {
  .comment-respond {
    padding: 35px 25px 35px;
  }
}
.comment-reply-title {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
.comment-form .comment-notes {
  margin-bottom: 15px;
}
.comment-form .form-grp {
  margin-bottom: 15px;
}
.comment-form .form-grp textarea, .comment-form .form-grp input {
  width: 100%;
  border: 1px solid #E6EEFF;
  background: var(--bni-color-white-default);
  font-weight: 400;
  font-size: 16px;
  color: var(--bni-heading-color);
  padding: 12px 15px;
  height: 50px;
  display: block;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.comment-form .form-grp textarea::placeholder, .comment-form .form-grp input::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: var(--bni-border-1);
}
.comment-form .form-grp textarea {
  min-height: 130px;
  max-height: 130px;
}
.comment-form .checkbox-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.comment-form .checkbox-grp input {
  width: 22px;
  margin-right: 9px;
  height: 22px;
  cursor: pointer;
}
.comment-form .checkbox-grp label {
  font-weight: 400;
  font-size: 14px;
  color: var(--bni-body-color);
  user-select: none;
}

/*=============================
    	16. Call-Back
===============================*/
.call-back-area {
  background: var(--bni-theme-secondary);
  position: relative;
  z-index: 1;
}
.call-back-wrap {
  padding: 0 80px;
}
@media (max-width: 1199.98px) {
  .call-back-wrap {
    padding: 0 0;
  }
}
.call-back-wrap-two {
  background: var(--bni-theme-primary);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px 70px;
  box-shadow: 0px 16px 50px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1199.98px) {
  .call-back-wrap-two {
    padding: 50px 50px;
  }
}
@media (max-width: 767.98px) {
  .call-back-wrap-two {
    padding: 30px 30px;
  }
}
@media (max-width: 991.98px) {
  .call-back-img {
    text-align: center;
    margin-bottom: 50px;
  }
}
.call-back-img img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.call-back-content p {
  color: var(--bni-color-gray-4);
  margin-bottom: 20px;
}
.call-back-content-two {
  width: 80%;
}
@media (max-width: 1199.98px) {
  .call-back-content-two {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .call-back-content-two {
    margin-bottom: 50px;
  }
}
.call-back-content-two .section-title .title {
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .call-back-content-two .section-title .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .call-back-content-two .section-title .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-back-content-two .section-title .title {
    font-size: 34px;
  }
}
.call-back-content-two p {
  color: var(--bni-color-white-default);
  margin-bottom: 25px;
}
.call-back-form .form-grp {
  margin-bottom: 10px;
}
.call-back-form .form-grp textarea, .call-back-form .form-grp input {
  border: none;
}
.call-back-form button {
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 600;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 12px 20px;
}
.call-back-form button:hover {
  background: var(--bni-color-sky-blue);
}
.call-back-form-two .row {
  --bs-gutter-x: 10px;
}
.call-back-form-two .form-grp {
  margin-bottom: 10px;
}
.call-back-form-two .form-grp textarea, .call-back-form-two .form-grp input {
  background: #1B5AFF;
  color: var(--bni-color-white-default);
  font-size: 14px;
  border: none;
}
.call-back-form-two .form-grp textarea::placeholder, .call-back-form-two .form-grp input::placeholder {
  color: var(--bni-color-white-default);
  font-size: 14px;
}
.call-back-form-two button {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-secondary);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 16px 20px;
  text-transform: uppercase;
}
.call-back-form-two button:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}
.call-back-shape img {
  position: absolute;
  z-index: -1;
}
.call-back-shape img:nth-child(1) {
  left: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .call-back-shape img:nth-child(1) {
    max-width: 500px;
  }
}
.call-back-shape img:nth-child(2) {
  left: 11%;
  bottom: 0;
}
.call-back-shape img:nth-child(3) {
  left: 20%;
  bottom: 11%;
}
@media (max-width: 1500px) {
  .call-back-shape img:nth-child(3) {
    left: 8%;
  }
}
@media (max-width: 767.98px) {
  .call-back-shape img:nth-child(3) {
    display: none;
  }
}
.call-back-shape img:nth-child(4) {
  right: 11%;
  top: 18%;
}
@media (max-width: 1500px) {
  .call-back-shape img:nth-child(4) {
    right: 3%;
  }
}
@media (max-width: 1199.98px) {
  .call-back-shape img:nth-child(4) {
    right: 3%;
    top: 7%;
  }
}
.call-back-shape img:nth-child(5) {
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
@media (max-width: 1500px) {
  .call-back-shape img:nth-child(5) {
    max-width: 200px;
  }
}
.call-back-shape-two img {
  position: absolute;
  z-index: -1;
}
.call-back-shape-two img:nth-child(1) {
  left: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
}
.call-back-shape-two img:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.call-back-shape-two img:nth-child(3) {
  right: 0;
  top: 0;
}

/*=============================
    	18. Marquee
===============================*/
.marquee-area-two {
  position: relative;
  z-index: 1;
  margin: 73px 0;
}
@media (max-width: 1500px) {
  .marquee-area-two {
    margin: 55px 0;
  }
}
@media (max-width: 991.98px) {
  .marquee-area-two {
    margin: 33px 0;
  }
}
.marquee-wrap-two {
  background: var(--bni-theme-primary);
  padding: 17px 0 8px;
  transform: rotate(-4.333deg);
  position: relative;
  left: -5px;
  right: -5px;
  width: 105%;
}
.marquee-wrap-three {
  background: var(--bni-theme-secondary);
  padding: 17px 0 8px;
  transform: rotate(3.864deg);
  position: absolute;
  z-index: 1;
  left: -5px;
  right: -5px;
  top: 0;
}
@media (max-width: 1199.98px) {
  .marquee-wrap-three {
    padding: 12px 0 4px;
  }
}
.marquee-wrap-four {
  transform: rotate(0);
}
.marquee-item {
  margin-right: 20px;
  display: inline;
  line-height: 1;
}
.marquee-item a {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bni-body-color);
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .marquee-item a {
    font-size: 50px;
  }
}
@media (max-width: 991.98px) {
  .marquee-item a {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .marquee-item a {
    font-size: 40px;
  }
}
.marquee-item a svg {
  margin-right: 20px;
  color: var(--bni-theme-primary);
}
.marquee-item-two a {
  font-size: 32px;
  font-weight: 700;
  color: var(--bni-color-white-default);
  -webkit-text-stroke: unset;
  letter-spacing: 3.2px;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .marquee-item-two a {
    font-size: 24px;
  }
}
.marquee-item-two a svg {
  color: var(--bni-color-white-default);
  width: 36px;
  height: 36px;
}

/*=============================
    	19. Choose
===============================*/
.choose-area {
  position: relative;
  z-index: 1;
}
.choose-area::before {
  content: "";
  position: absolute;
  left: -234px;
  bottom: -100px;
  width: 420px;
  height: 420px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #38CFFF;
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
}
.choose-area-two {
  position: relative;
  z-index: 1;
}
.choose-area-four {
  background: var(--bni-theme-secondary);
  position: relative;
  z-index: 1;
}
.choose-area-five {
  background: var(--bni-color-gray-1);
}
.choose-bg {
  background-size: cover;
  background-position: center;
}
.choose-img-wrap {
  position: relative;
  text-align: center;
}
@media (max-width: 991.98px) {
  .choose-img-wrap {
    margin-bottom: 50px;
  }
}
.choose-img-wrap img:nth-child(2) {
  left: 0;
  bottom: 0;
  position: absolute;
}
@media (max-width: 767.98px) {
  .choose-img-wrap img:nth-child(2) {
    max-width: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose-img-wrap img:nth-child(2) {
    max-width: 240px;
  }
}
.choose-img-wrap img.shape-one {
  position: absolute;
  left: 6%;
  bottom: 44%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
.choose-img-wrap img.shape-two {
  position: absolute;
  right: 33%;
  top: 3%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
.choose-img-wrap img.shape-three {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -19px;
}
.choose-img-wrap-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .choose-img-wrap-two {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .choose-img-wrap-two {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-img-wrap-two .circle-wrap {
  margin: 75px 0 0;
}
@media (max-width: 767.98px) {
  .choose-img-wrap-two .circle-wrap {
    margin: 0 auto;
  }
}
.choose-img-wrap-two .mask-img {
  -webkit-mask-image: url(../img/images/h5_choose_mask_img.svg);
  mask-image: url(../img/images/h5_choose_mask_img.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 484px;
  height: 474px;
}
@media (max-width: 1199.98px) {
  .choose-img-wrap-two .mask-img {
    width: 330px;
    height: 325px;
  }
}
@media (max-width: 991.98px) {
  .choose-img-wrap-two .mask-img {
    width: 484px;
    height: 474px;
  }
}
@media (max-width: 767.98px) {
  .choose-img-wrap-two .mask-img {
    width: 330px;
    height: 325px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose-img-wrap-two .mask-img {
    width: 400px;
    height: 395px;
  }
}
.choose-img-wrap-two .mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.choose-img-wrap-three {
  position: relative;
  text-align: right;
  z-index: 1;
  margin-left: 25px;
}
@media (max-width: 1199.98px) {
  .choose-img-wrap-three {
    margin-left: 0;
    padding-left: 50px;
  }
}
@media (max-width: 991.98px) {
  .choose-img-wrap-three {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .choose-img-wrap-three {
    padding-left: 0;
    text-align: center;
  }
}
.choose-img-wrap-three > img:nth-child(1) {
  border-radius: 24px;
  border: 10px solid var(--bni-color-white-default);
}
.choose-img-wrap-three > img:nth-child(2) {
  border-radius: 24px;
  border: 8px solid var(--bni-color-white-default);
  position: absolute;
  bottom: 40px;
  left: 0;
}
@media (max-width: 767.98px) {
  .choose-img-wrap-three > img:nth-child(2) {
    display: none;
  }
}
.choose-img-wrap-three .shape img {
  position: absolute;
  left: -16%;
  bottom: -2%;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .choose-img-wrap-three .shape img {
    display: none;
  }
}
.choose-img-wrap-four {
  position: relative;
  z-index: 1;
  padding-left: 105px;
}
@media (max-width: 1199.98px) {
  .choose-img-wrap-four {
    padding-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .choose-img-wrap-four {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .choose-img-wrap-four {
    padding-left: 0;
  }
}
.choose-img-wrap-four > img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
}
.choose-img-wrap-four > img.shape {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
}
.choose-img-wrap-four .circle-wrap {
  position: absolute;
  left: 28px;
  top: -23px;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .choose-img-wrap-four .circle-wrap {
    left: -10px;
    top: -45px;
  }
}
@media (max-width: 767.98px) {
  .choose-img-wrap-four .circle-wrap {
    display: none;
  }
}
.choose-img-two {
  position: relative;
}
@media (max-width: 991.98px) {
  .choose-img-two {
    margin-bottom: 50px;
  }
}
.choose-img-two img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  width: 100%;
}
.choose-img-two .play-btn {
  width: 80px;
  height: 80px;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.choose-img-two .play-btn:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.choose-content {
  margin-right: 85px;
}
@media (max-width: 1199.98px) {
  .choose-content {
    margin-right: 0;
  }
}
.choose-content p {
  margin-bottom: 25px;
}
.choose-content .about-list-item-two {
  margin-bottom: 35px;
}
.choose-content-two > p {
  margin-bottom: 30px;
}
.choose-content-three .about-list-item-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  margin-bottom: 35px;
}
.choose-content-three .about-list-item-two li {
  width: 50%;
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--bni-color-white-default);
}
@media (max-width: 767.98px) {
  .choose-content-three .about-list-item-two li {
    width: 100%;
  }
}
.choose-content-three p {
  margin-bottom: 30px;
  color: var(--bni-color-gray-4);
  width: 85%;
}
@media (max-width: 1199.98px) {
  .choose-content-three p {
    width: 100%;
  }
}
.choose-content-four {
  margin-left: 30px;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .choose-content-four {
    margin-left: 0;
    width: 100%;
  }
}
.choose-content-four > p {
  margin-bottom: 25px;
  color: #E9EBF8;
  width: 90%;
}
@media (max-width: 1199.98px) {
  .choose-content-four > p {
    width: 100%;
  }
}
.choose-content-five p {
  margin-bottom: 35px;
  width: 95%;
}
@media (max-width: 1199.98px) {
  .choose-content-five p {
    width: 100%;
  }
}
.choose-content-five .about-list-item li {
  margin-bottom: 24px;
}
.choose-shape img {
  position: absolute;
  z-index: -1;
}
.choose-shape img:nth-child(1) {
  right: 0;
  top: 0;
  max-width: 277px;
}
@media (max-width: 1500px) {
  .choose-shape img:nth-child(1) {
    max-width: 220px;
  }
}
@media (max-width: 1199.98px) {
  .choose-shape img:nth-child(1) {
    max-width: 180px;
  }
}
@media (max-width: 767.98px) {
  .choose-shape img:nth-child(1) {
    max-width: 150px;
  }
}
.choose-shape img:nth-child(2) {
  left: 0;
  bottom: 0;
  max-width: 233px;
}
@media (max-width: 1500px) {
  .choose-shape img:nth-child(2) {
    max-width: 200px;
  }
}
@media (max-width: 1199.98px) {
  .choose-shape img:nth-child(2) {
    max-width: 160px;
  }
}
@media (max-width: 767.98px) {
  .choose-shape img:nth-child(2) {
    max-width: 130px;
  }
}

.profit-wrap-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  text-align: left;
  background: var(--bni-color-white-default);
  position: absolute;
  left: 0;
  top: 23%;
  gap: 10px;
  padding: 20px 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 767.98px) {
  .profit-wrap-three {
    display: none;
  }
}
.profit-wrap-three .content .count {
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1;
}
.profit-wrap-three .content > p {
  margin-bottom: 0;
  font-size: 14px;
  color: #293736;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1;
}

.chart-wrap {
  background: var(--bni-color-white-default);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 115px;
  bottom: 10px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 25px 28px;
}
@media (max-width: 1199.98px) {
  .chart-wrap {
    left: 40px;
  }
}
@media (max-width: 767.98px) {
  .chart-wrap {
    left: 10px;
  }
}
.chart-wrap .content span {
  display: block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  margin-bottom: 10px;
}
.chart-wrap .content .count {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1;
}

/*=============================
    	20. Core Value
===============================*/
.core-value-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.core-value-img {
  position: relative;
  margin-right: 90px;
}
@media (max-width: 1199.98px) {
  .core-value-img {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .core-value-img {
    margin-bottom: 50px;
  }
}
.core-value-img img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 8px solid var(--bni-color-white-default);
  width: 273px;
  height: 163px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .core-value-img img:nth-child(2) {
    width: 205px;
    height: 122px;
  }
}
@media (max-width: 991.98px) {
  .core-value-img img:nth-child(2) {
    width: 260px;
    height: 156px;
  }
}
@media (max-width: 767.98px) {
  .core-value-img img:nth-child(2) {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .core-value-img img:nth-child(2) {
    display: block;
    width: 232px;
    height: 140px;
  }
}
.core-value-img img.shape {
  position: absolute;
  top: 8%;
  left: 6%;
}
@media (max-width: 1199.98px) {
  .core-value-img img.shape {
    top: 2%;
    left: 2%;
  }
}
@media (max-width: 767.98px) {
  .core-value-img img.shape {
    display: none;
  }
}
.core-value-content {
  margin-left: -40px;
}
@media (max-width: 1199.98px) {
  .core-value-content {
    margin-left: 0;
  }
}
.core-value-content > p {
  margin-bottom: 50px;
  color: var(--bni-color-white-default);
}
.core-value-shape img {
  position: absolute;
  right: 13%;
  top: 13%;
  z-index: -1;
}
@media (max-width: 1500px) {
  .core-value-shape img {
    right: 5%;
    top: 6%;
  }
}
@media (max-width: 767.98px) {
  .core-value-shape img {
    right: 7%;
    top: 34%;
    max-width: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .core-value-shape img {
    top: 3%;
  }
}

/*=============================
    	21. Work
===============================*/
.work-item {
  text-align: center;
}
.work-item-wrap {
  position: relative;
  z-index: 1;
}
.work-item-wrap .line-shape {
  position: absolute;
  left: 0;
  top: 93px;
  right: 0;
}
@media (max-width: 991.98px) {
  .work-item-wrap .line-shape {
    display: none;
  }
}
.work-item-wrap .line-shape img {
  width: 100%;
}
.work-item-wrap-two {
  position: relative;
  z-index: 1;
}
.work-item .step {
  display: inline-block;
  color: var(--bni-theme-primary);
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 10px 17px;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  transition: 0.3s linear;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .work-item .step {
    margin-bottom: 30px;
  }
}
.work-item .step::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  width: 16px;
  height: 16px;
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 2.5px solid var(--bni-color-white-default);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 991.98px) {
  .work-item .step::before {
    display: none;
  }
}
.work-item:hover .step {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.work-item:hover .step::before {
  background: var(--bni-theme-primary);
}
.work-item:hover .work-icon {
  color: var(--bni-theme-primary);
}
.work-item-two:hover .work-icon-two {
  transform: translateY(5px);
}
.work-item-two:hover .work-step {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.work-icon {
  font-size: 50px;
  color: var(--bni-border-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 25px;
}
.work-icon-two {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  background: var(--bni-color-gray-4);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  font-size: 60px;
  color: var(--bni-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 991.98px) {
  .work-thumb {
    margin-bottom: 50px;
  }
}
.work-thumb img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.work-content .title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}
.work-content p {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .work-content p {
    width: 100%;
  }
}
.work-content-two .title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.work-content-two p {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .work-content-two p {
    width: 100%;
  }
}
.work-content-three .section-title .title {
  font-weight: 500;
}
.work-content-three p {
  margin-bottom: 30px;
}
.work-list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media (max-width: 767.98px) {
  .work-list-wrap {
    gap: 15px 0;
  }
}
.work-list-wrap li {
  width: 50%;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--bni-heading-color);
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .work-list-wrap li {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .work-list-wrap li {
    width: 50%;
  }
}
.work-list-wrap li svg {
  color: var(--bni-theme-primary);
  width: 22px;
  flex: 0 0 auto;
}
.work-step {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-theme-primary);
  background: var(--bni-color-gray-1);
  line-height: 1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.work-line-shape svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  color: #BDC1DB;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .work-line-shape svg {
    width: 900px;
  }
}
@media (max-width: 991.98px) {
  .work-line-shape svg {
    display: none;
  }
}

@-webkit-keyframes dash_animation {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash_animation {
  to {
    stroke-dashoffset: 0;
  }
}
.has-animation.active-animation .work-line-shape .dashed1 {
  stroke-dashoffset: 1150;
  stroke-dasharray: 1150;
  -webkit-animation: dash_animation 3s linear forwards;
  animation: dash_animation 3s linear forwards;
}

/*=============================
    	22. Shop
===============================*/
.shop-sidebar {
  border: 1px solid var(--bni-border-14);
  padding: 30px 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-right: 32px;
}
@media (max-width: 1199.98px) {
  .shop-sidebar {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .shop-sidebar {
    margin-top: 100px;
  }
}
.shop-search {
  position: relative;
}
.shop-search input {
  border-color: var(--bni-border-14);
  padding: 11px 40px 11px 18px;
}
.shop-search button {
  border: none;
  background: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  color: var(--bni-border-1);
}
.shop-search button:hover {
  color: var(--bni-theme-primary);
}
.shop-cat-list .list-wrap li {
  margin-bottom: 15px;
}
.shop-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.shop-cat-list .form-check {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
  min-height: inherit;
}
.shop-cat-list .form-check-input {
  border-radius: 4px;
  border: 1px solid #9D9CAE;
  margin: 0 10px 0 0;
  width: 18px;
  height: 18px;
  padding: 0;
}
.shop-cat-list .form-check-input:checked {
  background-color: var(--bni-theme-primary);
}
.shop-cat-list .form-check-input:focus {
  box-shadow: none;
  border-color: var(--bni-theme-primary);
}
.shop-cat-list .form-check-label {
  flex-grow: 1;
  font-size: 15px;
  font-weight: 400;
  color: var(--bni-body-color);
  user-select: none;
  text-transform: capitalize;
}
.shop-cat-list .form-check .rating {
  display: flex;
  align-items: center;
}
.shop-cat-list .form-check .rating ul {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--bni-color-yellow-light-2);
  gap: 4px;
}
.shop-cat-list .form-check .rating ul li {
  margin-bottom: 0;
}
.shop-cat-list .form-check .rating ul li.delete {
  color: #B5B5B5;
}
.shop-cat-list .form-check .rating span {
  color: #B2B8C4;
  margin-left: 5px;
  font-size: 14px;
}
.shop-top-wrap {
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 25px;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .shop-top-left {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-top-left {
    text-align: left;
  }
}
.shop-top-left p {
  margin-bottom: 0;
  font-size: 14px;
}
.shop-top-right {
  width: 150px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .shop-top-right {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-top-right {
    margin-left: auto;
  }
}
.shop-top-right select {
  background-color: transparent;
  border: none;
  color: var(--bni-body-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 4px;
  outline: none;
  padding: 5px 20px 5px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 40px;
  cursor: pointer;
}
.shop-top-right::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 0;
  font-size: 14px;
  color: #596580;
}
.shop-price-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.shop-price-wrap .max-price span, .shop-price-wrap .min-price span {
  color: #A5ABB7;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.shop-price-wrap .max-price input, .shop-price-wrap .min-price input {
  background: var(--bni-color-gray-1);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--bni-body-color);
  padding: 8px 10px;
  height: 40px;
}
.shop-price-wrap .divider {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--bni-border-1);
  transform: translateY(-12px);
}
.shop-price-btn {
  width: 100%;
  padding: 14px 25px;
  justify-content: center;
  margin-top: 25px;
}
.shop-item {
  background: var(--bni-color-white-default);
  border: 1px solid var(--bni-border-14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.shop-item:hover .shop-action li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-item:hover .shop-thumb img {
  transform: scale(1.05);
}
.shop-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shop-thumb img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.shop-action {
  position: absolute;
  right: 17px;
  top: 19px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.shop-action li {
  transition: visibility 0.3s ease-out 0.1s, opacity 0.3s ease-out 0.15s, transform 0.3s ease-out 0.1s;
}
.shop-action li:not(:first-child) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.shop-action li:nth-child(2) {
  transition-delay: 0.15s;
}
.shop-action li:nth-child(3) {
  transition-delay: 0.2s;
}
.shop-action li:nth-child(4) {
  transition-delay: 0.25s;
}
.shop-action li a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-color-gray-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bni-border-1);
  font-size: 15px;
}
.shop-action li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.shop-content {
  padding: 20px 24px 22px;
}
.shop-content .tag {
  display: block;
  font-size: 14px;
  color: #A5A5AC;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}
.shop-content .tag:hover {
  color: var(--bni-theme-primary);
}
.shop-content .title {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.shop-content .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 13px;
  gap: 3px;
  color: var(--bni-color-yellow-light-2);
  margin-bottom: 12px;
}
.shop-content .rating .avg {
  color: var(--bni-border-1);
  font-weight: 500;
  margin-left: 2px;
}
.shop-content .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--bni-theme-primary);
}
.shop-content .price del {
  font-size: 14px;
  font-weight: 500;
  color: #A5A5AC;
}
.shop-details-images-wrap {
  margin-right: 30px;
}
@media (max-width: 1199.98px) {
  .shop-details-images-wrap {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .shop-details-images-wrap {
    margin-bottom: 50px;
  }
}
.shop-details-images-wrap .nav-tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: none;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .shop-details-images-wrap .nav-tabs {
    gap: 15px;
  }
}
.shop-details-images-wrap .nav-item {
  width: 120px;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .shop-details-images-wrap .nav-item {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .shop-details-images-wrap .nav-item {
    width: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-details-images-wrap .nav-item {
    width: 100px;
  }
}
.shop-details-images-wrap .nav-link {
  margin-bottom: 0;
  padding: 0;
  border: 1px solid var(--bni-border-14);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
}
.shop-details-images-wrap .nav-link img {
  opacity: 0.5;
}
.shop-details-images-wrap .nav-link.active {
  border: 1px solid #FBCE99;
}
.shop-details-images-wrap .nav-link.active img {
  opacity: 1;
}
.shop-details-images-wrap .tab-content .tab-pane {
  position: relative;
}
.shop-details-images-wrap .tab-content .tab-pane img {
  border-radius: 15px;
  border: 1px solid var(--bni-border-14);
}
.shop-details-images-wrap .tab-content .tab-pane .expand-img {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--bni-border-1);
  color: #8D95A8;
}
.shop-details-images-wrap .tab-content .tab-pane .expand-img svg {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.shop-details-images-wrap .tab-content .tab-pane .expand-img:hover svg {
  transform: scale(1.08);
}
.shop-details-content > .title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .shop-details-content > .title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .shop-details-content > .title {
    font-size: 24px;
  }
}
.shop-details-content .price {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bni-theme-primary);
  margin-bottom: 20px;
}
.shop-details-content .price del {
  font-size: 16px;
  font-weight: 400;
  color: var(--bni-body-color);
}
.shop-details-content-inner {
  border-top: 1px solid #E6E8EC;
  padding-top: 17px;
  border-bottom: 1px solid #E6E8EC;
  padding-bottom: 22px;
  margin-bottom: 15px;
}
.shop-details-content-inner p {
  margin-bottom: 12px;
}
.shop-details-content-inner .list-wrap li {
  font-size: 15px;
  color: var(--bni-heading-color);
  position: relative;
  padding-left: 15px;
}
.shop-details-content-inner .list-wrap li::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--bni-heading-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.shop-details-color {
  margin-bottom: 40px;
}
.shop-details-color .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #394767;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.shop-details-color .title strong {
  font-weight: 400;
  color: var(--bni-heading-color);
}
.shop-details-color .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
}
.shop-details-color .list-wrap li {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-white-default);
  border: 2px solid #D9D9D9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.shop-details-color .list-wrap li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #E4E4E4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.shop-details-color .list-wrap li:nth-child(2)::before {
  background: #4E4E4E;
}
.shop-details-color .list-wrap li:nth-child(3)::before {
  background: #7A9FB1;
}
.shop-details-color .list-wrap li:nth-child(4)::before {
  background: #CBC9DF;
}
.shop-details-review-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #394767;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.shop-details-review-wrap .product-review {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-details-review-wrap .product-review .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--bni-color-yellow-light);
  gap: 4px;
}
.shop-details-review-wrap .product-review span {
  font-size: 15px;
  color: #4A4C53;
  font-weight: 400;
}
.shop-details-review-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.shop-details-review-wrap li::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: #4A4C53;
}
.shop-details-review-wrap li:last-child::before {
  display: none;
}
.shop-details-review-wrap li.product-sku span {
  font-weight: 400;
  color: var(--bni-heading-color);
}
.shop-details-review-wrap li.product-availability span {
  color: #27AE60;
}
.shop-details-qty {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
}
.shop-details-qty .cart-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 25px;
  width: 60%;
  justify-content: center;
}
.shop-details-qty .cart-btn svg {
  width: 24px;
  height: 24px;
}
.shop-details-qty .cart-btn:hover svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
}
.shop-details-wishlist-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.shop-details-wishlist-wrap a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #E6E8EC;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 16px 20px;
  line-height: 1;
  color: var(--bni-body-color);
}
.shop-details-wishlist-wrap a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.shop-details-bottom .list-wrap .sd-social, .shop-details-bottom .list-wrap .sd-tag, .shop-details-bottom .list-wrap .sd-category {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}
.shop-details-bottom .list-wrap .sd-social:last-child, .shop-details-bottom .list-wrap .sd-tag:last-child, .shop-details-bottom .list-wrap .sd-category:last-child {
  margin-bottom: 0;
}
.shop-details-bottom .list-wrap .sd-social .title, .shop-details-bottom .list-wrap .sd-tag .title, .shop-details-bottom .list-wrap .sd-category .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--bni-body-color);
}
.shop-details-bottom .list-wrap .sd-social > a, .shop-details-bottom .list-wrap .sd-tag > a, .shop-details-bottom .list-wrap .sd-category > a {
  color: #596580;
}
.shop-details-bottom .list-wrap .sd-social > a:hover, .shop-details-bottom .list-wrap .sd-tag > a:hover, .shop-details-bottom .list-wrap .sd-category > a:hover {
  color: var(--bni-theme-primary);
}
.shop-details-bottom .list-wrap .sd-social .list-wrap, .shop-details-bottom .list-wrap .sd-tag .list-wrap, .shop-details-bottom .list-wrap .sd-category .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
}
.shop-details-bottom .list-wrap .sd-social .list-wrap li a, .shop-details-bottom .list-wrap .sd-tag .list-wrap li a, .shop-details-bottom .list-wrap .sd-category .list-wrap li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 1px solid #E6E8EC;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  justify-content: center;
  color: var(--bni-heading-color);
}
.shop-details-bottom .list-wrap .sd-social .list-wrap li a svg, .shop-details-bottom .list-wrap .sd-tag .list-wrap li a svg, .shop-details-bottom .list-wrap .sd-category .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.shop-details-bottom .list-wrap .sd-social .list-wrap li a:hover, .shop-details-bottom .list-wrap .sd-tag .list-wrap li a:hover, .shop-details-bottom .list-wrap .sd-category .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border: var(--bni-theme-primary);
}

.product-desc-wrap {
  margin-top: 100px;
}
.product-desc-wrap .tab-content p {
  margin-bottom: 0;
}
.product-desc-wrap .nav-tabs {
  border-bottom: 2px solid #E6E8EC;
  gap: 30px;
  margin-bottom: 25px;
}
.product-desc-wrap .nav-tabs .nav-link {
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 5px 10px;
  font-weight: 500;
  font-size: 22px;
  color: var(--bni-border-1);
  position: relative;
}
.product-desc-wrap .nav-tabs .nav-link.active {
  color: var(--bni-heading-color);
  font-weight: 600;
}
.product-desc-wrap .nav-tabs .nav-link.active::before {
  opacity: 1;
}
.product-desc-wrap .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 5px;
  background: var(--bni-theme-primary);
  transition: 0.3s linear;
  opacity: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.product-desc-description > p {
  margin-bottom: 25px !important;
}
.product-desc-description > p:last-child {
  margin-bottom: 0 !important;
}
.product-desc-description .title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}
.product-desc-review {
  padding: 25px 30px;
  border: 1px solid #E6E8EC;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.product-desc-review .left-rc {
  margin-bottom: 10px;
}

.show-more {
  margin-top: 15px;
}
.show-more a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #394767;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.show-more a svg {
  color: #B2B8C4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.show-more a:hover {
  color: var(--bni-theme-primary);
}
.show-more a:hover svg {
  color: var(--bni-theme-primary);
}

.flash-sale {
  font-size: 12px;
  font-weight: 600;
  background: var(--bni-color-red-light);
  display: block;
  color: var(--bni-color-white-default);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 8px;
  position: absolute;
  left: 30px;
  top: 24px;
  line-height: 1;
}
.flash-sale.new {
  background: #1ABC00;
}

.pagination-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.pagination-wrap ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #F5F5F5;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 20px;
  color: var(--bni-heading-color);
}
.pagination-wrap ul li a:hover {
  color: var(--bni-color-white-default);
  background: var(--bni-body-color);
}
.pagination-wrap ul li.active a {
  color: var(--bni-color-white-default);
  background: var(--bni-body-color);
}

.cart-plus-minus {
  position: relative;
  width: 130px;
  flex: 0 0 auto;
}
.cart-plus-minus input {
  width: 100%;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  height: 50px;
  text-align: center;
  padding: 0 30px;
  font-weight: 500;
  font-size: 16px;
  color: var(--bni-heading-color);
}
.cart-plus-minus .qtybutton {
  position: absolute;
  top: 0;
  left: 0;
  width: 31px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #838383;
  cursor: pointer;
  border-right: 1px solid #D7D7D7;
  user-select: none;
  -moz-user-select: none;
  line-height: 0;
}
.cart-plus-minus .qtybutton.inc {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid #D7D7D7;
}
.cart-plus-minus .qtybutton.dec {
  font-size: 26px;
}

.related-product-area {
  background: var(--bni-color-gray-1);
  padding: 90px 0;
}
.related-product-title .title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}
.related-product-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: var(--bni-theme-primary);
}
.related-product-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
@media (max-width: 767.98px) {
  .related-product-nav {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}
.related-product-nav button {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 0 0;
}
.related-product-nav button:hover {
  background: var(--bni-theme-secondary);
}

/*=============================
    	24. Estimate
===============================*/
.estimate-area {
  position: relative;
  z-index: 1;
}
.estimate-content {
  margin-right: 135px;
}
@media (max-width: 1199.98px) {
  .estimate-content {
    margin-right: 60px;
  }
}
@media (max-width: 991.98px) {
  .estimate-content {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.estimate-content .section-title .title {
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .estimate-content .section-title .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .estimate-content .section-title .title {
    font-size: 30px;
  }
}
.estimate-content p {
  margin-bottom: 35px;
}
.estimate-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.estimate-contact .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 24px;
}
.estimate-contact .content p {
  margin-bottom: 6px;
}
.estimate-contact .content a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--bni-heading-color);
  line-height: 1;
}
.estimate-contact .content a:hover {
  color: var(--bni-theme-primary);
}
.estimate-tab-wrap {
  border-radius: 20px 40px;
  border: 1px solid #DFE1EB;
  background: var(--bni-color-gray-2);
  box-shadow: -17px 10px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-left: 180px;
}
@media (max-width: 1199.98px) {
  .estimate-tab-wrap {
    margin-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .estimate-tab-wrap {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .estimate-tab-wrap {
    padding: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .estimate-tab-wrap {
    padding: 20px;
  }
}
.estimate-tab-inner {
  border-radius: 15px 30px;
  border: 1px solid #DDDFEC;
  background: var(--bni-color-white-default);
  padding: 22px 22px;
}
@media (max-width: 767.98px) {
  .estimate-tab-inner {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .estimate-tab-inner {
    padding: 22px 22px;
  }
}
.estimate-tab-inner .nav-tabs {
  border-radius: 6px;
  border: 1px solid var(--bni-color-gray-4);
  background: var(--bni-color-gray-1);
  padding: 5px;
  margin-bottom: 18px;
}
.estimate-tab-inner .nav-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--bni-body-color);
  padding: 12px 16px;
  border: none;
  margin: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background: transparent;
  line-height: 1;
}
.estimate-tab-inner .nav-link.active {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.estimate-tab-inner .form-grp {
  margin-bottom: 10px;
}
.estimate-tab-inner .bni-btn {
  width: 100%;
  justify-content: center;
}
.estimate-img img {
  position: absolute;
  right: 33%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1500px) {
  .estimate-img img {
    right: 24%;
  }
}
@media (max-width: 1199.98px) {
  .estimate-img img {
    right: 34%;
    max-width: 400px;
  }
}
@media (max-width: 991.98px) {
  .estimate-img img {
    display: none;
  }
}
.estimate-shape img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .estimate-shape img {
    max-width: 300px;
  }
}

.range-slider-wrap {
  margin-bottom: 18px;
}
.range-slider-wrap .content-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.range-slider-wrap .content-top p {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.range-slider-wrap .content-top span {
  font-size: 18px;
  font-weight: 600;
  color: var(--bni-heading-color);
}
.range-slider-wrap .content-top span strong {
  font-weight: 600;
}
.range-slider-wrap input {
  width: 100%;
  height: 15px;
  appearance: none;
  -webkit-appearance: none;
  background: #D9D9D9;
  outline: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 0;
  border: none;
}
.range-slider-wrap input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bni-theme-primary);
  cursor: pointer;
  border: none;
  box-shadow: -807px 0 0 800px #6699FF;
}

/*=============================
    	25. Benefit
===============================*/
.benefit-area {
  background: var(--bni-color-gray-2);
}
.benefit-area-two {
  background: var(--bni-color-gray-2);
}
.benefit-img {
  position: relative;
  margin: 0 20px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .benefit-img {
    margin: 0 0;
  }
}
@media (max-width: 991.98px) {
  .benefit-img {
    margin: 0 0 50px 0;
  }
}
.benefit-img img:nth-child(1) {
  width: 100%;
}
.benefit-img img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
.benefit-img img:nth-child(3) {
  position: absolute;
  left: -12%;
  bottom: -8%;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .benefit-img-two {
    margin-bottom: 50px;
  }
}
.benefit-img-two img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .benefit-img-two img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
}
.benefit-img-three {
  text-align: right;
}
.benefit-content > p {
  margin-bottom: 30px;
}
.benefit-content-two .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.benefit-content-two p {
  margin-bottom: 0;
}
.benefit-item {
  margin-bottom: 30px;
}
.benefit-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.benefit-item-top .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 1.4;
}
.benefit-item p {
  margin-bottom: 0;
}
.benefit-item-two {
  border: 1px solid #cfd5ed;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 30px 24px 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bni-color-white-default);
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .benefit-item-two {
    padding: 27px 20px 22px;
  }
}
@media (max-width: 991.98px) {
  .benefit-item-two {
    padding: 30px 24px 25px;
  }
}
.benefit-item-two:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  background: var(--bni-color-white-default);
  font-size: 40px;
  justify-content: center;
  color: var(--bni-theme-primary);
}
.benefit-icon-two {
  font-size: 60px;
  line-height: 1;
  color: var(--bni-theme-primary);
}
@media (max-width: 1199.98px) {
  .benefit-icon-two {
    font-size: 50px;
  }
}

/*=============================
    	26. Loan
===============================*/
.loan-bg {
  background-size: cover;
  background-position: center;
  background-color: var(--bni-theme-primary);
  position: relative;
  z-index: 1;
}
.loan-form-wrap .form-grp.select-grp {
  position: relative;
}
.loan-form-wrap .form-grp.select-grp::after {
  content: "\f078";
  position: absolute;
  bottom: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 18px;
  font-size: 13px;
  color: var(--bni-color-white-default);
  line-height: 1;
}
.loan-form-wrap .form-grp label {
  display: block;
  color: var(--bni-color-white-default);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.loan-form-wrap .form-grp select, .loan-form-wrap .form-grp input {
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid var(--bni-color-white-default);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--bni-color-white-default);
}
.loan-form-wrap .form-grp select::placeholder, .loan-form-wrap .form-grp input::placeholder {
  color: var(--bni-color-white-default);
  font-size: 15px;
}
.loan-form-wrap .form-grp select {
  width: 100%;
  height: 50px;
  padding: 11px 35px 11px 18px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.loan-form-wrap .form-grp select option {
  color: var(--bni-heading-color);
}
.loan-form-wrap .form-grp select:focus {
  outline: none;
}
.loan-form-wrap button {
  width: 100%;
  background: var(--bni-color-white-default);
  color: var(--bni-theme-primary);
  border: none;
  margin-top: 24px;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}
.loan-form-wrap button:hover {
  background: var(--bni-theme-secondary);
  color: var(--bni-color-white-default);
}
.loan-shape img {
  position: absolute;
  z-index: -1;
}
.loan-shape img:nth-child(1) {
  left: 0;
  top: 0;
}
.loan-shape img:nth-child(2) {
  right: 60px;
  bottom: 80px;
}
@media (max-width: 1800px) {
  .loan-shape img:nth-child(2) {
    right: 20px;
    bottom: 60px;
    max-width: 150px;
  }
}
@media (max-width: 1500px) {
  .loan-shape img:nth-child(2) {
    right: 10px;
    bottom: 45px;
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .loan-shape img:nth-child(2) {
    display: none;
  }
}

/*=============================
    	27. Features
===============================*/
.features-area {
  margin-top: -110px;
}
.features-area-three {
  background: var(--bni-color-gray-1);
}
.features-item {
  border: 1px solid #E0E1E9;
  background: var(--bni-color-white-default);
  padding: 40px 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .features-item {
    padding: 30px 25px;
  }
}
@media (max-width: 991.98px) {
  .features-item {
    padding: 35px 35px;
  }
}
.features-item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.features-item-top .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.features-item:hover {
  transform: translateY(-5px);
}
.features-item:hover .features-icon i {
  transform: rotateY(180deg);
}
.features-item-two {
  background: var(--bni-color-white-default);
  border: 1px solid #CFD5ED;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 28px 25px;
  height: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.features-item-two:hover {
  transform: translateY(-5px);
}
.features-item-two:hover .features-icon-two {
  transform: rotateY(180deg);
}
.features-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--bni-theme-primary);
  background: var(--bni-color-gray-1);
  flex: 0 0 auto;
}
.features-icon i {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.features-icon-two {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f1efff 0%, rgba(244, 242, 255, 0) 100%);
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 30px;
  color: var(--bni-theme-primary);
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 991.98px) {
  .features-img {
    margin-bottom: 50px;
  }
}
.features-img img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  width: 100%;
}
.features-img-two img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.features-content p {
  margin-bottom: 0;
}
.features-content-two {
  margin-right: 35px;
}
@media (max-width: 1199.98px) {
  .features-content-two {
    margin-right: 0;
  }
}
.features-content-two p {
  margin-bottom: 25px;
}
.features-content-two .list-wrap {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .features-content-two .list-wrap {
    margin-bottom: 30px;
  }
}
.features-content-three {
  margin-left: 60px;
}
@media (max-width: 1199.98px) {
  .features-content-three {
    margin-left: 0;
  }
}
.features-content-three p {
  margin-bottom: 30px;
}
.features-content-three .services-details-client-wrap {
  justify-content: flex-start;
  margin-bottom: 40px;
}
.features-content-three .client-box-two {
  padding: 20px 35px;
}
.features-content-three .list-wrap {
  margin-bottom: 0;
}
.features-content-four .title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
}
.features-content-four p {
  margin-bottom: 0;
}
.features-content-five {
  margin-left: 105px;
}
@media (max-width: 1199.98px) {
  .features-content-five {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .features-content-five {
    margin-bottom: 50px;
  }
}
.features-divider {
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  display: block;
  margin: 80px 0;
}
@media (max-width: 767.98px) {
  .features-divider {
    margin: 60px 0;
  }
}

/*=============================
    	21. Challenge
===============================*/
.challenge-thumb {
  width: 100%;
  height: 100%;
}
.challenge-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challenge-content {
  padding: 30px 0 0 55px;
}
@media (max-width: 1199.98px) {
  .challenge-content {
    padding: 20px 0 0 35px;
  }
}
@media (max-width: 991.98px) {
  .challenge-content {
    padding: 50px 0 50px 0;
  }
}
.challenge-content p {
  margin-bottom: 25px;
}
.challenge-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bni-theme-primary);
  margin-bottom: 8px;
}
.challenge-list li svg {
  transform: translateY(8px);
}
.challenge-list li:last-child {
  margin-bottom: 0;
}

/*=============================
    	21. Strategic
===============================*/
.strategic-thumb {
  width: 100%;
  height: 100%;
}
.strategic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strategic-content {
  padding: 50px 85px 0 0;
}
@media (max-width: 1199.98px) {
  .strategic-content {
    padding: 50px 45px 0 0;
  }
}
@media (max-width: 991.98px) {
  .strategic-content {
    padding: 50px 0 0 0;
  }
}
.strategic-content > p {
  margin-bottom: 35px;
}

/*=============================
    	21. Pricing
===============================*/
.pricing-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.pricing-tab .tab-btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
  transition: 0.3s;
  color: var(--bni-body-color);
}
.pricing-tab .tab-btn.annual_tab_title.active {
  color: var(--bni-theme-primary);
}
.pricing-tab .tab-btn.monthly_tab_title {
  color: var(--bni-theme-primary);
}
.pricing-tab .tab-btn.monthly_tab_title.active {
  color: var(--bni-body-color);
}
.pricing-tab .tab-btn strong {
  background: #00AB4D;
  color: var(--bni-color-white-default);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  line-height: 1;
  text-transform: capitalize;
  margin-left: 15px;
}
.pricing-tab .pricing-tab-switcher {
  height: 30px;
  width: 58px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
  margin: 0 15px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  cursor: pointer;
  background: var(--bni-theme-primary);
}
.pricing-tab .pricing-tab-switcher::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 26px;
  border-radius: 50%;
  background: var(--bni-color-white-default);
  transition: 0.3s;
}
.pricing-tab .pricing-tab-switcher.active::before {
  left: calc(100% - 28px);
}
.pricing-box {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #FCFBFB;
  padding: 45px 50px 50px;
}
@media (max-width: 1199.98px) {
  .pricing-box {
    padding: 30px 25px 40px;
  }
}
@media (max-width: 767.98px) {
  .pricing-box {
    padding: 30px 30px 30px;
  }
}
.pricing-top {
  margin-bottom: 25px;
}
.pricing-top .title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
}
.pricing-top p {
  margin-bottom: 0;
  line-height: 1.5;
}
.pricing-price {
  margin-bottom: 30px;
}
.pricing-price .price {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 36px;
}
.pricing-price .price span {
  font-size: 16px;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--bni-body-color);
}
.pricing-price .price.annual_price {
  display: none;
}
.pricing-price.change-subs-duration .price.monthly_price {
  display: none;
}
.pricing-price.change-subs-duration .price.annual_price {
  display: block;
}
.pricing-button {
  margin-bottom: 35px;
}
.pricing-button .bni-btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
}
.pricing-list-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.pricing-list .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.pricing-list .list-wrap li:last-child {
  margin-bottom: 0;
}
.pricing-list .list-wrap li svg {
  color: var(--bni-theme-primary);
  transform: translateY(6px);
}

/*=============================
    	21. Career
===============================*/
.career-img {
  margin-bottom: 40px;
}
.career-img img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 320px;
  object-fit: cover;
}
.career-content {
  text-align: center;
}
.career-content p {
  margin-bottom: 40px;
}
.career-item {
  border: 1px solid #d9e4ff;
  background: var(--bni-color-white-default);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 35px 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .career-item {
    padding: 30px 30px;
  }
}
.career-item:hover {
  border-color: var(--bni-theme-primary);
}
.career-item-content .title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.career-item-content p {
  margin-bottom: 10px;
}
.career-item-content p span {
  color: var(--bni-heading-color);
  font-weight: 600;
}
.career-item .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 15px;
}
.career-item .list-wrap li a {
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid #eaf0ff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: block;
  line-height: 1;
  padding: 8px 16px;
}
.career-item .list-wrap li a:hover {
  border-color: var(--bni-theme-primary);
  color: var(--bni-theme-primary);
}
.career-item-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.career-item-bottom .salary {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  background: #eaf0ff;
  padding: 10px 10px;
  min-height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.career-item-bottom .salary span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.career-item-bottom .bni-btn {
  padding: 12px 25px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.career-details-area {
  background: #F4F6FF;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .career-details-content {
    margin-bottom: 50px;
  }
}
.career-details-content .sub-title {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: var(--bni-theme-primary);
  margin-bottom: 18px;
}
.career-details-content .title {
  margin-bottom: 15px;
  font-size: 48px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .career-details-content .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .career-details-content .title {
    font-size: 38px;
  }
}
.career-details-content .salary {
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1199.98px) {
  .career-details-content .salary {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .career-details-content .salary {
    font-size: 26px;
  }
}
.career-details-content .salary span {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.career-details-content .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.career-details-content .list-wrap li {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
.career-details-content .list-wrap li span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: var(--bni-heading-color);
  margin-bottom: 14px;
}
.career-details-content-inner {
  margin-top: 35px;
}
.career-details-content-inner > p {
  margin-bottom: 12px !important;
}
.career-details-content-two {
  width: 90%;
}
@media (max-width: 1199.98px) {
  .career-details-content-two {
    width: 95%;
  }
}
@media (max-width: 991.98px) {
  .career-details-content-two {
    width: 100%;
  }
}
.career-details-content-two .title {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.career-details-content-two p {
  margin-bottom: 0;
}
.career-details-content-two ul {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .career-details-benefit {
    margin-top: 70px;
  }
}
.career-details-benefit .title {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 20px;
}
.career-details-benefit .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.career-details-benefit .list-wrap li:last-child {
  margin-bottom: 0;
}
.career-details-benefit .list-wrap li img {
  width: 20px;
  flex: 0 0 auto;
  transform: translateY(5px);
}

.apply-box {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  background: var(--bni-color-white-default);
  border: 1px solid #eaf0ff;
  border-radius: 10px;
  padding: 40px 30px;
  margin-left: 104px;
}
@media (max-width: 1199.98px) {
  .apply-box {
    margin-left: 0;
  }
}
.apply-box span {
  display: block;
  margin-bottom: 20px;
}
.apply-box .bni-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.apply-box p {
  margin-bottom: 15px;
}
.apply-box p:last-child {
  font-size: 14px;
  margin-bottom: 0;
}
.apply-box p a {
  font-size: 14px;
  color: var(--bni-heading-color);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-weight: 500;
}

/*=============================
    	23. Contact
===============================*/
.contact-area {
  padding: 85px 0 110px;
}
.contact-area-two {
  background: var(--bni-theme-secondary);
  position: relative;
  z-index: 1;
}
.contact-img {
  position: absolute;
  width: 45%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  background-size: cover;
  background-position: center;
}
@media (max-width: 1500px) {
  .contact-img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  }
}
@media (max-width: 991.98px) {
  .contact-img {
    display: none;
  }
}
.contact-shape {
  width: 286px;
  height: 100%;
  position: absolute;
  left: 32%;
  top: 0;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1800px) {
  .contact-shape {
    left: 30%;
  }
}
@media (max-width: 1500px) {
  .contact-shape {
    left: 26%;
  }
}
@media (max-width: 1199.98px) {
  .contact-shape {
    left: 20%;
  }
}
@media (max-width: 991.98px) {
  .contact-shape {
    display: none;
  }
}
.contact-map {
  width: 100%;
  height: 420px;
}
@media (max-width: 1199.98px) {
  .contact-map {
    height: 360px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
}
.contact-info-item {
  position: relative;
  background: var(--bni-color-white-default);
  border: 1px solid #DEE0EE;
  padding: 45px 55px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 18px;
}
@media (max-width: 1199.98px) {
  .contact-info-item {
    padding: 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .contact-info-item {
    padding: 30px 30px;
  }
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item .title {
  font-size: 24px;
  margin-bottom: 6px;
}
.contact-info-item p {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
.contact-info-item .list-wrap li {
  margin-bottom: 3px;
}
.contact-info-item .list-wrap li:last-child {
  margin-bottom: 0;
}
.contact-info-item .list-wrap li a {
  color: var(--bni-body-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.contact-info-item .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--bni-theme-primary);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.contact-info-item .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.contact-info-item .list-wrap li a:hover::before {
  width: 100%;
}
.contact-info-item .shape {
  position: absolute;
  right: -19px;
  bottom: -13px;
  color: #F4F5F8;
  z-index: -1;
}
.contact-form-wrap {
  background: var(--bni-color-gray-1);
  padding: 50px 60px 55px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .contact-form-wrap {
    padding: 35px 35px 40px;
  }
}
@media (max-width: 991.98px) {
  .contact-form-wrap {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 35px 30px 40px;
  }
}
.contact-form-wrap .title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .contact-form-wrap .title {
    font-size: 26px;
  }
}
.contact-form .form-grp {
  margin-bottom: 15px;
}
.contact-form .form-grp > label {
  font-size: 16px;
  font-weight: 500;
  color: var(--bni-body-color);
  line-height: 1;
  margin-bottom: 14px;
}
.contact-form .checkbox-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}
.contact-form .checkbox-grp input {
  width: 18px;
  margin-right: 9px;
  height: 18px;
  cursor: pointer;
  flex: 0 0 auto;
  margin-top: 3px;
}
.contact-form .checkbox-grp label {
  font-weight: 400;
  font-size: 16px;
  color: var(--bni-body-color);
  user-select: none;
  margin-bottom: 0;
  line-height: 1.2;
}
.contact-form-two .row {
  --bs-gutter-x: 10px;
}
.contact-form-two .form-grp {
  margin-bottom: 10px;
}
.contact-form-two .form-grp textarea, .contact-form-two .form-grp input {
  border: none;
}
.contact-form-two button {
  width: 100%;
  background: var(--bni-theme-primary);
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--bni-color-white-default);
  padding: 16px 20px;
}
.contact-form-two button:hover {
  background: var(--bni-color-gray-1);
  color: var(--bni-theme-primary);
}

.ajax-response.error, .ajax-response.success {
  margin: 20px 0 0 !important;
}
.ajax-response.error {
  color: red;
}
.ajax-response.success {
  color: green;
}

/*=============================
    	22. Login
===============================*/
.login-left-side {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 64px 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .login-left-side {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .login-left-side {
    padding: 25px;
    height: 350px;
  }
}
.login-left-side::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.43) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.login-left-content p {
  font-size: 20px;
  color: var(--bni-color-white-default);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .login-left-content p {
    font-size: 18px;
  }
}
.login-left-content .title {
  font-size: 1.125rem;
  color: var(--bni-color-white-default);
  margin-bottom: 8px;
  font-weight: 600;
}
.login-left-content span {
  display: block;
  line-height: 1;
  color: var(--bni-color-white-default);
  opacity: 0.8;
}
.login-form-wrap {
  text-align: center;
  padding: 30px 15px;
  width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 991.98px) {
  .login-form-wrap {
    width: 360px;
  }
}
@media (max-width: 767.98px) {
  .login-form-wrap {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-form-wrap {
    width: 80%;
  }
}
.login-form-wrap .title {
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.login-form-wrap .divider {
  display: block;
  padding: 30px 0;
  text-transform: uppercase;
}
.login-form-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.login-form-social a {
  font-size: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 48px;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  color: var(--bni-color-white-default);
  background: #212529;
  border-radius: 8px;
}
.login-form-social a:nth-child(2) {
  background: #066ec2;
}
.login-form .form-grp {
  margin-bottom: 15px;
}
.login-form .bni-btn {
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

.account-check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account-check-remember {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 5px;
}
.account-check-remember input {
  width: 20px;
  height: 20px;
  margin-inline-end: 3px;
  padding: 0;
}
.account-check-remember label {
  user-select: none;
}
.account-check-remember label a {
  font-weight: 600;
  text-decoration: underline;
  margin-left: 5px;
}

.account-check-forgot a {
  color: var(--bni-theme-primary);
  font-size: 16px;
  text-decoration: underline;
  font-weight: 600;
}

.account-switch {
  margin-top: 30px;
}
.account-switch p {
  margin-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.account-switch a {
  color: var(--bni-theme-primary);
  text-decoration: underline;
  font-weight: 600;
}

/*=============================
    	21. CheckOut
===============================*/
.coupon-code-info {
  background: #f5f5f5;
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .coupon-code-info {
    flex-wrap: wrap;
  }
}
.coupon-code-info a:hover {
  text-decoration: underline;
  color: var(--bni-theme-primary);
}
.coupon-code-form {
  margin-bottom: 35px;
  display: none;
}
.coupon-code-form p {
  margin-bottom: 15px;
}
.coupon-code-form input {
  width: 100%;
  background: #f5f5f5;
  height: 55px;
  border: none;
  color: var(--bni-heading-color);
  padding: 0 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.customer-form-wrap {
  border: 1px solid #ebebeb;
  padding: 30px;
}
@media (max-width: 767.98px) {
  .customer-form-wrap {
    padding: 25px 20px;
  }
}
.customer-form-wrap .title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
  color: var(--bni-heading-color);
  font-family: var(--bni-heading-font-family);
  line-height: 1;
}
@media (max-width: 767.98px) {
  .customer-form-wrap .title {
    font-size: 1.3rem;
  }
}
.customer-form-wrap .title.title-two {
  margin-top: 20px;
}
.customer-form-wrap .form-grp {
  margin-bottom: 15px;
}
.customer-form-wrap .form-grp.select-grp {
  position: relative;
}
.customer-form-wrap .form-grp.select-grp::after {
  content: "\f078";
  position: absolute;
  bottom: 13px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 20px;
  font-size: 14px;
  color: var(--bni-theme-primary);
}
.customer-form-wrap .form-grp label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--bni-body-color);
}
.customer-form-wrap .form-grp textarea, .customer-form-wrap .form-grp input {
  width: 100%;
  color: var(--bni-heading-color);
  height: 53px;
  padding: 0 20px;
  background: #f5f5f5;
  border: none;
}
.customer-form-wrap .form-grp textarea {
  padding: 10px 20px 0;
  min-height: 120px;
  max-height: 120px;
}
.customer-form-wrap .form-grp select {
  background-color: #f5f5f5;
  border: none;
  color: var(--bni-heading-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  outline: none;
  padding: 12px 37px 9px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 53px;
  cursor: pointer;
}

.order-info-wrap {
  border: 2px solid var(--bni-theme-primary);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
}
@media (max-width: 991.98px) {
  .order-info-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .order-info-wrap {
    padding: 25px 20px;
  }
}
.order-info-wrap > .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
}
.order-info-wrap .list-wrap {
  margin-bottom: 20px;
}
.order-info-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--bni-body-color);
  font-weight: 600;
  font-size: 15px;
  gap: 8px;
  padding: 12px 0;
}
.order-info-wrap .list-wrap li span {
  color: var(--bni-heading-color);
  display: block;
  line-height: 1;
  font-weight: 700;
}
.order-info-wrap .list-wrap li.title span {
  color: var(--bni-body-color);
}
.order-info-wrap .list-wrap li:last-child span {
  font-size: 1.25rem;
}
.order-info-wrap p {
  margin-bottom: 15px;
}
.order-info-wrap p a {
  text-decoration: underline;
}
.order-info-wrap p a:hover {
  color: var(--bni-theme-primary);
}
.order-info-wrap .bni-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
}

.cart-table thead th {
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .cart-table thead th.product-subtotal, .cart-table thead th.product-price {
    display: none;
  }
}
.cart-table tbody tr {
  position: relative;
}
.cart-table tbody td {
  padding: 12px 17px;
  text-align: left;
  line-height: 1.1;
  border: none;
  border-top: 1px solid #ebebeb;
  vertical-align: middle;
  color: var(--bni-body-color);
}
@media (max-width: 767.98px) {
  .cart-table tbody td {
    padding: 12px 10px;
  }
}
.cart-table tbody td:first-child {
  padding-left: 0;
}
.cart-table tbody td a {
  color: var(--bni-theme-primary);
}
.cart-table tbody td.product-name {
  font-weight: 500;
}
.cart-table tbody td.product-remove {
  padding-right: 5px;
  text-align: right;
}
.cart-table tbody td.product-remove a {
  font-size: 25px;
}
.cart-table tbody td.product-quantity {
  text-align: right;
  padding-right: 0;
}
.cart-table .product-thumb img {
  max-width: 70px;
}
@media (max-width: 767.98px) {
  .cart-table .product-price {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .cart-table .product-remove a {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    color: #fff;
    background-color: red;
    font-size: 15px !important;
    left: 0;
    margin-top: -10px;
  }
}
@media (max-width: 767.98px) {
  .cart-table .product-subtotal {
    display: none;
  }
}
.cart-table .product-remove {
  padding: 0 !important;
  width: 0 !important;
}
.cart-actions {
  padding-top: 25px !important;
  padding-bottom: 10px !important;
  padding-right: 0 !important;
}
.cart-actions-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .cart-actions-form {
    width: 100%;
  }
}
.cart-actions-form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
  height: 50px;
  background: #f5f5f5;
  color: var(--bni-heading-color);
  padding: 0 20px;
  border: 0;
  border-radius: 30px;
  padding-right: 0;
}
.cart-collaterals-wrap {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 1.25rem;
  height: 100%;
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .cart-collaterals-wrap {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .cart-collaterals-wrap {
    margin-top: 50px;
  }
}
.cart-collaterals-wrap .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.9375rem;
  border-bottom: 0.9375rem;
  border-bottom: 1px solid #ebebeb;
}
.cart-collaterals-wrap .list-wrap {
  padding-bottom: 0.9375rem;
}
.cart-collaterals-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--bni-heading-color);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 5px;
}
.cart-collaterals-wrap .list-wrap li span {
  color: var(--bni-body-color);
  font-weight: 400;
}
.cart-collaterals-wrap .list-wrap li span.amount {
  font-weight: 600;
  color: var(--bni-heading-color);
  font-size: 1.25rem;
}
.cart-collaterals-wrap .bni-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.f-right {
  float: right;
}
@media (max-width: 767.98px) {
  .f-right {
    float: none;
  }
}

@media (max-width: 767.98px) {
  .update-cart-btn {
    text-align: center !important;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .update-cart-btn .bni-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.error-area {
  padding: 120px 0;
}
@media (max-width: 1500px) {
  .error-area {
    padding: 100px 0;
  }
}
.error-img {
  text-align: center;
  width: 648px;
  height: 323px;
  margin: 0 auto 65px;
}
@media (max-width: 1500px) {
  .error-img {
    margin-bottom: 45px;
  }
}
@media (max-width: 991.98px) {
  .error-img {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .error-img {
    margin-bottom: 30px;
    width: 100%;
    height: 100%;
  }
}
.error-img svg {
  width: 100%;
  height: 100%;
  color: var(--bni-theme-primary);
}
.error-content .title {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
}
@media (max-width: 1199.98px) {
  .error-content .title {
    margin-bottom: 35px;
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .error-content .title {
    font-size: 30px;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}
.error-content .title span {
  display: block;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .error-content .title span {
    margin-top: 5px;
  }
}
.error-content .bni-button-wrap {
  justify-content: center;
}

/*=============================
    	17. Footer
===============================*/
.footer-area {
  position: relative;
  z-index: 1;
}
.footer-area-two {
  background: var(--bni-color-dark-2);
  position: relative;
  z-index: 1;
}
.footer-area-three {
  position: relative;
  z-index: 1;
}
.footer-area-three::before {
  content: "";
  position: absolute;
  left: -240px;
  bottom: -200px;
  width: 520px;
  height: 520px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #7838FF;
  filter: blur(125px);
  opacity: 0.1;
  z-index: -1;
}
.footer-area-four {
  background: var(--bni-theme-secondary);
  position: relative;
  z-index: 1;
}
.footer-area-five {
  padding-top: 88px;
  margin-top: -88px;
}
.footer-top {
  padding: 140px 0 100px;
}
@media (max-width: 767.98px) {
  .footer-top {
    padding: 100px 0 60px;
  }
}
.footer-top .row *:nth-child(2) .footer-widget {
  margin-left: 40px;
}
@media (max-width: 767.98px) {
  .footer-top .row *:nth-child(2) .footer-widget {
    margin-left: 0;
  }
}
.footer-top .row *:nth-child(4) .footer-widget {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .footer-top .row *:nth-child(4) .footer-widget {
    margin-left: 0;
  }
}
.footer-top-two {
  padding: 140px 0 100px;
}
@media (max-width: 767.98px) {
  .footer-top-two {
    padding: 100px 0 60px;
  }
}
.footer-top-two .row *:nth-child(2) .footer-widget {
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  .footer-top-two .row *:nth-child(2) .footer-widget {
    margin-left: 0;
  }
}
.footer-top-two .row *:nth-child(4) .footer-widget {
  margin-left: 80px;
}
@media (max-width: 1199.98px) {
  .footer-top-two .row *:nth-child(4) .footer-widget {
    margin-left: 0;
  }
}
.footer-top-three {
  padding: 75px 0 60px;
}
.footer-top-three .row *:nth-child(2) .footer-widget {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .footer-top-three .row *:nth-child(2) .footer-widget {
    margin-left: 0;
  }
}
.footer-top-three .row *:nth-child(4) .footer-widget {
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .footer-top-three .row *:nth-child(4) .footer-widget {
    margin-left: 0;
  }
}
.footer-logo {
  margin-bottom: 25px;
}
.footer-logo-two {
  margin-bottom: 30px;
}
.footer-content p {
  margin-bottom: 25px;
  font-size: 15px;
}
.footer-content-two p {
  margin-bottom: 25px;
}
.footer-content-three p {
  color: var(--bni-color-gray-4);
}
.footer-contact .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  gap: 15px;
  color: var(--bni-color-gray-4);
  line-height: 1.6;
  margin-bottom: 15px;
}
.footer-contact .list-wrap li i {
  font-size: 24px;
  color: var(--bni-color-gray-4);
  transform: translateY(7px);
}
.footer-contact .list-wrap li a {
  color: var(--bni-color-gray-4);
}
.footer-contact .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.footer-contact-two p {
  margin-bottom: 20px;
}
.footer-contact-two .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-contact-two .list-wrap li:last-child {
  margin-bottom: 0;
}
.footer-contact-two .list-wrap li i {
  font-size: 24px;
  color: var(--bni-theme-primary);
}
.footer-contact-two .list-wrap li a {
  color: var(--bni-body-color);
}
.footer-contact-two .list-wrap li a:hover {
  color: var(--bni-theme-primary);
}
.footer-widget {
  margin-bottom: 40px;
}
.footer-widget-title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}
.footer-widget-title-two {
  color: var(--bni-color-white-default);
}
.footer-widget-link li {
  margin-bottom: 10px;
}
.footer-widget-link li:last-child {
  margin-bottom: 0;
}
.footer-widget-link li a {
  color: var(--bni-body-color);
  position: relative;
  font-size: 16px;
}
.footer-widget-link li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer-widget-link li a:hover {
  color: var(--bni-theme-primary);
}
.footer-widget-link li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer-widget-link-two li {
  color: var(--bni-color-gray-4);
}
.footer-widget-link-two li a {
  color: var(--bni-color-gray-4);
}
.footer-instagram .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-instagram .list-wrap a img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.footer-newsletter span {
  display: block;
  margin-bottom: 20px;
}
.footer-newsletter-form {
  position: relative;
}
.footer-newsletter-form input {
  width: 100%;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  background: #F4F6FC;
  padding: 15px 60px 15px 25px;
  height: 54px;
}
.footer-newsletter-form button {
  width: 48px;
  height: 48px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.footer-newsletter-form button:hover {
  background: var(--bni-theme-secondary);
}
.footer-newsletter-two span {
  color: var(--bni-color-gray-4);
}
.footer-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social .list-wrap li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: var(--bni-color-gray-8);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bni-body-color);
  justify-content: center;
}
.footer-social .list-wrap li a svg {
  width: 16px;
  height: 16px;
}
.footer-social .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
}
.footer-social-two .list-wrap {
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .footer-social-two .list-wrap {
    justify-content: center;
  }
}
.footer-social-three .title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-social-three .list-wrap li a {
  background: var(--bni-color-white-default);
  border: 1px solid #ADADAD;
}
.footer-social-three .list-wrap li a:hover {
  background: var(--bni-theme-primary);
  color: var(--bni-color-white-default);
  border-color: var(--bni-theme-primary);
}
.footer-social-four .list-wrap li a {
  color: var(--bni-color-white-default);
  border: 2px solid #494A67;
  background: transparent;
}
.footer-social-four .list-wrap li a:hover {
  border-color: var(--bni-theme-primary);
}
.footer-bottom {
  background: var(--bni-color-white-default);
  border-top: 1px solid var(--bni-border-8);
  padding: 40px 0;
}
.footer-bottom-two {
  border-top: 1px solid #232349;
  padding: 33px 0;
}
@media (max-width: 767.98px) {
  .footer-bottom-two {
    padding: 25px 0;
  }
}
.footer-bottom-three {
  border-top: 1px solid #D7DBEB;
  padding: 40px 0;
}
@media (max-width: 767.98px) {
  .footer-bottom-three {
    padding: 25px 0;
  }
}
@media (max-width: 991.98px) {
  .footer-bottom-four .copyright-content-two {
    margin-bottom: 15px;
  }
}
@media (max-width: 991.98px) {
  .footer-bottom-four .footer-social-two .list-wrap {
    justify-content: center;
  }
}
.footer-bottom-five {
  background: #040534;
  padding: 42px 0;
}
@media (max-width: 767.98px) {
  .footer-bottom-five {
    padding: 28px 0;
  }
}
@media (max-width: 767.98px) {
  .footer-bottom-logo {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .footer-bottom-logo-two {
    text-align: center;
    margin-bottom: 15px;
  }
}
.footer-inquiry {
  padding: 100px 0 65px;
  border-bottom: 1px solid #141543;
}
.footer-inquiry-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px 50px;
}
@media (max-width: 1199.98px) {
  .footer-inquiry-content {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .footer-inquiry-content {
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer-inquiry-content .title {
  color: var(--bni-color-white-default);
  font-size: 40px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 300;
  width: 41%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .footer-inquiry-content .title {
    width: 100%;
  }
}
.footer-inquiry-content .title span {
  font-weight: 600;
  display: block;
}
.footer-inquiry-content p {
  color: var(--bni-color-gray-4);
  margin-bottom: 0;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .footer-inquiry-btn {
    text-align: center !important;
  }
}
.footer-shape-wrap img {
  position: absolute;
  z-index: -1;
}
.footer-shape-wrap img:nth-child(1) {
  right: 0;
  top: 0;
}
.footer-shape-wrap img:nth-child(2) {
  left: 0;
  bottom: 0;
}
.footer-shape-wrap img:nth-child(3) {
  right: 4%;
  bottom: 14px;
}
@media (max-width: 767.98px) {
  .footer-shape-wrap img:nth-child(3) {
    right: 5%;
    bottom: 60px;
    max-width: 100px;
  }
}
.footer-shape-wrap-two img {
  position: absolute;
  z-index: -1;
}
.footer-shape-wrap-two img:nth-child(1) {
  left: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-two img:nth-child(1) {
    max-width: 200px;
  }
}
.footer-shape-wrap-two img:nth-child(2) {
  bottom: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-two img:nth-child(2) {
    max-width: 130px;
  }
}
.footer-shape-wrap-two img:nth-child(3) {
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-two img:nth-child(3) {
    max-width: 160px;
  }
}
.footer-shape-wrap-three img {
  position: absolute;
  z-index: -1;
}
.footer-shape-wrap-three img:nth-child(1) {
  bottom: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-three img:nth-child(1) {
    max-width: 130px;
  }
}
.footer-shape-wrap-three img:nth-child(2) {
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-three img:nth-child(2) {
    max-width: 160px;
  }
}
.footer-shape-wrap-four img {
  position: absolute;
  z-index: -1;
}
.footer-shape-wrap-four img:nth-child(1) {
  left: 0;
  top: 120px;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-four img:nth-child(1) {
    top: 25px;
  }
}
.footer-shape-wrap-four img:nth-child(2) {
  left: 0;
  bottom: 0;
}
.footer-shape-wrap-four img:nth-child(3) {
  right: -96px;
  bottom: 270px;
}
@media (max-width: 1500px) {
  .footer-shape-wrap-four img:nth-child(3) {
    bottom: 140px;
  }
}
.footer-shape-wrap-four img:nth-child(4) {
  right: 15%;
  bottom: 28%;
}
@media (max-width: 991.98px) {
  .footer-shape-wrap-four img:nth-child(4) {
    display: none;
  }
}

.copyright-content {
  text-align: center;
}
.copyright-content p {
  margin-bottom: 0;
  font-size: 15px;
}
@media (max-width: 767.98px) {
  .copyright-content-two {
    text-align: center;
    margin-bottom: 25px;
  }
}
.copyright-content-two p {
  color: #878BA8;
  margin-bottom: 0;
  font-size: 15px;
}
.copyright-content-three p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .copyright-content-three p {
    text-align: center;
  }
}
.copyright-content-four p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: center;
  color: #878BA8;
}

/*# sourceMappingURL=main.css.map */
